Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/TenantService.cs
2022-04-07 22:48:10 +08:00

15 lines
333 B
C#

using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class TenantService : Repository<TenantEntity>, ITenantService
{
public TenantService(ISqlSugarClient context) : base(context)
{
}
}
}