PipeStressringParmEntity.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.Lims.Data.PipeAndOutdec.封装类.实体类
  8. {
  9. /// <summary>
  10. /// 数据库表PIPE_STRESSRING_PARM所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160918TFRG 时间:2018-08-27
  12. /// </summary>
  13. public class PipeStressringParmEntity
  14. {
  15. /// <summary>
  16. /// 应力环编号
  17. /// </summary>
  18. private string stressringNo = "";
  19. /// <summary>
  20. /// 应力环类型(A类、B类)
  21. /// </summary>
  22. private string stressringType = "";
  23. /// <summary>
  24. /// 无注释
  25. /// </summary>
  26. private string v1 = "";
  27. /// <summary>
  28. /// 无注释
  29. /// </summary>
  30. private string v2 = "";
  31. /// <summary>
  32. /// 无注释
  33. /// </summary>
  34. private string v3 = "";
  35. /// <summary>
  36. /// 无注释
  37. /// </summary>
  38. private string v4 = "";
  39. /// <summary>
  40. /// 无注释
  41. /// </summary>
  42. private string v5 = "";
  43. /// <summary>
  44. /// 无注释
  45. /// </summary>
  46. private string v6 = "";
  47. /// <summary>
  48. /// 无注释
  49. /// </summary>
  50. private string v7 = "";
  51. /// <summary>
  52. /// 无注释
  53. /// </summary>
  54. private string v8 = "";
  55. /// <summary>
  56. /// 应力环编号
  57. /// </summary>
  58. [Description("应力环编号")]
  59. [Nullable(false)]
  60. [DataLength(10)]
  61. public string StressringNo
  62. {
  63. get { return stressringNo; }
  64. set { stressringNo = value; }
  65. }
  66. /// <summary>
  67. /// 应力环类型(A类、B类)
  68. /// </summary>
  69. [Description("应力环类型")]
  70. [Nullable(true)]
  71. [DataLength(1)]
  72. public string StressringType
  73. {
  74. get { return stressringType; }
  75. set { stressringType = value; }
  76. }
  77. /// <summary>
  78. /// 无注释
  79. /// </summary>
  80. [Description("V1")]
  81. [Nullable(true)]
  82. [DataLength(32)]
  83. public string V1
  84. {
  85. get { return v1; }
  86. set { v1 = value; }
  87. }
  88. /// <summary>
  89. /// 无注释
  90. /// </summary>
  91. [Description("V2")]
  92. [Nullable(true)]
  93. [DataLength(32)]
  94. public string V2
  95. {
  96. get { return v2; }
  97. set { v2 = value; }
  98. }
  99. /// <summary>
  100. /// 无注释
  101. /// </summary>
  102. [Description("V3")]
  103. [Nullable(true)]
  104. [DataLength(32)]
  105. public string V3
  106. {
  107. get { return v3; }
  108. set { v3 = value; }
  109. }
  110. /// <summary>
  111. /// 无注释
  112. /// </summary>
  113. [Description("V4")]
  114. [Nullable(true)]
  115. [DataLength(32)]
  116. public string V4
  117. {
  118. get { return v4; }
  119. set { v4 = value; }
  120. }
  121. /// <summary>
  122. /// 无注释
  123. /// </summary>
  124. [Description("V5")]
  125. [Nullable(true)]
  126. [DataLength(32)]
  127. public string V5
  128. {
  129. get { return v5; }
  130. set { v5 = value; }
  131. }
  132. /// <summary>
  133. /// 无注释
  134. /// </summary>
  135. [Description("V6")]
  136. [Nullable(true)]
  137. [DataLength(32)]
  138. public string V6
  139. {
  140. get { return v6; }
  141. set { v6 = value; }
  142. }
  143. /// <summary>
  144. /// 无注释
  145. /// </summary>
  146. [Description("V7")]
  147. [Nullable(true)]
  148. [DataLength(32)]
  149. public string V7
  150. {
  151. get { return v7; }
  152. set { v7 = value; }
  153. }
  154. /// <summary>
  155. /// 无注释
  156. /// </summary>
  157. [Description("V8")]
  158. [Nullable(true)]
  159. [DataLength(32)]
  160. public string V8
  161. {
  162. get { return v8; }
  163. set { v8 = value; }
  164. }
  165. }
  166. }