SlmOrdDesignDeptEntity.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 SlmOrdDesignDeptEntity
  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. private string userName = "";
  39. public SlmOrdDesignDeptEntity()
  40. {
  41. ordLnPk = "";
  42. deptCode = "";
  43. deptDesc = "";
  44. delivyDeptCode = "";
  45. delivyDeptDesc = "";
  46. techDeptCode = "";
  47. techDeptDesc = "";
  48. }
  49. /// <summary>
  50. /// 合同行号
  51. /// </summary>
  52. [Description("合同行号")]
  53. public object OrdLnPk
  54. {
  55. get { return ordLnPk; }
  56. set
  57. {
  58. if (value == null)
  59. {
  60. ordLnPk = DBNull.Value;
  61. }
  62. else
  63. {
  64. ordLnPk = value;
  65. }
  66. }
  67. }
  68. /// <summary>
  69. /// 管理部门代码
  70. /// </summary>
  71. [Description("管理部门代码")]
  72. public object DeptCode
  73. {
  74. get { return deptCode; }
  75. set
  76. {
  77. if (value == null)
  78. {
  79. deptCode = DBNull.Value;
  80. }
  81. else
  82. {
  83. deptCode = value;
  84. }
  85. }
  86. }
  87. /// <summary>
  88. /// 管理部门名称
  89. /// </summary>
  90. [Description("管理部门名称")]
  91. public object DeptDesc
  92. {
  93. get { return deptDesc; }
  94. set
  95. {
  96. if (value == null)
  97. {
  98. deptDesc = DBNull.Value;
  99. }
  100. else
  101. {
  102. deptDesc = value;
  103. }
  104. }
  105. }
  106. /// <summary>
  107. /// 交付管理科室代码
  108. /// </summary>
  109. [Description("交付管理科室代码")]
  110. public object DelivyDeptCode
  111. {
  112. get { return delivyDeptCode; }
  113. set
  114. {
  115. if (value == null)
  116. {
  117. delivyDeptCode = DBNull.Value;
  118. }
  119. else
  120. {
  121. delivyDeptCode = value;
  122. }
  123. }
  124. }
  125. /// <summary>
  126. /// 交付管理科室名称
  127. /// </summary>
  128. [Description("交付管理科室名称")]
  129. public object DelivyDeptDesc
  130. {
  131. get { return delivyDeptDesc; }
  132. set
  133. {
  134. if (value == null)
  135. {
  136. delivyDeptDesc = DBNull.Value;
  137. }
  138. else
  139. {
  140. delivyDeptDesc = value;
  141. }
  142. }
  143. }
  144. /// <summary>
  145. /// 工艺管理科室代码
  146. /// </summary>
  147. [Description("工艺管理科室代码")]
  148. public object TechDeptCode
  149. {
  150. get { return techDeptCode; }
  151. set
  152. {
  153. if (value == null)
  154. {
  155. techDeptCode = DBNull.Value;
  156. }
  157. else
  158. {
  159. techDeptCode = value;
  160. }
  161. }
  162. }
  163. /// <summary>
  164. /// 工艺管理科室名称
  165. /// </summary>
  166. [Description("工艺管理科室名称")]
  167. public object TechDeptDesc
  168. {
  169. get { return techDeptDesc; }
  170. set
  171. {
  172. if (value == null)
  173. {
  174. techDeptDesc = DBNull.Value;
  175. }
  176. else
  177. {
  178. techDeptDesc = value;
  179. }
  180. }
  181. }
  182. public string UserName
  183. {
  184. get { return userName; }
  185. set { userName = value; }
  186. }
  187. }
  188. }