From 236f80305991d3517c84e70b2645a80a52ad1294 Mon Sep 17 00:00:00 2001
From: wangwh <2397901735@qq.com>
Date: Mon, 28 Oct 2024 14:42:57 +0800
Subject: [PATCH] fix: 1、添加日志记录; 2、修改请求网格系统待办接口的传参objId值为本系统caseId; 3、添加办理中时联合处置申请的网格待办。

---
 dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/UtilsClient.java |   38 ++++++++++++++++++++++++++++++++++++--
 1 files changed, 36 insertions(+), 2 deletions(-)

diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/UtilsClient.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/UtilsClient.java
index 61e91b7..13e0bd7 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/UtilsClient.java
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/UtilsClient.java
@@ -3,6 +3,7 @@
 import cn.huge.base.common.bo.ReturnBO;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestParam;
 
 /**
  * @title: 公共工具微服务调用接口
@@ -17,9 +18,42 @@
 
     /**
      * 公共工具-id工具-获取时间Id,后四位常量
-     * @url {ctx}/common/api/idUtils/getNewTimeId
+     * @url {ctx}/api/client/mediateUtils/getNewTimeId
      * @return ReturnBO
      */
-    @GetMapping("/common/api/idUtils/getNewTimeId")
+    @GetMapping("/api/client/mediateUtils/getNewTimeId")
     ReturnBO getNewTimeId();
+
+    /**
+     * 案件id-获取时间Id,后四位常量
+     * @url {ctx}/api/client/mediateUtils/getNewTimeCaseId
+     * @return Object
+     */
+    @GetMapping("/api/client/mediateUtils/getNewTimeCaseId")
+    ReturnBO getNewTimeCaseId();
+
+    /**
+     * 生成新的调解案号
+     * @url {ctx}/api/client/mediateUtils/createCaseNo
+     * @param area 区
+     * @return Object
+     */
+    @GetMapping("/api/client/mediateUtils/createCaseNo")
+    ReturnBO createCaseNo(@RequestParam(value = "area") String area);
+
+    /**
+     * 生成新的事项编号
+     * @url {ctx}/common/api/caseNoUtils/createCaseRef
+     * @return Object
+     */
+    @GetMapping("/api/client/mediateUtils/createCaseRef")
+    ReturnBO createCaseRef();
+
+    /**
+     * 公共工具-sys服务id工具-获取时间Id,后四位常量
+     * @url {ctx}/api/client/sysUtils/getNewTimeId
+     * @return ReturnBO
+     */
+    @GetMapping("/api/client/sysUtils/getNewTimeId")
+    ReturnBO getNewTimeSysId();
 }

--
Gitblit v1.8.0