田源
2024-01-18 d9fe4c2d64339fc799e47e1b5a297f349acd59c6
Source/UBCS/ubcs-service-api/ubcs-system-api/src/main/java/com/vci/ubcs/system/feign/ISysClient.java
@@ -78,6 +78,7 @@
   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";
   /**
    * 获取菜单
@@ -94,7 +95,7 @@
    * @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);
   /**
    * 获取用配置的主数据统计
@@ -111,7 +112,7 @@
    * @return List<Menu>
    */
   @GetMapping(MENU_BUTTON)
   R<List<Menu>> getMenuButtonByType(@RequestParam("btmType") String btmType);
   R<List<Menu>> getMenuButtonByType(@RequestParam("classifyId") String classifyId,@RequestParam("btmType") String btmType,@RequestParam("authType") String authType);
   /**
    * 获取部门
@@ -390,4 +391,7 @@
   @PostMapping(REGEXONE)
   R<List<String>> getRegexByList(@RequestBody List<String> combinationIds);
   @GetMapping(GETVIEWCLASSIFY)
   R<List<String>> getViewClassByRoleIds(@RequestParam("roleIds") List<String> roleIds,@RequestParam("authType") String authType,@RequestParam("menuCode") String menuCode);
}