chenlu
8 天以前 f0eda3267b919bbfa7a23b73c990f557dce4f43f
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
43
44
45
46
47
48
49
50
package com.example.erp.dto.pp;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class TeamOutputDTO {
    @ExcelProperty("报工时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private LocalDateTime reportingWorkTime;
    @ExcelProperty("报工工序")
    private String thisProcess;
    @ExcelProperty("报工班组")
    private String teamsGroupsName;
    @ExcelProperty("项目名称")
    private String project;
    @ExcelProperty("流程卡号")
    private String processId;
    @ExcelProperty("序号")
    private String orderNumber;
    @ExcelProperty("宽")
    private String width;
    @ExcelProperty("高")
    private String height;
//    @ExcelProperty("形状")
//    private String shape;
//    @ExcelProperty("厚度")
//    private String thickness;
    @ExcelProperty("磨边类型")
    private String edgingType;
    @ExcelProperty("完工数量")
    private String completedQuantity;
    @ExcelProperty("完工面积")
    private String area;
    @ExcelProperty("产品名称")
    private String productName;
    @ExcelProperty("编号")
    private String code;
    @ExcelProperty("审核人")
    private String reviewed;
    @ExcelProperty("审核时间")
    private String examineTime;
    @ExcelProperty("在制品名称")
    private String workProcessName;
    @ExcelProperty("报工设备")
    private String deviceName;
}