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/constant/UserBaseConsts.java | 37 +++++++++++++++++++++++++------------
1 files changed, 25 insertions(+), 12 deletions(-)
diff --git a/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/constant/UserBaseConsts.java b/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/constant/UserBaseConsts.java
index 7a2a991..a04a141 100644
--- a/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/constant/UserBaseConsts.java
+++ b/dyh-service/dyh-base/src/main/java/cn/huge/module/cust/constant/UserBaseConsts.java
@@ -61,32 +61,45 @@
* 是否参与自动调度,0:否,1:是
*/
public static final int DISP_STATUS_0 = 0;
- public static final int DISP_STATUS_2 = 1;
+ public static final int DISP_STATUS_1 = 1;
/**
* ========================================== 单位部门 ==========================================
*/
/**
- * 组织级别,0:政法委,1:市级,2:区级,3:镇街级,4:村居级
+ * 组织级别,1:市级,2:区级,3:镇街级,4:村居级
*/
- public static final int UNIT_GRADE_0 = 0;
public static final int UNIT_GRADE_1 = 1;
public static final int UNIT_GRADE_2 = 2;
public static final int UNIT_GRADE_3 = 3;
public static final int UNIT_GRADE_4 = 4;
/**
- * 组织类型,0:政法委,1:综治中心,2:直属部门,3:法院,4:行专业调委会,5:企事业调委会,6:演示测试,9:其他
+ * 组织类型,
+ * 调解组织类型(101:综治中心,102:直属部门,103:村居社区,104:行专业调委会,105:企事业调委会,106:演示测试),
+ * 行政组织类型(201:政法委,202:其他)
*/
- public static final int UNIT_TYPE_0 = 0;
- public static final int UNIT_TYPE_1 = 1;
- public static final int UNIT_TYPE_2 = 2;
- public static final int UNIT_TYPE_3 = 3;
- public static final int UNIT_TYPE_4 = 4;
- public static final int UNIT_TYPE_5 = 5;
- public static final int UNIT_TYPE_6 = 6;
- public static final int UNIT_TYPE_9 = 9;
+ public static final int UNIT_TYPE_101 = 101;
+ public static final int UNIT_TYPE_102 = 102;
+ public static final int UNIT_TYPE_103 = 103;
+ public static final int UNIT_TYPE_104 = 104;
+ public static final int UNIT_TYPE_105 = 105;
+ public static final int UNIT_TYPE_106 = 106;
+ public static final int UNIT_TYPE_201 = 201;
+ public static final int UNIT_TYPE_202 = 202;
+
+ /**
+ * 是否是法院,0:否,1:是
+ */
+ public static final int COURT_STATUS_0 = 0;
+ public static final int COURT_STATUS_1 = 1;
+
+ /**
+ * 组织职能,1:调解组织,2:行政组织
+ */
+ public static final int UNIT_FUN_1 = 1;
+ public static final int UNIT_FUN_2 = 2;
}
/**
* -------------------_ooOoo_-------------------
--
Gitblit v1.8.0