| | |
| | | import cn.huge.module.cases.domain.dto.GridApprovalRecordDTO; |
| | | import cn.huge.module.cases.domain.dto.GridEventDTO; |
| | | import cn.huge.module.cases.domain.vo.GenerateQrCodeRequestVo; |
| | | import cn.huge.module.cases.domain.vo.SaveEventFeedBackVo; |
| | | import cn.huge.module.sy.service.SyHolidayService; |
| | | import cn.huge.module.syncbydyh.domain.po.SyCause; |
| | | import cn.huge.module.sys.vo.*; |
| | |
| | | throw new ServiceException("SysClientImpl.getCaseRefByGenerateQrCode", e); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 同步办理反馈信息 |
| | | * |
| | | * @param vo 同步办理反馈信息的入参 |
| | | * @return |
| | | * @url {ctx}/api/client/event/generateQrCode |
| | | */ |
| | | public String saveEventFeedback(SaveEventFeedBackVo vo){ |
| | | try{ |
| | | ReturnBO returnBo = sysClient.saveEventFeedback(vo); |
| | | if (ReturnConsts.OK == returnBo.getCode()){ |
| | | String id = (String) returnBo.getData(); |
| | | return id; |
| | | }else{ |
| | | log.error("Client外服务接口[SysClientImpl.saveEventFeedback]请求异常:" + returnBo.getMsg(), returnBo.getMsg()); |
| | | throw new ClientException("SysClientImpl.saveEventFeedback", returnBo.getMsg()); |
| | | } |
| | | }catch (Exception e){ |
| | | log.error("service方法[SysClientImpl.saveEventFeedback]请求成功,处理异常:"+e, e); |
| | | throw new ServiceException("SysClientImpl.saveEventFeedback", e); |
| | | } |
| | | } |
| | | } |