MchFinalCheckResultMatNoEntity.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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.Mcp.Control.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表MCH_FINAL_CHECK_RESULT_MAT_NO所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:朱少波 时间:2019-07-12
  12. /// </summary>
  13. public class MchFinalCheckResultMatNoEntity
  14. {
  15. [Description("选择")]
  16. public bool Chk { get; set; }
  17. /// <summary>
  18. /// 实绩编号
  19. /// </summary>
  20. private string resultNo = "";
  21. /// <summary>
  22. /// 材料号(管号)
  23. /// </summary>
  24. private string matNo = "";
  25. /// <summary>
  26. /// 喷印管号
  27. /// </summary>
  28. private decimal? measuringSeq = null;
  29. /// <summary>
  30. /// 逐支跟踪号
  31. /// </summary>
  32. private string barCode = "";
  33. /// <summary>
  34. /// 长度
  35. /// </summary>
  36. private decimal? actLen = null;
  37. /// <summary>
  38. /// 重量
  39. /// </summary>
  40. private decimal? actWeight = null;
  41. /// <summary>
  42. /// 实绩编号
  43. /// </summary>
  44. [Description("实绩编号")]
  45. [Nullable(false)]
  46. [DataLength(24)]
  47. public string ResultNo
  48. {
  49. get { return resultNo; }
  50. set { resultNo = value; }
  51. }
  52. /// <summary>
  53. /// 材料号(管号)
  54. /// </summary>
  55. [Description("材料号")]
  56. [Nullable(false)]
  57. [DataLength(20)]
  58. public string MatNo
  59. {
  60. get { return matNo; }
  61. set { matNo = value; }
  62. }
  63. /// <summary>
  64. /// 喷印管号
  65. /// </summary>
  66. [Description("喷印管号")]
  67. [Nullable(true)]
  68. [DataLength(10)]
  69. public decimal? MeasuringSeq
  70. {
  71. get { return measuringSeq; }
  72. set { measuringSeq = value; }
  73. }
  74. /// <summary>
  75. /// 逐支跟踪号
  76. /// </summary>
  77. [Description("逐支跟踪号")]
  78. [Nullable(true)]
  79. [DataLength(20)]
  80. public string BarCode
  81. {
  82. get { return barCode; }
  83. set { barCode = value; }
  84. }
  85. /// <summary>
  86. /// 长度
  87. /// </summary>
  88. [Description("长度")]
  89. [Nullable(true)]
  90. [DataLength(9)]
  91. public decimal? ActLen
  92. {
  93. get { return actLen; }
  94. set { actLen = value; }
  95. }
  96. /// <summary>
  97. /// 重量
  98. /// </summary>
  99. [Description("重量")]
  100. [Nullable(true)]
  101. [DataLength(11)]
  102. public decimal? ActWeight
  103. {
  104. get { return actWeight; }
  105. set { actWeight = value; }
  106. }
  107. /// <summary>
  108. /// 0-合格 1-不合 2-废品
  109. /// </summary>
  110. private string station = "";
  111. /// <summary>
  112. /// 0-合格 1-不合 2-废品
  113. /// </summary>
  114. [Description("状态")]
  115. [Nullable(true)]
  116. [DataLength(1)]
  117. public string Station
  118. {
  119. get { return station; }
  120. set { station = value; }
  121. }
  122. }
  123. }