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

diff --git a/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExaminerOperateTypesRespDTO.java b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExaminerOperateTypesRespDTO.java
new file mode 100644
index 0000000..85f3d92
--- /dev/null
+++ b/exam-system/src/main/java/com/gkhy/exam/coalmine/model/dto/resp/GetExaminerOperateTypesRespDTO.java
@@ -0,0 +1,34 @@
+package com.gkhy.exam.coalmine.model.dto.resp;
+
+import lombok.Data;
+
+import java.io.Serializable;
+
+/**
+ * @author Mr.huang
+ * @decription
+ * @date 2023/9/12 13:14
+ */
+@Data
+public class GetExaminerOperateTypesRespDTO implements Serializable {
+
+    private Long id;
+
+    //老师管理id
+    private Long teacherManageId;
+
+    //操作类型
+    private Long operateTypeId;
+
+    //资格类型
+    private String qualificationType;
+
+    //作业类别
+    private String jobCategory;
+
+    //操作项目
+    private String operationItems;
+
+    private Integer type;
+
+}
\ No newline at end of file

--
Gitblit v1.9.2