From a9ca0823ab8f33ca85abebcf6ec4a8da235adb49 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 30 一月 2024 14:36:49 +0800
Subject: [PATCH] 开发业务接口

---
 server/platform/src/main/java/com/doumee/api/common/PublicController.java |   32 ++++++++++++++++----------------
 1 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/server/platform/src/main/java/com/doumee/api/common/PublicController.java b/server/platform/src/main/java/com/doumee/api/common/PublicController.java
index b397b98..24111aa 100644
--- a/server/platform/src/main/java/com/doumee/api/common/PublicController.java
+++ b/server/platform/src/main/java/com/doumee/api/common/PublicController.java
@@ -1,6 +1,7 @@
 package com.doumee.api.common;
 
 import com.alibaba.fastjson.JSONObject;
+import com.alibaba.fastjson.TypeReference;
 import com.doumee.api.BaseController;
 import com.doumee.biz.system.SystemDictDataBiz;
 import com.doumee.core.annotation.trace.Trace;
@@ -16,6 +17,7 @@
 import com.doumee.service.business.InsuranceApplyService;
 import com.doumee.service.business.InterfaceLogService;
 import com.doumee.service.business.third.SignService;
+import com.jzq.common.bean.sign.NotifyDataReq;
 import com.jzq.common.bean.sign.NotifyReq;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiImplicitParam;
@@ -26,10 +28,7 @@
 import org.apache.commons.lang3.StringUtils;
 import org.apache.shiro.authz.annotation.RequiresPermissions;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.bind.annotation.*;
 import org.springframework.web.multipart.MultipartFile;
 import org.springframework.web.multipart.MultipartHttpServletRequest;
 import org.springframework.web.multipart.commons.CommonsMultipartResolver;
@@ -39,6 +38,7 @@
 import java.io.File;
 import java.io.IOException;
 import java.io.PrintWriter;
+import java.lang.reflect.Field;
 import java.util.*;
 
 /**
@@ -57,40 +57,40 @@
     private InsuranceApplyService insuranceApplyService;
     @Autowired
     public InterfaceLogService interfaceLogService = null;
-
     @ApiOperation("鍚涘瓙绛剧绾﹀洖璋冮�氱煡")
     @PostMapping("/signNotify")
-    public ApiResponse updateStatus(@RequestBody NotifyReq request) {
-
+    public void updateStatus(@RequestParam Map<String,String> req, HttpServletResponse response) {
+        Map<String, Object> context = new HashMap<>();
+        context.put("success",true);
         InterfaceLog log=new InterfaceLog();
         log.setType(1);
         log.setCreateDate(new Date());
         log.setIsdeleted(0);
-        log.setRequest(JSONObject.toJSONString(request));
-
+        log.setRequest(JSONObject.toJSONString(req));
         log.setName("鍚涘瓙绛剧绾﹀洖璋冮�氱煡");
         log.setUrl(systemDictDataBiz.queryByCode(Constants.SYSTEM,Constants.SIGN_DONE_NOTIFY_URL).getCode());
-
         try {
             String appKey = systemDictDataBiz.queryByCode(Constants.SIGN,Constants.SIGN_APPKEY).getCode();
             String appSecret  = systemDictDataBiz.queryByCode(Constants.SIGN,Constants.SIGN_APPSECRET).getCode();
-            if(!StringUtils.equals(appKey,request.getAppkey())){
+            if(!StringUtils.equals(appKey,req.get("appkey"))){
                 throw  new BusinessException(ResponseStatus.BAD_REQUEST.getCode(),"appkey涓嶅尮閰�");
             }
-            String sign = DigestUtils.sha1Hex("data"+JSONObject.toJSONString(request.getData())+"method"+request.getMethod()+"version"+request.getVersion()+"timestamp"+request.getTimestamp()
+            String sign = DigestUtils.sha1Hex("data"+ req.get("data")+"method"+req.get("method")+"version"+req.get("version")+"timestamp"+req.get("timestamp")
                     +"appKey"+appKey+"appSecret"+appSecret);
-            if(!StringUtils.equals(sign,request.getSign())){
+            if(!StringUtils.equals(sign,req.get("sign"))){
                 throw  new BusinessException(ResponseStatus.BAD_REQUEST.getCode(),"楠岀涓嶉�氳繃");
             }
-            insuranceApplyService.dealSignResult(request.getData());
+            NotifyDataReq data   = JSONObject.parseObject(req.get("data"), NotifyDataReq.class);
+            insuranceApplyService.dealSignResult(data);
         }catch (Exception e){
             log.setRepose("澶勭悊寮傚父锛�"+e.getMessage());
+            context.put("success",false);
+            context.put("msg","澶勭悊鍙戠敓寮傚父");
             throw  e;
         }finally {
             interfaceLogService.create(log);
         }
-
-        return ApiResponse.success(null);
+        writerJson(response, context);
     }
 
     @ApiOperation(value = "涓婁紶", notes = "涓婁紶", httpMethod = "POST", position = 6)

--
Gitblit v1.9.3