Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/ITenantService.cs 355 Bytes
3ae287f3   “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>
      {
      }
  }