| | |
| | | String STRATEGYBYID = API_PREFIX + "/query-userid"; |
| | | String REGEX = API_PREFIX + "/combination-regex"; |
| | | String REGEXONE = API_PREFIX + "/combination-regex-one"; |
| | | String GETVIEWCLASSIFY = API_PREFIX + "/get-view-classify"; |
| | | |
| | | /** |
| | | * 获取菜单 |
| | |
| | | * @return |
| | | */ |
| | | @GetMapping(MENU_BY_CODES) |
| | | R<List<Menu>> getMenuByCodes(@RequestParam("codes") List<String> codes); |
| | | R<List<Menu>> getMenuByCodes(@RequestParam("codes") List<String> codes,@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 获取用配置的主数据统计 |
| | |
| | | @PostMapping(REGEXONE) |
| | | R<List<String>> getRegexByList(@RequestBody List<String> combinationIds); |
| | | |
| | | @GetMapping(GETVIEWCLASSIFY) |
| | | R<List<String>> getViewClassByRoleIds(@RequestParam("roleIds") List<String> roleIds); |
| | | |
| | | } |