using Admin.Core.Common.Input; using Admin.Core.Common.Output; using Admin.Core.Model.Personnel; using Admin.Core.Service.Personnel.Organization.Input; using System.Threading.Tasks; namespace Admin.Core.Service.Personnel.Organization { public partial interface IOrganizationService { Task GetAsync(long id); Task GetListAsync(string key); Task AddAsync(OrganizationAddInput input); Task UpdateAsync(OrganizationUpdateInput input); Task DeleteAsync(long id); Task SoftDeleteAsync(long id); } }