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