完善大部分问题
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user