| | |
| | | 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; |
| | | |
| | |
| | | @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) |