产品工序过程报表新增料架号字段

yun-zuoyi
Dominic_Xiao 4 years ago
parent e82043a798
commit dbdcbec032

@ -8,6 +8,7 @@ import java.io.Serializable;
/** /**
* - * -
*
* @author yumingxing * @author yumingxing
* @version 1.0 * @version 1.0
* @date 2020/12/18 15:16 * @date 2020/12/18 15:16
@ -33,6 +34,9 @@ public class ProductSnModel implements Serializable {
@ApiParam("CMS标签号") @ApiParam("CMS标签号")
private String qrCode; private String qrCode;
@ApiParam("料架号")
private String ctNo;
@ApiParam("产线") @ApiParam("产线")
private String workCenterName; private String workCenterName;
@ -55,10 +59,8 @@ public class ProductSnModel implements Serializable {
private String qcStatusName; private String qcStatusName;
public ProductSnModel(String packageNo, String customerPartNo, String serialNumber, String partNo,
String qrCode, String ctNo, String workCenterName, String processName,
public ProductSnModel(String packageNo,String customerPartNo, String serialNumber, String partNo,
String qrCode, String workCenterName, String processName,
String workCellName, String createDatetime, String workCellName, String createDatetime,
String createUser, Integer qcStatus) { String createUser, Integer qcStatus) {
this.packageNo = packageNo; this.packageNo = packageNo;
@ -66,6 +68,7 @@ public class ProductSnModel implements Serializable {
this.serialNumber = serialNumber; this.serialNumber = serialNumber;
this.partNo = partNo; this.partNo = partNo;
this.qrCode = qrCode; this.qrCode = qrCode;
this.ctNo = ctNo;
this.workCenterName = workCenterName; this.workCenterName = workCenterName;
this.processName = processName; this.processName = processName;
this.workCellName = workCellName; this.workCellName = workCellName;

Loading…
Cancel
Save