|
|
|
@ -24,21 +24,21 @@ public class MesProductDataDefectModel {
|
|
|
|
|
private String productSn;
|
|
|
|
|
|
|
|
|
|
@ApiParam("缺陷类型")
|
|
|
|
|
private String errorFiledCode;
|
|
|
|
|
private String defectType;
|
|
|
|
|
|
|
|
|
|
@ApiParam("缺陷原因")
|
|
|
|
|
private String errorDesc;
|
|
|
|
|
private String defectDesc;
|
|
|
|
|
|
|
|
|
|
@ApiParam("下线时间")
|
|
|
|
|
private String offlineTime;
|
|
|
|
|
|
|
|
|
|
public MesProductDataDefectModel(String orderNo, String partNo, String partDesc, String productSn, String errorFiledCode, String errorDesc, String offlineTime) {
|
|
|
|
|
public MesProductDataDefectModel(String orderNo, String partNo, String partDesc, String productSn, String defectType, String defectDesc, String offlineTime) {
|
|
|
|
|
this.orderNo = orderNo;
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.partDesc = partDesc;
|
|
|
|
|
this.productSn = productSn;
|
|
|
|
|
this.errorFiledCode = errorFiledCode;
|
|
|
|
|
this.errorDesc = errorDesc;
|
|
|
|
|
this.defectType = defectType;
|
|
|
|
|
this.defectDesc = defectDesc;
|
|
|
|
|
this.offlineTime = offlineTime;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|