|
|
|
@ -21,6 +21,9 @@ public class ProdPackModel implements Serializable {
|
|
|
|
|
@ApiParam("产品条码")
|
|
|
|
|
public String productSn;
|
|
|
|
|
|
|
|
|
|
@ApiParam("过程条码")
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
// 包装主表--包装编号
|
|
|
|
|
@ApiParam("一检箱条码")
|
|
|
|
|
public String packageNo;
|
|
|
|
@ -60,15 +63,15 @@ public class ProdPackModel implements Serializable {
|
|
|
|
|
public ProdPackModel() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ProdPackModel(String productSn, String packageNo, String createDatetime, Integer printStatus) {
|
|
|
|
|
this.productSn = productSn;
|
|
|
|
|
public ProdPackModel(String serialNumber, String packageNo, String createDatetime, Integer printStatus) {
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
this.packageNo = packageNo;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.printStatus = printStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ProdPackModel(String productSn, String packageNo, String custSn, Integer printStatus, String modifyDatetime) {
|
|
|
|
|
this.productSn = productSn;
|
|
|
|
|
public ProdPackModel(String serialNumber, String packageNo, String custSn, Integer printStatus, String modifyDatetime) {
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
this.packageNo = packageNo;
|
|
|
|
|
this.custSn = custSn;
|
|
|
|
|
this.printStatus = printStatus;
|
|
|
|
|