123456789101112131415161718192021222324 |
- using System.Threading.Tasks;
- using ZhonTai.Common.Domain.Dto;
- using ZhonTai.Plate.Admin.Domain.Tenant;
- using ZhonTai.Plate.Admin.Service.Tenant.Input;
- namespace ZhonTai.Plate.Admin.Service.Tenant
- {
- public interface ITenantService
- {
- Task<IResponseOutput> GetAsync(long id);
- Task<IResponseOutput> PageAsync(PageInput<TenantEntity> input);
- Task<IResponseOutput> AddAsync(TenantAddInput input);
- Task<IResponseOutput> UpdateAsync(TenantUpdateInput input);
- Task<IResponseOutput> DeleteAsync(long id);
- Task<IResponseOutput> SoftDeleteAsync(long id);
- Task<IResponseOutput> BatchSoftDeleteAsync(long[] ids);
- }
- }
|