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.Mcp.Mch.Entity
{
///
/// 数据库表MCH_OFFLINE_RESULT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160925CXYF 时间:2016-12-23
///
public class MchOfflineResultEntity
{
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
private string resultNo = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 工序点代码(上料。。。。)
///
private string stationCode = "";
///
/// 工序点名称
///
private string stationDesc = "";
///
/// 炉批计划ID
///
private string heatPlanNo = "";
///
/// 镦拔扩作业批次号
///
private string zyBatchId = "";
///
/// 镦拔扩订单编号
///
private string proPlanId = "";
///
/// 镦拔扩订单排产序号
///
private string gxPlanNo = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 批号(炉批号)
///
private string batchNo = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 标准类别代码
///
private string stdStyle = "";
///
/// 标准类别描述(PSL1....)
///
private string stdStyleDesc = "";
///
/// 外径(实际)
///
private decimal? actDimater = null;
///
/// 壁厚(实际)
///
private decimal? actHeight = null;
///
/// 长度(实际)
///
private decimal? actLen = null;
///
/// 长度下限(实际)
///
private string actLenMin = "";
///
/// 长度上限(实际)
///
private string actLenMax = "";
///
/// 组炉主炉号
///
private string zpJudgeStoveNo = "";
///
/// 组炉主批号
///
private string zpBatchNo = "";
///
/// 离线支数
///
private decimal? offlineNum = null;
///
/// 离线重量
///
private decimal? offlineWt = null;
///
/// 返线支数
///
private decimal? reNum = null;
///
/// 返线重量
///
private decimal? reWt = null;
///
/// 组炉支数
///
private decimal? groupNum = null;
///
/// 组炉重量
///
private decimal? groupWt = null;
///
/// 委外支数
///
private decimal? subcontractNum = null;
///
/// 委外回报合格支数
///
private decimal? subcontractcompleteNum = null;
///
/// 委外回报合格重量
///
private decimal? subcontractcompleteWt = null;
///
/// 委外单号
///
private string subcontractNo = "";
///
/// 委外单号序号
///
private string subcontractNoSeq = "";
///
/// 作业日期(年月日)
///
private string proYearMonthDay = "";
///
/// 操作人
///
private string proUser = "";
///
/// 操作班次
///
private string proShift = "";
///
/// 操作班组
///
private string proGroup = "";
///
/// 操作时间
///
private string proTime = "";
///
/// 组炉标记(1组炉生成的)
///
private string groupLog = "";
///
/// 组炉操作编号ID
///
private string groupId = "";
///
/// 主交货编码PK
///
private string ordLnDlyPk = "";
///
/// 主合同号
///
private string orderNo = "";
///
/// 主合同行号
///
private string orderSeq = "";
///
/// 主交货编码
///
private string deliveryNo = "";
///
/// 组炉时间
///
private string updateTime = "";
///
/// 组炉人
///
private string updateName = "";
///
/// 返线工序点
///
private string returnProcess = "";
private string returnProcessCode = "";
///
/// 委外重量
///
private decimal? subcontractWt = null;
///
/// 返线时间
///
private string reTime = "";
///
/// 返线人
///
private string reName = "";
///
/// 委外时间
///
private string subcontractTime = "";
///
/// 委外人
///
private string subcontractName = "";
///
/// 委外回报时间
///
private string subcontractcompleteTime = "";
///
/// 委外回报人
///
private string subcontractcompleteName = "";
///
/// 委外回报废品支数
///
private decimal? hbFpNum = null;
///
/// 委外回报废品重量
///
private decimal? hbFpWt = null;
///
/// 结算日期(年月)
///
private string balYearMonth = "";
///
/// 原炉批计划ID
///
private string zyBatchId1 = "";
///
/// 组号
///
private string batchGroudNo = "";
///
/// 标示炉号
///
private string flagStoveNo = "";
private decimal? offlineBranch = null;
[Description("离线编辑支")]
public decimal? OfflineBranch
{
get { return offlineBranch; }
set { offlineBranch = value; }
}
private decimal? totalcount = null;
[Description("离线剩余支")]
public decimal? Totalcount
{
get { return totalcount; }
set { totalcount = value; }
}
private string processOrder;
[Description("工序合同号")]
public string ProcessOrder
{
get { return processOrder; }
set { processOrder = value; }
}
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
[Description("实绩编号")]
[Nullable(false)]
[DataLength(24)]
public string ResultNo
{
get { return resultNo; }
set { resultNo = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 产线描述
///
[Description("产线描述")]
[Nullable(true)]
[DataLength(40)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 工序点代码(上料。。。。)
///
[Description("工序点代码(上料。。。。)")]
[Nullable(true)]
[DataLength(20)]
public string StationCode
{
get { return stationCode; }
set { stationCode = value; }
}
///
/// 工序点名称
///
[Description("工序点")]
[Nullable(true)]
[DataLength(40)]
public string StationDesc
{
get { return stationDesc; }
set { stationDesc = 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(6)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 批号(炉批号)
///
[Description("批号")]
[Nullable(true)]
[DataLength(10)]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 品名描述
///
[Description("品名")]
[Nullable(true)]
[DataLength(100)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 钢级(牌号)代码
///
[Description("钢级(牌号)代码")]
[Nullable(true)]
[DataLength(10)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级(牌号)名称
///
[Description("钢级")]
[Nullable(true)]
[DataLength(100)]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 钢种代码
///
[Description("钢种代码")]
[Nullable(true)]
[DataLength(10)]
public string Gradecode
{
get { return gradecode; }
set { gradecode = value; }
}
///
/// 钢种名称
///
[Description("钢种")]
[Nullable(true)]
[DataLength(100)]
public string Gradename
{
get { return gradename; }
set { gradename = value; }
}
///
/// 扣型代码
///
[Description("扣型代码")]
[Nullable(true)]
[DataLength(20)]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 扣型描述
///
[Description("扣型")]
[Nullable(true)]
[DataLength(100)]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 标准代码
///
[Description("标准代码")]
[Nullable(true)]
[DataLength(20)]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(256)]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 标准类别代码
///
[Description("标准类别代码")]
[Nullable(true)]
[DataLength(20)]
public string StdStyle
{
get { return stdStyle; }
set { stdStyle = value; }
}
///
/// 标准类别描述(PSL1....)
///
[Description("标准类别")]
[Nullable(true)]
[DataLength(50)]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 外径(实际)
///
[Description("外径")]
[Nullable(true)]
[DataLength(5)]
public decimal? ActDimater
{
get { return actDimater; }
set { actDimater = value; }
}
///
/// 壁厚(实际)
///
[Description("壁厚")]
[Nullable(true)]
[DataLength(5)]
public decimal? ActHeight
{
get { return actHeight; }
set { actHeight = value; }
}
///
/// 长度(实际)
///
[Description("长度")]
[Nullable(true)]
[DataLength(9)]
public decimal? ActLen
{
get { return actLen; }
set { actLen = value; }
}
///
/// 长度下限(实际)
///
[Description("长度下限")]
[Nullable(true)]
[DataLength(10)]
public string ActLenMin
{
get { return actLenMin; }
set { actLenMin = value; }
}
///
/// 长度上限(实际)
///
[Description("长度上限")]
[Nullable(true)]
[DataLength(10)]
public string ActLenMax
{
get { return actLenMax; }
set { actLenMax = value; }
}
///
/// 组炉主炉号
///
[Description("组炉主炉号")]
[Nullable(true)]
[DataLength(6)]
public string ZpJudgeStoveNo
{
get { return zpJudgeStoveNo; }
set { zpJudgeStoveNo = value; }
}
///
/// 组炉主批号
///
[Description("组炉主批号")]
[Nullable(true)]
[DataLength(10)]
public string ZpBatchNo
{
get { return zpBatchNo; }
set { zpBatchNo = value; }
}
///
/// 离线支数
///
[Description("离线支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? OfflineNum
{
get { return offlineNum; }
set { offlineNum = value; }
}
///
/// 离线重量
///
[Description("离线重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? OfflineWt
{
get { return offlineWt; }
set { offlineWt = value; }
}
///
/// 返线支数
///
[Description("返线支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? ReNum
{
get { return reNum; }
set { reNum = value; }
}
///
/// 返线重量
///
[Description("返线重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? ReWt
{
get { return reWt; }
set { reWt = value; }
}
///
/// 组炉支数
///
[Description("组炉支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? GroupNum
{
get { return groupNum; }
set { groupNum = value; }
}
///
/// 组炉重量
///
[Description("组炉重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? GroupWt
{
get { return groupWt; }
set { groupWt = value; }
}
///
/// 委外支数
///
[Description("委外支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? SubcontractNum
{
get { return subcontractNum; }
set { subcontractNum = value; }
}
///
/// 委外回报合格支数
///
[Description("委外回报合格支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? SubcontractcompleteNum
{
get { return subcontractcompleteNum; }
set { subcontractcompleteNum = value; }
}
///
/// 委外回报合格重量
///
[Description("委外回报合格重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? SubcontractcompleteWt
{
get { return subcontractcompleteWt; }
set { subcontractcompleteWt = value; }
}
///
/// 委外单号
///
[Description("委外单号")]
[Nullable(true)]
[DataLength(20)]
public string SubcontractNo
{
get { return subcontractNo; }
set { subcontractNo = value; }
}
///
/// 委外单号序号
///
[Description("委外单号序号")]
[Nullable(true)]
[DataLength(20)]
public string SubcontractNoSeq
{
get { return subcontractNoSeq; }
set { subcontractNoSeq = value; }
}
///
/// 作业日期(年月日)
///
[Description("作业日期")]
[Nullable(true)]
[DataLength(8)]
public string ProYearMonthDay
{
get { return proYearMonthDay; }
set { proYearMonthDay = value; }
}
///
/// 操作人
///
[Description("操作人")]
[Nullable(true)]
[DataLength(20)]
public string ProUser
{
get { return proUser; }
set { proUser = value; }
}
///
/// 操作班次
///
[Description("班次")]
[Nullable(true)]
[DataLength(1)]
public string ProShift
{
get { return proShift; }
set { proShift = value; }
}
///
/// 操作班组
///
[Description("班组")]
[Nullable(true)]
[DataLength(1)]
public string ProGroup
{
get { return proGroup; }
set { proGroup = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
[Nullable(true)]
public string ProTime
{
get { return proTime; }
set { proTime = value; }
}
///
/// 组炉标记(1组炉生成的)
///
[Description("组炉标记")]
[Nullable(true)]
[DataLength(1)]
public string GroupLog
{
get { return groupLog; }
set { groupLog = value; }
}
///
/// 组炉操作编号ID
///
[Description("组炉操作编号ID")]
[Nullable(true)]
[DataLength(20)]
public string GroupId
{
get { return groupId; }
set { groupId = value; }
}
///
/// 主交货编码PK
///
[Description("主交货编码PK")]
[Nullable(true)]
[DataLength(40)]
public string OrdLnDlyPk
{
get { return ordLnDlyPk; }
set { ordLnDlyPk = value; }
}
///
/// 主合同号
///
[Description("合同号")]
[Nullable(true)]
[DataLength(20)]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 主合同行号
///
[Description("合同行号")]
[Nullable(true)]
[DataLength(3)]
public string OrderSeq
{
get { return orderSeq; }
set { orderSeq = value; }
}
///
/// 主交货编码
///
[Description("交货行号")]
[Nullable(true)]
[DataLength(3)]
public string DeliveryNo
{
get { return deliveryNo; }
set { deliveryNo = 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; }
}
///
/// 返线工序点
///
[Description("返线工序点")]
[Nullable(true)]
[DataLength(10)]
public string ReturnProcess
{
get { return returnProcess; }
set { returnProcess = value; }
}
///
/// 返线工序点
///
[Description("返线工序点")]
[Nullable(true)]
[DataLength(10)]
public string ReturnProcessCode
{
get { return returnProcessCode; }
set { returnProcessCode = value; }
}
///
/// 委外重量
///
[Description("委外重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? SubcontractWt
{
get { return subcontractWt; }
set { subcontractWt = value; }
}
///
/// 返线时间
///
[Description("返线时间")]
[Nullable(true)]
public string ReTime
{
get { return reTime; }
set { reTime = value; }
}
///
/// 返线人
///
[Description("返线人")]
[Nullable(true)]
[DataLength(20)]
public string ReName
{
get { return reName; }
set { reName = value; }
}
///
/// 委外时间
///
[Description("委外时间")]
[Nullable(true)]
public string SubcontractTime
{
get { return subcontractTime; }
set { subcontractTime = value; }
}
///
/// 委外人
///
[Description("委外人")]
[Nullable(true)]
[DataLength(20)]
public string SubcontractName
{
get { return subcontractName; }
set { subcontractName = value; }
}
///
/// 委外回报时间
///
[Description("回报时间")]
[Nullable(true)]
public string SubcontractcompleteTime
{
get { return subcontractcompleteTime; }
set { subcontractcompleteTime = value; }
}
///
/// 委外回报人
///
[Description("回报人")]
[Nullable(true)]
[DataLength(20)]
public string SubcontractcompleteName
{
get { return subcontractcompleteName; }
set { subcontractcompleteName = value; }
}
///
/// 委外回报废品支数
///
[Description("废品支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? HbFpNum
{
get { return hbFpNum; }
set { hbFpNum = value; }
}
///
/// 委外回报废品重量
///
[Description("废品重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? HbFpWt
{
get { return hbFpWt; }
set { hbFpWt = value; }
}
///
/// 结算日期(年月)
///
[Description("结算年月")]
[Nullable(true)]
[DataLength(6)]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
///
/// 原炉批计划ID
///
[Description("原炉批计划ID")]
[Nullable(true)]
[DataLength(20)]
public string ZyBatchId1
{
get { return zyBatchId1; }
set { zyBatchId1 = value; }
}
///
/// 组号
///
[Description("组号")]
[Nullable(true)]
[DataLength(3)]
public string BatchGroudNo
{
get { return batchGroudNo; }
set { batchGroudNo = value; }
}
///
/// 标示炉号
///
[Description("标示炉号")]
[Nullable(true)]
[DataLength(20)]
public string FlagStoveNo
{
get { return flagStoveNo; }
set { flagStoveNo = value; }
}
///
/// 离线备注
///
[Description("离线备注")]
[Nullable(true)]
[DataLength(20)]
public string Memo
{
get; set; }
///
/// 上料工序
///
private string gxsl;
/// 上料工序
public string Gxsl
{
get { return gxsl; }
set { gxsl = value; }
}
///
/// 探伤工序
///
private string gxts;
/// 探伤工序
public string Gxts
{
get { return gxts; }
set { gxts = value; }
}
///
/// 分切工序
///
private string gxfq;
/// 分切工序
public string Gxfq
{
get { return gxfq; }
set { gxfq = value; }
}
///
/// 螺纹工序
///
private string gxcs;
/// 螺纹工序
public string Gxcs
{
get { return gxcs; }
set { gxcs = value; }
}
///
/// 螺纹工序
///
private string gxlw;
/// 螺纹工序
public string Gxlw
{
get { return gxlw; }
set { gxlw = value; }
}
///
/// 通径工序
///
private string gxtj;
/// 通径工序
public string Gxtj
{
get { return gxtj; }
set { gxtj = value; }
}
///
/// 水压工序
///
private string gxsy;
///
/// 水压工序
///
public string Gxsy
{
get { return gxsy; }
set { gxsy = value; }
}
///
/// 倒凌工序
///
private string gxdl;
///
/// 倒凌工序
///
public string Gxdl
{
get { return gxdl; }
set { gxdl = value; }
}
///
/// 测量工序
///
private string gxcl;
///
/// 测量工序
///
public string Gxcl
{
get { return gxcl; }
set { gxcl = value; }
}
///
/// 拧接工序
///
private string gxnj;
///
/// 拧接工序
///
public string Gxnj
{
get { return gxnj; }
set { gxnj = value; }
}
private string outnumCut = "";
[Description("分切数")]
[Nullable(true)]
[DataLength(20)]
public string OutnumCut
{
get { return outnumCut; }
set { outnumCut = value; }
}
[Description("喷印管号")]
public string MatNo
{
get;
set;
}
}
}