自动化立体仓库 - WCS系统
Junjie
2023-05-18 5ac625f324a7bb1656b319348cabfd13467467ef
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
package com.zy.common.utils.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
 
/**
 * ExcelProperty中的value和index只要有一个对上就能解析
 * Created by vincent on 2019-11-25
 */
public class EnInitData {
 
    @ExcelProperty(value = "企业名称", index = 0)
    private String enName;
 
    @ExcelProperty(value = "统一社会信用代码", index = 1)
    private String code;
 
    @ExcelProperty(value = "主管税务机关", index = 7)
    private String office;
 
    @ExcelProperty(value = "负责人电话", index = 10)
    private String mobile;
 
    public String getEnName() {
        return enName;
    }
 
    public void setEnName(String enName) {
        this.enName = enName;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getOffice() {
        return office;
    }
 
    public void setOffice(String office) {
        this.office = office;
    }
 
    public String getMobile() {
        return mobile;
    }
 
    public void setMobile(String mobile) {
        this.mobile = mobile;
    }
}