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
| package com.consum.base.pojo;
|
| import com.alibaba.excel.annotation.ExcelProperty;
|
| import lombok.Data;
|
| /**
| * @author asus
| * @version 1.0
| * @description: 导入用户参数
| * @date 2023/12/6 11:00
| */
| @Data
| public class ImportUserParam {
|
| @ExcelProperty("用户姓名")
| private String userName;
| @ExcelProperty("用户编号")
| private String userCode;
| @ExcelProperty("手机号")
| private String userPhone;
| @ExcelProperty("性别(1男,2女)")
| private Integer sex;
| @ExcelProperty("电子邮箱")
| private String email;
| @ExcelProperty("顺序号")
| private Long seq;
| @ExcelProperty("角色名称")
| private String roleName;
|
| }
|
|