using System;
namespace SWS.CAD.Models
{
///
/// 工程数据属性表
///
public class ec_enginedata_property
{
public ec_enginedata_property()
{
//CaseID = "0";
}
#region 实体成员
///
/// 工程数据属性ID
///
///
public string EngineDataPropertyID { get; set; }
///
/// 工程数据ID。
///
///
public string EngineDataID { get; set; } = "";
///
/// 属性名称。
///
///
public string PropertyName { get; set; } = "";
///
/// 属性值
///
///
public string PropertyValue { get; set; } = "";
///
/// 计量单位。
///
///
public string MeasuringUnit { get; set; } = "";
/////
///// 工况ID。
/////
/////
//[Obsolete]
//public string CaseID { get; set; } = "";
///
/// 创建人
///
public string CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新人
///
public string UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
#endregion
#region 扩展字段
///
/// 属性组
///
public string PropertyGID { get; set; }
///
/// 属性组名称
///
public string PropertyGroupName { get; set; }
///
/// 属性ID
///
public string PropertyID { get; set; }
///
/// 属性名称(英文)
///
public string PropertyNameEN { get; set; }
#endregion
}
}