From f6efc8f177cac9aa04a4cd4a99b0d39171fe4e79 Mon Sep 17 00:00:00 2001
From: zhouxiantao <1026371446@qq.com>
Date: Thu, 24 Oct 2024 19:47:04 +0800
Subject: [PATCH] fix:解纷态势-兼容化解结果和状态不一致数据
---
dyh-service/dyh-base/src/main/java/cn/huge/module/cust/dto/CtUnitDTO.java | 49 +++++++++++++++++++++++++++++++++++++++++++------
1 files changed, 43 insertions(+), 6 deletions(-)
diff --git a/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/dto/CtUnitDTO.java b/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/dto/CtUnitDTO.java
index 7624cfb..d5d550a 100644
--- a/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/dto/CtUnitDTO.java
+++ b/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/dto/CtUnitDTO.java
@@ -40,14 +40,26 @@
private Integer unitGrade;
/**
+ * 组织职能,1:调解组织,2:行政组织
+ */
+ private Integer unitFun;
+
+ /**
+ * 组织类型,
+ * 调解组织类型(101:综治中心,102:直属部门,103:村居社区,104:行专业调委会,105:企事业调委会,106:演示测试),
+ * 行政组织类型(201:政法委,202:其他)
+ */
+ private Integer unitType;
+
+ /**
+ * 是否是法院,0:否,1:是
+ */
+ private Integer courtStatus;
+
+ /**
* 组织名称
*/
private String unitName;
-
- /**
- * 组织类型,0:政法委,1:综治中心,2:直属部门,3:法院,4:行专业调委会,5:企事业调委会,6:演示测试,9:其他
- */
- private Integer unitType;
/**
* 组织机构代码
@@ -175,7 +187,7 @@
private Integer dispStatus;
/**
- * 删除状态,0:已删除,1:未删除
+ * 删除状态,0:未删除,1:已删除
*/
@TableLogic
private Integer deleteStatus;
@@ -195,5 +207,30 @@
*/
private Date updateTime;
+ /**
+ * 邮政编码
+ */
+ private String postalCode;
+
+ /**
+ * 联系电话
+ */
+ private String telephone;
+
+ /**
+ * 办公时间,周
+ */
+ private String workTimeWeek;
+
+ /**
+ * 办公时间,上午
+ */
+ private String workTimeAm;
+
+ /**
+ * 办公时间,下午
+ */
+ private String workTimePm;
+
}
--
Gitblit v1.8.0