using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.DictionaryData;
///
/// 数据字典全部列表输出.
///
[SuppressSniffer]
public class DictionaryDataAllListOutput
{
///
/// 字典分类id.
///
public string id { get; set; }
///
/// 是否树形.
///
public int isTree { get; set; }
///
/// 字典分类编码.
///
public string enCode { get; set; }
///
/// 字典分类名称.
///
public string fullName { get; set; }
///
/// 字典列表.
///
public object dictionaryList { get; set; }
}