| | |
| | | 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); |
| | | |
| | | /** |
| | | * 根据id查询组织信息 |
| | | * @url {ctx}/api/client/ctUnit/getUnitById |
| | | * @param unitId 组织编号 |
| | | * @return Object |
| | | */ |
| | | @GetMapping("/api/client/ctUnit/getUnitById") |
| | | ReturnBO getUnitById(@RequestParam("unitId") String unitId); |
| | | |
| | | /** |
| | | * 获取上级综治中心 |
| | | * @url {ctx}/api/client/ctUnit/getParentZzzxUnit |
| | | * @param unitId 组织编号 |
| | | * @return Object |
| | | */ |
| | | @GetMapping("/api/client/ctUnit/getParentZzzxUnit") |
| | | ReturnBO getParentZzzxUnit(@RequestParam(value = "unitId") String unitId); |
| | | |
| | | /** |
| | | * 查询用户所在的单位信息 |
| | | * @url {ctx}/api/client/ctUnit/getUnitByUserId |
| | | * @param userId 用户编号 |
| | | * @return Object |
| | | */ |
| | | @GetMapping("/api/client/ctUnit/getUnitByUserId") |
| | | ReturnBO getUnitByUserId(@RequestParam("userId") String userId); |
| | | |
| | | } |