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/GetTrainDataRespDTO.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTrainDataRespDTO.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTrainDataRespDTO.java
new file mode 100644
index 0000000..1a0ac0b
--- /dev/null
+++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetTrainDataRespDTO.java
@@ -0,0 +1,31 @@
+package com.gkhy.exam.coalmine.model.dto.resp;
+
+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 GetTrainDataRespDTO 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