TWarehousebillsitems.java 22 KB

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