From 4dc8a15cb1f1c7b8a70fce95f3f715b472302a9c Mon Sep 17 00:00:00 2001 From: wangwh <2397901735@qq.com> Date: Fri, 06 Sep 2024 18:20:26 +0800 Subject: [PATCH] 1、联合处置相关接口 2、查询办理结果接口 3、查询档案信息接口 4、修改督办相关接口等 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/CustClient.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/CustClient.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/CustClient.java index e3380e9..28ab532 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/CustClient.java +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/client/api/CustClient.java @@ -1,8 +1,11 @@ package cn.huge.module.client.api; import cn.huge.base.common.bo.ReturnBO; +import cn.huge.module.mediate.dto.WechatBindCaseDTO; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; /** @@ -43,4 +46,14 @@ @GetMapping("/api/client/paUser/clientGetUserAll") ReturnBO paclientGetUser(@RequestParam("userId") String userId); + + /** + * pc端提交案件后-获取相关当事人用户编号 + * @url {ctx}/api/weChat/paUser/bindGetUserId + * @param wechatBindCaseDTO 实体对象 + * @return ReturnBO + */ + @PostMapping("/api/wechat/paUser/bindGetUserId") + ReturnBO bindGetUserId(@RequestBody WechatBindCaseDTO wechatBindCaseDTO); + } -- Gitblit v1.8.0