删去多余接口
This commit is contained in:
parent
27eed8cf4d
commit
bf9874ebc7
@ -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);
|
||||
|
||||
@ -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) {
|
||||
// 详情只查子集组件
|
||||
|
||||
Loading…
Reference in New Issue
Block a user