MchHreadResultDEntity.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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 com.steering.mes.mcp.entity
  8. {/// <summary>
  9. /// <summary>
  10. /// 数据库表MCH_HREAD_RESULT_D所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160925CXYF 时间:2016-12-28
  12. /// </summary>
  13. public class MchHreadResultDEntity
  14. {
  15. /// <summary>
  16. /// 实绩编号(机组+工序点代码+年月日+6位流水)
  17. /// </summary>
  18. private string resultNo = "";
  19. /// <summary>
  20. /// 实绩编号序号
  21. /// </summary>
  22. private string resultNoSqe = "";
  23. /// <summary>
  24. /// 紧密距(mm)
  25. /// </summary>
  26. private string standoff = "";
  27. /// <summary>
  28. /// 锥度in/in
  29. /// </summary>
  30. private string taper = "";
  31. /// <summary>
  32. /// 螺距
  33. /// </summary>
  34. private string pitch = "";
  35. /// <summary>
  36. /// 齿高
  37. /// </summary>
  38. private string threadH = "";
  39. /// <summary>
  40. /// L4
  41. /// </summary>
  42. private string l4Val = "";
  43. /// <summary>
  44. /// AI
  45. /// </summary>
  46. private string aiVal = "";
  47. /// <summary>
  48. /// LC
  49. /// </summary>
  50. private string lcVal = "";
  51. /// <summary>
  52. /// 实绩编号(机组+工序点代码+年月日+6位流水)
  53. /// </summary>
  54. [Description("实绩编号(机组+工序点代码+年月日+6位流水)")]
  55. [Nullable(false)]
  56. [DataLength(24)]
  57. public string ResultNo
  58. {
  59. get { return resultNo; }
  60. set { resultNo = value; }
  61. }
  62. /// <summary>
  63. /// 实绩编号序号
  64. /// </summary>
  65. [Description("实绩编号序号")]
  66. [Nullable(false)]
  67. [DataLength(24)]
  68. public string ResultNoSqe
  69. {
  70. get { return resultNoSqe; }
  71. set { resultNoSqe = value; }
  72. }
  73. /// <summary>
  74. /// 紧密距(mm)
  75. /// </summary>
  76. [Description("紧密距(mm)")]
  77. [Nullable(true)]
  78. [DataLength(20)]
  79. public string Standoff
  80. {
  81. get { return standoff; }
  82. set { standoff = value; }
  83. }
  84. /// <summary>
  85. /// 锥度in/in
  86. /// </summary>
  87. [Description("锥度in/in")]
  88. [Nullable(true)]
  89. [DataLength(20)]
  90. public string Taper
  91. {
  92. get { return taper; }
  93. set { taper = value; }
  94. }
  95. /// <summary>
  96. /// 螺距
  97. /// </summary>
  98. [Description("螺距")]
  99. [Nullable(true)]
  100. [DataLength(20)]
  101. public string Pitch
  102. {
  103. get { return pitch; }
  104. set { pitch = value; }
  105. }
  106. /// <summary>
  107. /// 齿高
  108. /// </summary>
  109. [Description("齿高")]
  110. [Nullable(true)]
  111. [DataLength(20)]
  112. public string ThreadH
  113. {
  114. get { return threadH; }
  115. set { threadH = value; }
  116. }
  117. /// <summary>
  118. /// L4
  119. /// </summary>
  120. [Description("L4")]
  121. [Nullable(true)]
  122. [DataLength(20)]
  123. public string L4Val
  124. {
  125. get { return l4Val; }
  126. set { l4Val = value; }
  127. }
  128. /// <summary>
  129. /// AI
  130. /// </summary>
  131. [Description("AI")]
  132. [Nullable(true)]
  133. [DataLength(20)]
  134. public string AiVal
  135. {
  136. get { return aiVal; }
  137. set { aiVal = value; }
  138. }
  139. /// <summary>
  140. /// LC
  141. /// </summary>
  142. [Description("LC")]
  143. [Nullable(true)]
  144. [DataLength(20)]
  145. public string LcVal
  146. {
  147. get { return lcVal; }
  148. set { lcVal = value; }
  149. }
  150. }
  151. }