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