mitao
2025-01-17 afa0dbb4f54e7244835dd67ec33c3e545f122f71
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
48
49
50
51
package com.ruoyi.system.domain.dto;
 
import com.ruoyi.common.core.annotation.Excel;
import lombok.Data;
 
/**
 * @ClassName MgtSysStaffImportDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/8/18 15:56
 * @Version 1.0
 */
@Data
public class MgtSysStaffImportDto {
 
    @Excel(name = "姓名")
    private String staffName;
 
    @Excel(name = "帐号")
    private String userName;
 
    @Excel(name = "别名")
    private String nickName;
 
    @Excel(name = "职务")
    private String post;
 
    @Excel(name = "部门")
    private String department;
 
    @Excel(name = "性别")
    private String gender;
 
    @Excel(name = "手机")
    private String mobile;
 
    @Excel(name = "座机")
    private String phone;
 
    @Excel(name = "个人邮箱")
    private String email;
 
    @Excel(name = "地址")
    private String address;
 
    @Excel(name = "视频号")
    private String videoNumber;
 
    @Excel(name = "禁用状态")
    private String userStatus;
}