|
|
|
@ -18,6 +18,8 @@ public class ProductSnModel implements Serializable {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 7137684552464509466L;
|
|
|
|
|
|
|
|
|
|
@ApiParam("包装条码")
|
|
|
|
|
private String packageNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam("客户零件号")
|
|
|
|
|
private String customerPartNo;
|
|
|
|
@ -53,7 +55,13 @@ public class ProductSnModel implements Serializable {
|
|
|
|
|
private String qcStatusName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ProductSnModel(String customerPartNo, String serialNumber, String partNo, String qrCode, String workCenterName, String processName, String workCellName, String createDatetime, String createUser, Integer qcStatus) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ProductSnModel(String packageNo,String customerPartNo, String serialNumber, String partNo,
|
|
|
|
|
String qrCode, String workCenterName, String processName,
|
|
|
|
|
String workCellName, String createDatetime,
|
|
|
|
|
String createUser, Integer qcStatus) {
|
|
|
|
|
this.packageNo = packageNo;
|
|
|
|
|
this.customerPartNo = customerPartNo;
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|