using System;
namespace SWS.Model
{
public class ec_property
{
#region 实体成员
///
/// 属性ID
///
public string PropertyID { get; set; }
///
/// 属性组 ,
///
public string PropertyGID { get; set; } = "";
///
/// 常用属性 或 不常用属性。数据库对应类型为int0
///
///
public int? BasicGroup { get; set; } = 1;
///
/// 计量单位分类ID ,
///
public string MeasuringUnitTypeID { get; set; } = "";
///
/// 属性名称
///
public string PropertyName { get; set; } = "";
///
/// 属性名称(英文)
///
public string PropertyNameEN { get; set; } = "";
///
/// 属性类型
///
public string PropertyType { get; set; } = "";
///
/// 小数点
///
public int? DecimalPoint { get; set; }
///
/// 枚举数据
///
public string EnumData { get; set; } = "";
///
/// 默认计量单位
///
public string DefaultUnit { get; set; } = "";
///
/// 排序
///
public int? OrderID { get; set; }
///
/// 默认值
///
public string DefaultValue { get; set; } = "";
///
/// 字典明细ID
///
public string DataItemDetailID { get; set; } = "";
///
/// 和块的属性定义里的对应关系。可以有多个,逗号分开
///
public string CADBlockAlias { get; set; } = "";
///
/// 创建人
///
public string CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新人
///
public string UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
#endregion
}
}