| 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
 | | /** |  |  * Copyright (c) 2018 人人开源 All rights reserved. |  |  * |  |  * https://www.renren.io |  |  * |  |  * 版权所有,侵权必究! |  |  */ |  |   |  | package com.zt.modules.sys.excel; |  |   |  | import com.alibaba.excel.annotation.ExcelProperty; |  | import lombok.Data; |  |   |  | /** |  |  * 用户管理 |  |  * |  |  * @author Mark sunlightcs@gmail.com |  |  * @since 1.0.0 |  |  */ |  | @Data |  | public class SysUserExcel { |  |     @ExcelProperty("用户名") |  |     private String username; |  |     @ExcelProperty("姓名") |  |     private String realName; |  |     @ExcelProperty("性别") |  |     private Integer gender; |  |     @ExcelProperty("邮箱") |  |     private String email; |  |     @ExcelProperty("手机号") |  |     private String mobile; |  |     @ExcelProperty("部门名称") |  |     private String deptName; |  |     @ExcelProperty("状态") |  |     private Integer status; |  |     @ExcelProperty("备注") |  |     private String remark; |  |   |  | } | 
 |