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
| 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;
| }
|
|