using ZhonTai.Common.Domain.Dto; using ZhonTai.Plate.Personnel.Service.Organization.Input; using System.Threading.Tasks; namespace ZhonTai.Plate.Personnel.Service.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); } }