Browse Source

广西融海科技有限公司

wanxc 1 month ago
parent
commit
bae3b8e0e4

+ 6 - 1
src/main/java/com/tiangua/star/controller/GXRHMd5CallBackController.java

@@ -31,7 +31,6 @@ public class GXRHMd5CallBackController {
     @PostMapping("/request")
     public CredentialStuffingDto request(@RequestBody CredentialStuffingParam param) {
         log.info("广西融海科技有限公司 get begin dto{}",param);
-
         if (param == null) {
             log.info("广西融海科技有限公司解析回传数据为null");
             CredentialStuffingDto dto1 = new CredentialStuffingDto();
@@ -39,6 +38,12 @@ public class GXRHMd5CallBackController {
             dto1.setMsg("请求数据为空");
             return dto1;
         }
+        if (param.getCustomerStart()==null){
+            CredentialStuffingDto dto1 = new CredentialStuffingDto();
+            dto1.setCode(500);
+            dto1.setMsg("星级数据为空");
+            return dto1;
+        }
         CredentialStuffingDto dto = callBackService.gxthrequest(param);
         log.info("广西融海科技有限公司 get end");
         return dto;