Jelajahi Sumber

批量审批表

guarantee-lsq 1 tahun lalu
induk
melakukan
5ecfac63ec

+ 3 - 0
platform-dao/src/main/java/com/platform/dao/dto/custom/CustomFormDTO.java

@@ -86,4 +86,7 @@ public class CustomFormDTO extends BaseDTO implements Serializable {
 
     private String name; // 表单名称
 
+    private Integer status; // 表单状态 0 待发布 1 已发布 2 已废弃
+
+    private Integer category; // 分类  category_type  设备 维修 采购 备件 仓库 巡检 点检  保养
 }

+ 4 - 0
platform-dao/src/main/java/com/platform/dao/entity/custom/CustomForm.java

@@ -75,4 +75,8 @@ public class CustomForm implements Serializable{
     private DataScope dataScope;
 
     private String name; // 表单名称
+
+    private Integer status; // 表单状态 0 待发布 1 已发布 2 已废弃
+
+    private Integer category; // 分类  category_type  设备 维修 采购 备件 仓库 巡检 点检  保养
 }

+ 4 - 0
platform-dao/src/main/java/com/platform/dao/vo/query/custom/CustomFormVO.java

@@ -65,4 +65,8 @@ public class CustomFormVO extends BaseVO implements Serializable {
     private LocalDateTime updateTime;
 
     private String name; // 表单名称
+
+    private Integer status; // 表单状态 0 待发布 1 已发布 2 已废弃
+
+    private Integer category; // 分类  category_type  设备 维修 采购 备件 仓库 巡检 点检  保养
 }