generated from root/miduo_server
修改F5充值
parent
518fc62689
commit
6b4b5dd1ae
|
@ -1889,8 +1889,8 @@ public class PayController {
|
||||||
@RequestParam("userId") long userId,
|
@RequestParam("userId") long userId,
|
||||||
@RequestParam("serverId") String serverId,
|
@RequestParam("serverId") String serverId,
|
||||||
@RequestParam("orderStatus") int orderStatus,
|
@RequestParam("orderStatus") int orderStatus,
|
||||||
@RequestParam("statusMsg") String statusMsg,
|
String statusMsg,
|
||||||
@RequestParam("ots") int ots,
|
int ots,
|
||||||
String payDoneTime,
|
String payDoneTime,
|
||||||
String extInfo,
|
String extInfo,
|
||||||
@RequestParam("osign") String osign) {
|
@RequestParam("osign") String osign) {
|
||||||
|
@ -1911,6 +1911,9 @@ public class PayController {
|
||||||
if(extInfo == null){
|
if(extInfo == null){
|
||||||
extInfo = "";
|
extInfo = "";
|
||||||
}
|
}
|
||||||
|
if(statusMsg == null){
|
||||||
|
statusMsg = "";
|
||||||
|
}
|
||||||
String signStr = appId + orderId + defaultAmount + defaultCurrency + gameAmount + gameCurrency + productId +
|
String signStr = appId + orderId + defaultAmount + defaultCurrency + gameAmount + gameCurrency + productId +
|
||||||
userId + serverId + orderStatus + ots + payDoneTime + extInfo + Constant.F5_PAY_KEY;
|
userId + serverId + orderStatus + ots + payDoneTime + extInfo + Constant.F5_PAY_KEY;
|
||||||
String mySign=MD5Util.encrypByMd5(signStr);
|
String mySign=MD5Util.encrypByMd5(signStr);
|
||||||
|
|
Loading…
Reference in New Issue