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
{
///
/// 数据库表QCM_LG_PROGRRSS所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DM22222 时间:2016-11-23
///
public class StlLgProgrrssEntity
{
///
/// 材料号
///
private string matNo = "";
///
/// 熔炼炉号
///
private string stoveNo = "";
///
/// 连铸炉号
///
private string ccmstoveno = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 浇次号
///
private string castNo = "";
///
/// 浇次炉数
///
private decimal? heatcnt = null;
///
/// 铸机号
///
private string ccmid = "";
///
/// 铸流号
///
private string flowno = "";
///
/// 切割序号
///
private string cutseqno = "";
///
/// 物料码
///
private string materialNo = "";
///
/// 物料描叙
///
private string materialName = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 组号
///
private string batchGroudNo = "";
///
/// 标示炉号
///
private string flagStoveNo = "";
///
/// 内控标准号
///
private string standardscode = "";
///
/// 内控标准号描述
///
private string standardremak = "";
///
/// 直径
///
private string diameter = null;
///
/// 倍尺数
///
private decimal? fixNum = null;
///
/// 单倍长度
///
private decimal? fixLen = null;
///
/// 长度
///
private decimal? length = null;
///
/// 支数
///
private decimal? actCount = null;
///
/// 重量
///
private decimal? weight = null;
///
/// 收料标志(0:未交库 1:已交库)
///
private string reciveFlag = "";
///
/// 状态(0:合格,1待处理,2:剔废,3复检)
///
private string status = "";
///
/// 生产日期(创建时间)
///
private string cuttime = "";
///
/// 是否确认(0:未确认,1已确认)
///
private string affirmFlag = "";
///
/// 废品原因
///
private string scrapReason = "";
///
/// 原材料号
///
private string oldMatNo = "";
///
/// 待处理原因
///
private string alarmReason = "";
///
/// 检验次数(1次或者N次)
///
private string testCount = "";
///
/// 是否有效(0:有效,1:无效)
///
private string isValid = "";
///
/// 虚拟炉号
///
private string furnaceno = "";
///
/// 组炉标识(0,未组炉 1-组炉)
///
private string groupFlag = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 电炉产线代码
///
private string efPlineCode = "";
///
/// 电炉产线
///
private string efPlineName = "";
///
/// 打印炉号
///
private string printStoveNo = "";
///
/// 铸造订单编号
///
private string proPlanId = "";
///
/// 工序排产序号
///
private string gxPlanNo = "";
///
/// 管坯需求编号
///
private string gpreqId = "";
///
/// 结转年月
///
private string balYearMonth = "";
///
/// 产线名称
///
private string plineName = "";
///
/// 委外单号
///
private string subcontractNo = "";
///
/// 委外单号序号
///
private string subcontractNoSeq = "";
///
/// 结炉标识(0 未结炉 1已结炉)
///
private string nodeFurFlag = "";
///
/// 成分标准索引号(内控)
///
private string cic = "";
///
/// 材质标准索引号(内控)
///
private string pic = "";
///
/// 公差标准索引号(内控)
///
private string sic = "";
///
/// 探伤索引号集合(内控)
///
private string dic = "";
///
/// 判定炉号(序号)
///
private string judgeStoveNoSeq = "";
///
/// 管坯类型(1铸坯2锻坯)
///
private string gptype = "";
///
/// 顺序号
///
private string sequenceno = "";
///
/// 操作工序
///
private string opProcess = "";
///
/// 废品长度
///
private string scrapLen = "";
///
/// 废品重量
///
private string scrapWgt = "";
///
/// 废品原因下单倍支数
///
private string scrapReasonNum = "";
///
/// 废品单倍支数
///
[Description("废品单倍支数")]
[Nullable(false)]
[DataLength(3)]
public string ScrapReasonNum
{
get { return scrapReasonNum; }
set { scrapReasonNum = value; }
}
///
/// 废品长度
///
[Description("废品长度")]
[Nullable(false)]
[DataLength(5)]
public string ScrapLen
{
get { return scrapLen; }
set { scrapLen = value; }
}
///
/// 废品重量
///
[Description("废品重量")]
[Nullable(false)]
[DataLength(5)]
public string ScrapWgt
{
get { return scrapWgt; }
set { scrapWgt = value; }
}
///
/// 操作工序
///
[Description("操作工序")]
[Nullable(false)]
[DataLength(1)]
public string OpProcess
{
get { return opProcess; }
set { opProcess = value; }
}
///
/// 顺序号
///
[Description("顺序号")]
[Nullable(false)]
[DataLength(15)]
public string Sequenceno
{
get { return sequenceno; }
set { sequenceno = value; }
}
///
/// 材料号
///
[Description("材料号")]
[Nullable(false)]
[DataLength(15)]
public string MatNo
{
get { return matNo; }
set { matNo = value; }
}
///
/// 熔炼炉号
///
[Description("熔炼炉号")]
[Nullable(false)]
[DataLength(10)]
public string StoveNo
{
get { return stoveNo; }
set { stoveNo = value; }
}
///
/// 连铸炉号
///
[Description("连铸炉号")]
[Nullable(true)]
[DataLength(10)]
public string Ccmstoveno
{
get { return ccmstoveno; }
set { ccmstoveno = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(false)]
[DataLength(6)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 浇次号
///
[Description("浇次号")]
[Nullable(true)]
[DataLength(10)]
public string CastNo
{
get { return castNo; }
set { castNo = value; }
}
///
/// 浇次炉数
///
[Description("浇次炉数")]
[Nullable(true)]
[DataLength(5)]
public decimal? Heatcnt
{
get { return heatcnt; }
set { heatcnt = value; }
}
///
/// 铸机号
///
[Description("铸机号")]
[Nullable(true)]
[DataLength(4)]
public string Ccmid
{
get { return ccmid; }
set { ccmid = value; }
}
///
/// 铸流号
///
[Description("铸流号")]
[Nullable(true)]
[DataLength(2)]
public string Flowno
{
get { return flowno; }
set { flowno = value; }
}
///
/// 切割序号
///
[Description("切割序号")]
[Nullable(true)]
[DataLength(4)]
public string Cutseqno
{
get { return cutseqno; }
set { cutseqno = value; }
}
///
/// 物料码
///
[Description("物料码")]
[Nullable(true)]
[DataLength(30)]
public string MaterialNo
{
get { return materialNo; }
set { materialNo = value; }
}
///
/// 物料描叙
///
[Description("物料描叙")]
[Nullable(true)]
[DataLength(100)]
public string MaterialName
{
get { return materialName; }
set { materialName = value; }
}
///
/// 钢种代码
///
[Description("钢种代码")]
[Nullable(true)]
[DataLength(50)]
public string Gradecode
{
get { return gradecode; }
set { gradecode = value; }
}
///
/// 钢种名称
///
[Description("钢种")]
[Nullable(true)]
[DataLength(20)]
public string Gradename
{
get { return gradename; }
set { gradename = 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 Standardscode
{
get { return standardscode; }
set { standardscode = value; }
}
///
/// 内控标准号描述
///
[Description("内控标准号描述")]
[Nullable(true)]
[DataLength(200)]
public string Standardremak
{
get { return standardremak; }
set { standardremak = value; }
}
///
/// 直径
///
[Description("直径")]
[Nullable(true)]
[DataLength(22)]
public string Diameter
{
get { return diameter; }
set { diameter = value; }
}
///
/// 倍尺数
///
[Description("倍尺数")]
[Nullable(true)]
[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(3)]
public decimal? ActCount
{
get { return actCount; }
set { actCount = value; }
}
///
/// 重量
///
[Description("重量")]
[Nullable(true)]
[DataLength(22)]
public decimal? Weight
{
get { return weight; }
set { weight = value; }
}
///
/// 收料标志(0:未交库 1:已交库)
///
[Description("收料标志(0:未交库 1:已交库)")]
[Nullable(true)]
[DataLength(1)]
public string ReciveFlag
{
get { return reciveFlag; }
set { reciveFlag = value; }
}
///
/// 状态(0:合格,1待处理,2:剔废,3复检)
///
[Description("状态")]
[Nullable(false)]
[DataLength(1)]
public string Status
{
get { return status; }
set { status = value; }
}
///
/// 生产日期(创建时间)
///
[Description("生产日期(创建时间)")]
[Nullable(true)]
public string Cuttime
{
get { return cuttime; }
set { cuttime = value; }
}
///
/// 是否确认(0:未确认,1已确认)
///
[Description("是否确认(0:未确认,1已确认)")]
[Nullable(true)]
[DataLength(1)]
public string AffirmFlag
{
get { return affirmFlag; }
set { affirmFlag = value; }
}
///
/// 废品原因
///
[Description("废品原因")]
[Nullable(true)]
[DataLength(20)]
public string ScrapReason
{
get { return scrapReason; }
set { scrapReason = value; }
}
///
/// 原材料号
///
[Description("原材料号")]
[Nullable(true)]
[DataLength(15)]
public string OldMatNo
{
get { return oldMatNo; }
set { oldMatNo = value; }
}
///
/// 待处理原因
///
[Description("待处理原因")]
[Nullable(true)]
[DataLength(20)]
public string AlarmReason
{
get { return alarmReason; }
set { alarmReason = value; }
}
///
/// 检验次数(1次或者N次)
///
[Description("检验次数")]
[Nullable(true)]
[DataLength(1)]
public string TestCount
{
get { return testCount; }
set { testCount = value; }
}
///
/// 是否有效(0:有效,1:无效)
///
[Description("是否有效(0:有效,1:无效)")]
[Nullable(true)]
[DataLength(1)]
public string IsValid
{
get { return isValid; }
set { isValid = value; }
}
///
/// 虚拟炉号
///
[Description("虚拟炉号")]
[Nullable(false)]
[DataLength(20)]
public string Furnaceno
{
get { return furnaceno; }
set { furnaceno = value; }
}
///
/// 组炉标识(0,未组炉 1-组炉)
///
[Description("组炉标识(0,未组炉 1-组炉)")]
[Nullable(true)]
[DataLength(1)]
public string GroupFlag
{
get { return groupFlag; }
set { groupFlag = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 电炉产线代码
///
[Description("电炉产线代码")]
[Nullable(true)]
[DataLength(20)]
public string EfPlineCode
{
get { return efPlineCode; }
set { efPlineCode = value; }
}
///
/// 电炉产线代码
///
[Description("电炉产线")]
[Nullable(true)]
[DataLength(20)]
public string EfPlineName
{
get { return efPlineName; }
set { efPlineName = value; }
}
///
/// 打印炉号
///
[Description("打印炉号")]
[Nullable(true)]
[DataLength(20)]
public string PrintStoveNo
{
get { return printStoveNo; }
set { printStoveNo = 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 GpreqId
{
get { return gpreqId; }
set { gpreqId = value; }
}
///
/// 结转年月
///
[Description("结转年月")]
[Nullable(true)]
[DataLength(6)]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
///
/// 产线名称
///
[Description("产线名称")]
[Nullable(true)]
[DataLength(100)]
public string PlineName
{
get { return plineName; }
set { plineName = 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; }
}
///
/// 结炉标识(0 未结炉 1已结炉)
///
[Description("结炉标识(0 未结炉 1已结炉)")]
[Nullable(true)]
[DataLength(1)]
public string NodeFurFlag
{
get { return nodeFurFlag; }
set { nodeFurFlag = value; }
}
///
/// 成分标准索引号(内控)
///
[Description("成分标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string Cic
{
get { return cic; }
set { cic = value; }
}
///
/// 材质标准索引号(内控)
///
[Description("材质标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string Pic
{
get { return pic; }
set { pic = value; }
}
///
/// 公差标准索引号(内控)
///
[Description("公差标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string Sic
{
get { return sic; }
set { sic = value; }
}
///
/// 探伤索引号集合(内控)
///
[Description("探伤索引号集合(内控)")]
[Nullable(true)]
[DataLength(40)]
public string Dic
{
get { return dic; }
set { dic = value; }
}
///
/// 判定炉号(序号)
///
[Description("判定炉号(序号)")]
[Nullable(true)]
[DataLength(10)]
public string JudgeStoveNoSeq
{
get { return judgeStoveNoSeq; }
set { judgeStoveNoSeq = value; }
}
///
/// 管坯类型(1铸坯2锻坯)
///
[Description("管坯类型(1铸坯2锻坯)")]
[Nullable(true)]
[DataLength(20)]
public string Gptype
{
get { return gptype; }
set { gptype = value; }
}
///
/// 操作人
///
private string colUser = "";
[Description("操作人")]
[Nullable(false)]
[DataLength(20)]
public string ColUser
{
get { return colUser; }
set { colUser = value; }
}
///
/// 班次
///
private string colShift = "";
[Description("班次")]
[Nullable(false)]
[DataLength(20)]
public string ColShift
{
get { return colShift; }
set { colShift = value; }
}
///
/// 班组
///
private string colGroup = "";
[Description("班组")]
[Nullable(false)]
[DataLength(20)]
public string ColGroup
{
get { return colGroup; }
set { colGroup = value; }
}
///
/// 序号
///
private string seq = "";
[Description("序号")]
[Nullable(false)]
[DataLength(20)]
public string Seq
{
get { return seq; }
set { seq = value; }
}
///
/// 管坯剔除
///
private string scrap = "";
///
/// 管坯剔除
///
[Description("管坯剔除")]
[Nullable(false)]
[DataLength(20)]
public string Scrap
{
get { return scrap; }
set { scrap = value; }
}
///
/// 剔除回退
///
private string scrapBack = "";
///
///
///
[Description("剔除回退")]
[Nullable(false)]
[DataLength(20)]
public string ScrapBack
{
get { return scrapBack; }
set { scrapBack = value; }
}
///
/// 离线
///
private string alarm = "";
///
///
///
[Description("离线")]
[Nullable(false)]
[DataLength(20)]
public string Alarm
{
get { return alarm; }
set { alarm = value; }
}
///
/// 离线回退
///
private string alarmBack = "";
///
///
///
[Description("离线回退")]
[Nullable(false)]
[DataLength(20)]
public string AlarmBack
{
get { return alarmBack; }
set { alarmBack = value; }
}
///
/// 缺陷原因
///
private string reason = "";
///
/// 缺陷原因
///
[Description("缺陷原因")]
[Nullable(true)]
[DataLength(50)]
public string Reason
{
get { return reason; }
set { reason = value; }
}
}
}