28 lines
748 B
C#
28 lines
748 B
C#
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; }
|
|
}
|
|
}
|