feat: 新增配置管理
This commit is contained in:
@@ -6,20 +6,20 @@ using Volo.Abp.Domain.Repositories;
|
||||
|
||||
namespace Yi.Framework.SettingManagement.Domain;
|
||||
|
||||
public interface ISettingRepository : IBasicRepository<SettingEntity, Guid>
|
||||
public interface ISettingRepository : IBasicRepository<SettingAggregateRoot, Guid>
|
||||
{
|
||||
Task<SettingEntity> FindAsync(
|
||||
Task<SettingAggregateRoot> FindAsync(
|
||||
string name,
|
||||
string providerName,
|
||||
string providerKey,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
Task<List<SettingEntity>> GetListAsync(
|
||||
Task<List<SettingAggregateRoot>> GetListAsync(
|
||||
string providerName,
|
||||
string providerKey,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
Task<List<SettingEntity>> GetListAsync(
|
||||
Task<List<SettingAggregateRoot>> GetListAsync(
|
||||
string[] names,
|
||||
string providerName,
|
||||
string providerKey,
|
||||
|
||||
Reference in New Issue
Block a user