| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | @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); |
| | | |
| | | } |