0
0

IDictionaryService.cs 717 B

123456789101112131415161718192021222324
  1. using ZhonTai.Common.Domain.Dto;
  2. using System.Threading.Tasks;
  3. using ZhonTai.Plate.Admin.Domain.Dictionary;
  4. using ZhonTai.Plate.Admin.Service.Dictionary.Input;
  5. namespace ZhonTai.Plate.Admin.Service.Dictionary
  6. {
  7. public partial interface IDictionaryService
  8. {
  9. Task<IResponseOutput> GetAsync(long id);
  10. Task<IResponseOutput> PageAsync(PageInput<DictionaryEntity> model);
  11. Task<IResponseOutput> AddAsync(DictionaryAddInput input);
  12. Task<IResponseOutput> UpdateAsync(DictionaryUpdateInput input);
  13. Task<IResponseOutput> DeleteAsync(long id);
  14. Task<IResponseOutput> SoftDeleteAsync(long id);
  15. Task<IResponseOutput> BatchSoftDeleteAsync(long[] ids);
  16. }
  17. }