SlmOrderDeliveryTransitEntityCh.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  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.orderchange.entity
  7. {
  8. /// <summary>
  9. /// 数据库表SLM_ORDER_DELIVERY_TRANSIT所对应的实体类(生成工具:代码生成工具2.3)
  10. /// 作者:USER-20150712LG 时间:2015-07-22
  11. /// </summary>
  12. public class SlmOrderDeliveryTransitEntityCh
  13. {
  14. /// <summary>
  15. /// ORD_PK
  16. /// </summary>
  17. private object ordPk;
  18. /// <summary>
  19. /// ORD_LN_PK(ORD_PK+三位流失号)
  20. /// </summary>
  21. private object ordLnPk;
  22. /// <summary>
  23. /// ORD_LN_DLY_PK(ORD_LN_PK+三位流水号)
  24. /// </summary>
  25. private object ordLnDlyPk;
  26. /// <summary>
  27. /// 顺序号
  28. /// </summary>
  29. private object indexSeq;
  30. /// <summary>
  31. /// 代办标识(0不代办,1TPCO代办,2客户代办)
  32. /// </summary>
  33. private object agencyFl;
  34. /// <summary>
  35. /// 运输方式('1105')
  36. /// </summary>
  37. private object transitTyp;
  38. /// <summary>
  39. /// 目的地
  40. /// </summary>
  41. private object destination;
  42. /// <summary>
  43. /// 到站编码
  44. /// </summary>
  45. private object stationNo;
  46. /// <summary>
  47. /// 到站名称
  48. /// </summary>
  49. private object stationNm;
  50. /// <summary>
  51. /// 专用线编码
  52. /// </summary>
  53. private object spclLnNo;
  54. /// <summary>
  55. /// 专用线名称
  56. /// </summary>
  57. private object spclLnNm;
  58. /// <summary>
  59. /// 港口/码头
  60. /// </summary>
  61. private object portNo;
  62. /// <summary>
  63. /// 港口/码头描述
  64. /// </summary>
  65. private object portDesc;
  66. /// <summary>
  67. /// 承运单位('1109')
  68. /// </summary>
  69. private object carrierUnit;
  70. /// <summary>
  71. /// 接货人
  72. /// </summary>
  73. private object receivor;
  74. /// <summary>
  75. /// 总费用
  76. /// </summary>
  77. private object transitLnMny;
  78. /// <summary>
  79. /// 有效标志(1:有效,0:无效)
  80. /// </summary>
  81. private object validflag;
  82. /// <summary>
  83. /// 创建人
  84. /// </summary>
  85. private object createName;
  86. /// <summary>
  87. /// 创建时间
  88. /// </summary>
  89. private object createTime;
  90. /// <summary>
  91. /// 修改人
  92. /// </summary>
  93. private object updateName;
  94. /// <summary>
  95. /// 修改时间
  96. /// </summary>
  97. private object updateTime;
  98. /// <summary>
  99. /// 删除人
  100. /// </summary>
  101. private object deleteName;
  102. /// <summary>
  103. /// 删除时间
  104. /// </summary>
  105. private object deleteTime;
  106. /// <summary>
  107. /// 出厂方式(停用)
  108. /// </summary>
  109. private object lvFactyTyp;
  110. public SlmOrderDeliveryTransitEntityCh()
  111. {
  112. ordPk = "";
  113. ordLnPk = "";
  114. ordLnDlyPk = "";
  115. indexSeq = "";
  116. agencyFl = "";
  117. transitTyp = "";
  118. destination = "";
  119. stationNo = "";
  120. stationNm = "";
  121. spclLnNo = "";
  122. spclLnNm = "";
  123. portNo = "";
  124. portDesc = "";
  125. carrierUnit = "";
  126. receivor = "";
  127. transitLnMny = "";
  128. validflag = "";
  129. createName = "";
  130. createTime = "";
  131. updateName = "";
  132. updateTime = "";
  133. deleteName = "";
  134. deleteTime = "";
  135. lvFactyTyp = "";
  136. }
  137. /// <summary>
  138. /// ORD_PK
  139. /// </summary>
  140. [Description("ORD_PK")]
  141. public object OrdPk
  142. {
  143. get { return ordPk; }
  144. set
  145. {
  146. if (value == null)
  147. {
  148. ordPk = DBNull.Value;
  149. }
  150. else
  151. {
  152. ordPk = value;
  153. }
  154. }
  155. }
  156. /// <summary>
  157. /// ORD_LN_PK(ORD_PK+三位流失号)
  158. /// </summary>
  159. [Description("ORD_LN_PK")]
  160. public object OrdLnPk
  161. {
  162. get { return ordLnPk; }
  163. set
  164. {
  165. if (value == null)
  166. {
  167. ordLnPk = DBNull.Value;
  168. }
  169. else
  170. {
  171. ordLnPk = value;
  172. }
  173. }
  174. }
  175. /// <summary>
  176. /// ORD_LN_DLY_PK(ORD_LN_PK+三位流水号)
  177. /// </summary>
  178. [Description("ORD_LN_DLY_PK")]
  179. public object OrdLnDlyPk
  180. {
  181. get { return ordLnDlyPk; }
  182. set
  183. {
  184. if (value == null)
  185. {
  186. ordLnDlyPk = DBNull.Value;
  187. }
  188. else
  189. {
  190. ordLnDlyPk = value;
  191. }
  192. }
  193. }
  194. /// <summary>
  195. /// 顺序号
  196. /// </summary>
  197. [Description("顺序号")]
  198. public object IndexSeq
  199. {
  200. get { return indexSeq; }
  201. set
  202. {
  203. if (value == null)
  204. {
  205. indexSeq = DBNull.Value;
  206. }
  207. else
  208. {
  209. indexSeq = value;
  210. }
  211. }
  212. }
  213. /// <summary>
  214. /// 代办标识(0不代办,1TPCO代办,2客户代办)
  215. /// </summary>
  216. [Description("代办标识")]
  217. public object AgencyFl
  218. {
  219. get { return agencyFl; }
  220. set
  221. {
  222. if (value == null)
  223. {
  224. agencyFl = DBNull.Value;
  225. }
  226. else
  227. {
  228. agencyFl = value;
  229. }
  230. }
  231. }
  232. /// <summary>
  233. /// 运输方式('1105')
  234. /// </summary>
  235. [Description("运输方式")]
  236. public object TransitTyp
  237. {
  238. get { return transitTyp; }
  239. set
  240. {
  241. if (value == null)
  242. {
  243. transitTyp = DBNull.Value;
  244. }
  245. else
  246. {
  247. transitTyp = value;
  248. }
  249. }
  250. }
  251. /// <summary>
  252. /// 目的地
  253. /// </summary>
  254. [Description("目的地")]
  255. public object Destination
  256. {
  257. get { return destination; }
  258. set
  259. {
  260. if (value == null)
  261. {
  262. destination = DBNull.Value;
  263. }
  264. else
  265. {
  266. destination = value;
  267. }
  268. }
  269. }
  270. /// <summary>
  271. /// 到站编码
  272. /// </summary>
  273. [Description("到站编码")]
  274. public object StationNo
  275. {
  276. get { return stationNo; }
  277. set
  278. {
  279. if (value == null)
  280. {
  281. stationNo = DBNull.Value;
  282. }
  283. else
  284. {
  285. stationNo = value;
  286. }
  287. }
  288. }
  289. /// <summary>
  290. /// 到站名称
  291. /// </summary>
  292. [Description("到站名称")]
  293. public object StationNm
  294. {
  295. get { return stationNm; }
  296. set
  297. {
  298. if (value == null)
  299. {
  300. stationNm = DBNull.Value;
  301. }
  302. else
  303. {
  304. stationNm = value;
  305. }
  306. }
  307. }
  308. /// <summary>
  309. /// 专用线编码
  310. /// </summary>
  311. [Description("专用线编码")]
  312. public object SpclLnNo
  313. {
  314. get { return spclLnNo; }
  315. set
  316. {
  317. if (value == null)
  318. {
  319. spclLnNo = DBNull.Value;
  320. }
  321. else
  322. {
  323. spclLnNo = value;
  324. }
  325. }
  326. }
  327. /// <summary>
  328. /// 专用线名称
  329. /// </summary>
  330. [Description("专用线名称")]
  331. public object SpclLnNm
  332. {
  333. get { return spclLnNm; }
  334. set
  335. {
  336. if (value == null)
  337. {
  338. spclLnNm = DBNull.Value;
  339. }
  340. else
  341. {
  342. spclLnNm = value;
  343. }
  344. }
  345. }
  346. /// <summary>
  347. /// 港口/码头
  348. /// </summary>
  349. [Description("港口/码头")]
  350. public object PortNo
  351. {
  352. get { return portNo; }
  353. set
  354. {
  355. if (value == null)
  356. {
  357. portNo = DBNull.Value;
  358. }
  359. else
  360. {
  361. portNo = value;
  362. }
  363. }
  364. }
  365. /// <summary>
  366. /// 港口/码头描述
  367. /// </summary>
  368. [Description("港口/码头描述")]
  369. public object PortDesc
  370. {
  371. get { return portDesc; }
  372. set
  373. {
  374. if (value == null)
  375. {
  376. portDesc = DBNull.Value;
  377. }
  378. else
  379. {
  380. portDesc = value;
  381. }
  382. }
  383. }
  384. /// <summary>
  385. /// 承运单位('1109')
  386. /// </summary>
  387. [Description("承运单位")]
  388. public object CarrierUnit
  389. {
  390. get { return carrierUnit; }
  391. set
  392. {
  393. if (value == null)
  394. {
  395. carrierUnit = DBNull.Value;
  396. }
  397. else
  398. {
  399. carrierUnit = value;
  400. }
  401. }
  402. }
  403. /// <summary>
  404. /// 接货人
  405. /// </summary>
  406. [Description("接货人")]
  407. public object Receivor
  408. {
  409. get { return receivor; }
  410. set
  411. {
  412. if (value == null)
  413. {
  414. receivor = DBNull.Value;
  415. }
  416. else
  417. {
  418. receivor = value;
  419. }
  420. }
  421. }
  422. /// <summary>
  423. /// 总费用
  424. /// </summary>
  425. [Description("总费用")]
  426. public object TransitLnMny
  427. {
  428. get { return transitLnMny; }
  429. set
  430. {
  431. if (value == null)
  432. {
  433. transitLnMny = DBNull.Value;
  434. }
  435. else
  436. {
  437. transitLnMny = value;
  438. }
  439. }
  440. }
  441. /// <summary>
  442. /// 有效标志(1:有效,0:无效)
  443. /// </summary>
  444. [Description("有效标志")]
  445. public object Validflag
  446. {
  447. get { return validflag; }
  448. set
  449. {
  450. if (value == null)
  451. {
  452. validflag = DBNull.Value;
  453. }
  454. else
  455. {
  456. validflag = value;
  457. }
  458. }
  459. }
  460. /// <summary>
  461. /// 创建人
  462. /// </summary>
  463. [Description("创建人")]
  464. public object CreateName
  465. {
  466. get { return createName; }
  467. set
  468. {
  469. if (value == null)
  470. {
  471. createName = DBNull.Value;
  472. }
  473. else
  474. {
  475. createName = value;
  476. }
  477. }
  478. }
  479. /// <summary>
  480. /// 创建时间
  481. /// </summary>
  482. [Description("创建时间")]
  483. public object CreateTime
  484. {
  485. get { return createTime; }
  486. set
  487. {
  488. if (value == null)
  489. {
  490. createTime = DBNull.Value;
  491. }
  492. else
  493. {
  494. createTime = value;
  495. }
  496. }
  497. }
  498. /// <summary>
  499. /// 修改人
  500. /// </summary>
  501. [Description("修改人")]
  502. public object UpdateName
  503. {
  504. get { return updateName; }
  505. set
  506. {
  507. if (value == null)
  508. {
  509. updateName = DBNull.Value;
  510. }
  511. else
  512. {
  513. updateName = value;
  514. }
  515. }
  516. }
  517. /// <summary>
  518. /// 修改时间
  519. /// </summary>
  520. [Description("修改时间")]
  521. public object UpdateTime
  522. {
  523. get { return updateTime; }
  524. set
  525. {
  526. if (value == null)
  527. {
  528. updateTime = DBNull.Value;
  529. }
  530. else
  531. {
  532. updateTime = value;
  533. }
  534. }
  535. }
  536. /// <summary>
  537. /// 删除人
  538. /// </summary>
  539. [Description("删除人")]
  540. public object DeleteName
  541. {
  542. get { return deleteName; }
  543. set
  544. {
  545. if (value == null)
  546. {
  547. deleteName = DBNull.Value;
  548. }
  549. else
  550. {
  551. deleteName = value;
  552. }
  553. }
  554. }
  555. /// <summary>
  556. /// 删除时间
  557. /// </summary>
  558. [Description("删除时间")]
  559. public object DeleteTime
  560. {
  561. get { return deleteTime; }
  562. set
  563. {
  564. if (value == null)
  565. {
  566. deleteTime = DBNull.Value;
  567. }
  568. else
  569. {
  570. deleteTime = value;
  571. }
  572. }
  573. }
  574. /// <summary>
  575. /// 出厂方式(停用)
  576. /// </summary>
  577. [Description("出厂方式(停用)")]
  578. public object LvFactyTyp
  579. {
  580. get { return lvFactyTyp; }
  581. set
  582. {
  583. if (value == null)
  584. {
  585. lvFactyTyp = DBNull.Value;
  586. }
  587. else
  588. {
  589. lvFactyTyp = value;
  590. }
  591. }
  592. }
  593. }
  594. }