CraftOrdDesignDeptEntity.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace Core.StlMes.Client.SaleOrder
  7. {
  8. public class CraftOrdDesignDeptEntity
  9. {
  10. /// <summary>
  11. /// 合同行号
  12. /// </summary>
  13. private object ordLnPk;
  14. /// <summary>
  15. /// 管理部门代码
  16. /// </summary>
  17. private object deptCode;
  18. /// <summary>
  19. /// 管理部门名称
  20. /// </summary>
  21. private object deptDesc;
  22. /// <summary>
  23. /// 交付管理科室代码
  24. /// </summary>
  25. private object delivyDeptCode;
  26. /// <summary>
  27. /// 交付管理科室名称
  28. /// </summary>
  29. private object delivyDeptDesc;
  30. /// <summary>
  31. /// 工艺管理科室代码
  32. /// </summary>
  33. private object techDeptCode;
  34. /// <summary>
  35. /// 工艺管理科室名称
  36. /// </summary>
  37. private object techDeptDesc;
  38. public CraftOrdDesignDeptEntity()
  39. {
  40. ordLnPk = "";
  41. deptCode = "";
  42. deptDesc = "";
  43. delivyDeptCode = "";
  44. delivyDeptDesc = "";
  45. techDeptCode = "";
  46. techDeptDesc = "";
  47. }
  48. /// <summary>
  49. /// 合同行号
  50. /// </summary>
  51. [Description("合同行号")]
  52. public object OrdLnPk
  53. {
  54. get { return ordLnPk; }
  55. set
  56. {
  57. if (value == null)
  58. {
  59. ordLnPk = DBNull.Value;
  60. }
  61. else
  62. {
  63. ordLnPk = value;
  64. }
  65. }
  66. }
  67. /// <summary>
  68. /// 管理部门代码
  69. /// </summary>
  70. [Description("管理部门代码")]
  71. public object DeptCode
  72. {
  73. get { return deptCode; }
  74. set
  75. {
  76. if (value == null)
  77. {
  78. deptCode = DBNull.Value;
  79. }
  80. else
  81. {
  82. deptCode = value;
  83. }
  84. }
  85. }
  86. /// <summary>
  87. /// 管理部门名称
  88. /// </summary>
  89. [Description("管理部门名称")]
  90. public object DeptDesc
  91. {
  92. get { return deptDesc; }
  93. set
  94. {
  95. if (value == null)
  96. {
  97. deptDesc = DBNull.Value;
  98. }
  99. else
  100. {
  101. deptDesc = value;
  102. }
  103. }
  104. }
  105. /// <summary>
  106. /// 交付管理科室代码
  107. /// </summary>
  108. [Description("交付管理科室代码")]
  109. public object DelivyDeptCode
  110. {
  111. get { return delivyDeptCode; }
  112. set
  113. {
  114. if (value == null)
  115. {
  116. delivyDeptCode = DBNull.Value;
  117. }
  118. else
  119. {
  120. delivyDeptCode = value;
  121. }
  122. }
  123. }
  124. /// <summary>
  125. /// 交付管理科室名称
  126. /// </summary>
  127. [Description("交付管理科室名称")]
  128. public object DelivyDeptDesc
  129. {
  130. get { return delivyDeptDesc; }
  131. set
  132. {
  133. if (value == null)
  134. {
  135. delivyDeptDesc = DBNull.Value;
  136. }
  137. else
  138. {
  139. delivyDeptDesc = value;
  140. }
  141. }
  142. }
  143. /// <summary>
  144. /// 工艺管理科室代码
  145. /// </summary>
  146. [Description("工艺管理科室代码")]
  147. public object TechDeptCode
  148. {
  149. get { return techDeptCode; }
  150. set
  151. {
  152. if (value == null)
  153. {
  154. techDeptCode = DBNull.Value;
  155. }
  156. else
  157. {
  158. techDeptCode = value;
  159. }
  160. }
  161. }
  162. /// <summary>
  163. /// 工艺管理科室名称
  164. /// </summary>
  165. [Description("工艺管理科室名称")]
  166. public object TechDeptDesc
  167. {
  168. get { return techDeptDesc; }
  169. set
  170. {
  171. if (value == null)
  172. {
  173. techDeptDesc = DBNull.Value;
  174. }
  175. else
  176. {
  177. techDeptDesc = value;
  178. }
  179. }
  180. }
  181. }
  182. }