SlmOrdDesignMscPlEntity.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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.SaleOrder
  8. {
  9. /// <summary>
  10. /// 数据库表SLM_ORD_DESIGN_MSC_PL所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:Chenxi-PC2 时间:2015-09-16
  12. /// </summary>
  13. public class SlmOrdDesignMscPlEntity
  14. {
  15. /// <summary>
  16. /// DESGIN_KEY
  17. /// </summary>
  18. private string desginKey = "";
  19. /// <summary>
  20. /// 全程产线号(COM_MSC_BACKLOG)
  21. /// </summary>
  22. private string mscPline = "";
  23. /// <summary>
  24. /// 全程途径码
  25. /// </summary>
  26. private string wholeBacklog = "";
  27. /// <summary>
  28. /// 全程途径描述
  29. /// </summary>
  30. private string wholeBacklogDesc = "";
  31. /// <summary>
  32. /// 是否设定制程(0:否;1:是)
  33. /// </summary>
  34. private string setFl = "";
  35. /// <summary>
  36. /// 警告信息
  37. /// </summary>
  38. private string warnDesc = "";
  39. /// <summary>
  40. /// 合同号
  41. /// </summary>
  42. private string ordLnPk = "";
  43. /// <summary>
  44. /// 描述
  45. /// </summary>
  46. private string setFlDesc = "";
  47. /// <summary>
  48. /// 设定制程
  49. /// </summary>
  50. [Description("设定制程")]
  51. public string SetFlDesc
  52. {
  53. get { return setFlDesc; }
  54. set { setFlDesc = value; }
  55. }
  56. /// <summary>
  57. /// DESGIN_KEY
  58. /// </summary>
  59. [Description("DESGIN_KEY")]
  60. [Nullable(false)]
  61. [DataLength(40)]
  62. public string DesginKey
  63. {
  64. get { return desginKey; }
  65. set { desginKey = value; }
  66. }
  67. /// <summary>
  68. /// 全程产线号(COM_MSC_BACKLOG)
  69. /// </summary>
  70. [Description("全程产线号")]
  71. [Nullable(false)]
  72. [DataLength(6)]
  73. public string MscPline
  74. {
  75. get { return mscPline; }
  76. set { mscPline = value; }
  77. }
  78. /// <summary>
  79. /// 全程途径码
  80. /// </summary>
  81. [Description("全程途径码")]
  82. [Nullable(true)]
  83. [DataLength(100)]
  84. public string WholeBacklog
  85. {
  86. get { return wholeBacklog; }
  87. set { wholeBacklog = value; }
  88. }
  89. /// <summary>
  90. /// 全程途径描述
  91. /// </summary>
  92. [Description("全程途径描述")]
  93. [Nullable(true)]
  94. [DataLength(500)]
  95. public string WholeBacklogDesc
  96. {
  97. get { return wholeBacklogDesc; }
  98. set { wholeBacklogDesc = value; }
  99. }
  100. /// <summary>
  101. /// 是否设定制程(0:否;1:是)
  102. /// </summary>
  103. [Description("是否设定制程")]
  104. [Nullable(true)]
  105. [DataLength(1)]
  106. public string SetFl
  107. {
  108. get { return setFl; }
  109. set { setFl = value; }
  110. }
  111. /// <summary>
  112. /// 警告信息
  113. /// </summary>
  114. [Description("警告信息")]
  115. [Nullable(true)]
  116. [DataLength(100)]
  117. public string WarnDesc
  118. {
  119. get { return warnDesc; }
  120. set { warnDesc = value; }
  121. }
  122. /// <summary>
  123. /// 合同号
  124. /// </summary>
  125. [Description("合同号")]
  126. [Nullable(true)]
  127. [DataLength(40)]
  128. public string OrdLnPk
  129. {
  130. get { return ordLnPk; }
  131. set { ordLnPk = value; }
  132. }
  133. }
  134. }