using CommunityToolkit.Mvvm.ComponentModel;
using Dapper;
using Dapper.Contrib.Extensions;
namespace Szmedi.RvKits.InfoManager.AFCA
{
[Table("afca_metro_relations")]
public class ClassificationModel : ObservableObject
{
[Key]
public int Index { get; set; }
///
/// 父节点
///
public ClassificationModel Parent { get; set; }
///
/// 父节点名称
///
public string ParentName { get; set; }
///
/// 类别名
///
public string CategoryName { get; set; }
///
/// IFC实体
///
public string IFCEntity { get; set; }
///
/// 分类编码
///
public string Code { get; set; }
///
/// 索引表名称
///
public string ParamTableIndex { get; set; }
///
/// 子节点
///
public List Children { get; set; }
///
/// 索引的属性集合
///
public List Properties { get; set; }
}
}