using Core.Mes.Client.Comm.Attribute; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_PHY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2016-03-04 /// public class ComBasePhyEntity { /// /// 材质检验项代码 /// private string phyCode = ""; /// /// 材质检验项名称 /// private string phyName = ""; /// /// 材质大类代码(A:拉伸,B:冲击,C:硬度....) /// private string phyType = ""; /// /// 材质小类代码 /// private string phyTypeC = ""; /// /// 值单位 /// private string phyUnit = ""; /// /// 准备时间(小时) /// private decimal? hourReady = null; /// /// 试验时间小时) /// private decimal? hourTest = null; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 材质检验项代码 /// [Description("材质检验项代码")] [Nullable(false)] [DataLength(5)] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// [Description("检验项")] [Nullable(true)] [DataLength(100)] public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 材质大类代码(A:拉伸,B:冲击,C:硬度....) /// [Description("材质大类")] [Nullable(true)] [DataLength(20)] public string PhyType { get { return phyType; } set { phyType = value; } } /// /// 材质小类代码 /// [Description("材质小类代码")] [Nullable(true)] [DataLength(20)] public string PhyTypeC { get { return phyTypeC; } set { phyTypeC = value; } } /// /// 值单位 /// [Description("值单位")] [Nullable(true)] [DataLength(10)] public string PhyUnit { get { return phyUnit; } set { phyUnit = value; } } /// /// 准备时间(小时) /// [Description("准备时间(小时)")] [Nullable(false)] [DataLength(22)] public decimal? HourReady { get { return hourReady; } set { hourReady = value; } } /// /// 试验时间小时) /// [Description("试验时间小时)")] [Nullable(false)] [DataLength(22)] public decimal? HourTest { get { return hourTest; } set { hourTest = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } } }