添加项目文件。
This commit is contained in:
27
Szmedi.RevitToolkit.Approval/Models/ArchiSharedParameter.cs
Normal file
27
Szmedi.RevitToolkit.Approval/Models/ArchiSharedParameter.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using Dapper;
|
||||
using Dapper.Contrib.Extensions;
|
||||
|
||||
namespace Szmedi.RevitToolkit.Approval.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 建筑工程数据库查询的共享参数映射
|
||||
/// </summary>
|
||||
[Table("AFCA_archi_shared_params")]
|
||||
public class ArchiSharedParameter : SharedParameterBase
|
||||
{
|
||||
[Key]
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 实例、类型
|
||||
/// </summary>
|
||||
public string ParamType { get; set; }
|
||||
/// <summary>
|
||||
/// 添加到元素的具体分组
|
||||
/// </summary>
|
||||
public string Group { get; set; }
|
||||
/// <summary>
|
||||
/// 添加到元素的具体分组
|
||||
/// </summary>
|
||||
public string ValueRange { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user