TWarehousebillsitems.java 21 KB

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