From 39b95db8ec9d114947387eab76cb83ece2063cc8 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Thu, 29 Aug 2024 09:51:27 +0800 Subject: [PATCH] 1、纠纷相关枚举类修改 2、新增附件业务类型枚举类 --- dyh-service/dyh-base/src/main/java/cn/huge/module/constant/CaseBaseConstsEnum.java | 114 +++----------------------------------------------------- 1 files changed, 7 insertions(+), 107 deletions(-) diff --git a/dyh-service/dyh-base/src/main/java/cn/huge/module/constant/CaseBaseConstsEnum.java b/dyh-service/dyh-base/src/main/java/cn/huge/module/constant/CaseBaseConstsEnum.java index 91df76a..f3e9740 100644 --- a/dyh-service/dyh-base/src/main/java/cn/huge/module/constant/CaseBaseConstsEnum.java +++ b/dyh-service/dyh-base/src/main/java/cn/huge/module/constant/CaseBaseConstsEnum.java @@ -11,31 +11,18 @@ public enum CaseBaseConstsEnum { /** - * 申请渠道,22_00001-1:来访登记,22_00001-2:小程序,22_00001-3:其他渠道, + * 事项来源,22_00001-1:大厅来访,22_00001-2:线上来访 */ - CASE_CANAL_1("22_00001-1", "来访登记"), - CASE_CANAL_2("22_00001-2", "小程序"), - - /** - * 签收意见,22_00010-1:同意签收,22_00010-2:拒绝签收 - */ - SIGN_RESULT_1("22_00010-1", "签收受理"), - SIGN_RESULT_2("22_00010-2", "拒绝签收"), - - /** - * 纠纷审查结果,22_00037-1:签收受理,22_00037-2:拒绝签收,22_00037-3:退回申请人,22_00037-4:不予受理 - */ - AUDIT_RESULT_1("22_00037-1", "签收受理"), - AUDIT_RESULT_2("22_00037-2", "拒绝签收"), - AUDIT_RESULT_3("22_00037-3", "退回申请人"), - AUDIT_RESULT_4("22_00037-3", "不予受理"), + CASE_CANAL_1("22_00001-1", "大厅来访"), + CASE_CANAL_2("22_00001-2", "线上来访"), /** * 当事人地位 */ - PERSON_TYPE_1("15_020008-1", "申请人"), - PERSON_TYPE_2("15_020008-2", "被申请人"), - PERSON_TYPE_5("15_020008-5", "第三人"), + PERSON_TYPE_1("15_020008-1", "申请方当事人"), + PERSON_TYPE_2("15_020008-2", "被申请方当事人"), + PERSON_TYPE_3("24_00006-1", "申请方代理人"), + PERSON_TYPE_4("24_00006-2", "被申请方代理人"), /** * 当事人类型类型 @@ -72,17 +59,6 @@ CARD_TYPE_16("09_00015-16", "台湾居民来往大陆通行证"), CARD_TYPE_255("09_00015-255", "其他"), CARD_TYPE_17("09_00015-17", "当事人未提供证件信息"), - - /** - * 纠纷进度,22_00006-1:待受理,22_00006-2:待调解,22_00006-3:调解中,22_00006-4:调解结束,22_00006-5:退回申请人,22_00006-6:不予受理,22_00006-7:申请人撤回 - */ - CASE_PROCESS_1("22_00006-1", "待受理"), - CASE_PROCESS_2("22_00006-2", "待调解"), - CASE_PROCESS_3("22_00006-3", "调解中"), - CASE_PROCESS_4("22_00006-4", "调解结束"), - CASE_PROCESS_5("22_00006-5", "退回申请人"), - CASE_PROCESS_6("22_00006-6", "不予受理"), - CASE_PROCESS_7("22_00006-7", "申请人撤回"), /** * 调解结果 @@ -151,82 +127,6 @@ if (constantEnum.getDes().equals(des)) { return constantEnum.index; } - } - return null; - } - - /** - * 静态方法4 - * @param index - * @return - */ - public static String getCaseWxProcess(String index) { - // 微信纠纷进度,1:待受理,2:待调解,3:调解中,4:调解结束,5:退回申请人,6:不予受理,7:申请人撤回 - String WX_PROCESS_1 = "1"; - String WX_PROCESS_2 = "2"; - String WX_PROCESS_3 = "3"; - String WX_PROCESS_4 = "4"; - String WX_PROCESS_5 = "5"; - String WX_PROCESS_6 = "6"; - String WX_PROCESS_7 = "7"; - if (CASE_PROCESS_1.index.equals(index)){ - return WX_PROCESS_1; - } - if (CASE_PROCESS_2.index.equals(index)){ - return WX_PROCESS_2; - } - if (CASE_PROCESS_3.index.equals(index)){ - return WX_PROCESS_3; - } - if (CASE_PROCESS_4.index.equals(index)){ - return WX_PROCESS_4; - } - if (CASE_PROCESS_5.index.equals(index)){ - return WX_PROCESS_5; - } - if (CASE_PROCESS_6.index.equals(index)){ - return WX_PROCESS_6; - } - if (CASE_PROCESS_7.index.equals(index)){ - return WX_PROCESS_7; - } - return null; - } - - /** - * 静态方法4 - * @param index - * @return - */ - public static String getCaseProcess(String index) { - // 微信纠纷进度,1:待受理,2:待调解,3:调解中,4:调解结束,5:退回申请人,6:不予受理,7:申请人撤回 - String WX_PROCESS_1 = "1"; - String WX_PROCESS_2 = "2"; - String WX_PROCESS_3 = "3"; - String WX_PROCESS_4 = "4"; - String WX_PROCESS_5 = "5"; - String WX_PROCESS_6 = "6"; - String WX_PROCESS_7 = "7"; - if (WX_PROCESS_1.equals(index)){ - return CASE_PROCESS_1.index; - } - if (WX_PROCESS_2.equals(index)){ - return CASE_PROCESS_2.index; - } - if (WX_PROCESS_3.equals(index)){ - return CASE_PROCESS_3.index; - } - if (WX_PROCESS_4.equals(index)){ - return CASE_PROCESS_4.index; - } - if (WX_PROCESS_5.equals(index)){ - return CASE_PROCESS_5.index; - } - if (WX_PROCESS_6.equals(index)){ - return CASE_PROCESS_6.index; - } - if (WX_PROCESS_7.equals(index)){ - return CASE_PROCESS_7.index; } return null; } -- Gitblit v1.8.0