From 28231163c688c379a688ce6878a1126ee218aa52 Mon Sep 17 00:00:00 2001 From: huangzhen <867217663@qq.com> Date: 星期二, 26 九月 2023 16:53:48 +0800 Subject: [PATCH] 煤矿功能 --- 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