| | |
| | | * 订单列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("cjList") |
| | | @RequiresPermissions("cjList:view") |
| | | public String cjList() { |
| | | return FebsUtil.view("modules/order/cjList"); |
| | | } |
| | | |
| | | /** |
| | | * 订单列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("orderList") |
| | | @RequiresPermissions("orderList:view") |
| | | public String orderList() { |
| | |
| | | return FebsUtil.view("modules/order/orderDetail"); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 订单-资金流水 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | |
| | | |
| | | public static long idOrderMoneyFlow; |
| | | @GetMapping("orderMoneyFlow/{id}") |
| | | @RequiresPermissions("orderMoneyFlow:update") |
| | | public String orderMoneyFlow(@PathVariable long id, Model model) { |
| | | idOrderMoneyFlow = id; |
| | | return FebsUtil.view("modules/order/orderMoneyFlow"); |
| | | } |
| | | |
| | | /** |
| | | * 订单退款 |
| | | * @return |