SlmOrdDesignMscJgPlEntity.cs 3.7 KB

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