From 05a54025b1ae843f9d21a4450ec05c9e420e7f24 Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期四, 28 九月 2023 10:47:37 +0800 Subject: [PATCH] bug修改 --- exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTeacherRespDTO.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTeacherRespDTO.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTeacherRespDTO.java new file mode 100644 index 0000000..75304f4 --- /dev/null +++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTeacherRespDTO.java @@ -0,0 +1,56 @@ +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 GetTeacherRespDTO 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<GetTeacherOperateTypesRespDTO> operateTypes; + + //状态 + private Byte status; + +} \ No newline at end of file -- Gitblit v1.9.2