1234567891011121314151617 |
- 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<TSYS_Priv>, IRepositoryBaseById<TSYS_Priv, string>
- {
- //Task<IEnumerable<TsysPrivViewModel>> GetAllPrivList(TsysPrivSearch model);
- Task<List<TsysPrivTreeModel>> GetPrivTree(TsysPrivSearch model);
- TSYS_Priv GetPrivEntity(string code);
- }
- }
|