mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-06-24 20:04:29 +08:00
调整H5支付
This commit is contained in:
@@ -50,8 +50,8 @@ public class PayController {
|
||||
|
||||
@GetMapping("/payStatus")
|
||||
@ApiOperation(("支付状态"))
|
||||
public AjaxResult<Object> payStatus(@Validated @NotNull(message = "from参数丢失") @RequestParam String from,
|
||||
@Validated @NotNull(message = "orderId参数丢失") @RequestParam Integer orderId) {
|
||||
public AjaxResult<PayStatusVo> payStatus(@Validated @NotNull(message = "from参数丢失") @RequestParam String from,
|
||||
@Validated @NotNull(message = "orderId参数丢失") @RequestParam Integer orderId) {
|
||||
PayStatusVo vo = iPayService.payStatus(from, orderId);
|
||||
return AjaxResult.success(vo);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.mdd.front.service.impl;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.github.binarywang.wxpay.bean.result.WxPayUnifiedOrderV3Result;
|
||||
import com.mdd.common.entity.RechargeOrder;
|
||||
import com.mdd.common.entity.setting.DevPayConfig;
|
||||
import com.mdd.common.entity.setting.DevPayWay;
|
||||
|
||||
Reference in New Issue
Block a user