| | |
| | | import cc.mrbird.febs.common.utils.FebsUtil; |
| | | import cc.mrbird.febs.mall.entity.MallMember; |
| | | import cc.mrbird.febs.mall.service.IAdminMallMemberService; |
| | | import cc.mrbird.febs.mall.vo.AdminMallMemberPaymentVo; |
| | | import cc.mrbird.febs.mall.vo.MallMemberVo; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | |
| | | return FebsUtil.view("modules/mallMember/moneyFlow"); |
| | | } |
| | | |
| | | /** |
| | | * 资金流水列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("moneyFlowList") |
| | | @RequiresPermissions("moneyFlowList:view") |
| | | public String moneyFlowList() { |
| | | return FebsUtil.view("modules/mallMember/moneyFlowList"); |
| | | } |
| | | |
| | | /** |
| | | * 提现列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("chargeFlowList") |
| | | @RequiresPermissions("chargeFlowList:view") |
| | | public String chargeFlowList() { |
| | | return FebsUtil.view("modules/mallMember/chargeFlowList"); |
| | | } |
| | | |
| | | /** |
| | | * 提现列表-收款方式 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("paymentInfo/{id}") |
| | | @RequiresPermissions("paymentInfo:update") |
| | | public String paymentInfo(@PathVariable long id, Model model) { |
| | | AdminMallMemberPaymentVo data = mallMemberService.getMallMemberPaymentInfoByFlowId(id); |
| | | model.addAttribute("paymentInfo", data); |
| | | return FebsUtil.view("modules/mallMember/paymentInfo"); |
| | | } |
| | | |
| | | |
| | | |
| | | |