浏览代码

实体类

baifalu 3 年之前
父节点
当前提交
66f0719e9d
共有 1 个文件被更改,包括 43 次插入0 次删除
  1. 43 0
      src/main/java/com/jeeplus/modules/identification/entity/AuditTemplateType.java

+ 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;
+    }
+}