using JNPF.Systems.Entitys.System;
namespace JNPF.Systems.Interfaces.System;
///
/// 字典数据
/// 版 本:V3.2
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
/// 日 期:2021-06-01.
///
public interface IDictionaryDataService
{
///
/// 获取数据字典列表.
///
/// 分类id或编码.
/// 是否过滤启用状态.
///
Task> GetList(string dictionaryTypeId, bool enabledMark = true);
///
/// 获取按钮信息.
///
/// 主键id.
///
Task GetInfo(string id);
///
/// 根据key获取字典
///
///
///
Task> GetDicByKey(string key);
}