1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.example.excel;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| @Data
| public class UserImportExcel {
|
| @ExcelProperty("用户名")
| private String username;
|
| @ExcelProperty("真实姓名")
| private String realName;
|
| @ExcelProperty("邮箱")
| private String email;
|
| @ExcelProperty("手机号")
| private String phone;
|
| @ExcelProperty("部门编码")
| private String deptCode;
| }
|
|