CraftOrdDesignMscPlGzEntity.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. /// 钢种
  11. /// </summary>
  12. public class CraftOrdDesignMscPlGzEntity
  13. {
  14. /// <summary>
  15. /// DESGIN_KEY
  16. /// </summary>
  17. private string desginKey = "";
  18. /// <summary>
  19. /// 全程产线号(COM_MSC_BACKLOG)
  20. /// </summary>
  21. private string mscPline = "";
  22. /// <summary>
  23. /// 全程途径码
  24. /// </summary>
  25. private string wholeBacklog = "";
  26. /// <summary>
  27. /// 全程途径描述
  28. /// </summary>
  29. private string wholeBacklogDesc = "";
  30. /// <summary>
  31. /// 钢种代码(COM_MSC_GRADE)
  32. /// </summary>
  33. private string gradecode = "";
  34. /// <summary>
  35. /// 钢种名称
  36. /// </summary>
  37. private string gradename = "";
  38. /// <summary>
  39. /// 钢种分类代码
  40. /// </summary>
  41. private string assortmentCode = "";
  42. /// <summary>
  43. /// 钢种分类名称
  44. /// </summary>
  45. private string assortmentName = "";
  46. /// <summary>
  47. /// DESGIN_KEY
  48. /// </summary>
  49. [Description("DESGIN_KEY")]
  50. [Nullable(false)]
  51. [DataLength(40)]
  52. public string DesginKey
  53. {
  54. get { return desginKey; }
  55. set { desginKey = value; }
  56. }
  57. /// <summary>
  58. /// 全程产线号(COM_MSC_BACKLOG)
  59. /// </summary>
  60. [Description("全程产线号(COM_MSC_BACKLOG)")]
  61. [Nullable(false)]
  62. [DataLength(6)]
  63. public string MscPline
  64. {
  65. get { return mscPline; }
  66. set { mscPline = value; }
  67. }
  68. /// <summary>
  69. /// 全程途径码
  70. /// </summary>
  71. [Description("全程途径码")]
  72. [Nullable(true)]
  73. [DataLength(100)]
  74. public string WholeBacklog
  75. {
  76. get { return wholeBacklog; }
  77. set { wholeBacklog = value; }
  78. }
  79. /// <summary>
  80. /// 全程途径描述
  81. /// </summary>
  82. [Description("全程途径描述")]
  83. [Nullable(true)]
  84. [DataLength(500)]
  85. public string WholeBacklogDesc
  86. {
  87. get { return wholeBacklogDesc; }
  88. set { wholeBacklogDesc = value; }
  89. }
  90. /// <summary>
  91. /// 钢种代码(COM_MSC_GRADE)
  92. /// </summary>
  93. [Description("钢种代码(COM_MSC_GRADE)")]
  94. [Nullable(false)]
  95. [DataLength(10)]
  96. public string Gradecode
  97. {
  98. get { return gradecode; }
  99. set { gradecode = value; }
  100. }
  101. /// <summary>
  102. /// 钢种名称
  103. /// </summary>
  104. [Description("钢种名称")]
  105. [Nullable(true)]
  106. [DataLength(100)]
  107. public string Gradename
  108. {
  109. get { return gradename; }
  110. set { gradename = value; }
  111. }
  112. /// <summary>
  113. /// 钢种分类代码
  114. /// </summary>
  115. [Description("钢种分类代码")]
  116. [Nullable(true)]
  117. [DataLength(10)]
  118. public string AssortmentCode
  119. {
  120. get { return assortmentCode; }
  121. set { assortmentCode = value; }
  122. }
  123. /// <summary>
  124. /// 钢种分类名称
  125. /// </summary>
  126. [Description("钢种分类名称")]
  127. [Nullable(true)]
  128. [DataLength(200)]
  129. public string AssortmentName
  130. {
  131. get { return assortmentName; }
  132. set { assortmentName = value; }
  133. }
  134. }
  135. }