添加项目文件。

This commit is contained in:
ShrlAlgo
2025-09-16 16:06:41 +08:00
parent 0e7807b826
commit 98c65ceb3d
922 changed files with 1009489 additions and 0 deletions

View 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; }
}
}