修改F5sdk

main
grimm 2025-03-31 22:39:32 +08:00
parent 3cbc2b09e6
commit 169bb603b6
1 changed files with 3 additions and 3 deletions

View File

@ -1912,7 +1912,7 @@ public class PayController {
if(!mySign.equals(osign)){
LOGGER.error("错误信息:签名不一致 mySign={}osign={}", mySign,osign);
json.put("code", "-1");
json.put("code", -1);
json.put("msg", "签名不一致");
json.put("deliverStatus", 2);
return json.toString();
@ -1920,7 +1920,7 @@ public class PayController {
//extInfo为游戏订单号
if(StringUtils.isEmpty(extInfo)){
LOGGER.error("错误信息extInfo empty");
json.put("code", "-2");
json.put("code", -2);
json.put("msg", "extInfo empty");
json.put("deliverStatus", 2);
return json.toString();
@ -1928,7 +1928,7 @@ public class PayController {
//渠道订单号不能为空
if(StringUtils.isEmpty(orderId)){
LOGGER.error("错误信息orderId empty");
json.put("code", "-2");
json.put("code", -2);
json.put("msg", "orderId empty");
json.put("deliverStatus", 2);
return json.toString();