50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
package tqq9.lc123.cloud.app.api.model;
|
|
|
|
import kd.bos.openapi.common.custom.annotation.ApiModel;
|
|
import kd.bos.openapi.common.custom.annotation.ApiParam;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
@ApiModel
|
|
public class FWInvQueryModel implements Serializable {
|
|
|
|
@ApiParam(value = "物料编码集合", example = "{}", required = true)
|
|
private List<QueryModel> queryModels;
|
|
|
|
public List<QueryModel> getQueryModels() {
|
|
return queryModels;
|
|
}
|
|
|
|
public void setQueryModels(List<QueryModel> queryModels) {
|
|
this.queryModels = queryModels;
|
|
}
|
|
|
|
@ApiModel
|
|
public static class QueryModel implements Serializable {
|
|
|
|
@ApiParam(value = "物料编码", example = "WL001", required = true)
|
|
private String materialNumber;
|
|
|
|
@ApiParam(value = "批次号", example = "20250101", required = true)
|
|
private String lot;
|
|
|
|
public String getMaterialNumber() {
|
|
return materialNumber;
|
|
}
|
|
|
|
public void setMaterialNumber(String materialNumber) {
|
|
this.materialNumber = materialNumber;
|
|
}
|
|
|
|
public String getLot() {
|
|
return lot;
|
|
}
|
|
|
|
public void setLot(String lot) {
|
|
this.lot = lot;
|
|
}
|
|
}
|
|
}
|