|
|
@ -1,29 +1,58 @@
|
|
|
|
package com.op.system.api.domain.dto;
|
|
|
|
package com.op.system.api.domain.dto;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.op.system.api.domain.quality.QcCheckTaskDTO;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
|
public class BoardDTO {
|
|
|
|
public class BoardDTO {
|
|
|
|
private String factory;
|
|
|
|
private String factory;
|
|
|
|
private String ymd;
|
|
|
|
private String ymd;
|
|
|
|
private String equCode;
|
|
|
|
private String equCode;
|
|
|
|
private String equName;
|
|
|
|
private String equName;
|
|
|
|
private Integer totalNum;
|
|
|
|
private Integer totalNum;
|
|
|
|
private String equTypeCode;
|
|
|
|
private String equTypeCode;
|
|
|
|
private String equTypeName;
|
|
|
|
private String equTypeName;
|
|
|
|
private String shiftId;
|
|
|
|
private String shiftId;
|
|
|
|
private String factoryCode;
|
|
|
|
private String factoryCode;
|
|
|
|
private String equipmentTypeCode;
|
|
|
|
private String equipmentTypeCode;
|
|
|
|
private String planProduction;
|
|
|
|
private String planProduction;
|
|
|
|
private String actProduction;
|
|
|
|
private String actProduction;
|
|
|
|
private List<String> plans;
|
|
|
|
private List<String> plans;
|
|
|
|
private List<String> acts;
|
|
|
|
private List<String> acts;
|
|
|
|
private List<String> days;
|
|
|
|
private List<String> days;
|
|
|
|
private String startTime;
|
|
|
|
private String startTime;
|
|
|
|
private String endTime;
|
|
|
|
private String endTime;
|
|
|
|
private String productName;
|
|
|
|
private String productName;
|
|
|
|
private String productCode;
|
|
|
|
private String productCode;
|
|
|
|
private String workorderCodeSap;
|
|
|
|
private String workorderCodeSap;
|
|
|
|
private String unit;
|
|
|
|
private String unit;
|
|
|
|
|
|
|
|
private String taskSampleNum;
|
|
|
|
|
|
|
|
private String taskNum;
|
|
|
|
|
|
|
|
private List<QcCheckTaskDTO> checkList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<QcCheckTaskDTO> getCheckList() {
|
|
|
|
|
|
|
|
return checkList;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCheckList(List<QcCheckTaskDTO> checkList) {
|
|
|
|
|
|
|
|
this.checkList = checkList;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getTaskSampleNum() {
|
|
|
|
|
|
|
|
return taskSampleNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTaskSampleNum(String taskSampleNum) {
|
|
|
|
|
|
|
|
this.taskSampleNum = taskSampleNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getTaskNum() {
|
|
|
|
|
|
|
|
return taskNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setTaskNum(String taskNum) {
|
|
|
|
|
|
|
|
this.taskNum = taskNum;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getWorkorderCodeSap() {
|
|
|
|
public String getWorkorderCodeSap() {
|
|
|
|
return workorderCodeSap;
|
|
|
|
return workorderCodeSap;
|
|
|
|