liuyu
21 小时以前 6eef0b6730d940ef44e0f66dd8e7d178f1cd2d1f
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
package jnpf.tmsEntity.trainrecord;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
public class TmsTrainRecordListVO {
 
    @Schema(description = "档案ID")
    private String id;
 
    @Schema(description = "档案编号")
    private String archiveNo;
 
    @Schema(description = "进岗时间 yyyy-MM-dd")
    private String postDate;
 
    @Schema(description = "姓名")
    private String userName;
 
    @Schema(description = "部门")
    private String deptName;
 
    @Schema(description = "岗位")
    private String postName;
 
    @Schema(description = "兼职岗位")
    private String partPostName;
 
    @Schema(description = "专业")
    private String major;
 
    @Schema(description = "学历")
    private String education;
 
    @Schema(description = "技术职称")
    private String techTitle;
 
    @Schema(description = "入职时间")
    private String hireDate;
 
    @Schema(description = "离职日期")
    private String leaveDate;
}