baizonghao
2023-03-18 e69d41203f2171dce23231a09e17c3731b41dbea
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
package com.ycl.dto.user;
 
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
 
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class UmsAdminParamDto {
 
    @ExcelProperty(value = "用户名", index = 0)
    private String username;
 
    @ExcelProperty(value = "密码", index = 1)
    private String password;
 
    @ExcelProperty(value = "真实姓名", index = 2)
    private String nickName;
 
    @ExcelProperty(value = "性别,输入:男,女", index = 3)
    private String sex;
 
    @ExcelProperty(value = "党员,输入:是,否",index = 4)
    private String isDy;
 
    @ExcelProperty(value = "手机号码", index = 5)
    private String mobile;
 
    @ExcelProperty(value = "邮箱", index = 6)
    private String email;
 
    @ExcelProperty(value = "角色", index = 7)
    private String role;
 
    @ExcelProperty(value = "用户类型", index = 8)
    private String userType;
 
    @ExcelProperty(value = "所属部门", index = 9)
    private String department;
 
    @ExcelProperty(value = "当前职务", index = 10)
    private String jobTitle;
}