using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.YdmStuffManage.Entity { class StlLgOfflineDetiaEntity { /// /// 顺序号 /// private string sequenceno = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 判定炉号(序号) /// private string judgeStoveNoSeq = ""; /// /// 支数 /// private decimal? actCount = null; /// /// 重量 /// private decimal? actWeight = null; /// /// 操作时间 /// private string colTime = ""; /// /// 备注 /// private string remark = ""; /// /// 操作人 /// private string colUser = ""; /// /// 操作班次 /// private string colShift = ""; /// /// 操作班组 /// private string colGroup = ""; /// /// 操作ID(年月日+5位流水) /// private string operationId = ""; /// /// 厂线代码 /// private string plineCode = ""; /// /// 虚拟炉号 /// private string furnaceno = ""; /// /// 返线炉号 /// private string backJudgeStoveNo = ""; /// /// 铸造订单编号 /// private string proPlanId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 管坯需求编号 /// private string gpreqId = ""; /// /// 0 复检 /// private string operationType = ""; /// /// 倍尺数 /// private decimal? fixNum = null; /// /// 单倍长度 /// private decimal? fixLen = null; /// /// 长度 /// private decimal? length = null; /// /// 直径 /// private decimal? diameter = null; /// /// 顺序号 /// [Description("顺序号")] [Nullable(false)] [DataLength(10)] public string Sequenceno { get { return sequenceno; } set { sequenceno = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(false)] [DataLength(10)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(false)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号(序号)")] [Nullable(false)] [DataLength(20)] public string JudgeStoveNoSeq { get { return judgeStoveNoSeq; } set { judgeStoveNoSeq = value; } } /// /// 支数 /// [Description("支数")] [Nullable(true)] [DataLength(6)] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 重量 /// [Description("重量")] [Nullable(true)] [DataLength(8)] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string ColTime { get { return colTime; } set { colTime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(100)] public string Remark { get { return remark; } set { remark = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string ColUser { get { return colUser; } set { colUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [Nullable(true)] [DataLength(1)] public string ColShift { get { return colShift; } set { colShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [Nullable(true)] [DataLength(1)] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 操作ID(年月日+5位流水) /// [Description("操作ID(年月日+5位流水)")] [Nullable(true)] [DataLength(20)] public string OperationId { get { return operationId; } set { operationId = value; } } /// /// 厂线代码 /// [Description("厂线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 虚拟炉号 /// [Description("虚拟炉号")] [Nullable(false)] [DataLength(20)] public string Furnaceno { get { return furnaceno; } set { furnaceno = value; } } /// /// 返线炉号 /// [Description("返线炉号")] [Nullable(true)] [DataLength(20)] public string BackJudgeStoveNo { get { return backJudgeStoveNo; } set { backJudgeStoveNo = value; } } /// /// 铸造订单编号 /// [Description("铸造订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 工序排产序号 /// [Description("工序排产序号")] [Nullable(false)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 管坯需求编号 /// [Description("管坯需求编号")] [Nullable(true)] [DataLength(20)] public string GpreqId { get { return gpreqId; } set { gpreqId = value; } } /// /// 0 复检 /// [Description("操作类型")] [Nullable(true)] [DataLength(1)] public string OperationType { get { return operationType; } set { operationType = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [Nullable(false)] [DataLength(1)] public decimal? FixNum { get { return fixNum; } set { fixNum = value; } } /// /// 单倍长度 /// [Description("单倍长度")] [Nullable(true)] [DataLength(5)] public decimal? FixLen { get { return fixLen; } set { fixLen = value; } } /// /// 长度 /// [Description("长度")] [Nullable(true)] [DataLength(22)] public decimal? Length { get { return length; } set { length = value; } } /// /// 直径 /// [Description("直径")] [Nullable(true)] [DataLength(22)] public decimal? Diameter { get { return diameter; } set { diameter = value; } } } }