baifalu 3 rokov pred
rodič
commit
66f0719e9d

+ 43 - 0
src/main/java/com/jeeplus/modules/identification/entity/AuditTemplateType.java

@@ -0,0 +1,43 @@
+package com.jeeplus.modules.identification.entity;
+
+import com.jeeplus.common.persistence.DataEntity;
+
+import javax.swing.*;
+
+/**
+ * @Author bai
+ * Date on 2022/3/18  8:41
+ * Description:审核意见
+ */
+public class AuditTemplateType extends DataEntity<AuditTemplateType> {
+
+    private String identification; //模板标识
+
+    private String flowPath; //流程
+
+    private String module; //模块
+
+    public String getIdentification() {
+        return identification;
+    }
+
+    public void setIdentification(String identification) {
+        this.identification = identification;
+    }
+
+    public String getFlowPath() {
+        return flowPath;
+    }
+
+    public void setFlowPath(String flowPath) {
+        this.flowPath = flowPath;
+    }
+
+    public String getModule() {
+        return module;
+    }
+
+    public void setModule(String module) {
+        this.module = module;
+    }
+}