| | |
| | | |
| | | import cn.huge.base.common.utils.ReturnFailUtils; |
| | | import cn.huge.base.common.utils.ReturnSucUtils; |
| | | import cn.huge.module.mediate.dto.WechatBindCaseDTO; |
| | | import cn.huge.base.config.CurrentUser; |
| | | import cn.huge.module.pauser.domain.po.PaUser; |
| | | import cn.huge.module.pauser.service.PaUserService; |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * pc端提交案件后-获取相关当事人用户编号 |
| | | * @url {ctx}/api/weChat/paUser/bindGetUserId |
| | | * @param wechatBindCaseDTO 实体对象 |
| | | * @return Object |
| | | */ |
| | | @PostMapping("/bindGetUserId") |
| | | public Object bindGetUserId(@RequestBody WechatBindCaseDTO wechatBindCaseDTO) { |
| | | try { |
| | | return ReturnSucUtils.getRepInfo(service.bindGetUserId(wechatBindCaseDTO)); |
| | | } catch (Exception e) { |
| | | log.error("Controller接口[WeChatPaUserController.bindGetUserId]请求异常:"+e, e); |
| | | return ReturnFailUtils.getRepInfo(); |
| | | } |
| | | } |
| | | } |