修改F5充值

main
grimm 2025-04-02 07:13:15 +08:00
parent 6b4b5dd1ae
commit d448422daa
1 changed files with 8 additions and 1 deletions

View File

@ -1890,7 +1890,7 @@ public class PayController {
@RequestParam("serverId") String serverId,
@RequestParam("orderStatus") int orderStatus,
String statusMsg,
int ots,
Integer ots,
String payDoneTime,
String extInfo,
@RequestParam("osign") String osign) {
@ -1911,6 +1911,13 @@ public class PayController {
if(extInfo == null){
extInfo = "";
}
if(ots == null){
LOGGER.error("ots null");
json.put("code", -1);
json.put("msg", "ots null");
json.put("deliverStatus", 2);
return json.toString();
}
if(statusMsg == null){
statusMsg = "";
}