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