139 lines
2.9 KiB
Java
139 lines
2.9 KiB
Java
package tqq9.lc123.cloud.app.api.result;
|
|
|
|
import kd.bos.openapi.common.custom.annotation.ApiModel;
|
|
import kd.bos.openapi.common.custom.annotation.ApiParam;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
@ApiModel
|
|
public class FWInvQueryResult implements Serializable {
|
|
|
|
@ApiParam("操作失败数量")
|
|
private int failCount;
|
|
|
|
@ApiParam("操作成功数量")
|
|
private int successCount;
|
|
|
|
@ApiParam("返回结果")
|
|
private List<ResultBean> result;
|
|
// private List<List<ResultBean>> result;
|
|
|
|
public int getFailCount() {
|
|
return failCount;
|
|
}
|
|
|
|
public void setFailCount(int failCount) {
|
|
this.failCount = failCount;
|
|
}
|
|
|
|
public int getSuccessCount() {
|
|
return successCount;
|
|
}
|
|
|
|
public void setSuccessCount(int successCount) {
|
|
this.successCount = successCount;
|
|
}
|
|
|
|
public List<ResultBean> getResult() {
|
|
return result;
|
|
}
|
|
// public List<List<ResultBean>> getResult() {
|
|
// return result;
|
|
// }
|
|
|
|
public void setResult(List<ResultBean> result) {
|
|
this.result = result;
|
|
}
|
|
// public void setResult(List<List<ResultBean>> result) {
|
|
// this.result = result;
|
|
// }
|
|
|
|
@ApiModel
|
|
public static class ResultBean implements Serializable {
|
|
|
|
|
|
@ApiParam("组织编码")
|
|
private String orgCode;
|
|
|
|
@ApiParam("组织名称")
|
|
private String orgName;
|
|
|
|
@ApiParam("仓库编码")
|
|
private String warehouseCode;
|
|
|
|
@ApiParam("仓库名称")
|
|
private String warehouseName;
|
|
|
|
|
|
|
|
@ApiParam("物料编码")
|
|
private String number;
|
|
|
|
@ApiParam("批号")
|
|
private String lot;
|
|
|
|
@ApiParam("可用库存数量")
|
|
private BigDecimal qty;
|
|
|
|
public String getOrgCode() {
|
|
return orgCode;
|
|
}
|
|
|
|
public void setOrgCode(String orgCode) {
|
|
this.orgCode = orgCode;
|
|
}
|
|
|
|
public String getOrgName() {
|
|
return orgName;
|
|
}
|
|
|
|
public void setOrgName(String orgName) {
|
|
this.orgName = orgName;
|
|
}
|
|
|
|
public String getWarehouseCode() {
|
|
return warehouseCode;
|
|
}
|
|
|
|
public void setWarehouseCode(String warehouseCode) {
|
|
this.warehouseCode = warehouseCode;
|
|
}
|
|
|
|
public String getWarehouseName() {
|
|
return warehouseName;
|
|
}
|
|
|
|
public void setWarehouseName(String warehouseName) {
|
|
this.warehouseName = warehouseName;
|
|
}
|
|
|
|
public String getNumber() {
|
|
return number;
|
|
}
|
|
|
|
public void setNumber(String number) {
|
|
this.number = number;
|
|
}
|
|
|
|
public BigDecimal getQty() {
|
|
return qty;
|
|
}
|
|
|
|
public void setQty(BigDecimal qty) {
|
|
this.qty = qty;
|
|
}
|
|
|
|
public String getLot() {
|
|
return lot;
|
|
}
|
|
|
|
public void setLot(String lot) {
|
|
this.lot = lot;
|
|
}
|
|
}
|
|
|
|
|
|
}
|