完善大部分问题

This commit is contained in:
橙子
2022-04-08 23:44:25 +08:00
parent 5fcd4fb5a4
commit feb73174eb
26 changed files with 160 additions and 160 deletions

View File

@@ -5,9 +5,9 @@ using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class TenantService : Repository<TenantEntity>, ITenantService
public partial class TenantService : BaseService<TenantEntity>, ITenantService
{
public TenantService(ISqlSugarClient context) : base(context)
public TenantService(IRepository<TenantEntity> repository) : base(repository)
{
}
}

View File

@@ -5,9 +5,9 @@ using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class UserService : Repository<UserEntity>, IUserService
public partial class UserService : BaseService<UserEntity>, IUserService
{
public UserService(ISqlSugarClient context) : base(context)
public UserService(IRepository<UserEntity> repository) : base(repository)
{
}
}