using SqlSugar;
using System.ComponentModel;
using XF.Domain.Repository;
namespace Hotline.Settings
{
[Description("字典表")]
public class SysDicData: CreationEntity
{
///
/// 字典类型Id
///
public string DicTypeId { get; set; }
///
/// 字典类型Code
///
public string DicTypeCode { get; set; }
///
/// 字典名称
///
public string DicDataName { get; set; }
///
/// 字典值
///
public string DicDataValue { get; set; }
///
/// 上级ID
///
[SugarColumn(IsNullable = true)]
public string? ParentId { get; set; }
[SugarColumn(IsIgnore = true)]
public List children { get; set; }
}
}