| | |
| | | @GetMapping("paymentInfo/{id}") |
| | | @RequiresPermissions("paymentInfo:update") |
| | | public String paymentInfo(@PathVariable long id, Model model) { |
| | | // AdminMallMemberPaymentVo data = mallMemberService.getMallMemberPaymentInfoByFlowId(id); |
| | | AdminMallMemberPaymentVo data = mallMemberService.getMallBankInfoById(id); |
| | | model.addAttribute("paymentInfo", data); |
| | | return FebsUtil.view("modules/mallMember/paymentInfo"); |
| | | } |
| | | |
| | | /** |
| | | * 提现列表-付款方式 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("chargeFlowListType/{id}") |
| | | @RequiresPermissions("chargeFlowListType:update") |
| | | public String chargeFlowListType(@PathVariable long id, Model model) { |
| | | AdminMallMemberPaymentVo data = new AdminMallMemberPaymentVo(); |
| | | data.setId(id); |
| | | model.addAttribute("chargeUpdateInfo", data); |
| | | return FebsUtil.view("modules/mallMember/chargeFlowListType"); |
| | | } |
| | | |
| | | /** |
| | | * 代理列表 |
| | | * @return |
| | | */ |