lyh
5 天以前 54f239669575cedfdbdf28e38d0e9619a610bf95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;
 
/**
 * @author: LiuS
 * @create: 2023-07-17 15:08
 */
@Data
public class MdcProcessQuantityDto {
    private String id;
    @Excel(name = "设备编号", width = 15)
    private String equipmentId;
    @Excel(name = "设备名称", width = 20)
    private String equipmentName;
    @Excel(name = "零件号", width = 15)
    private String partsCode;
    @Excel(name = "批次号", width = 15)
    private String batchCode;
    @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 Integer processQuantity;
    @Excel(name = "时长(分钟)", width = 15)
    private Integer duration;
    @Excel(name = "备注", width = 15)
    private String remark;
    private String createBy;
    private Date createTime;
    private String updateBy;
    private Date updateTime;
}