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.Treatment.Entity
{
///
/// 数据库表YDM_ZC_INITIAL_JG_HSK所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160918TFRG 时间:2021-11-02
///
public class YdmZcInitialJgHskEntity
{
///
/// ID_
///
private string initialId = "";
///
/// 炉号
///
private string judgeStoveNo = "";
///
/// 批号
///
private string batchNo = "";
///
/// 工单号(上料行ID+01流水)
///
private string woId = "";
///
/// 接箍产线代码
///
private string plineCode = "";
///
/// 接箍产线描述
///
private string plineName = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 外径
///
private decimal? dimater = null;
///
/// 壁厚
///
private decimal? height = null;
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 支数
///
private decimal? actCount = null;
///
/// 实重
///
private decimal? actWeight = null;
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 结转年月
///
private string balYearMonth = "";
///
/// ID_
///
[Description("ID_")]
[Nullable(false)]
[DataLength(40)]
public string InitialId
{
get { return initialId; }
set { initialId = value; }
}
///
/// 炉号
///
[Description("炉号")]
[Nullable(false)]
[DataLength(20)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 批号
///
[Description("批号")]
[Nullable(true)]
[DataLength(20)]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 工单号(上料行ID+01流水)
///
[Description("工单号(上料行ID+01流水)")]
[Nullable(true)]
[DataLength(30)]
public string WoId
{
get { return woId; }
set { woId = 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(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(5)]
public decimal? Dimater
{
get { return dimater; }
set { dimater = value; }
}
///
/// 壁厚
///
[Description("壁厚")]
[Nullable(true)]
[DataLength(4)]
public decimal? Height
{
get { return height; }
set { height = 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 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(5)]
public decimal? ActCount
{
get { return actCount; }
set { actCount = value; }
}
///
/// 实重
///
[Description("实重")]
[Nullable(true)]
[DataLength(12)]
public decimal? ActWeight
{
get { return actWeight; }
set { actWeight = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 结转年月
///
[Description("结转年月")]
[Nullable(true)]
[DataLength(6)]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
}
}