using System;
using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.LgClassModel
{
///
/// 数据库表STL_INCISION所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:zhou 时间:2017-08-04
///
[Serializable]
public class StlIncisionEntity
{
///
/// 切割实绩编号(虚拟炉号+顺序号+3位流水)
///
private string incisionNo = "";
///
/// 虚拟炉号
///
private string ccmState = "";
///
/// 虚拟炉号
///
private string furnaceno = "";
///
/// 顺序号(虚拟炉号)
///
private string sequenceno = "";
///
/// 浇次号
///
private string castNo = "";
///
/// 浇次炉数
///
private decimal? heatcnt = null;
///
/// 铸机号
///
private string ccmid = "";
///
/// 铸流号
///
private string flowno = "";
///
/// 铸造订单编号
///
private string proPlanId = "";
///
/// 工序排产序号
///
private string gxPlanNo = "";
///
/// 生产管理号(内部 )
///
private string proNo = "";
///
/// 熔炼炉号
///
private string stoveNo = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 标示炉号(打印炉号)
///
private string flagStoveNo = "";
///
/// 管坯类型(1铸坯2锻坯)
///
private string gptype = "";
///
/// 铸造类型(1连铸2模铸)
///
private string castingtype = "";
///
/// 物料码
///
private string materialNo = "";
///
/// 物料描叙
///
private string materialName = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 成分标准索引号(内控)
///
private string cic = "";
///
/// 材质标准索引号(内控)
///
private string pic = "";
///
/// 公差标准索引号(内控)
///
private string sic = "";
///
/// 探伤索引号(内控)
///
private string dic = "";
///
/// 组号
///
private string batchGroudNo = "";
///
/// 管坯直径
///
private string diameter = null;
///
/// 单倍坯长(mm)
///
private decimal? lenGpSingle = null;
///
/// 单倍坯重
///
private double? weightGpOne = null;
///
/// 倍尺数
///
private double? cutNumGp = null;
///
/// 倍尺坯长度(mm)
///
private decimal? lengthM = null;
///
/// 倍尺坯重
///
private decimal? weightM = null;
///
/// 支数
///
private double? actCount = null;
///
/// 坯总重
///
private decimal? actWeight = null;
///
/// 喷号机标志(下发切割实绩给L2)
///
private string l2flag = "";
///
/// 生产(年月日)
///
private string proYearMonthDay = "";
///
/// 结算日期(年月)
///
private string balYearMonth = "";
///
/// 作业时间
///
private string rroTime = "";
///
/// 作业人
///
private string proUser = "";
///
/// 作业班次
///
private string proShift = "";
///
/// 作业班组
///
private string proGroup = "";
[Description("")]
public bool Check { get; set; }
///
/// 切割实绩编号(虚拟炉号+顺序号+3位流水)
///
[Description("切割实绩编号")]
[Nullable(false)]
[DataLength(30)]
public string IncisionNo
{
get { return incisionNo; }
set { incisionNo = value; }
}
///
/// 作业状态:00=初始状态;10=切割完成;20=表检完成;30=下线
///
[Description("作业状态")]
[Nullable(false)]
[DataLength(30)]
public string CcmState
{
get { return ccmState; }
set { ccmState = value; }
}
///
/// 虚拟炉号
///
[Description("虚拟炉号")]
[Nullable(true)]
[DataLength(20)]
public string Furnaceno
{
get { return furnaceno; }
set { furnaceno = value; }
}
///
/// 顺序号(虚拟炉号)
///
[Description("炉次顺序号")]
[Nullable(true)]
[DataLength(20)]
public string Sequenceno
{
get { return sequenceno; }
set { sequenceno = 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(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 ProNo
{
get { return proNo; }
set { proNo = value; }
}
///
/// 熔炼炉号
///
[Description("熔炼炉号")]
[Nullable(true)]
[DataLength(10)]
public string StoveNo
{
get { return stoveNo; }
set { stoveNo = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(true)]
[DataLength(6)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 标示炉号(打印炉号)
///
[Description("打印炉号")]
[Nullable(true)]
[DataLength(20)]
public string FlagStoveNo
{
get { return flagStoveNo; }
set { flagStoveNo = value; }
}
///
/// 管坯类型(1铸坯2锻坯)
///
[Description("管坯类型")]
[Nullable(true)]
[DataLength(1)]
public string Gptype
{
get { return gptype; }
set { gptype = value; }
}
///
/// 铸造类型(1连铸2模铸)
///
[Description("铸造类型")]
[Nullable(true)]
[DataLength(1)]
public string Castingtype
{
get { return castingtype; }
set { castingtype = 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(50)]
public string Gradename
{
get { return gradename; }
set { gradename = value; }
}
///
/// 成分标准索引号(内控)
///
[Description("成分标准索引号")]
[Nullable(true)]
[DataLength(50)]
public string Cic
{
get { return cic; }
set { cic = value; }
}
///
/// 材质标准索引号(内控)
///
[Description("材质标准索引号")]
[Nullable(true)]
[DataLength(50)]
public string Pic
{
get { return pic; }
set { pic = value; }
}
///
/// 公差标准索引号(内控)
///
[Description("公差标准索引号")]
[Nullable(true)]
[DataLength(50)]
public string Sic
{
get { return sic; }
set { sic = value; }
}
///
/// 探伤索引号(内控)
///
[Description("探伤索引号")]
[Nullable(true)]
[DataLength(50)]
public string Dic
{
get { return dic; }
set { dic = value; }
}
///
/// 组号
///
[Description("组号")]
[Nullable(true)]
[DataLength(3)]
public string BatchGroudNo
{
get { return batchGroudNo; }
set { batchGroudNo = value; }
}
///
/// 管坯直径
///
[Description("管坯直径")]
[Nullable(true)]
[DataLength(10)]
public string Diameter
{
get { return diameter; }
set { diameter = value; }
}
///
/// 单倍坯长(mm)
///
[Description("单倍坯长(mm)")]
[Nullable(true)]
[DataLength(10)]
public decimal? LenGpSingle
{
get { return lenGpSingle; }
set { lenGpSingle = value; }
}
///
/// 单倍坯重
///
[Description("单倍坯重")]
[Nullable(true)]
[DataLength(10)]
public double? WeightGpOne
{
get { return weightGpOne; }
set { weightGpOne = value; }
}
///
/// 倍尺数
///
[Description("倍尺数")]
[Nullable(true)]
[DataLength(5)]
public double? CutNumGp
{
get { return cutNumGp; }
set { cutNumGp = value; }
}
///
/// 倍尺坯长度(mm)
///
[Description("倍尺坯长度(mm)")]
[Nullable(true)]
[DataLength(10)]
public decimal? LengthM
{
get { return lengthM; }
set { lengthM = value; }
}
///
/// 倍尺坯重
///
[Description("倍尺坯重")]
[Nullable(true)]
[DataLength(10)]
public decimal? WeightM
{
get { return weightM; }
set { weightM = value; }
}
///
/// 支数
///
[Description("支数")]
[Nullable(true)]
[DataLength(3)]
public double? ActCount
{
get { return actCount; }
set { actCount = value; }
}
///
/// 坯总重
///
[Description("坯总重")]
[Nullable(true)]
[DataLength(10)]
public decimal? ActWeight
{
get { return actWeight; }
set { actWeight = value; }
}
///
/// 喷号机标志(下发切割实绩给L2)
///
[Description("喷号机标志")]
[Nullable(true)]
[DataLength(1)]
public string L2flag
{
get { return l2flag; }
set { l2flag = value; }
}
///
/// 生产(年月日)
///
[Description("生产(年月日)")]
[Nullable(true)]
[DataLength(8)]
public string ProYearMonthDay
{
get { return proYearMonthDay; }
set { proYearMonthDay = value; }
}
///
/// 结算日期(年月)
///
[Description("结算日期(年月)")]
[Nullable(true)]
[DataLength(6)]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
///
/// 作业时间
///
[Description("作业时间")]
[Nullable(true)]
public string RroTime
{
get { return rroTime; }
set { rroTime = 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; }
}
private string gowhereName = "";
///
/// 物流去向名称集合
///
[Description("去向")]
[Nullable(true)]
[DataLength(512)]
public string GowhereName
{
get { return gowhereName; }
set { gowhereName = value; }
}
private long? cutNum = null;
///
/// 分切
///
[Description("分切")]
[Nullable(true)]
[DataLength(10)]
public long? CutNum
{
get { return cutNum; }
set { cutNum = value; }
}
}
}