//
namespace SafeCampus.System;
///
/// 字典服务
///
public interface IDictService : ITransient
{
///
/// 添加字典
///
/// 输入参数
///
Task Add(DictAddInput input);
///
/// 构建字典树形结构
///
/// 字典列表
/// 父ID
/// 字典树形结构
List ConstructResourceTrees(List dictList, long parentId = 0);
///
/// 删除字典
///
/// 删除参数
///
Task Delete(DictDeleteInput input);
///
/// 编辑字典
///
/// 输入参数
///
Task Edit(DictAddInput input);
///
/// 获取字典
///
/// 字典
///
Task GetDict(string dictValue);
///
/// 获取所有
///
/// 字典列表
Task> GetListAsync();
///
/// 根据字典DictValue获取字典值列表
///
/// 字典值
/// 字典列表
/// 字典值列表
Task> GetValuesByDictValue(string dictValue, List devDictList = null);
///
/// 根据字典DictValue列表获取对应字典值列表
///
/// 字典值列表
///
Task>> GetValuesByDictValue(string[] dictValues);
///
/// 字典分页查询
///
/// 查询参数
/// 字典分页列表
Task> Page(DictPageInput input);
///
/// 获取字典树形结构
///
/// 查询参数
/// 字典树形结构
Task> Tree(DictTreeInput input);
///
/// 根据字典值获取子级字典
///
/// 字典值
///
Task> GetChildrenByDictValue(string dictValue);
}