| | |
| | | } |
| | | |
| | | //解密报文 |
| | | dataStr = RSAUtils.decrypt(dataStr, PRIVATE_KEY); |
| | | if(StringUtils.isEmpty(dataStr)){ |
| | | return new ApiResp(ApiRespCode.R_500.getCode(),ApiRespCode.R_500.getMsg()); |
| | | } |
| | | // dataStr = RSAUtils.decrypt(dataStr, PRIVATE_KEY); |
| | | // if(StringUtils.isEmpty(dataStr)){ |
| | | // return new ApiResp(ApiRespCode.R_500.getCode(),ApiRespCode.R_500.getMsg()); |
| | | // } |
| | | |
| | | SHDN2023ReqDto shdn2023ReqDto = JSONObject.parseObject(dataStr, SHDN2023ReqDto.class); |
| | | if(null == shdn2023ReqDto){ |
| | |
| | | } |
| | | |
| | | //异步保存 |
| | | shdnService.syncData(interfaceId, shdn2023ReqDto.getData()); |
| | | shdnService.syncData(interfaceId, shdn2023ReqDto.getData(), shdn2023ReqDto.getDeptId()); |
| | | |
| | | return new ApiResp(); |
| | | } |