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 { /// /// 新增 /// /// /// /// Task CreateOneAsync(TsysPrivViewModel viewModel); /// /// 假删除-修改状态为禁用 /// /// /// /// Task UpdateStatusAsync(string id); /// /// 修改 /// /// /// /// /// Task UpdateOneAsync(string id, TsysPrivViewModel updateModel); /// /// 树型列表 /// /// /// Task> GetPrivTree(TsysPrivSearch model); } }