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
| package com.gkhy.exam.common.excel;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Getter;
| import lombok.Setter;
|
| @Getter
| @Setter
| public class StudentExcelData {
| @ExcelProperty("用户序号")
| private String index;
| @ExcelProperty("公司名称")
| private String companyName;
|
| @ExcelProperty("姓名")
| private String name;
|
| @ExcelProperty("用户性别")
| private String sex;
|
| @ExcelProperty("身份证号")
| private String idNo;
|
| @ExcelProperty("手机号码")
| private String phone;
|
| @ExcelProperty("密码")
| private String password;
|
| @ExcelProperty("部门名称")
| private String deptName;
|
| @ExcelProperty("是否是部门级账号")
| private String isDept;
|
| @ExcelProperty("车间名称")
| private String workShopName;
|
| @ExcelProperty("是否是车间级账号")
| private String isWork;
|
| @ExcelProperty("岗位")
| private String post;
|
| @ExcelProperty("职务")
| private String duty;
|
| @ExcelProperty("备注")
| private String remark;
|
| }
|
|