Blame view

Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/ITenantService.cs 355 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
  using Yi.Framework.Ddd.Application.Contracts;
  using Yi.Framework.TenantManagement.Application.Contracts.Dtos;
  
  namespace Yi.Framework.TenantManagement.Application.Contracts
  {
      public interface ITenantService:IYiCrudAppService< TenantGetOutputDto, TenantGetListOutputDto, Guid, TenantGetListInput, TenantCreateInput, TenantUpdateInput>
      {
      }
  }