lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/dto/MdcProcessQuantityDto.java
@@ -1,9 +1,7 @@ package org.jeecg.modules.mdc.dto; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; @@ -25,10 +23,8 @@ @Excel(name = "程序号", width = 15) private String sequenceNumber; private String standardId; @Excel(name = "日期", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") private Date efficientDate; @Excel(name = "日期", width = 15) private String efficientDate; @Excel(name = "加工数量", width = 15) private Integer processQuantity; @Excel(name = "时长(分钟)", width = 15) lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcProcessQuantity.java
@@ -15,7 +15,6 @@ import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; /** * @Description: 加工数量表 @@ -56,7 +55,7 @@ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") @ApiModelProperty(value = "日期") private Date efficientDate; private String efficientDate; /** * 加工数量 */ lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/vo/MdcProcessQuantityVo.java
@@ -1,11 +1,7 @@ package org.jeecg.modules.mdc.vo; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; import java.util.List; /** @@ -14,10 +10,8 @@ */ @Data public class MdcProcessQuantityVo { @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") @DateTimeFormat(pattern = "yyyy-MM-dd") @ApiModelProperty(value = "日期") private Date efficientDate; private String efficientDate; private Integer processQuantity; private String equipmentId; private String startTime;