修改F5充值

main
grimm 2025-04-02 07:05:16 +08:00
parent 518fc62689
commit 6b4b5dd1ae
1 changed files with 5 additions and 2 deletions

View File

@ -1889,8 +1889,8 @@ public class PayController {
@RequestParam("userId") long userId,
@RequestParam("serverId") String serverId,
@RequestParam("orderStatus") int orderStatus,
@RequestParam("statusMsg") String statusMsg,
@RequestParam("ots") int ots,
String statusMsg,
int ots,
String payDoneTime,
String extInfo,
@RequestParam("osign") String osign) {
@ -1911,6 +1911,9 @@ public class PayController {
if(extInfo == null){
extInfo = "";
}
if(statusMsg == null){
statusMsg = "";
}
String signStr = appId + orderId + defaultAmount + defaultCurrency + gameAmount + gameCurrency + productId +
userId + serverId + orderStatus + ots + payDoneTime + extInfo + Constant.F5_PAY_KEY;
String mySign=MD5Util.encrypByMd5(signStr);