Commit 43ae62aa by 罗承锋

添加融合下单支付丢失参数导致请求失败的提示。

parent 543e078e
......@@ -426,6 +426,12 @@ public class RongHeController {
String ipay = request.getParameter("ipay");
String userId = request.getParameter("userId");
String rhTime = request.getParameter("rhTime");
// 参数校验
if (StringUtils.isBlank(orderSeq) || StringUtils.isBlank(ipay)) {
return ResponseData.error("参数有误,请重新进入下单页面进行支付");
}
try {
boolean boo1 = redisLockUtil.redisLock(orderSeq,uuid,10);
if(!boo1){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment