PlnBaseLzSpecCutEntity.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity
  8. {
  9. /// <summary>
  10. /// 数据库表PLN_BASE_LZ_SPEC_CUT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:USER-20150714WV 时间:2016-07-20
  12. /// </summary>
  13. public class PlnBaseLzSpecCutEntity
  14. {
  15. /// <summary>
  16. /// 切头尾参数编号
  17. /// </summary>
  18. private string cutParaId = "";
  19. /// <summary>
  20. /// 连铸坯直径
  21. /// </summary>
  22. private decimal? diameterLz = null;
  23. /// <summary>
  24. /// 首炉切头长(m)
  25. /// </summary>
  26. private decimal? cutLenBegin = null;
  27. /// <summary>
  28. /// 不换中包切尾长(m)
  29. /// </summary>
  30. private decimal? cutLenEndUnch = null;
  31. /// <summary>
  32. /// 换中包切尾长(m)
  33. /// </summary>
  34. private decimal? cutLenEndCh = null;
  35. /// <summary>
  36. /// 创建人
  37. /// </summary>
  38. private string createName = "";
  39. /// <summary>
  40. /// 创建时间
  41. /// </summary>
  42. private string createTime = "";
  43. /// <summary>
  44. /// 修改人
  45. /// </summary>
  46. private string updateName = "";
  47. /// <summary>
  48. /// 修改时间
  49. /// </summary>
  50. private string updateTime = "";
  51. /// <summary>
  52. /// 切头尾参数编号
  53. /// </summary>
  54. [Description("切头尾参数编号")]
  55. [Nullable(false)]
  56. [DataLength(20)]
  57. public string CutParaId
  58. {
  59. get { return cutParaId; }
  60. set { cutParaId = value; }
  61. }
  62. /// <summary>
  63. /// 连铸坯直径
  64. /// </summary>
  65. [Description("连铸坯直径")]
  66. [Nullable(true)]
  67. [DataLength(10)]
  68. public decimal? DiameterLz
  69. {
  70. get { return diameterLz; }
  71. set { diameterLz = value; }
  72. }
  73. /// <summary>
  74. /// 首炉切头长(m)
  75. /// </summary>
  76. [Description("首炉切头长(m)")]
  77. [Nullable(true)]
  78. [DataLength(5)]
  79. public decimal? CutLenBegin
  80. {
  81. get { return cutLenBegin; }
  82. set { cutLenBegin = value; }
  83. }
  84. /// <summary>
  85. /// 不换中包切尾长(m)
  86. /// </summary>
  87. [Description("不换中包切尾长(m)")]
  88. [Nullable(true)]
  89. [DataLength(5)]
  90. public decimal? CutLenEndUnch
  91. {
  92. get { return cutLenEndUnch; }
  93. set { cutLenEndUnch = value; }
  94. }
  95. /// <summary>
  96. /// 换中包切尾长(m)
  97. /// </summary>
  98. [Description("换中包切尾长(m)")]
  99. [Nullable(true)]
  100. [DataLength(5)]
  101. public decimal? CutLenEndCh
  102. {
  103. get { return cutLenEndCh; }
  104. set { cutLenEndCh = value; }
  105. }
  106. /// <summary>
  107. /// 创建人
  108. /// </summary>
  109. [Description("创建人")]
  110. [Nullable(true)]
  111. [DataLength(20)]
  112. public string CreateName
  113. {
  114. get { return createName; }
  115. set { createName = value; }
  116. }
  117. /// <summary>
  118. /// 创建时间
  119. /// </summary>
  120. [Description("创建时间")]
  121. [Nullable(true)]
  122. public string CreateTime
  123. {
  124. get { return createTime; }
  125. set { createTime = value; }
  126. }
  127. /// <summary>
  128. /// 修改人
  129. /// </summary>
  130. [Description("修改人")]
  131. [Nullable(true)]
  132. [DataLength(20)]
  133. public string UpdateName
  134. {
  135. get { return updateName; }
  136. set { updateName = value; }
  137. }
  138. /// <summary>
  139. /// 修改时间
  140. /// </summary>
  141. [Description("修改时间")]
  142. [Nullable(true)]
  143. public string UpdateTime
  144. {
  145. get { return updateTime; }
  146. set { updateTime = value; }
  147. }
  148. }
  149. }