TWarehousebillsitems.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. /**
  10. * 仓库明细从表对象 t_warehousebillsitems
  11. *
  12. * @author ruoyi
  13. * @date 2021-01-15
  14. */
  15. public class TWarehousebillsitems extends BaseEntity {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * $column.columnComment
  19. */
  20. private Long fId;
  21. /**
  22. * PID,对应主表id
  23. */
  24. @Excel(name = "PID,对应主表id")
  25. private Long fPid;
  26. /** 来源id */
  27. @Excel(name = "来源id")
  28. private Long fSrcid;
  29. /**
  30. * 行号,针对pid顺序排列,1,2,3,4,
  31. */
  32. @Excel(name = "行号,针对pid顺序排列,1,2,3,4,")
  33. private Long fLineno;
  34. /**
  35. * 货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
  36. */
  37. @Excel(name = "货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name")
  38. private Long fGoodsid;
  39. /**
  40. * 业务编号,保存主表的
  41. */
  42. @Excel(name = "业务编号,保存主表的")
  43. private String fBillno;
  44. /**
  45. * 提单号
  46. */
  47. @Excel(name = "提单号")
  48. private String fMblno;
  49. /**
  50. * 入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id
  51. */
  52. @Excel(name = "入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id")
  53. private Long fWarehouselocid;
  54. /** 调拨库区 */
  55. @Excel(name = "调拨库区")
  56. private Long fTransferWarehouselocid;
  57. /**
  58. * 原始入库业务编号
  59. */
  60. @Excel(name = "原始入库业务编号")
  61. private String fOriginalbillno;
  62. /**
  63. * 入(出)库日期
  64. */
  65. @Excel(name = "入", readConverterExp = "出=")
  66. private Date fBsdate;
  67. /**
  68. * 箱号
  69. */
  70. @Excel(name = "箱号")
  71. private String fBoxno;
  72. /**
  73. * 箱量
  74. */
  75. @Excel(name = "箱量")
  76. private Long fCntqty;
  77. /**
  78. * 货值
  79. */
  80. @Excel(name = "货值")
  81. private BigDecimal fGoodsval;
  82. /**
  83. * 箱型,20GP 4OGP
  84. */
  85. @Excel(name = "箱型,20GP 4OGP")
  86. private String fCntrtype;
  87. /**
  88. * 计划件数
  89. */
  90. @Excel(name = "计划件数")
  91. private Long fPlanqty;
  92. /**
  93. * 计费方式(数据字典)
  94. */
  95. @Excel(name = "计费方式(数据字典)")
  96. private Long fBillingway;
  97. /**
  98. * 计划尺码
  99. */
  100. @Excel(name = "计划尺码")
  101. private BigDecimal fPlanvolumn;
  102. /**
  103. * 入库日期
  104. */
  105. @JsonFormat(pattern = "yyyy-MM-dd")
  106. @Excel(name = "入库日期", width = 30, dateFormat = "yyyy-MM-dd")
  107. private Date fOriginalbilldate;
  108. /**
  109. * 包装规格
  110. */
  111. @Excel(name = "包装规格")
  112. private String fPackagespecs;
  113. /**
  114. * 计划毛重
  115. */
  116. @Excel(name = "计划毛重")
  117. private BigDecimal fPlangrossweight;
  118. /**
  119. * 仓储计费日期
  120. */
  121. @JsonFormat(pattern = "yyyy-MM-dd")
  122. @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
  123. private Date fChargedate;
  124. /**
  125. * 计划净重
  126. */
  127. @Excel(name = "计划净重")
  128. private BigDecimal fPlannetweight;
  129. /**
  130. * 件数
  131. */
  132. @Excel(name = "件数")
  133. private Long fQty;
  134. /**
  135. * 尺码
  136. */
  137. @Excel(name = "尺码")
  138. private BigDecimal fVolumn;
  139. /**
  140. * 毛重
  141. */
  142. @Excel(name = "毛重")
  143. private BigDecimal fGrossweight;
  144. /**
  145. * 净重
  146. */
  147. @Excel(name = "净重")
  148. private BigDecimal fNetweight;
  149. /**
  150. * 箱号
  151. */
  152. @Excel(name = "箱号")
  153. private String fCntrno;
  154. /**
  155. * 车号
  156. */
  157. @Excel(name = "车号")
  158. private String fTruckno;
  159. /**
  160. * 状态,N 入(出)库中,T入(出)库完成,状态为完成不能删除,状态变化,用邮件、微信通知客户。
  161. */
  162. @Excel(name = "状态,N 入", readConverterExp = "出=")
  163. private Long fBillstatus;
  164. /**
  165. * 删除状态
  166. */
  167. private String delFlag;
  168. /**
  169. * 唛头
  170. */
  171. @Excel(name = "唛头")
  172. private String fMarks;
  173. /**
  174. * 库存天数(出库日期-仓储费计费日期)
  175. */
  176. @Excel(name = "库存天数(出库日期-仓储费计费日期)")
  177. private Long fInventoryDays;
  178. /**
  179. * 金额
  180. */
  181. @Excel(name = "金额")
  182. private BigDecimal fAmt;
  183. /** 仓储费截至日期 */
  184. @JsonFormat(pattern = "yyyy-MM-dd")
  185. @Excel(name = "仓储费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  186. private Date fStorageFeeDeadline;
  187. /**
  188. * 计费天数
  189. */
  190. @Excel(name = "计费天数")
  191. private Long fBillingDays;
  192. /**
  193. * 司机名
  194. */
  195. @Excel(name = "司机名")
  196. private String fDriverName;
  197. /**
  198. * 司机电话
  199. */
  200. @Excel(name = "司机电话")
  201. private String fDriverTel;
  202. /**
  203. * 司机身份证
  204. */
  205. @Excel(name = "司机身份证")
  206. private String fDriverIdCar;
  207. /**
  208. * 流水号
  209. */
  210. @Excel(name = "流水号")
  211. private String fSerialNumber;
  212. /**
  213. * 是否已放行(T为放行、F未放行)
  214. */
  215. @Excel(name = "是否已放行(T为放行、F未放行)")
  216. private String fIsPass;
  217. /**
  218. * 单据类型(数据字典)SJRK(入库) SJCK(实际出库) CKDB(调拨) HQZY(货权转移)
  219. */
  220. @Excel(name = "单据类型(数据字典)SJRK", readConverterExp = "入=库")
  221. private String fBilltype;
  222. /**
  223. * 计费数量
  224. */
  225. @Excel(name = "计费数量")
  226. private BigDecimal fBillingQty;
  227. /**
  228. * 仓储费计费截至日期
  229. */
  230. @JsonFormat(pattern = "yyyy-MM-dd")
  231. @Excel(name = "仓储费计费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  232. private Date fBillingDeadline;
  233. /** 业务类型(存汉字的,用来选择 产地 规格 品牌) */
  234. @Excel(name = "业务类型(存汉字的,用来选择 产地 规格 品牌)")
  235. private Long fBusinessType;
  236. /** 是否入库0入总帐;1不计入总账(用于入库时候选择场地直装) */
  237. @Excel(name = "是否入库")
  238. private Long fIsInventory;
  239. /** 仓库/库区/库位 */
  240. @Excel(name = "仓库/库区/库位")
  241. private String fWarehouseInformation;
  242. /** 原始仓库/库区/库位 */
  243. @Excel(name = "仓库/库区/库位")
  244. private String fOrgwarehouseInformation;
  245. /** 劳务公司 */
  246. @Excel(name = "劳务公司")
  247. private Long fLabour;
  248. /** 车队 */
  249. @Excel(name = "车队")
  250. private Long fFleet;
  251. /** 装卸工 */
  252. @Excel(name = "装卸工")
  253. private String fStevedore;
  254. /** 装卸方式LNTYPE(人工 机械) */
  255. @Excel(name = "装卸方式LNTYPE(人工 机械)")
  256. private Long fLntype;
  257. /** 叉车工 */
  258. @Excel(name = "叉车工")
  259. private String fForkliftman;
  260. /** 库内箱号 */
  261. @Excel(name = "库内箱号")
  262. private String fLocalcntrno;
  263. /** 封号 */
  264. @Excel(name = "封号")
  265. private String fSealno;
  266. /**
  267. * 备注
  268. */
  269. private String remark;
  270. private String timeStartBsdate;
  271. private String timeEndBsdate;
  272. public Long getfLabour() {
  273. return fLabour;
  274. }
  275. public void setfLabour(Long fLabour) {
  276. this.fLabour = fLabour;
  277. }
  278. public Long getfFleet() {
  279. return fFleet;
  280. }
  281. public void setfFleet(Long fFleet) {
  282. this.fFleet = fFleet;
  283. }
  284. public String getfStevedore() {
  285. return fStevedore;
  286. }
  287. public void setfStevedore(String fStevedore) {
  288. this.fStevedore = fStevedore;
  289. }
  290. @Override
  291. public String getRemark() {
  292. return remark;
  293. }
  294. @Override
  295. public void setRemark(String remark) {
  296. this.remark = remark;
  297. }
  298. public String getTimeStartBsdate() {
  299. return timeStartBsdate;
  300. }
  301. public void setTimeStartBsdate(String timeStartBsdate) {
  302. this.timeStartBsdate = timeStartBsdate;
  303. }
  304. public String getTimeEndBsdate() {
  305. return timeEndBsdate;
  306. }
  307. public void setTimeEndBsdate(String timeEndBsdate) {
  308. this.timeEndBsdate = timeEndBsdate;
  309. }
  310. public void setfId(Long fId) {
  311. this.fId = fId;
  312. }
  313. public Long getfId() {
  314. return fId;
  315. }
  316. public void setfPid(Long fPid) {
  317. this.fPid = fPid;
  318. }
  319. public Long getfPid() {
  320. return fPid;
  321. }
  322. public void setfLineno(Long fLineno) {
  323. this.fLineno = fLineno;
  324. }
  325. public Long getfLineno() {
  326. return fLineno;
  327. }
  328. public void setfSrcid(Long fSrcid) {
  329. this.fSrcid = fSrcid;
  330. }
  331. public Long getfSrcid() {
  332. return fSrcid;
  333. }
  334. public void setfGoodsid(Long fGoodsid) {
  335. this.fGoodsid = fGoodsid;
  336. }
  337. public Long getfGoodsid() {
  338. return fGoodsid;
  339. }
  340. public void setfBillno(String fBillno) {
  341. this.fBillno = fBillno;
  342. }
  343. public String getfBillno() {
  344. return fBillno;
  345. }
  346. public void setfMblno(String fMblno) {
  347. this.fMblno = fMblno;
  348. }
  349. public String getfMblno() {
  350. return fMblno;
  351. }
  352. public void setfWarehouselocid(Long fWarehouselocid) {
  353. this.fWarehouselocid = fWarehouselocid;
  354. }
  355. public Long getfWarehouselocid() {
  356. return fWarehouselocid;
  357. }
  358. public void setfTransferWarehouselocid(Long fTransferWarehouselocid) {
  359. this.fTransferWarehouselocid = fTransferWarehouselocid;
  360. }
  361. public Long getfTransferWarehouselocid() {
  362. return fTransferWarehouselocid;
  363. }
  364. public void setfStorageFeeDeadline(Date fStorageFeeDeadline) {
  365. this.fStorageFeeDeadline = fStorageFeeDeadline;
  366. }
  367. public Date getfStorageFeeDeadline() {
  368. return fStorageFeeDeadline;
  369. }
  370. public void setfOriginalbillno(String fOriginalbillno) {
  371. this.fOriginalbillno = fOriginalbillno;
  372. }
  373. public String getfOriginalbillno() {
  374. return fOriginalbillno;
  375. }
  376. public void setfBsdate(Date fBsdate) {
  377. this.fBsdate = fBsdate;
  378. }
  379. public Date getfBsdate() {
  380. return fBsdate;
  381. }
  382. public void setfBoxno(String fBoxno) {
  383. this.fBoxno = fBoxno;
  384. }
  385. public String getfBoxno() {
  386. return fBoxno;
  387. }
  388. public void setfCntqty(Long fCntqty) {
  389. this.fCntqty = fCntqty;
  390. }
  391. public Long getfCntqty() {
  392. return fCntqty;
  393. }
  394. public void setfGoodsval(BigDecimal fGoodsval) {
  395. this.fGoodsval = fGoodsval;
  396. }
  397. public BigDecimal getfGoodsval() {
  398. return fGoodsval;
  399. }
  400. public void setfCntrtype(String fCntrtype) {
  401. this.fCntrtype = fCntrtype;
  402. }
  403. public String getfCntrtype() {
  404. return fCntrtype;
  405. }
  406. public void setfPlanqty(Long fPlanqty) {
  407. this.fPlanqty = fPlanqty;
  408. }
  409. public Long getfPlanqty() {
  410. return fPlanqty;
  411. }
  412. public void setfBillingway(Long fBillingway) {
  413. this.fBillingway = fBillingway;
  414. }
  415. public Long getfBillingway() {
  416. return fBillingway;
  417. }
  418. public void setfPlanvolumn(BigDecimal fPlanvolumn) {
  419. this.fPlanvolumn = fPlanvolumn;
  420. }
  421. public BigDecimal getfPlanvolumn() {
  422. return fPlanvolumn;
  423. }
  424. public void setfOriginalbilldate(Date fOriginalbilldate) {
  425. this.fOriginalbilldate = fOriginalbilldate;
  426. }
  427. public Date getfOriginalbilldate() {
  428. return fOriginalbilldate;
  429. }
  430. public void setfPackagespecs(String fPackagespecs) {
  431. this.fPackagespecs = fPackagespecs;
  432. }
  433. public String getfPackagespecs() {
  434. return fPackagespecs;
  435. }
  436. public void setfPlangrossweight(BigDecimal fPlangrossweight) {
  437. this.fPlangrossweight = fPlangrossweight;
  438. }
  439. public BigDecimal getfPlangrossweight() {
  440. return fPlangrossweight;
  441. }
  442. public void setfChargedate(Date fChargedate) {
  443. this.fChargedate = fChargedate;
  444. }
  445. public Date getfChargedate() {
  446. return fChargedate;
  447. }
  448. public void setfPlannetweight(BigDecimal fPlannetweight) {
  449. this.fPlannetweight = fPlannetweight;
  450. }
  451. public BigDecimal getfPlannetweight() {
  452. return fPlannetweight;
  453. }
  454. public void setfQty(Long fQty) {
  455. this.fQty = fQty;
  456. }
  457. public Long getfQty() {
  458. return fQty;
  459. }
  460. public void setfVolumn(BigDecimal fVolumn) {
  461. this.fVolumn = fVolumn;
  462. }
  463. public BigDecimal getfVolumn() {
  464. return fVolumn;
  465. }
  466. public void setfGrossweight(BigDecimal fGrossweight) {
  467. this.fGrossweight = fGrossweight;
  468. }
  469. public BigDecimal getfGrossweight() {
  470. return fGrossweight;
  471. }
  472. public void setfNetweight(BigDecimal fNetweight) {
  473. this.fNetweight = fNetweight;
  474. }
  475. public BigDecimal getfNetweight() {
  476. return fNetweight;
  477. }
  478. public void setfCntrno(String fCntrno) {
  479. this.fCntrno = fCntrno;
  480. }
  481. public String getfCntrno() {
  482. return fCntrno;
  483. }
  484. public void setfTruckno(String fTruckno) {
  485. this.fTruckno = fTruckno;
  486. }
  487. public String getfTruckno() {
  488. return fTruckno;
  489. }
  490. public void setfBillstatus(Long fBillstatus) {
  491. this.fBillstatus = fBillstatus;
  492. }
  493. public Long getfBillstatus() {
  494. return fBillstatus;
  495. }
  496. public void setDelFlag(String delFlag) {
  497. this.delFlag = delFlag;
  498. }
  499. public String getDelFlag() {
  500. return delFlag;
  501. }
  502. public void setfMarks(String fMarks) {
  503. this.fMarks = fMarks;
  504. }
  505. public String getfMarks() {
  506. return fMarks;
  507. }
  508. public void setfInventoryDays(Long fInventoryDays) {
  509. this.fInventoryDays = fInventoryDays;
  510. }
  511. public Long getfInventoryDays() {
  512. return fInventoryDays;
  513. }
  514. public void setfAmt(BigDecimal fAmt) {
  515. this.fAmt = fAmt;
  516. }
  517. public BigDecimal getfAmt() {
  518. return fAmt;
  519. }
  520. public void setfBillingDays(Long fBillingDays) {
  521. this.fBillingDays = fBillingDays;
  522. }
  523. public Long getfBillingDays() {
  524. return fBillingDays;
  525. }
  526. public void setfDriverName(String fDriverName) {
  527. this.fDriverName = fDriverName;
  528. }
  529. public String getfDriverName() {
  530. return fDriverName;
  531. }
  532. public void setfDriverTel(String fDriverTel) {
  533. this.fDriverTel = fDriverTel;
  534. }
  535. public String getfDriverTel() {
  536. return fDriverTel;
  537. }
  538. public void setfDriverIdCar(String fDriverIdCar) {
  539. this.fDriverIdCar = fDriverIdCar;
  540. }
  541. public String getfDriverIdCar() {
  542. return fDriverIdCar;
  543. }
  544. public void setfSerialNumber(String fSerialNumber) {
  545. this.fSerialNumber = fSerialNumber;
  546. }
  547. public String getfSerialNumber() {
  548. return fSerialNumber;
  549. }
  550. public void setfIsPass(String fIsPass) {
  551. this.fIsPass = fIsPass;
  552. }
  553. public String getfIsPass() {
  554. return fIsPass;
  555. }
  556. public void setfBilltype(String fBilltype) {
  557. this.fBilltype = fBilltype;
  558. }
  559. public String getfBilltype() {
  560. return fBilltype;
  561. }
  562. public void setfBillingQty(BigDecimal fBillingQty) {
  563. this.fBillingQty = fBillingQty;
  564. }
  565. public BigDecimal getfBillingQty() {
  566. return fBillingQty;
  567. }
  568. public void setfBillingDeadline(Date fBillingDeadline) {
  569. this.fBillingDeadline = fBillingDeadline;
  570. }
  571. public Date getfBillingDeadline() {
  572. return fBillingDeadline;
  573. }
  574. public void setfBusinessType(Long fBusinessType) {
  575. this.fBusinessType = fBusinessType;
  576. }
  577. public Long getfBusinessType() {
  578. return fBusinessType;
  579. }
  580. public void setfIsInventory(Long fIsInventory) {
  581. this.fIsInventory = fIsInventory;
  582. }
  583. public Long getfIsInventory() {
  584. return fIsInventory;
  585. }
  586. public String getfWarehouseInformation() {
  587. return fWarehouseInformation;
  588. }
  589. public void setfWarehouseInformation(String fWarehouseInformation) {
  590. this.fWarehouseInformation = fWarehouseInformation;
  591. }
  592. public Long getfLntype() {
  593. return fLntype;
  594. }
  595. public void setfLntype(Long fLntype) {
  596. this.fLntype = fLntype;
  597. }
  598. public String getfForkliftman() {
  599. return fForkliftman;
  600. }
  601. public void setfForkliftman(String fForkliftman) {
  602. this.fForkliftman = fForkliftman;
  603. }
  604. public String getfLocalcntrno() {
  605. return fLocalcntrno;
  606. }
  607. public void setfLocalcntrno(String fLocalcntrno) {
  608. this.fLocalcntrno = fLocalcntrno;
  609. }
  610. public String getfSealno() {
  611. return fSealno;
  612. }
  613. public void setfSealno(String fSealno) {
  614. this.fSealno = fSealno;
  615. }
  616. public String getfOrgwarehouseInformation() {
  617. return fOrgwarehouseInformation;
  618. }
  619. public void setfOrgwarehouseInformation(String fOrgwarehouseInformation) {
  620. this.fOrgwarehouseInformation = fOrgwarehouseInformation;
  621. }
  622. @Override
  623. public String toString() {
  624. return "TWarehousebillsitems{" +
  625. "fId=" + fId +
  626. ", fPid=" + fPid +
  627. ", fSrcid=" + fSrcid +
  628. ", fLineno=" + fLineno +
  629. ", fGoodsid=" + fGoodsid +
  630. ", fBillno='" + fBillno + '\'' +
  631. ", fMblno='" + fMblno + '\'' +
  632. ", fWarehouselocid=" + fWarehouselocid +
  633. ", fTransferWarehouselocid=" + fTransferWarehouselocid +
  634. ", fOriginalbillno='" + fOriginalbillno + '\'' +
  635. ", fBsdate=" + fBsdate +
  636. ", fBoxno='" + fBoxno + '\'' +
  637. ", fCntqty=" + fCntqty +
  638. ", fGoodsval=" + fGoodsval +
  639. ", fCntrtype='" + fCntrtype + '\'' +
  640. ", fPlanqty=" + fPlanqty +
  641. ", fBillingway=" + fBillingway +
  642. ", fPlanvolumn=" + fPlanvolumn +
  643. ", fOriginalbilldate=" + fOriginalbilldate +
  644. ", fPackagespecs='" + fPackagespecs + '\'' +
  645. ", fPlangrossweight=" + fPlangrossweight +
  646. ", fChargedate=" + fChargedate +
  647. ", fPlannetweight=" + fPlannetweight +
  648. ", fQty=" + fQty +
  649. ", fVolumn=" + fVolumn +
  650. ", fGrossweight=" + fGrossweight +
  651. ", fNetweight=" + fNetweight +
  652. ", fCntrno='" + fCntrno + '\'' +
  653. ", fTruckno='" + fTruckno + '\'' +
  654. ", fBillstatus=" + fBillstatus +
  655. ", delFlag='" + delFlag + '\'' +
  656. ", fMarks='" + fMarks + '\'' +
  657. ", fInventoryDays=" + fInventoryDays +
  658. ", fAmt=" + fAmt +
  659. ", fStorageFeeDeadline=" + fStorageFeeDeadline +
  660. ", fBillingDays=" + fBillingDays +
  661. ", fDriverName='" + fDriverName + '\'' +
  662. ", fDriverTel='" + fDriverTel + '\'' +
  663. ", fDriverIdCar='" + fDriverIdCar + '\'' +
  664. ", fSerialNumber='" + fSerialNumber + '\'' +
  665. ", fIsPass='" + fIsPass + '\'' +
  666. ", fBilltype='" + fBilltype + '\'' +
  667. ", fBillingQty=" + fBillingQty +
  668. ", fBillingDeadline=" + fBillingDeadline +
  669. ", fBusinessType=" + fBusinessType +
  670. ", fIsInventory=" + fIsInventory +
  671. ", fWarehouseInformation='" + fWarehouseInformation + '\'' +
  672. ", fOrgwarehouseInformation='" + fOrgwarehouseInformation + '\'' +
  673. ", fLabour=" + fLabour +
  674. ", fFleet=" + fFleet +
  675. ", fStevedore='" + fStevedore + '\'' +
  676. ", fLntype=" + fLntype +
  677. ", fForkliftman='" + fForkliftman + '\'' +
  678. ", fLocalcntrno='" + fLocalcntrno + '\'' +
  679. ", fSealno='" + fSealno + '\'' +
  680. ", remark='" + remark + '\'' +
  681. ", timeStartBsdate='" + timeStartBsdate + '\'' +
  682. ", timeEndBsdate='" + timeEndBsdate + '\'' +
  683. '}';
  684. }
  685. }