using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { /// /// 数据库表VRP_SIZING_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-201412141732 时间:2016-05-27 /// [Serializable] public class VrpSizingResultEntity { /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 炉批计划ID /// private string heatPlanNo = ""; /// /// 镦拔扩作业批次号 /// private string zyBatchId = ""; /// /// 镦拔扩订单编号 /// private string proPlanId = ""; /// /// 镦拔扩订单排产序号 /// private string gxPlanNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 荒管外径 /// private string sheDimater = null; /// /// 荒管壁厚 /// private string sheHeight = null; /// /// 入口速度 /// private string speedIn = null; /// /// 出口速度 /// private string speedOut = null; /// /// 电机转速1# /// private string motorSpeed1 = null; /// /// 电机转速2# /// private string motorSpeed2 = null; /// /// 电机转速3# /// private string motorSpeed3 = null; /// /// 电机转速4# /// private string motorSpeed4 = null; /// /// 电机转速5# /// private string motorSpeed5 = null; /// /// 机架孔型 /// private string motorDr = ""; /// /// 外径(定径后) /// private string sizDimater = null; /// /// 壁厚(定径后) /// private string sizHeight = null; /// /// 作业支数(有效生产数量) /// private string proNum = null; /// /// 作业重量 /// private string proWt = null; /// /// 废品支数(剔除) /// private string failNum = null; /// /// 废品重量(剔除) /// private string failWt = null; /// /// 废品原因(剔除) /// private string failReason = ""; /// /// 下线支数 /// private string offlineNum = null; /// /// 下线重量 /// private string offlineWt = null; /// /// 返线支数 /// private string reNum = null; /// /// 返线重量 /// private string reWt = null; /// /// 监制要求 /// private string monitordemand = ""; /// /// 是否镦拔扩监制 /// private string ifMonitorDbk = ""; /// /// 监制人 /// private string producer = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 监制到场时间 /// private string producerTime = ""; /// /// 上料时间 /// private string loadTime = ""; /// /// 上料班次 /// private string loadShift = ""; /// /// 上料班组 /// private string loadGroup = ""; /// /// 操作人 /// private string loadUser = ""; /// /// 采集方式(0-接口采集,1-人工录入) /// private string colMode = ""; /// /// 操作时间 /// private string createTime = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 修改人 /// private string updateName = ""; ///定径支数 private string actNum = ""; ///定径重量 private string actWt = ""; public string ActNum { get { return actNum; } set { actNum = value; } } public string ActWt { get { return actWt; } set { actWt = value; } } /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 炉批计划ID /// [Description("炉批计划ID")] [Nullable(true)] [DataLength(20)] public string HeatPlanNo { get { return heatPlanNo; } set { heatPlanNo = value; } } /// /// 镦拔扩作业批次号 /// [Description("镦拔扩作业批次号")] [Nullable(true)] [DataLength(20)] public string ZyBatchId { get { return zyBatchId; } set { zyBatchId = value; } } /// /// 镦拔扩订单编号 /// [Description("镦拔扩订单编号")] [Nullable(true)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 镦拔扩订单排产序号 /// [Description("镦拔扩订单排产序号")] [Nullable(true)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 荒管外径 /// [Description("荒管外径")] [Nullable(true)] [DataLength(5)] public string SheDimater { get { return sheDimater; } set { sheDimater = value; } } /// /// 荒管壁厚 /// [Description("荒管壁厚")] [Nullable(true)] [DataLength(4)] public string SheHeight { get { return sheHeight; } set { sheHeight = value; } } /// /// 入口速度 /// [Description("入口速度")] [Nullable(true)] [DataLength(6)] public string SpeedIn { get { return speedIn; } set { speedIn = value; } } /// /// 出口速度 /// [Description("出口速度")] [Nullable(true)] [DataLength(6)] public string SpeedOut { get { return speedOut; } set { speedOut = value; } } /// /// 电机转速1# /// [Description("电机转速1#")] [Nullable(true)] [DataLength(8)] public string MotorSpeed1 { get { return motorSpeed1; } set { motorSpeed1 = value; } } /// /// 电机转速2# /// [Description("电机转速2#")] [Nullable(true)] [DataLength(8)] public string MotorSpeed2 { get { return motorSpeed2; } set { motorSpeed2 = value; } } /// /// 电机转速3# /// [Description("电机转速3#")] [Nullable(true)] [DataLength(8)] public string MotorSpeed3 { get { return motorSpeed3; } set { motorSpeed3 = value; } } /// /// 电机转速4# /// [Description("电机转速4#")] [Nullable(true)] [DataLength(8)] public string MotorSpeed4 { get { return motorSpeed4; } set { motorSpeed4 = value; } } /// /// 电机转速5# /// [Description("电机转速5#")] [Nullable(true)] [DataLength(8)] public string MotorSpeed5 { get { return motorSpeed5; } set { motorSpeed5 = value; } } /// /// 机架孔型 /// [Description("机架孔型")] [Nullable(true)] [DataLength(20)] public string MotorDr { get { return motorDr; } set { motorDr = value; } } /// /// 外径(定径后) /// [Description("外径(定径后)")] [Nullable(true)] [DataLength(5)] public string SizDimater { get { return sizDimater; } set { sizDimater = value; } } /// /// 壁厚(定径后) /// [Description("壁厚(定径后)")] [Nullable(true)] [DataLength(4)] public string SizHeight { get { return sizHeight; } set { sizHeight = value; } } /// /// 作业支数(有效生产数量) /// [Description("作业支数(有效生产数量)")] [Nullable(true)] [DataLength(6)] public string ProNum { get { return proNum; } set { proNum = value; } } /// /// 作业重量 /// [Description("作业重量")] [Nullable(true)] [DataLength(8)] public string ProWt { get { return proWt; } set { proWt = value; } } /// /// 废品支数(剔除) /// [Description("废品支数(剔除)")] [Nullable(true)] [DataLength(6)] public string FailNum { get { return failNum; } set { failNum = value; } } /// /// 废品重量(剔除) /// [Description("废品重量(剔除)")] [Nullable(true)] [DataLength(8)] public string FailWt { get { return failWt; } set { failWt = value; } } /// /// 废品原因(剔除) /// [Description("废品原因(剔除)")] [Nullable(true)] [DataLength(10)] public string FailReason { get { return failReason; } set { failReason = value; } } /// /// 下线支数 /// [Description("下线支数")] [Nullable(true)] [DataLength(6)] public string OfflineNum { get { return offlineNum; } set { offlineNum = value; } } /// /// 下线重量 /// [Description("下线重量")] [Nullable(true)] [DataLength(8)] public string OfflineWt { get { return offlineWt; } set { offlineWt = value; } } /// /// 返线支数 /// [Description("返线支数")] [Nullable(true)] [DataLength(6)] public string ReNum { get { return reNum; } set { reNum = value; } } /// /// 返线重量 /// [Description("返线重量")] [Nullable(true)] [DataLength(8)] public string ReWt { get { return reWt; } set { reWt = value; } } /// /// 监制要求 /// [Description("监制要求")] [Nullable(true)] [DataLength(200)] public string Monitordemand { get { return monitordemand; } set { monitordemand = value; } } /// /// 是否镦拔扩监制 /// [Description("是否镦拔扩监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorDbk { get { return ifMonitorDbk; } set { ifMonitorDbk = value; } } /// /// 监制人 /// [Description("监制人")] [Nullable(true)] [DataLength(40)] public string Producer { get { return producer; } set { producer = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 监制到场时间 /// [Description("监制到场时间")] [Nullable(true)] public string ProducerTime { get { return producerTime; } set { producerTime = value; } } /// /// 上料时间 /// [Description("上料时间")] [Nullable(true)] public string LoadTime { get { return loadTime; } set { loadTime = value; } } /// /// 上料班次 /// [Description("上料班次")] [Nullable(true)] [DataLength(1)] public string LoadShift { get { return loadShift; } set { loadShift = value; } } /// /// 上料班组 /// [Description("上料班组")] [Nullable(true)] [DataLength(1)] public string LoadGroup { get { return loadGroup; } set { loadGroup = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string LoadUser { get { return loadUser; } set { loadUser = value; } } /// /// 采集方式(0-接口采集,1-人工录入) /// [Description("采集方式(0-接口采集,1-人工录入)")] [Nullable(true)] [DataLength(1)] public string ColMode { get { return colMode; } set { colMode = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } } }