CraftLg2CcmEntity.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity
  8. {
  9. /// <summary>
  10. /// 数据库表CRAFT_LG2_CCM所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160925CXYF 时间:2017-08-21
  12. /// </summary>
  13. public class CraftLg2CcmEntity
  14. {
  15. /// <summary>
  16. /// CCM工艺ID(CCM+工艺卡号+6位流水)
  17. /// </summary>
  18. private string ccmGid = "";
  19. /// <summary>
  20. /// 序号
  21. /// </summary>
  22. private decimal? xh = null;
  23. /// <summary>
  24. /// 水表配置编码(CCM+2位流水)
  25. /// </summary>
  26. private string ccmCode = "";
  27. /// <summary>
  28. /// 冷却强度
  29. /// </summary>
  30. private string coolingVal = "";
  31. /// <summary>
  32. /// 直径
  33. /// </summary>
  34. private string diameter = "";
  35. /// <summary>
  36. /// 水表号
  37. /// </summary>
  38. private string waterNo = "";
  39. /// <summary>
  40. /// CCM工艺ID(CCM+工艺卡号+6位流水)
  41. /// </summary>
  42. [Description("CCM工艺ID")]
  43. [Nullable(false)]
  44. [DataLength(20)]
  45. public string CcmGid
  46. {
  47. get { return ccmGid; }
  48. set { ccmGid = value; }
  49. }
  50. /// <summary>
  51. /// 序号
  52. /// </summary>
  53. [Description("序号")]
  54. [Nullable(false)]
  55. [DataLength(22)]
  56. public decimal? Xh
  57. {
  58. get { return xh; }
  59. set { xh = value; }
  60. }
  61. /// <summary>
  62. /// 水表配置编码(CCM+2位流水)
  63. /// </summary>
  64. [Description("水表配置")]
  65. [Nullable(true)]
  66. [DataLength(20)]
  67. public string CcmCode
  68. {
  69. get { return ccmCode; }
  70. set { ccmCode = value; }
  71. }
  72. /// <summary>
  73. /// 冷却强度
  74. /// </summary>
  75. [Description("冷却强度")]
  76. [Nullable(true)]
  77. [DataLength(8)]
  78. public string CoolingVal
  79. {
  80. get { return coolingVal; }
  81. set { coolingVal = value; }
  82. }
  83. /// <summary>
  84. /// 直径
  85. /// </summary>
  86. [Description("直径")]
  87. [Nullable(true)]
  88. [DataLength(8)]
  89. public string Diameter
  90. {
  91. get { return diameter; }
  92. set { diameter = value; }
  93. }
  94. /// <summary>
  95. /// 水表号
  96. /// </summary>
  97. [Description("水表号")]
  98. [Nullable(true)]
  99. [DataLength(8)]
  100. public string WaterNo
  101. {
  102. get { return waterNo; }
  103. set { waterNo = value; }
  104. }
  105. }
  106. }