using Dapper;
using Dapper.Contrib.Extensions;
namespace Szmedi.RevitToolkit.Approval.Models
{
///
/// 建筑工程数据库查询的共享参数映射
///
[Table("AFCA_archi_shared_params")]
public class ArchiSharedParameter : SharedParameterBase
{
[Key]
public string Id { get; set; }
///
/// 实例、类型
///
public string ParamType { get; set; }
///
/// 添加到元素的具体分组
///
public string Group { get; set; }
///
/// 添加到元素的具体分组
///
public string ValueRange { get; set; }
}
}