删去多余接口

This commit is contained in:
lvshaohua 2024-04-17 10:40:47 +08:00
parent 27eed8cf4d
commit bf9874ebc7
2 changed files with 0 additions and 11 deletions

View File

@ -51,11 +51,6 @@ public interface FeatureResourceApi {
@PostMapping("/api/featureResource/reorder")
ApiResult<Void> reorderFeatureTree(@RequestParam Long featureId, @RequestParam Integer offset);
/** 获取菜单/页面/组件 及子孙节点 **/
@PostMapping("/api/featureResource/list")
ApiResult<List<FeatureResourceTreeNode>> listFeatureDescendant(@RequestParam Long featureId);
/** 菜单详情 **/
@PostMapping("/api/featureResource/detail")
ApiResult<FeatureResourceTreeNode> detail(@RequestParam Long featureId);

View File

@ -70,12 +70,6 @@ public class FeatureResourceController implements FeatureResourceApi {
return ApiResult.ok();
}
@Override
public ApiResult<List<FeatureResourceTreeNode>> listFeatureDescendant(Long featureId) {
return null;
}
@Override
public ApiResult<FeatureResourceTreeNode> detail(Long featureId) {
// 详情只查子集组件