|
|
@ -73,12 +73,33 @@ public class MesEquTaskModel implements Serializable {
|
|
|
|
@ApiParam("mes设备作业任务页面按钮控制")
|
|
|
|
@ApiParam("mes设备作业任务页面按钮控制")
|
|
|
|
private MesButtonFlagModel mesButtonFlagModel;
|
|
|
|
private MesButtonFlagModel mesButtonFlagModel;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("故障位置")
|
|
|
|
|
|
|
|
private String faultLocation;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("维修类型")
|
|
|
|
|
|
|
|
private Integer repairType;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("优先级")
|
|
|
|
|
|
|
|
private Integer priority;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("指派人")
|
|
|
|
|
|
|
|
private String designator;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("维修类型")
|
|
|
|
|
|
|
|
private String repairTypeName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiParam("优先级")
|
|
|
|
|
|
|
|
private String priorityName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MesEquTaskModel() {
|
|
|
|
public MesEquTaskModel() {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public MesEquTaskModel(Long id, String taskNo, Integer taskType, Integer taskStatus, String workCenterCode, String planTime, Integer taskSource, String memo, Integer notifyFlag, String relateTask, String organizeCode, Integer isValid, Integer isDeleted, String createUser, String createDatetime, String modifyUser, String modifyDatetime) {
|
|
|
|
public MesEquTaskModel(Long id, String taskNo, Integer taskType, Integer taskStatus, String workCenterCode,
|
|
|
|
|
|
|
|
String planTime, Integer taskSource, String memo, Integer notifyFlag, String relateTask,
|
|
|
|
|
|
|
|
String organizeCode, Integer isValid, Integer isDeleted, String createUser, String createDatetime,
|
|
|
|
|
|
|
|
String modifyUser, String modifyDatetime, String faultLocation, Integer repairType, Integer priority, String designator) {
|
|
|
|
this.id = id;
|
|
|
|
this.id = id;
|
|
|
|
this.taskNo = taskNo;
|
|
|
|
this.taskNo = taskNo;
|
|
|
|
this.taskType = taskType;
|
|
|
|
this.taskType = taskType;
|
|
|
@ -96,5 +117,9 @@ public class MesEquTaskModel implements Serializable {
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
this.createDatetime = createDatetime;
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
this.modifyUser = modifyUser;
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
this.modifyDatetime = modifyDatetime;
|
|
|
|
|
|
|
|
this.faultLocation = faultLocation;
|
|
|
|
|
|
|
|
this.repairType = repairType;
|
|
|
|
|
|
|
|
this.priority = priority;
|
|
|
|
|
|
|
|
this.designator = designator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|