【1604 待入库数据查询】

yun-zuoyi
曾贞一 5 years ago committed by wei.peng
parent a597d78100
commit 509240126a

@ -328,6 +328,18 @@ public class WmsStockSn extends BaseBean {
@ApiParam(value = "是否需要报工")
private Integer isReportPartNo;
@Transient
@ApiParam(value = "库存地代码")
private String areaNo;
@Transient
@ApiParam(value = "物料规格")
private String partSpec;
@Transient
@ApiParam(value = "箱数")
private Long boxQtys;
public WmsStockSn() {
}
@ -421,4 +433,63 @@ public class WmsStockSn extends BaseBean {
this.createDatetime=createDatetime;
this.modifyDatetime = modifyDatetime;
}
public WmsStockSn(Long id,String organizeCode,String sn, String partNo, String partNameRdd, String unit, Integer snStatus,
String areaNo,String partSpec,Integer qcStatus, Double qty, Long boxQtys,
String locateNo, String zoneNo, String whNo, String lotNo,String refSrc,
String dateCode, String packageNo, String createDatetime, String createUser,
String modifyDatetime, String modifyUser) {
this.id = id;
this.organizeCode = organizeCode;
this.sn = sn;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.unit = unit;
this.snStatus = snStatus;
this.areaNo = areaNo;
this.partSpec = partSpec;
this.qcStatus = qcStatus;
this.qty = qty;
this.boxQtys = boxQtys;
this.locateNo = locateNo;
this.zoneNo = zoneNo;
this.whNo = whNo;
this.lotNo = lotNo;
this.refSrc = refSrc;
this.dateCode = dateCode;
this.packageNo = packageNo;
this.createDatetime = createDatetime;
this.createUser = createUser;
this.modifyDatetime = modifyDatetime;
this.modifyUser = modifyUser;
}
public WmsStockSn(Long id,String organizeCode,String sn, String partNo, String partNameRdd, String unit, Integer snStatus,
String areaNo,Integer qcStatus, Double qty,
String locateNo, String zoneNo, String whNo, String lotNo,String refSrc,
String dateCode, String packageNo, String createDatetime, String createUser,
String modifyDatetime, String modifyUser) {
this.id = id;
this.organizeCode = organizeCode;
this.sn = sn;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.unit = unit;
this.snStatus = snStatus;
this.areaNo = areaNo;
this.qcStatus = qcStatus;
this.qty = qty;
this.locateNo = locateNo;
this.zoneNo = zoneNo;
this.whNo = whNo;
this.lotNo = lotNo;
this.refSrc = refSrc;
this.dateCode = dateCode;
this.packageNo = packageNo;
this.createDatetime = createDatetime;
this.createUser = createUser;
this.modifyDatetime = modifyDatetime;
this.modifyUser = modifyUser;
}
}

Loading…
Cancel
Save