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_COLDROLL_RESULT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:shizhanlei-PC 时间:2016-05-31
///
public class VrpColdDrawnResultEntity
{
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
private string resultNo = "";
///
/// 炉批计划ID
///
private string heatPlanNo = "";
///
/// 镦拔扩作业批次号
///
private string zyBatchId = "";
///
/// 镦拔扩订单编号
///
private string proPlanId = "";
///
/// 镦拔扩订单排产序号
///
private string gxPlanNo = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 轧机号(LB,LD,LG)
///
private string rollFacNo = "";
///
/// 原料管外径(坯管)
///
private string dimater = null;
///
/// 原料管壁厚(坯管)
///
private string height = null;
///
/// 外径(成品)
///
private string sizDimater = null;
///
/// 壁厚(成品)
///
private string sizHeight = null;
///
/// 工艺道次
///
private string tecTim = null;
///
/// 外摸外径
///
private string wDimater = null;
///
/// 外摸壁厚
///
private string wHeight = null;
///
/// 内摸外径
///
private string nDimater = null;
///
/// 内摸壁厚
///
private string nHeight = null;
///
/// 拔制速度(轧制速度)
///
private string rollSpeed = null;
///
/// 产出长度(成品)
///
private string actLen = null;
///
/// 芯棒规格
///
private string speMandrel = "";
///
/// 轧辊规格
///
private string speRoll = "";
///
/// 辊缝
///
private string rollGap = null;
///
/// 送进量
///
private string sendNum = null;
///
/// 微调
///
private string trimNum = null;
///
/// 上连杆
///
private string upPole = "";
///
/// 摆杆
///
private string pPole = "";
///
/// 作业支数(有效生产数量)
///
private string proNum = null;
///
/// 作业重量
///
private string proWt = null;
///
/// 合格支数
///
private string accNum = null;
///
/// 合格重量
///
private string accWt = null;
///
/// 合格米数
///
private string accLen = 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 = "";
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
[Description("实绩编号(机组+工序点代码+年月日+6位流水)")]
[Nullable(false)]
[DataLength(20)]
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; }
}
///
/// 轧机号(LB,LD,LG)
///
[Description("轧机号(LB,LD,LG)")]
[Nullable(true)]
[DataLength(10)]
public string RollFacNo
{
get { return rollFacNo; }
set { rollFacNo = value; }
}
///
/// 原料管外径(坯管)
///
[Description("原料管外径(坯管)")]
[Nullable(true)]
[DataLength(5)]
public string Dimater
{
get { return dimater; }
set { dimater = value; }
}
///
/// 原料管壁厚(坯管)
///
[Description("原料管壁厚(坯管)")]
[Nullable(true)]
[DataLength(4)]
public string Height
{
get { return height; }
set { height = 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(2)]
public string TecTim
{
get { return tecTim; }
set { tecTim = value; }
}
///
/// 外摸外径
///
[Description("外摸外径")]
[Nullable(true)]
[DataLength(5)]
public string WDimater
{
get { return wDimater; }
set { wDimater = value; }
}
///
/// 外摸壁厚
///
[Description("外摸壁厚")]
[Nullable(true)]
[DataLength(4)]
public string WHeight
{
get { return wHeight; }
set { wHeight = value; }
}
///
/// 内摸外径
///
[Description("内摸外径")]
[Nullable(true)]
[DataLength(5)]
public string NDimater
{
get { return nDimater; }
set { nDimater = value; }
}
///
/// 内摸壁厚
///
[Description("内摸壁厚")]
[Nullable(true)]
[DataLength(4)]
public string NHeight
{
get { return nHeight; }
set { nHeight = value; }
}
///
/// 拔制速度(轧制速度)
///
[Description("拔制速度(轧制速度)")]
[Nullable(true)]
[DataLength(8)]
public string RollSpeed
{
get { return rollSpeed; }
set { rollSpeed = value; }
}
///
/// 产出长度(成品)
///
[Description("产出长度(成品)")]
[Nullable(true)]
[DataLength(10)]
public string ActLen
{
get { return actLen; }
set { actLen = value; }
}
///
/// 芯棒规格
///
[Description("芯棒规格")]
[Nullable(true)]
[DataLength(40)]
public string SpeMandrel
{
get { return speMandrel; }
set { speMandrel = value; }
}
///
/// 轧辊规格
///
[Description("轧辊规格 ")]
[Nullable(true)]
[DataLength(40)]
public string SpeRoll
{
get { return speRoll; }
set { speRoll = value; }
}
///
/// 辊缝
///
[Description("辊缝")]
[Nullable(true)]
[DataLength(8)]
public string RollGap
{
get { return rollGap; }
set { rollGap = value; }
}
///
/// 送进量
///
[Description("送进量")]
[Nullable(true)]
[DataLength(8)]
public string SendNum
{
get { return sendNum; }
set { sendNum = value; }
}
///
/// 微调
///
[Description("微调")]
[Nullable(true)]
[DataLength(8)]
public string TrimNum
{
get { return trimNum; }
set { trimNum = value; }
}
///
/// 上连杆
///
[Description("上连杆")]
[Nullable(true)]
[DataLength(20)]
public string UpPole
{
get { return upPole; }
set { upPole = value; }
}
///
/// 摆杆
///
[Description("摆杆")]
[Nullable(true)]
[DataLength(10)]
public string PPole
{
get { return pPole; }
set { pPole = 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 AccNum
{
get { return accNum; }
set { accNum = value; }
}
///
/// 合格重量
///
[Description("合格重量")]
[Nullable(true)]
[DataLength(8)]
public string AccWt
{
get { return accWt; }
set { accWt = value; }
}
///
/// 合格米数
///
[Description("合格米数")]
[Nullable(true)]
[DataLength(8)]
public string AccLen
{
get { return accLen; }
set { accLen = 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(100)]
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; }
}
}
}