using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.SaleOrder
{
///
/// 数据库表SLM_ORD_DESIGN_MSC_PL_PRC所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:Chenxi-PC2 时间:2015-09-16
///
public class CraftOrdDesignMscPlPrcEntity
{
///
/// DESGIN_KEY
///
private string desginKey = "";
///
/// 全程产线号(COM_MSC_BACKLOG)
///
private string mscPline = "";
///
/// 全程途径码
///
private string wholeBacklog = "";
///
/// 全程途径描述
///
private string wholeBacklogDesc = "";
///
/// 全程工序顺序号(COM_MSC_PROCESS)
///
private decimal? backlogSeq = null;
///
/// 工序代码(COM_MSC_PROCESS)
///
private string processCode = "";
///
/// 工序名称(COM_MSC_PROCESS)
///
private string processDesc = "";
///
/// 同工序循环次数(COM_MSC_PROCESS)
///
private decimal? processSeq = null;
///
/// 二级工序代码(COM_MSC_PROCESS)
///
private string processCodeC = "";
///
/// 二级工序名称(COM_MSC_PROCESS)
///
private string processDescC = "";
///
/// 生产时间(小时/100吨)(自炼)
///
private decimal? minuteProduct = null;
///
/// 生产时间(小时/100吨)(外购)
///
private decimal? minuteProductOut = null;
///
/// 等待时间(小时/100吨)(自炼)
///
private decimal? minuteWaite = null;
///
/// 等待时间(小时/100吨)(外购)
///
private decimal? minuteWaiteOut = null;
///
/// 批量等待时间(小时/100吨)(自炼)
///
private decimal? batchWaite = null;
///
/// 批量等待时间(小时/100吨)(外购)
///
private decimal? batchWaiteOut = null;
///
/// 成分标准索引号(CICN000001)(COM_MSC_PROCESS)(集合,","分割)
///
private string cic = "";
///
/// 材质标准索引号(COM_MSC_PROCESS)
///
private string pic = "";
///
/// 公差标准索引号(COM_MSC_PROCESS)
///
private string sic = "";
///
/// 探伤索引号(COM_MSC_PROCESS)
///
private string dic = "";
///
/// 水压索引码(COM_MSC_PROCESS)
///
private string wic = "";
///
/// 内控加工索引号(COM_MSC_PROCESS)(集合,","分割)
///
private string gic = "";
///
/// DESGIN_KEY
///
[Description("DESGIN_KEY")]
[Nullable(false)]
[DataLength(40)]
public string DesginKey
{
get { return desginKey; }
set { desginKey = value; }
}
///
/// 全程产线号(COM_MSC_BACKLOG)
///
[Description("全程产线号")]
[Nullable(false)]
[DataLength(6)]
public string MscPline
{
get { return mscPline; }
set { mscPline = value; }
}
///
/// 全程途径码
///
[Description("全程途径码")]
[Nullable(false)]
[DataLength(100)]
public string WholeBacklog
{
get { return wholeBacklog; }
set { wholeBacklog = value; }
}
///
/// 全程途径描述
///
[Description("全程途径描述")]
[Nullable(false)]
[DataLength(500)]
public string WholeBacklogDesc
{
get { return wholeBacklogDesc; }
set { wholeBacklogDesc = value; }
}
///
/// 全程工序顺序号(COM_MSC_PROCESS)
///
[Description("全程工序顺序号")]
[Nullable(false)]
[DataLength(22)]
public decimal? BacklogSeq
{
get { return backlogSeq; }
set { backlogSeq = value; }
}
///
/// 工序代码(COM_MSC_PROCESS)
///
[Description("工序代码")]
[Nullable(false)]
[DataLength(8)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 工序名称(COM_MSC_PROCESS)
///
[Description("工序名称")]
[Nullable(false)]
[DataLength(50)]
public string ProcessDesc
{
get { return processDesc; }
set { processDesc = value; }
}
///
/// 同工序循环次数(COM_MSC_PROCESS)
///
[Description("同工序循环次数")]
[Nullable(true)]
[DataLength(22)]
public decimal? ProcessSeq
{
get { return processSeq; }
set { processSeq = value; }
}
///
/// 二级工序代码(COM_MSC_PROCESS)
///
[Description("二级工序代码")]
[Nullable(true)]
[DataLength(8)]
public string ProcessCodeC
{
get { return processCodeC; }
set { processCodeC = value; }
}
///
/// 二级工序名称(COM_MSC_PROCESS)
///
[Description("二级工序名称")]
[Nullable(true)]
[DataLength(50)]
public string ProcessDescC
{
get { return processDescC; }
set { processDescC = value; }
}
///
/// 生产时间(小时/100吨)(自炼)
///
[Description("生产时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? MinuteProduct
{
get { return minuteProduct; }
set { minuteProduct = value; }
}
///
/// 生产时间(小时/100吨)(外购)
///
[Description("生产时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? MinuteProductOut
{
get { return minuteProductOut; }
set { minuteProductOut = value; }
}
///
/// 等待时间(小时/100吨)(自炼)
///
[Description("等待时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? MinuteWaite
{
get { return minuteWaite; }
set { minuteWaite = value; }
}
///
/// 等待时间(小时/100吨)(外购)
///
[Description("等待时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? MinuteWaiteOut
{
get { return minuteWaiteOut; }
set { minuteWaiteOut = value; }
}
///
/// 批量等待时间(小时/100吨)(自炼)
///
[Description("批量等待时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? BatchWaite
{
get { return batchWaite; }
set { batchWaite = value; }
}
///
/// 批量等待时间(小时/100吨)(外购)
///
[Description("批量等待时间")]
[Nullable(true)]
[DataLength(8)]
public decimal? BatchWaiteOut
{
get { return batchWaiteOut; }
set { batchWaiteOut = value; }
}
///
/// 成分标准索引号(CICN000001)(COM_MSC_PROCESS)(集合,","分割)
///
[Description("成分标准索引号(CICN000001)(COM_MSC_PROCESS)(集合,\",\"分割)")]
[Nullable(true)]
[DataLength(400)]
public string Cic
{
get { return cic; }
set { cic = value; }
}
///
/// 材质标准索引号(COM_MSC_PROCESS)
///
[Description("材质标准索引号(COM_MSC_PROCESS)")]
[Nullable(true)]
[DataLength(400)]
public string Pic
{
get { return pic; }
set { pic = value; }
}
///
/// 公差标准索引号(COM_MSC_PROCESS)
///
[Description("公差标准索引号(COM_MSC_PROCESS)")]
[Nullable(true)]
[DataLength(400)]
public string Sic
{
get { return sic; }
set { sic = value; }
}
///
/// 探伤索引号(COM_MSC_PROCESS)
///
[Description("探伤索引号(COM_MSC_PROCESS)")]
[Nullable(true)]
[DataLength(400)]
public string Dic
{
get { return dic; }
set { dic = value; }
}
///
/// 水压索引码(COM_MSC_PROCESS)
///
[Description("水压索引码(COM_MSC_PROCESS)")]
[Nullable(true)]
[DataLength(400)]
public string Wic
{
get { return wic; }
set { wic = value; }
}
///
/// 内控加工索引号(COM_MSC_PROCESS)(集合,","分割)
///
[Description("内控加工索引号(COM_MSC_PROCESS)(集合,\",\"分割)")]
[Nullable(true)]
[DataLength(400)]
public string Gic
{
get { return gic; }
set { gic = value; }
}
}
}