查询组织列表增加条件参数
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using JNPF.Common.Core.Manager;
|
||||
using JNPF.Common.Core.Manager.Files;
|
||||
using JNPF.Common.Enums;
|
||||
using JNPF.Common.Manager;
|
||||
using JNPF.Common.Security;
|
||||
using JNPF.DatabaseAccessor;
|
||||
using JNPF.DependencyInjection;
|
||||
@@ -46,6 +47,8 @@ public class DictionaryDataService : IDictionaryDataService, IDynamicApiControll
|
||||
/// </summary>
|
||||
private readonly IUserManager _userManager;
|
||||
|
||||
private readonly ICacheManager _cache;
|
||||
|
||||
/// <summary>
|
||||
/// 初始化一个<see cref="DictionaryDataService"/>类型的新实例.
|
||||
/// </summary>
|
||||
@@ -53,12 +56,14 @@ public class DictionaryDataService : IDictionaryDataService, IDynamicApiControll
|
||||
ISqlSugarRepository<DictionaryDataEntity> repository,
|
||||
IDictionaryTypeService dictionaryTypeService,
|
||||
IFileManager fileManager,
|
||||
IUserManager userManager)
|
||||
IUserManager userManager,
|
||||
ICacheManager cache)
|
||||
{
|
||||
_repository = repository;
|
||||
_dictionaryTypeService = dictionaryTypeService;
|
||||
_fileManager = fileManager;
|
||||
_userManager = userManager;
|
||||
_cache = cache;
|
||||
}
|
||||
|
||||
#region GET
|
||||
|
||||
Reference in New Issue
Block a user