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.ZGMil.Entity
{
///
/// 数据库表MIL_FURNACES_RESLUT_DETIA所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160918TFRG 时间:2016-12-28
///
public class MilFurnacesReslutDetiaEntity
{
///
/// 生产批号
///
private string lotNo = "";
///
/// 熔炼炉号
///
private string stoveNo = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 外径(实际)
///
private decimal? diameter = null;
///
/// 壁厚(实际)
///
private decimal? thickness = null;
///
/// 长度(实际)
///
private decimal? length = null;
///
/// 厂线代码
///
private string plineCode = "";
///
/// 组炉支数
///
private decimal? groupNum = null;
///
/// 是否是组炉批标识(0-未组批,1-组批中,2-组批完成)
///
private string zpFlag = "";
///
/// 状态(0-下线 1-处理完成)
///
private string status = "";
///
/// 操作时间
///
private string colTime = "";
///
/// 备注
///
private string remark = "";
///
/// 操作人
///
private string colUser = "";
///
/// 操作班次
///
private string colShift = "";
///
/// 操作班组
///
private string colGroup = "";
///
/// 重量
///
private decimal? zpHeight = null;
///
/// 品名描述
///
private string producname = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 产品规格代码
///
private string specCode = "";
///
/// 产品规格描述
///
private string specName = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 标准类别代码
///
private string stdStyle = "";
///
/// 标准类别描述(PSL1....)
///
private string stdStyleDesc = "";
///
/// 工序合同号
///
private string contractNo = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 长度范围
///
private string actLenRange = "";
///
/// 组批生产批号
///
private string zpLotNo = "";
///
/// 组批判定炉号
///
private string zpJudgeStoveNo = "";
///
/// 去向(A:成品 ,B、C:在制品)
///
private string target = "";
///
/// 机组
///
private string plineName = "";
[Description("机组")]
[Nullable(true)]
[DataLength(20)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 生产批号
///
[Description("生产批号")]
[Nullable(true)]
[DataLength(20)]
public string LotNo
{
get { return lotNo; }
set { lotNo = value; }
}
///
/// 熔炼炉号
///
[Description("熔炼炉号")]
[Nullable(true)]
[DataLength(20)]
public string StoveNo
{
get { return stoveNo; }
set { stoveNo = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(false)]
[DataLength(20)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 外径(实际)
///
[Description("外径(实际)")]
[Nullable(true)]
[DataLength(8)]
public decimal? Diameter
{
get { return diameter; }
set { diameter = value; }
}
///
/// 壁厚(实际)
///
[Description("壁厚(实际)")]
[Nullable(true)]
[DataLength(8)]
public decimal? Thickness
{
get { return thickness; }
set { thickness = value; }
}
///
/// 长度(实际)
///
[Description("长度(实际)")]
[Nullable(true)]
[DataLength(8)]
public decimal? Length
{
get { return length; }
set { length = value; }
}
///
/// 厂线代码
///
[Description("厂线代码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 组炉支数
///
[Description("组炉支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? GroupNum
{
get { return groupNum; }
set { groupNum = value; }
}
///
/// 是否是组炉批标识(0-未组批,1-组批中,2-组批完成)
///
[Description("是否是组炉批标识(0-未组批,1-组批中,2-组批完成)")]
[Nullable(true)]
[DataLength(1)]
public string ZpFlag
{
get { return zpFlag; }
set { zpFlag = value; }
}
///
/// 状态(0-下线 1-处理完成)
///
[Description("状态(0-下线 1-处理完成)")]
[Nullable(true)]
[DataLength(1)]
public string Status
{
get { return status; }
set { status = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
[Nullable(true)]
public string ColTime
{
get { return colTime; }
set { colTime = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(100)]
public string Remark
{
get { return remark; }
set { remark = value; }
}
///
/// 操作人
///
[Description("操作人")]
[Nullable(true)]
[DataLength(20)]
public string ColUser
{
get { return colUser; }
set { colUser = value; }
}
///
/// 操作班次
///
[Description("操作班次")]
[Nullable(true)]
[DataLength(1)]
public string ColShift
{
get { return colShift; }
set { colShift = value; }
}
///
/// 操作班组
///
[Description("操作班组")]
[Nullable(true)]
[DataLength(1)]
public string ColGroup
{
get { return colGroup; }
set { colGroup = value; }
}
///
/// 重量
///
[Description("重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? ZpHeight
{
get { return zpHeight; }
set { zpHeight = 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 SpecCode
{
get { return specCode; }
set { specCode = value; }
}
///
/// 产品规格描述
///
[Description("产品规格描述")]
[Nullable(true)]
[DataLength(100)]
public string SpecName
{
get { return specName; }
set { specName = 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("标准类别描述(PSL1....)")]
[Nullable(true)]
[DataLength(50)]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 工序合同号
///
[Description("工序合同号")]
[Nullable(true)]
[DataLength(200)]
public string ContractNo
{
get { return contractNo; }
set { contractNo = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 长度范围
///
[Description("长度范围")]
[Nullable(true)]
[DataLength(12)]
public string ActLenRange
{
get { return actLenRange; }
set { actLenRange = value; }
}
///
/// 组批生产批号
///
[Description("组批生产批号")]
[Nullable(true)]
[DataLength(20)]
public string ZpLotNo
{
get { return zpLotNo; }
set { zpLotNo = value; }
}
///
/// 组批判定炉号
///
[Description("组批判定炉号")]
[Nullable(true)]
[DataLength(20)]
public string ZpJudgeStoveNo
{
get { return zpJudgeStoveNo; }
set { zpJudgeStoveNo = value; }
}
///
/// 去向(A:成品 ,B、C:在制品)
///
[Description("去向(A:成品 ,B、C:在制品)")]
[Nullable(true)]
[DataLength(20)]
public string Target
{
get { return target; }
set { target = value; }
}
}
}