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
package jnpf.tmsEntity.archive;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 个人培训档案-基本信息
 */
@Data
public class TmsTrainArchiveProfileVO {
 
    @Schema(description = "档案ID")
    private String id;
 
    @Schema(description = "档案编号")
    private String archiveNo;
 
    @Schema(description = "建档时间 yyyy-MM-dd")
    private String archiveDate;
 
    @Schema(description = "员工ID")
    private String userId;
 
    @Schema(description = "员工姓名")
    private String userName;
 
    @Schema(description = "所属部门")
    private String deptName;
 
    @Schema(description = "主要岗位")
    private String mainPostName;
 
    @Schema(description = "兼职岗位")
    private String partPostName;
}