IOrganizationService.cs 605 B

123456789101112131415161718192021
  1. using ZhonTai.Common.Domain.Dto;
  2. using ZhonTai.Plate.Personnel.Service.Organization.Input;
  3. using System.Threading.Tasks;
  4. namespace ZhonTai.Plate.Personnel.Service.Organization
  5. {
  6. public partial interface IOrganizationService
  7. {
  8. Task<IResponseOutput> GetAsync(long id);
  9. Task<IResponseOutput> GetListAsync(string key);
  10. Task<IResponseOutput> AddAsync(OrganizationAddInput input);
  11. Task<IResponseOutput> UpdateAsync(OrganizationUpdateInput input);
  12. Task<IResponseOutput> DeleteAsync(long id);
  13. Task<IResponseOutput> SoftDeleteAsync(long id);
  14. }
  15. }