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/GetExamDataRespDTO.java | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExamDataRespDTO.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExamDataRespDTO.java new file mode 100644 index 0000000..13ac950 --- /dev/null +++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExamDataRespDTO.java @@ -0,0 +1,32 @@ +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/13 14:23 + */ +@Data +public class GetExamDataRespDTO implements Serializable { + + private Long id; + + private LocalDateTime reportTime; + + private Long districtId; + + private String examCenter; + + private String excType; + + //是否为煤矿:0为非,1是 + private Byte isCm; + + private List<AttachmentInfoRespDTO> attachmentInfos; +} \ No newline at end of file -- Gitblit v1.9.2