xiaoyong931011
2023-03-06 a5fb20e72d86c7d88ffd76a08ad6c98e4c4c1e98
src/main/java/cc/mrbird/febs/mall/controller/ViewMallMemberController.java
@@ -128,7 +128,8 @@
    @GetMapping("paymentInfo/{id}")
    @RequiresPermissions("paymentInfo:update")
    public String paymentInfo(@PathVariable long id, Model model) {
        AdminMallMemberPaymentVo data = mallMemberService.getMallMemberPaymentInfoByFlowId(id);
//        AdminMallMemberPaymentVo data = mallMemberService.getMallMemberPaymentInfoByFlowId(id);
        AdminMallMemberPaymentVo data = mallMemberService.getMallBankInfoById(id);
        model.addAttribute("paymentInfo", data);
        return FebsUtil.view("modules/mallMember/paymentInfo");
    }