// <author></author> // <date></date> // <description></description> using ERP.Core.Dto; using ERP.Core.Entity; namespace ERP.Core.Interface { public interface ISysMenuService { List<SysMenu> SelectMenuTreeByUserId(long userId); List<Router> BuildMenuTree(List<SysMenu> list, string parentPath); } }