using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; using Vo.Admin; namespace Services { public interface ILogicNodeKindService : IBaseService { /// /// 逻辑节点分类-列表 /// /// 分页参数 /// 列表 PagedInfo getLogicNodeKindList([FromQuery] PagerInfo page); /// /// 逻辑节点分类-节点分类数据 /// /// 节点分类数据 List getLogicNodeTree(List nodes); } }