using System; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgClassModel { /// /// 数据库表STL_TEMPSAMPLING所对应的实体类(生成工具:代码生成工具3.0) /// 作者:zhou 时间:2017-09-07 /// public class StlTempsamplingEntity { /// /// 加热处理号 /// private string heatprocessno = ""; /// /// 采样序号 /// private string samplingid = ""; /// /// 采样名称 /// private string samplingname = ""; /// /// 炉号 /// private string stoveNo = ""; /// /// 岗位编号 /// private string stationcode = ""; /// /// 处理次数 /// private string disposaltime = ""; /// /// 采样描述 /// private string samplingdepict = ""; /// /// 采样值 /// private int? samplingvalue = null; /// /// 采样时间 /// private string samplingdate = ""; /// /// 采样开始时间 /// private DateTime? startdate ; /// /// 采样结束时间 /// private DateTime? enddate ; public bool NewRow = false; public bool Valid = true; /// /// 加热处理号 /// [Description("加热处理号")] [Nullable(false)] [DataLength(20)] public string Heatprocessno { get { return heatprocessno; } set { heatprocessno = value; } } /// /// 采样序号 /// [Description("采样序号")] [Nullable(false)] [DataLength(20)] public string Samplingid { get { return samplingid; } set { samplingid = value; } } /// /// 采样名称 /// [Description("操作内容")] [Nullable(false)] [DataLength(50)] public string Samplingname { get { return samplingname; } set { samplingname = value; } } /// /// 炉号 /// [Description("炉号")] [Nullable(false)] [DataLength(10)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 岗位编号 /// [Description("岗位编号")] [Nullable(false)] [DataLength(5)] public string Stationcode { get { return stationcode; } set { stationcode = value; } } /// /// 处理次数 /// [Description("处理次数")] [Nullable(false)] [DataLength(2)] public string Disposaltime { get { return disposaltime; } set { disposaltime = value; } } /// /// 采样描述 /// [Description("采样描述")] [Nullable(true)] [DataLength(80)] public string Samplingdepict { get { return samplingdepict; } set { samplingdepict = value; } } /// /// 采样值 /// [Description("测温(T/℃)")] [Nullable(true)] [DataLength(22)] public int? Samplingvalue { get { return samplingvalue; } set { samplingvalue = value; } } /// /// 采样时间 /// [Description("采样时间")] [Nullable(true)] public string Samplingdate { get { return samplingdate; } set { samplingdate = value; } } /// /// 采样开始时间 /// [Description("起")] [Nullable(true)] public DateTime? Startdate { get { return startdate; } set { startdate = value; } } /// /// 采样结束时间 /// [Description("至")] [Nullable(true)] public DateTime? Enddate { get { return enddate; } set { enddate = value; } } } }