|
|
|
@ -92,7 +92,7 @@ public class MesReportWorkDTO extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
/** 工时 */
|
|
|
|
|
@Excel(name = "工时")
|
|
|
|
|
private Long workTime;
|
|
|
|
|
private BigDecimal workTime;
|
|
|
|
|
|
|
|
|
|
/** 线体编码 */
|
|
|
|
|
@Excel(name = "线体编码")
|
|
|
|
@ -163,6 +163,14 @@ public class MesReportWorkDTO extends BaseEntity {
|
|
|
|
|
private String feedbackTimeEnd;
|
|
|
|
|
private String endReport;
|
|
|
|
|
|
|
|
|
|
public BigDecimal getWorkTime() {
|
|
|
|
|
return workTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWorkTime(BigDecimal workTime) {
|
|
|
|
|
this.workTime = workTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getEndReport() {
|
|
|
|
|
return endReport;
|
|
|
|
|
}
|
|
|
|
@ -490,13 +498,6 @@ public class MesReportWorkDTO extends BaseEntity {
|
|
|
|
|
public String getStatus() {
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
public void setWorkTime(Long workTime) {
|
|
|
|
|
this.workTime = workTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getWorkTime() {
|
|
|
|
|
return workTime;
|
|
|
|
|
}
|
|
|
|
|
public void setMachineCode(String machineCode) {
|
|
|
|
|
this.machineCode = machineCode;
|
|
|
|
|
}
|
|
|
|
|