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
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 UmsUserDto1 {
    @ExcelProperty(value = "用户ID", index = 0)
    private Long id;
 
    @ExcelProperty(value = "用户名称", index = 1)
    private String username;
 
    @ExcelProperty(value = "所属姓名", index = 2)
    private String nickName;
 
    @ExcelProperty(value = "联系方式", index = 3)
    private String mobile;
 
    @ExcelProperty(value = "所属角色", index = 4)
    private String roles;
 
    @ExcelProperty(value = "所属部门", index = 5)
    private String depart;
 
    @ExcelProperty(value = "所属职务", index = 6)
    private String jobTitle;
 
    @ExcelProperty(value = "创建时间", index = 7)
    private String createTime;
 
    @ExcelProperty(value = "是否启用", index = 8)
    private String status;
}