ComBaseAskRStationEntity.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.pss.sale.order.model
  7. {
  8. public class ComBaseAskRStationEntity
  9. {
  10. /// <summary>
  11. /// 附加要求编码
  12. /// </summary>
  13. private object askItemNo;
  14. /// <summary>
  15. /// 附加要求描述
  16. /// </summary>
  17. private object askItemDesc;
  18. /// <summary>
  19. /// 工序点代码
  20. /// </summary>
  21. private object stationCode;
  22. /// <summary>
  23. /// 工序点名称
  24. /// </summary>
  25. private object stationDesc;
  26. /// <summary>
  27. /// 工序代码
  28. /// </summary>
  29. private object processCdoe;
  30. /// <summary>
  31. /// 工序名称
  32. /// </summary>
  33. private object processDesc;
  34. /// <summary>
  35. /// 二级工序代码
  36. /// </summary>
  37. private object processCdoeC;
  38. /// <summary>
  39. /// 二级工序名称
  40. /// </summary>
  41. private object processDescC;
  42. /// <summary>
  43. /// 创建人
  44. /// </summary>
  45. private object createName;
  46. /// <summary>
  47. /// 创建时间
  48. /// </summary>
  49. private object createTime;
  50. /// <summary>
  51. /// 修改人
  52. /// </summary>
  53. private object updateName;
  54. /// <summary>
  55. /// 修改时间
  56. /// </summary>
  57. private object updateTime;
  58. /// <summary>
  59. /// 删除人
  60. /// </summary>
  61. private object deleteName;
  62. /// <summary>
  63. /// 删除时间
  64. /// </summary>
  65. private object deleteTime;
  66. /// <summary>
  67. /// 有效标志(1:有效,0:无效)
  68. /// </summary>
  69. private object validflag;
  70. /// <summary>
  71. /// 备注
  72. /// </summary>
  73. private object memo;
  74. public ComBaseAskRStationEntity()
  75. {
  76. askItemNo = "";
  77. askItemDesc = "";
  78. stationCode = "";
  79. stationDesc = "";
  80. processCdoe = "";
  81. processDesc = "";
  82. processCdoeC = "";
  83. processDescC = "";
  84. createName = "";
  85. createTime = "";
  86. updateName = "";
  87. updateTime = "";
  88. deleteName = "";
  89. deleteTime = "";
  90. validflag = "";
  91. memo = "";
  92. }
  93. /// <summary>
  94. /// 附加要求编码
  95. /// </summary>
  96. [Description("附加要求编码")]
  97. public object AskItemNo
  98. {
  99. get { return askItemNo; }
  100. set
  101. {
  102. if (value == null)
  103. {
  104. askItemNo = DBNull.Value;
  105. }
  106. else
  107. {
  108. askItemNo = value;
  109. }
  110. }
  111. }
  112. /// <summary>
  113. /// 附加要求描述
  114. /// </summary>
  115. [Description("附加要求描述")]
  116. public object AskItemDesc
  117. {
  118. get { return askItemDesc; }
  119. set
  120. {
  121. if (value == null)
  122. {
  123. askItemDesc = DBNull.Value;
  124. }
  125. else
  126. {
  127. askItemDesc = value;
  128. }
  129. }
  130. }
  131. /// <summary>
  132. /// 工序点代码
  133. /// </summary>
  134. [Description("工序点代码")]
  135. public object StationCode
  136. {
  137. get { return stationCode; }
  138. set
  139. {
  140. if (value == null)
  141. {
  142. stationCode = DBNull.Value;
  143. }
  144. else
  145. {
  146. stationCode = value;
  147. }
  148. }
  149. }
  150. /// <summary>
  151. /// 工序点名称
  152. /// </summary>
  153. [Description("工序点名称")]
  154. public object StationDesc
  155. {
  156. get { return stationDesc; }
  157. set
  158. {
  159. if (value == null)
  160. {
  161. stationDesc = DBNull.Value;
  162. }
  163. else
  164. {
  165. stationDesc = value;
  166. }
  167. }
  168. }
  169. /// <summary>
  170. /// 工序代码
  171. /// </summary>
  172. [Description("工序代码")]
  173. public object ProcessCdoe
  174. {
  175. get { return processCdoe; }
  176. set
  177. {
  178. if (value == null)
  179. {
  180. processCdoe = DBNull.Value;
  181. }
  182. else
  183. {
  184. processCdoe = value;
  185. }
  186. }
  187. }
  188. /// <summary>
  189. /// 工序名称
  190. /// </summary>
  191. [Description("工序名称")]
  192. public object ProcessDesc
  193. {
  194. get { return processDesc; }
  195. set
  196. {
  197. if (value == null)
  198. {
  199. processDesc = DBNull.Value;
  200. }
  201. else
  202. {
  203. processDesc = value;
  204. }
  205. }
  206. }
  207. /// <summary>
  208. /// 二级工序代码
  209. /// </summary>
  210. [Description("二级工序代码")]
  211. public object ProcessCdoeC
  212. {
  213. get { return processCdoeC; }
  214. set
  215. {
  216. if (value == null)
  217. {
  218. processCdoeC = DBNull.Value;
  219. }
  220. else
  221. {
  222. processCdoeC = value;
  223. }
  224. }
  225. }
  226. /// <summary>
  227. /// 二级工序名称
  228. /// </summary>
  229. [Description("二级工序名称")]
  230. public object ProcessDescC
  231. {
  232. get { return processDescC; }
  233. set
  234. {
  235. if (value == null)
  236. {
  237. processDescC = DBNull.Value;
  238. }
  239. else
  240. {
  241. processDescC = value;
  242. }
  243. }
  244. }
  245. /// <summary>
  246. /// 创建人
  247. /// </summary>
  248. [Description("创建人")]
  249. public object CreateName
  250. {
  251. get { return createName; }
  252. set
  253. {
  254. if (value == null)
  255. {
  256. createName = DBNull.Value;
  257. }
  258. else
  259. {
  260. createName = value;
  261. }
  262. }
  263. }
  264. /// <summary>
  265. /// 创建时间
  266. /// </summary>
  267. [Description("创建时间")]
  268. public object CreateTime
  269. {
  270. get { return createTime; }
  271. set
  272. {
  273. if (value == null)
  274. {
  275. createTime = DBNull.Value;
  276. }
  277. else
  278. {
  279. createTime = value;
  280. }
  281. }
  282. }
  283. /// <summary>
  284. /// 修改人
  285. /// </summary>
  286. [Description("修改人")]
  287. public object UpdateName
  288. {
  289. get { return updateName; }
  290. set
  291. {
  292. if (value == null)
  293. {
  294. updateName = DBNull.Value;
  295. }
  296. else
  297. {
  298. updateName = value;
  299. }
  300. }
  301. }
  302. /// <summary>
  303. /// 修改时间
  304. /// </summary>
  305. [Description("修改时间")]
  306. public object UpdateTime
  307. {
  308. get { return updateTime; }
  309. set
  310. {
  311. if (value == null)
  312. {
  313. updateTime = DBNull.Value;
  314. }
  315. else
  316. {
  317. updateTime = value;
  318. }
  319. }
  320. }
  321. /// <summary>
  322. /// 删除人
  323. /// </summary>
  324. [Description("删除人")]
  325. public object DeleteName
  326. {
  327. get { return deleteName; }
  328. set
  329. {
  330. if (value == null)
  331. {
  332. deleteName = DBNull.Value;
  333. }
  334. else
  335. {
  336. deleteName = value;
  337. }
  338. }
  339. }
  340. /// <summary>
  341. /// 删除时间
  342. /// </summary>
  343. [Description("删除时间")]
  344. public object DeleteTime
  345. {
  346. get { return deleteTime; }
  347. set
  348. {
  349. if (value == null)
  350. {
  351. deleteTime = DBNull.Value;
  352. }
  353. else
  354. {
  355. deleteTime = value;
  356. }
  357. }
  358. }
  359. /// <summary>
  360. /// 有效标志(1:有效,0:无效)
  361. /// </summary>
  362. [Description("有效标志(1:有效,0:无效)")]
  363. public object Validflag
  364. {
  365. get { return validflag; }
  366. set
  367. {
  368. if (value == null)
  369. {
  370. validflag = DBNull.Value;
  371. }
  372. else
  373. {
  374. validflag = value;
  375. }
  376. }
  377. }
  378. /// <summary>
  379. /// 备注
  380. /// </summary>
  381. [Description("备注")]
  382. public object Memo
  383. {
  384. get { return memo; }
  385. set
  386. {
  387. if (value == null)
  388. {
  389. memo = DBNull.Value;
  390. }
  391. else
  392. {
  393. memo = value;
  394. }
  395. }
  396. }
  397. }
  398. }