PipeCheckconsignSplinecodeEntity.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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_CHECKCONSIGN_SPLINECODE所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:DM22222 时间:2018-05-29
  12. /// </summary>
  13. public class PipeCheckconsignSplinecodeEntity
  14. {
  15. /// <summary>
  16. /// 检验项目明细编号
  17. /// </summary>
  18. private string physplineId = "";
  19. /// <summary>
  20. /// 检验编号
  21. /// </summary>
  22. private string checkNo = "";
  23. /// <summary>
  24. /// 试样号
  25. /// </summary>
  26. private string sampleNo = "";
  27. /// <summary>
  28. /// 试样组代码
  29. /// </summary>
  30. private string phyCodeMax = "";
  31. /// <summary>
  32. /// 试样组名称
  33. /// </summary>
  34. private string phyNameMax = "";
  35. /// <summary>
  36. /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0)
  37. /// </summary>
  38. private string sampleBarcode = "";
  39. /// <summary>
  40. /// 年月
  41. /// </summary>
  42. private string balYearMoth = "";
  43. /// <summary>
  44. /// 十进制数值
  45. /// </summary>
  46. private decimal? tenNum = null;
  47. /// <summary>
  48. /// 检验项目明细编号
  49. /// </summary>
  50. [Description("检验项目明细编号")]
  51. [Nullable(false)]
  52. [DataLength(50)]
  53. public string PhysplineId
  54. {
  55. get { return physplineId; }
  56. set { physplineId = value; }
  57. }
  58. /// <summary>
  59. /// 检验编号
  60. /// </summary>
  61. [Description("检验编号")]
  62. [Nullable(true)]
  63. [DataLength(50)]
  64. public string CheckNo
  65. {
  66. get { return checkNo; }
  67. set { checkNo = value; }
  68. }
  69. /// <summary>
  70. /// 试样号
  71. /// </summary>
  72. [Description("试样号")]
  73. [Nullable(true)]
  74. [DataLength(50)]
  75. public string SampleNo
  76. {
  77. get { return sampleNo; }
  78. set { sampleNo = value; }
  79. }
  80. /// <summary>
  81. /// 试样组代码
  82. /// </summary>
  83. [Description("试样组代码")]
  84. [Nullable(true)]
  85. [DataLength(50)]
  86. public string PhyCodeMax
  87. {
  88. get { return phyCodeMax; }
  89. set { phyCodeMax = value; }
  90. }
  91. /// <summary>
  92. /// 试样组名称
  93. /// </summary>
  94. [Description("试样组名称")]
  95. [Nullable(true)]
  96. [DataLength(100)]
  97. public string PhyNameMax
  98. {
  99. get { return phyNameMax; }
  100. set { phyNameMax = value; }
  101. }
  102. /// <summary>
  103. /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0)
  104. /// </summary>
  105. [Description("样条码")]
  106. [Nullable(true)]
  107. [DataLength(50)]
  108. public string SampleBarcode
  109. {
  110. get { return sampleBarcode; }
  111. set { sampleBarcode = value; }
  112. }
  113. /// <summary>
  114. /// 年月
  115. /// </summary>
  116. [Description("年月")]
  117. [Nullable(true)]
  118. [DataLength(6)]
  119. public string BalYearMoth
  120. {
  121. get { return balYearMoth; }
  122. set { balYearMoth = value; }
  123. }
  124. /// <summary>
  125. /// 十进制数值
  126. /// </summary>
  127. [Description("十进制数值")]
  128. [Nullable(true)]
  129. [DataLength(22)]
  130. public decimal? TenNum
  131. {
  132. get { return tenNum; }
  133. set { tenNum = value; }
  134. }
  135. }
  136. }