王佳豪
2021-05-06 b548ff3ac8e3a12bd6e5c95ddd629798b699bb0e
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package com.zy.common.utils.excel.locNomal;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ExcelIgnoreUnannotated
public class LocNormalExcel {
    @ExcelProperty(index = 0)
    private String matnr;
    @ExcelProperty(index = 1)
    private String maktx;
    @ExcelProperty(index = 2)
    private String lgnum;
    @ExcelProperty(index = 3)
    private String type;
    @ExcelProperty(index = 4)
    private String mnemonic;
    @ExcelProperty(index = 5)
    private String supplier;
    @ExcelProperty(index = 6)
    private String warehouse;
    @ExcelProperty(index = 7)
    private String brand;
    @ExcelProperty(index = 8)
    private BigDecimal anfme;
    @ExcelProperty(index = 9)
    private String altme;
    @ExcelProperty(index = 10)
    private String bname;
    @ExcelProperty(index = 11)
    private String memo;
 
    private Long appeUser;
 
    private Date appeTime;
    @ExcelProperty(index = 12)
    private String state;
 
    public LocNormalExcel() {
 
    }
 
    public LocNormalExcel(String matnr, String maktx, String lgnum, String type, String mnemonic, String supplier, String warehouse, String brand, BigDecimal anfme, String altme, String bname, String memo, Long appeUser, Date appeTime,String state) {
        this.matnr = matnr;
        this.maktx = maktx;
        this.lgnum = lgnum;
        this.type = type;
        this.mnemonic = mnemonic;
        this.supplier = supplier;
        this.warehouse = warehouse;
        this.brand = brand;
        this.anfme = anfme;
        this.altme = altme;
        this.bname = bname;
        this.memo = memo;
        this.appeUser = appeUser;
        this.appeTime = appeTime;
        this.state = state;
    }
 
    public String getMatnr() {
        return matnr;
    }
 
    public void setMatnr(String matnr) {
        this.matnr = matnr;
    }
 
    public String getMaktx() {
        return maktx;
    }
 
    public void setMaktx(String maktx) {
        this.maktx = maktx;
    }
 
    public String getLgnum() {
        return lgnum;
    }
 
    public void setLgnum(String lgnum) {
        this.lgnum = lgnum;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getMnemonic() {
        return mnemonic;
    }
 
    public void setMnemonic(String mnemonic) {
        this.mnemonic = mnemonic;
    }
 
    public String getSupplier() {
        return supplier;
    }
 
    public void setSupplier(String supplier) {
        this.supplier = supplier;
    }
 
    public String getWarehouse() {
        return warehouse;
    }
 
    public void setWarehouse(String warehouse) {
        this.warehouse = warehouse;
    }
 
    public String getBrand() {
        return brand;
    }
 
    public void setBrand(String brand) {
        this.brand = brand;
    }
 
    public BigDecimal getAnfme() {
        return anfme;
    }
 
    public void setAnfme(BigDecimal anfme) {
        this.anfme = anfme;
    }
 
    public String getAltme() {
        return altme;
    }
 
    public void setAltme(String altme) {
        this.altme = altme;
    }
 
    public String getBname() {
        return bname;
    }
 
    public void setBname(String bname) {
        this.bname = bname;
    }
 
    public String getMemo() {
        return memo;
    }
 
    public void setMemo(String memo) {
        this.memo = memo;
    }
 
    public Long getAppeUser() {
        return appeUser;
    }
 
    public void setAppeUser(Long appeUser) {
        this.appeUser = appeUser;
    }
 
    public Date getAppeTime() {
        return appeTime;
    }
 
    public void setAppeTime(Date appeTime) {
        this.appeTime = appeTime;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
}