generated from root/miduo_server
修改F5sdk
parent
3cbc2b09e6
commit
169bb603b6
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue