TWarehousebillsitems.java 25 KB

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