using Ropin.Inspection.Model.Entities; using Ropin.Inspection.Model.ViewModel.SYS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository.SYS.Interface { public interface ITsysPrivRepository : IRepositoryBase, IRepositoryBaseById { //Task> GetAllPrivList(TsysPrivSearch model); Task> GetPrivTree(TsysPrivSearch model); TSYS_Priv GetPrivEntity(string code); } }