许鹏程
2024-01-15 09799f77f565a8daa22e50d8f2e1a900463b400e
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package com.product.data.center.entity;
 
 
import java.util.Date;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
 
import lombok.EqualsAndHashCode;
import lombok.ToString;
 
/**
 *     SN追溯生成报表实体
 * @author du
 *
 */
@EqualsAndHashCode
public class TraceSNItemEntity {
 
    @ExcelProperty("动作类型")
    private String actionType;
    
    @ExcelProperty("料号")
    private String keyPartNo;
    
    @ExcelProperty("*物料SN")
    private String itemSN;
    
    @ExcelProperty("品名")
    private String assistantToolName;
    
    @ExcelProperty("规格")
    private String itemSpec;
    
    @ExcelProperty("数量")
    private Integer itemCount;
    
    @DateTimeFormat("yyyy年MM月dd日 HH:mm:ss")
    @ExcelProperty("作业时间")
    private Date loadTime;
    
    @ExcelProperty("作业员")
    private String empName;
    
    @ExcelProperty("工作中心")
    private String stationName;
 
    public String getActionType() {
        return actionType;
    }
 
    public void setActionType(String actionType) {
        this.actionType = actionType;
    }
 
    public String getKeyPartNo() {
        return keyPartNo;
    }
 
    public void setKeyPartNo(String keyPartNo) {
        this.keyPartNo = keyPartNo;
    }
 
    public String getItemSN() {
        return itemSN;
    }
 
    public void setItemSN(String itemSN) {
        this.itemSN = itemSN;
    }
 
    public String getAssistantToolName() {
        return assistantToolName;
    }
 
    public void setAssistantToolName(String assistantToolName) {
        this.assistantToolName = assistantToolName;
    }
 
    public String getItemSpec() {
        return itemSpec;
    }
 
    public void setItemSpec(String itemSpec) {
        this.itemSpec = itemSpec;
    }
 
    public Integer getItemCount() {
        return itemCount;
    }
 
    public void setItemCount(Integer itemCount) {
        this.itemCount = itemCount;
    }
 
    public Date getLoadTime() {
        return loadTime;
    }
 
    public void setLoadTime(Date loadTime) {
        this.loadTime = loadTime;
    }
 
    public String getEmpName() {
        return empName;
    }
 
    public void setEmpName(String empName) {
        this.empName = empName;
    }
 
    public String getStationName() {
        return stationName;
    }
 
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
 
    @Override
    public String toString() {
        return "TraceSNItemEntity [actionType=" + actionType + ", keyPartNo=" + keyPartNo + ", itemSN=" + itemSN
                + ", assistantToolName=" + assistantToolName + ", itemSpec=" + itemSpec + ", itemCount=" + itemCount
                + ", loadTime=" + loadTime + ", empName=" + empName + ", stationName=" + stationName + "]";
    }
    
}