liyong
5 天以前 44e649f3283460a115cfae5ea34821cdfb751d66
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.ruoyi.staff.dto;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.staff.pojo.StaffLeave;
import lombok.Data;
 
@Data
public class StaffLeaveDto extends StaffLeave {
    @Excel(name = "状态", readConverterExp = "0=离职,1=在职", sort = 1)
    private Integer staffState;
 
    /**
     * 员工编号
     */
    @Excel(name = "员工编号", type = Excel.Type.EXPORT, cellType = Excel.ColumnType.STRING, sort = 2)
    private String staffNo;
 
    /**
     * 员工姓名
     */
    @Excel(name = "员工姓名", sort = 3)
    private String staffName;
 
    /**
     * 性别
     */
    @Excel(name = "性别", sort = 4)
    private String sex;
 
    /**
     * 籍贯
     */
    @Excel(name = "籍贯", sort = 5)
    private String nativePlace;
 
    /**
     * 家庭住址
     */
    @Excel(name = "家庭住址", sort = 6)
    private String adress;
 
    /**
     * 岗位
     */
    @Excel(name = "部门",sort = 7)
    private String deptName;
 
    /**
     * 岗位
     */
    @Excel(name = "岗位",sort = 8)
    private String postName;
 
    /**
     * 第一学历
     */
    @Excel(name = "第一学历", sort = 9)
    private String firstStudy;
 
    /**
     * 专业
     */
    @Excel(name = "专业", sort = 10)
    private String profession;
 
    /**
     * 身份证号码
     */
    @Excel(name = "身份证号码", sort = 11)
    private String identityCard;
 
    /**
     * 年龄
     */
    @Excel(name = "年龄", sort = 12)
    private String age;
 
    /**
     * 联系电话
     */
    @Excel(name = "联系电话", sort = 13)
    private String phone;
 
    /**
     * 紧急联系人
     */
    @Excel(name = "紧急联系人", sort = 14)
    private String emergencyContact;
 
    /**
     * 紧急联系人电话
     */
    @Excel(name = "紧急联系人电话", sort = 15)
    private String emergencyContactPhone;
 
    private int count;
 
    /**
     * 离职原因文本
     */
    private String reasonText;
}