|
|
|
@ -8,6 +8,7 @@ import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 产品履历报表-缺陷信息
|
|
|
|
|
*
|
|
|
|
|
* @author yumingxing
|
|
|
|
|
* @version 1.0
|
|
|
|
|
* @date 2020/12/18 15:16
|
|
|
|
@ -51,8 +52,11 @@ public class DefectRecordModel implements Serializable {
|
|
|
|
|
@ApiParam(value = "扫描时间")
|
|
|
|
|
public String createDatetime;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "图片路径")
|
|
|
|
|
private String pictureUrl;
|
|
|
|
|
|
|
|
|
|
public DefectRecordModel(String workCenterName, String processName, Integer qcStatus, String defectName, String defectLocation, String customerPartNo, String serialNumber, String createUser, String createDatetime) {
|
|
|
|
|
|
|
|
|
|
public DefectRecordModel(String workCenterName, String processName, Integer qcStatus, String defectName, String defectLocation, String customerPartNo, String serialNumber, String createUser, String createDatetime, String pictureUrl) {
|
|
|
|
|
this.workCenterName = workCenterName;
|
|
|
|
|
this.processName = processName;
|
|
|
|
|
this.qcStatus = qcStatus;
|
|
|
|
@ -62,5 +66,6 @@ public class DefectRecordModel implements Serializable {
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
|
this.pictureUrl = pictureUrl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|