jiangping
2024-06-07 30dd40452030bfdee30ad165b97a823dbc593264
提交一把
已修改3个文件
7 ■■■■■ 文件已修改
server/platform/src/main/java/com/doumee/api/common/PublicController.java 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/service/src/main/java/com/doumee/service/business/InsuranceApplyService.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/service/src/main/java/com/doumee/service/business/impl/InsuranceApplyServiceImpl.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/platform/src/main/java/com/doumee/api/common/PublicController.java
@@ -82,7 +82,8 @@
                throw  new BusinessException(ResponseStatus.BAD_REQUEST.getCode(),"验签不通过");
            }
            NotifyDataReq data   = JSONObject.parseObject(req.get("data"), NotifyDataReq.class);
            insuranceApplyService.dealSignResult(data);
           String r =  insuranceApplyService.dealSignResult(data);
            log.setRepose("处理成功:"+r);
        }catch (Exception e){
            log.setRepose("处理异常;"+e.getMessage());
server/service/src/main/java/com/doumee/service/business/InsuranceApplyService.java
@@ -127,7 +127,7 @@
    String getSignLink(Integer id);
    void dealSignResult(NotifyDataReq data);
    String dealSignResult(NotifyDataReq data);
    void dealWaitSignedData();
server/service/src/main/java/com/doumee/service/business/impl/InsuranceApplyServiceImpl.java
@@ -1174,7 +1174,7 @@
    }
    @Override
    public   void dealSignResult(NotifyDataReq data){
    public   String dealSignResult(NotifyDataReq data){
        if(data.getApplyNo() == null ){
            throw  new BusinessException(ResponseStatus.BAD_REQUEST);
        }