| | |
| | | public class ViewRunVipController{ |
| | | |
| | | private final IAdminRunVipService iAdminRunVipService; |
| | | @GetMapping(value = "/sellVipList") |
| | | @RequiresPermissions("sellVipList:view") |
| | | public String sellVipList() { |
| | | return FebsUtil.view("modules/runVip/sellVipList"); |
| | | } |
| | | @GetMapping(value = "/buyVipList") |
| | | @RequiresPermissions("buyVipList:view") |
| | | public String buyVipList() { |
| | | return FebsUtil.view("modules/runVip/buyVipList"); |
| | | } |
| | | @GetMapping(value = "/runVipList") |
| | | @RequiresPermissions("runVipList:view") |
| | | public String runVipList() { |
| | |
| | | return FebsUtil.view("modules/runVip/vipEdit"); |
| | | } |
| | | |
| | | @GetMapping("systemSetting") |
| | | @RequiresPermissions("systemSetting:view") |
| | | public String vipCenterSetting() { |
| | | return FebsUtil.view("modules/runVip/systemSetting"); |
| | | } |
| | | |
| | | } |