using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Entity; namespace WMS.IDAL.ISysInterface { /// /// RBAC仓储接口 /// public interface IRBACRepository { /// /// 获取rbac信息列表 /// /// Task> GetRBACLists(int roleid); } }