TWarehousebillsitems.java 23 KB

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