|
|
|
@ -116,13 +116,22 @@ public class SxRepairRecordReportModel implements Serializable {
|
|
|
|
|
@ApiParam("维修人")
|
|
|
|
|
private String modifyUser;
|
|
|
|
|
|
|
|
|
|
@ApiParam("数量")
|
|
|
|
|
private Double qty;
|
|
|
|
|
|
|
|
|
|
@ApiParam("不良部品编码")
|
|
|
|
|
private String badPartNo;
|
|
|
|
|
|
|
|
|
|
@ApiParam("不良部品名称")
|
|
|
|
|
private String badPartName;
|
|
|
|
|
|
|
|
|
|
public SxRepairRecordReportModel() {}
|
|
|
|
|
|
|
|
|
|
public SxRepairRecordReportModel(Long id, String workTime, String shiftCode, String workOrderNo, String workCenterCode, String workCellCode, String manageCode,
|
|
|
|
|
String serialNumber, String productSn, String partNo, String partNameRdd, String defectCode, String defectName, String defectType,
|
|
|
|
|
String defectTypeName, String defectActionTime, Integer repairStatus, String createUser, String dcCode, String dcName,
|
|
|
|
|
String repairCode, String repairName, Integer approvalStatus,String memo, String repairJudgeCode, String repairJudgeName,
|
|
|
|
|
String repairDatetime, String modifyUser) {
|
|
|
|
|
String repairDatetime, String modifyUser, Double qty, String badPartNo, String badPartName) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.workTime = workTime;
|
|
|
|
|
this.shiftCode = shiftCode;
|
|
|
|
@ -151,5 +160,8 @@ public class SxRepairRecordReportModel implements Serializable {
|
|
|
|
|
this.repairJudgeName = repairJudgeName;
|
|
|
|
|
this.repairDatetime = repairDatetime;
|
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
|
this.qty = qty;
|
|
|
|
|
this.badPartNo = badPartNo;
|
|
|
|
|
this.badPartName = badPartName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|