ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.model;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
/**
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 *
 */
@Data
public class EmployeeModel {
    @Excel(name = "工号", isImportField = "true")
    @Schema(description ="工号")
    private String enCode;
    @Excel(name = "姓名", isImportField = "true")
    @Schema(description ="姓名")
    private String fullName;
    @Excel(name = "性别", isImportField = "true")
    @Schema(description ="性别")
    private String gender;
    @Excel(name = "部门", isImportField = "true")
    @Schema(description ="部门")
    private String departmentName;
    @Excel(name = "职务", isImportField = "true")
    @Schema(description ="职务")
    private String positionName;
    @Excel(name = "用工性质", isImportField = "true")
    @Schema(description ="用工性质")
    private String workingNature;
    @Excel(name = "身份证号", isImportField = "true")
    @Schema(description ="身份证号")
    private String idNumber;
    @Excel(name = "联系电话", isImportField = "true")
    @Schema(description ="联系电话")
    private String telephone;
    @Excel(name = "参加工作", isImportField = "true")
    @Schema(description ="参加工作")
    private String attendWorkTime;
    @Excel(name = "出生年月", isImportField = "true")
    @Schema(description ="出生年月")
    private String birthday;
    @Excel(name = "最高学历", isImportField = "true")
    @Schema(description ="最高学历")
    private String education;
    @Excel(name = "所学专业", isImportField = "true")
    @Schema(description ="所学专业")
    private String major;
    @Excel(name = "毕业院校", isImportField = "true")
    @Schema(description ="毕业院校")
    private String graduationAcademy;
    @Excel(name = "毕业时间", isImportField = "true")
    @Schema(description ="毕业时间")
    private String graduationTime;
    @Schema(description ="字表数据")
    private List<EmployeeModel> list;
    @Schema(description ="创建时间")
    private String creatorTime;
    private boolean type;
    private String fileName;
}