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