using System; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgClassModel { /// /// 数据库表STL_VDS_OPTINFO所对应的实体类(生成工具:代码生成工具3.0) /// 作者:zhou 时间:2017-09-18 /// [Serializable] public class StlVdsOptinfoEntity { /// /// 加热处理号 /// private string heatprocessno = ""; /// /// 炉号 /// private string stoveNo = ""; /// /// 岗位编号 /// private string stationcode = ""; /// /// 处理次数 /// private string disposaltime = ""; /// /// 计划钢种 /// private string plansteel = ""; /// /// 工单号 /// private string woid = ""; /// /// 班次班别 /// private string shiftcode = ""; /// /// 操作时间 /// private DateTime? optdate ; /// /// 进站时刻 /// private DateTime? arrivetime ; /// /// 出站时刻 /// private DateTime? leavetime ; /// /// 在站时间 /// private decimal? refinetime = null; /// /// 处理开始时刻 /// private DateTime? reposebegintime; /// /// 处理结束时刻 /// private DateTime? reposeendtime; /// /// 处理时间 /// private decimal? reposetime = null; /// /// 脱氧开始时间 /// private DateTime? oxygenstarttime; /// /// 脱氧结束时间 /// private DateTime? oxygenendtime; /// /// 脱氧时间 /// private decimal? oxygentime = null; /// /// 脱氢开始时间 /// private DateTime? hydgenstarttime; /// /// 脱氢结束时间 /// private DateTime? hydgenendtime; /// /// 脱氢时间 /// private decimal? hydgentime = null; /// /// 真空系统开始时间 /// private DateTime? vacbegintime; /// /// 真空系统结束时间 /// private DateTime? vaclosetime; /// /// 真空时间 /// private decimal? vacTime = null; /// /// 总作业时间 /// private decimal? sumTime = null; /// /// 软吹/弱搅拌时间 /// private decimal? flexibleblowtime = null; /// /// 进站温度 /// private decimal? arftempt = null; /// /// 出站温度 /// private decimal? arbtempt = null; /// /// 进站重量 /// private decimal? arrivewgt = null; /// /// 出站重量 /// private decimal? leavewgt = null; /// /// 最终真空压力 /// private decimal? vacuumpress = null; /// /// 热停时间 /// private decimal? stopDate = null; /// /// 真空保持时间 /// private decimal? vacKeepTime = null; /// /// 预真空时间 /// private decimal? slagWgt = null; /// /// 最小真空度 /// private decimal? vacMin = null; /// /// 氧气消耗量 /// private decimal? o2consume = null; /// /// 蒸汽消耗量 /// private decimal? steamconsume = null; /// /// 蒸汽温度 /// private decimal? steamTem = null; /// /// 蒸汽压力 /// private decimal? steamPres = null; /// /// 氩气状况 /// private string armemo = ""; /// /// 总电耗KWH /// private decimal? eletricityconsume = null; /// /// 大包包号 /// private string potno = ""; /// /// 大包灌级 /// private string potdistinction = ""; /// /// 大包包龄 /// private string potage = ""; /// /// 大包包况 /// private string potwrapstate = ""; /// /// 钢水重量 /// private decimal? molstlwgt = null; /// /// 是否回炉(0:没有回炉,1:回炉) /// private string isrs = ""; /// /// 操作人员 /// private string optpersonnel = ""; /// /// 工位号 /// private string wsid = ""; /// /// 上次刷新时间 /// private string updatetime = ""; /// /// 备注 /// private string memo = ""; /// /// 真空槽号 /// private string slotno = ""; /// /// 槽龄 /// private string slotage = ""; /// /// 浸渍管龄 /// private string tubeage = ""; /// /// 环流气体状况 /// private string circulatinggascondition = ""; /// /// 加热处理号 /// [Description("加热处理号")] [Nullable(false)] [DataLength(20)] public string Heatprocessno { get { return heatprocessno; } set { heatprocessno = 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(20)] public string Plansteel { get { return plansteel; } set { plansteel = value; } } /// /// 工单号 /// [Description("工单号")] [Nullable(true)] [DataLength(16)] public string Woid { get { return woid; } set { woid = value; } } /// /// 班次班别 /// [Description("班次班别")] [Nullable(true)] [DataLength(2)] public string Shiftcode { get { return shiftcode; } set { shiftcode = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public DateTime? Optdate { get { return optdate; } set { optdate = value; } } /// /// 进站时刻 /// [Description("进站时刻 ")] [Nullable(true)] public DateTime? Arrivetime { get { return arrivetime; } set { arrivetime = value; } } /// /// 出站时刻 /// [Description("出站时刻 ")] [Nullable(true)] public DateTime? Leavetime { get { return leavetime; } set { leavetime = value; } } /// /// 在站时间 /// [Description("在站时间 ")] [Nullable(true)] [DataLength(22)] public decimal? Refinetime { get { return refinetime; } set { refinetime = value; } } /// /// 处理开始时刻 /// [Description("处理开始")] [Nullable(true)] public DateTime? Reposebegintime { get { return reposebegintime; } set { reposebegintime = value; } } /// /// 处理结束时刻 /// [Description("处理结束")] [Nullable(true)] public DateTime? Reposeendtime { get { return reposeendtime; } set { reposeendtime = value; } } /// /// 处理时间(秒) /// [Description("处理时间")] [Nullable(true)] [DataLength(22)] public decimal? Reposetime { get { return reposetime; } set { reposetime = value; } } /// /// 脱氧开始时间 /// [Description("脱氧开始时间")] [Nullable(true)] public DateTime? Oxygenstarttime { get { return oxygenstarttime; } set { oxygenstarttime = value; } } /// /// 脱氧结束时间 /// [Description("脱氧结束时间")] [Nullable(true)] public DateTime? Oxygenendtime { get { return oxygenendtime; } set { oxygenendtime = value; } } /// /// 脱氧时间 /// [Description("脱氧时间")] [Nullable(true)] [DataLength(22)] public decimal? Oxygentime { get { return oxygentime; } set { oxygentime = value; } } /// /// 脱氢开始时间 /// [Description("脱氢开始时间")] [Nullable(true)] public DateTime? Hydgenstarttime { get { return hydgenstarttime; } set { hydgenstarttime = value; } } /// /// 脱氢结束时间 /// [Description("脱氢结束时间")] [Nullable(true)] public DateTime? Hydgenendtime { get { return hydgenendtime; } set { hydgenendtime = value; } } /// /// 脱氢时间 /// [Description("脱氢时间")] [Nullable(true)] [DataLength(22)] public decimal? Hydgentime { get { return hydgentime; } set { hydgentime = value; } } /// /// 真空系统开始时间 /// [Description("真空系统开始时间")] [Nullable(true)] public DateTime? Vacbegintime { get { return vacbegintime; } set { vacbegintime = value; } } /// /// 真空系统结束时间 /// [Description("真空系统结束时间 ")] [Nullable(true)] public DateTime? Vaclosetime { get { return vaclosetime; } set { vaclosetime = value; } } /// /// 真空时间 /// [Description("真空时间")] [Nullable(true)] [DataLength(22)] public decimal? VacTime { get { return vacTime; } set { vacTime = value; } } /// /// 总作业时间 /// [Description("总作业时间")] [Nullable(true)] [DataLength(22)] public decimal? SumTime { get { return sumTime; } set { sumTime = value; } } /// /// 软吹/弱搅拌时间 /// [Description("软吹/弱搅拌时间")] [Nullable(true)] [DataLength(6)] public decimal? Flexibleblowtime { get { return flexibleblowtime; } set { flexibleblowtime = value; } } /// /// 进站温度 /// [Description("进站温度 ")] [Nullable(true)] [DataLength(22)] public decimal? Arftempt { get { return arftempt; } set { arftempt = value; } } /// /// 出站温度 /// [Description("出站温度 ")] [Nullable(true)] [DataLength(22)] public decimal? Arbtempt { get { return arbtempt; } set { arbtempt = value; } } /// /// 进站重量 /// [Description("进站重量 ")] [Nullable(true)] [DataLength(22)] public decimal? Arrivewgt { get { return arrivewgt; } set { arrivewgt = value; } } /// /// 出站重量 /// [Description("出站重量 ")] [Nullable(true)] [DataLength(22)] public decimal? Leavewgt { get { return leavewgt; } set { leavewgt = value; } } /// /// 最终真空压力 /// [Description("最终真空压力")] [Nullable(true)] [DataLength(22)] public decimal? Vacuumpress { get { return vacuumpress; } set { vacuumpress = value; } } /// /// 热停时间 /// [Description("热停时间")] [Nullable(true)] [DataLength(22)] public decimal? StopDate { get { return stopDate; } set { stopDate = value; } } /// /// 真空保持时间 /// [Description("真空保持时间")] [Nullable(true)] [DataLength(22)] public decimal? VacKeepTime { get { return vacKeepTime; } set { vacKeepTime = value; } } /// /// 预真空时间 /// [Description("预真空时间")] [Nullable(true)] [DataLength(22)] public decimal? SlagWgt { get { return slagWgt; } set { slagWgt = value; } } /// /// 最小真空度 /// [Description("最小真空度")] [Nullable(true)] [DataLength(22)] public decimal? VacMin { get { return vacMin; } set { vacMin = value; } } /// /// 氧气消耗量 /// [Description("氩气消耗量 ")] [Nullable(true)] [DataLength(22)] public decimal? O2consume { get { return o2consume; } set { o2consume = value; } } /// /// 蒸汽消耗量 /// [Description("蒸汽消耗量 ")] [Nullable(true)] [DataLength(22)] public decimal? Steamconsume { get { return steamconsume; } set { steamconsume = value; } } /// /// 蒸汽温度 /// [Description("蒸汽温度 ")] [Nullable(true)] [DataLength(22)] public decimal? SteamTem { get { return steamTem; } set { steamTem = value; } } /// /// 蒸汽压力 /// [Description("蒸汽压力 ")] [Nullable(true)] [DataLength(22)] public decimal? SteamPres { get { return steamPres; } set { steamPres = value; } } /// /// 氩气状况 /// [Description("氩气状况")] [Nullable(true)] [DataLength(50)] public string Armemo { get { return armemo; } set { armemo = value; } } /// /// 总电耗KWH /// [Description("总电耗KWH")] [Nullable(true)] [DataLength(22)] public decimal? Eletricityconsume { get { return eletricityconsume; } set { eletricityconsume = value; } } /// /// 大包包号 /// [Description("大包包号")] [Nullable(true)] [DataLength(20)] public string Potno { get { return potno; } set { potno = value; } } /// /// 大包灌级 /// [Description("大包灌级")] [Nullable(true)] [DataLength(20)] public string Potdistinction { get { return potdistinction; } set { potdistinction = value; } } /// /// 大包包龄 /// [Description("大包包龄")] [Nullable(true)] public string Potage { get { return potage; } set { potage = value; } } /// /// 大包包况 /// [Description("大包包况")] [Nullable(true)] [DataLength(80)] public string Potwrapstate { get { return potwrapstate; } set { potwrapstate = value; } } /// /// 钢水重量 /// [Description("钢水重量")] [Nullable(true)] [DataLength(22)] public decimal? Molstlwgt { get { return molstlwgt; } set { molstlwgt = value; } } /// /// 是否回炉(0:没有回炉,1:回炉) /// [Description("是否回炉(0:没有回炉,1:回炉)")] [Nullable(true)] [DataLength(1)] public string Isrs { get { return isrs; } set { isrs = value; } } /// /// 操作人员 /// [Description("操作人员")] [Nullable(true)] [DataLength(20)] public string Optpersonnel { get { return optpersonnel; } set { optpersonnel = value; } } /// /// 工位号 /// [Description("工位号")] [Nullable(true)] [DataLength(20)] public string Wsid { get { return wsid; } set { wsid = value; } } /// /// 上次刷新时间 /// [Description("上次刷新时间")] [Nullable(true)] public string Updatetime { get { return updatetime; } set { updatetime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(300)] public string Memo { get { return memo; } set { memo = value; } } /// /// 真空槽号 /// [Description("真空槽号")] [Nullable(true)] [DataLength(20)] public string Slotno { get { return slotno; } set { slotno = value; } } /// /// 槽龄 /// [Description("槽龄")] [Nullable(true)] [DataLength(20)] public string Slotage { get { return slotage; } set { slotage = value; } } /// /// 浸渍管龄 /// [Description("浸渍管龄")] [Nullable(true)] [DataLength(20)] public string Tubeage { get { return tubeage; } set { tubeage = value; } } /// /// 环流气体状况 /// [Description("环流气体状况")] [Nullable(true)] [DataLength(20)] public string Circulatinggascondition { get { return circulatinggascondition; } set { circulatinggascondition = value; } } } }