1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Ropin.Inspection.Model.Entities;
- using Ropin.Inspection.Model.ViewModel;
- using Ropin.Inspection.Model.ViewModel.SYS;
- using Ropin.Inspection.Service.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service.SYS.Interface
- {
- public interface ITsysPrivService: IBaseServiceById<TsysPrivViewModel, string>
- {
-
-
-
-
-
-
- Task CreateOneAsync(TsysPrivViewModel viewModel);
-
-
-
-
-
-
- Task UpdateStatusAsync(string id);
-
-
-
-
-
-
-
- Task UpdateOneAsync(string id, TsysPrivViewModel updateModel);
-
-
-
-
-
- Task<List<TsysPrivTreeModel>> GetPrivTree(TsysPrivSearch model);
- }
- }
|