添加项目文件。
This commit is contained in:
47
Szmedi.RvKits/InfoManager/AFCA/ClassificationModel.cs
Normal file
47
Szmedi.RvKits/InfoManager/AFCA/ClassificationModel.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
|
||||
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; }
|
||||
/// <summary>
|
||||
/// 父节点
|
||||
/// </summary>
|
||||
public ClassificationModel Parent { get; set; }
|
||||
/// <summary>
|
||||
/// 父节点名称
|
||||
/// </summary>
|
||||
public string ParentName { get; set; }
|
||||
/// <summary>
|
||||
/// 类别名
|
||||
/// </summary>
|
||||
public string CategoryName { get; set; }
|
||||
/// <summary>
|
||||
/// IFC实体
|
||||
/// </summary>
|
||||
public string IFCEntity { get; set; }
|
||||
/// <summary>
|
||||
/// 分类编码
|
||||
/// </summary>
|
||||
public string Code { get; set; }
|
||||
/// <summary>
|
||||
/// 索引表名称
|
||||
/// </summary>
|
||||
public string ParamTableIndex { get; set; }
|
||||
/// <summary>
|
||||
/// 子节点
|
||||
/// </summary>
|
||||
public List<ClassificationModel> Children { get; set; }
|
||||
/// <summary>
|
||||
/// 索引的属性集合
|
||||
/// </summary>
|
||||
public List<MetroDedicatedProperty> Properties { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user