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_CCM所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160925CXYF 时间:2017-08-21 /// public class CraftLg2CcmEntity { /// /// CCM工艺ID(CCM+工艺卡号+6位流水) /// private string ccmGid = ""; /// /// 序号 /// private decimal? xh = null; /// /// 水表配置编码(CCM+2位流水) /// private string ccmCode = ""; /// /// 冷却强度 /// private string coolingVal = ""; /// /// 直径 /// private string diameter = ""; /// /// 水表号 /// private string waterNo = ""; /// /// CCM工艺ID(CCM+工艺卡号+6位流水) /// [Description("CCM工艺ID")] [Nullable(false)] [DataLength(20)] public string CcmGid { get { return ccmGid; } set { ccmGid = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 水表配置编码(CCM+2位流水) /// [Description("水表配置")] [Nullable(true)] [DataLength(20)] public string CcmCode { get { return ccmCode; } set { ccmCode = value; } } /// /// 冷却强度 /// [Description("冷却强度")] [Nullable(true)] [DataLength(8)] public string CoolingVal { get { return coolingVal; } set { coolingVal = value; } } /// /// 直径 /// [Description("直径")] [Nullable(true)] [DataLength(8)] public string Diameter { get { return diameter; } set { diameter = value; } } /// /// 水表号 /// [Description("水表号")] [Nullable(true)] [DataLength(8)] public string WaterNo { get { return waterNo; } set { waterNo = value; } } } }