package com.gkhy.exam.coalmine.model.dto.resp;
|
|
import com.ruoyi.file.entity.AttachmentInfo;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @author Mr.huang
|
* @decription
|
* @date 2023/9/12 13:14
|
*/
|
@Data
|
public class GetExaminerRespDTO implements Serializable {
|
|
private Long id;
|
|
//姓名
|
private String name;
|
|
//性别
|
private Integer sex;
|
|
//身份证
|
private String code;
|
|
//手机号
|
private String mobilePhone;
|
|
//职称
|
private Long jobTitle;
|
|
//最高学历
|
private Long eduLevel;
|
|
//过期时间
|
private LocalDateTime expiredTime;
|
|
//是否为煤矿:0为非,1是
|
private Byte isCm;
|
|
//描述
|
private String description;
|
|
private AttachmentInfo photoAttachment;
|
|
private AttachmentInfo qaAttachment;
|
|
private List<GetExaminerOperateTypesRespDTO> operateTypes;
|
|
//状态
|
private Byte status;
|
|
}
|