TWarehousebillsitems.java 22 KB

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