Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/IServiceTemplate/ITenantService.cs

10 lines
190 B
C#
Raw Normal View History

2022-04-07 22:48:10 +08:00
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
2022-04-08 23:44:25 +08:00
public partial interface ITenantService:IBaseService<TenantEntity>
2022-04-07 22:48:10 +08:00
{
}
}