using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DictionaryData;
///
/// 数据字典列表查询输入.
///
[SuppressSniffer]
public class DictionaryDataListQuery
{
///
/// 是否树形.
///
public string isTree { get; set; }
///
/// 搜索关键字.
///
public string keyword { get; set; }
}