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.PlnSaleOrd.炼钢计划.entity { /// /// 数据库表CRAFT_LG2_TAR_CIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160925CXYF 时间:2017-08-21 /// public class CraftLg2TarCicEntity { /// /// 目标成分ID(TCIC+工艺卡号+6位流水) /// private string tarCicGid = ""; /// /// 序号 /// private decimal? xh = null; /// /// 工序点(EAF,LF,VD,RH,CCM) /// private string stationCode = ""; /// /// C或P等化学元素代码 /// private string chemCode = ""; /// /// C或P等化学元素描述 /// private string chemName = ""; /// /// 标准范围下限符号 /// private string stdminSign = ""; /// /// 标准范围下限 /// private string stdmin = ""; /// /// 标准范围上限符号 /// private string stdmaxSign = ""; /// /// 标准范围上限 /// private string stdmax = ""; /// /// 目标成分ID(TCIC+工艺卡号+6位流水) /// [Description("目标成分ID")] [Nullable(false)] [DataLength(16)] public string TarCicGid { get { return tarCicGid; } set { tarCicGid = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 工序点(EAF,LF,VD,RH,CCM) /// [Description("工序点")] [Nullable(true)] [DataLength(5)] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// C或P等化学元素代码 /// [Description("化学元素")] [Nullable(true)] [DataLength(5)] public string ChemCode { get { return chemCode; } set { chemCode = value; } } /// /// C或P等化学元素描述 /// [Description("化学元素")] [Nullable(true)] [DataLength(50)] public string ChemName { get { return chemName; } set { chemName = value; } } /// /// 标准范围下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// [Description("下限")] [Nullable(true)] [DataLength(16)] public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限 /// [Description("上限")] [Nullable(true)] [DataLength(16)] public string Stdmax { get { return stdmax; } set { stdmax = value; } } } }