工时改小时

master
zhaoxiaolin 1 year ago
parent f9677e5af9
commit 5488a72f7e

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

@ -110,7 +110,7 @@ public class wmsReportWork extends BaseEntity {
/** 工时 */ /** 工时 */
@Excel(name = "工时") @Excel(name = "工时")
private Long workTime; private BigDecimal workTime;
@Excel(name = "用人") @Excel(name = "用人")
private Long useMan; private Long useMan;
@ -537,13 +537,15 @@ public class wmsReportWork extends BaseEntity {
public String getStatus() { public String getStatus() {
return status; return status;
} }
public void setWorkTime(Long workTime) {
this.workTime = workTime;
}
public Long getWorkTime() { public BigDecimal getWorkTime() {
return workTime; return workTime;
} }
public void setWorkTime(BigDecimal workTime) {
this.workTime = workTime;
}
public void setMachineCode(String machineCode) { public void setMachineCode(String machineCode) {
this.machineCode = machineCode; this.machineCode = machineCode;
} }

@ -110,7 +110,7 @@ public class MesReportWork extends BaseEntity {
/** 工时 */ /** 工时 */
@Excel(name = "工时") @Excel(name = "工时")
private Long workTime; private BigDecimal workTime;
@Excel(name = "用人") @Excel(name = "用人")
private Long useMan; private Long useMan;
@ -537,13 +537,15 @@ public class MesReportWork extends BaseEntity {
public String getStatus() { public String getStatus() {
return status; return status;
} }
public void setWorkTime(Long workTime) {
this.workTime = workTime;
}
public Long getWorkTime() { public BigDecimal getWorkTime() {
return workTime; return workTime;
} }
public void setWorkTime(BigDecimal workTime) {
this.workTime = workTime;
}
public void setMachineCode(String machineCode) { public void setMachineCode(String machineCode) {
this.machineCode = machineCode; this.machineCode = machineCode;
} }

Loading…
Cancel
Save