TWarehousebillsitems.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  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. * 行号,针对pid顺序排列,1,2,3,4,
  31. */
  32. @Excel(name = "行号,针对pid顺序排列,1,2,3,4,")
  33. private Long fLineno;
  34. /**
  35. * 货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
  36. */
  37. @Excel(name = "货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name")
  38. private Long fGoodsid;
  39. /**
  40. * 业务编号,保存主表的
  41. */
  42. @Excel(name = "业务编号,保存主表的")
  43. private String fBillno;
  44. /**
  45. * 提单号
  46. */
  47. @Excel(name = "提单号")
  48. private String fMblno;
  49. /**
  50. * 入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id
  51. */
  52. @Excel(name = "入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id")
  53. private Long fWarehouselocid;
  54. /** 调拨库区 */
  55. @Excel(name = "调拨库区")
  56. private Long fTransferWarehouselocid;
  57. /**
  58. * 原始入库业务编号
  59. */
  60. @Excel(name = "原始入库业务编号")
  61. private String fOriginalbillno;
  62. /**
  63. * 入(出)库日期
  64. */
  65. @Excel(name = "入", readConverterExp = "出=")
  66. private Date fBsdate;
  67. /**
  68. * 箱号
  69. */
  70. @Excel(name = "箱号")
  71. private String fBoxno;
  72. /**
  73. * 箱量
  74. */
  75. @Excel(name = "箱量")
  76. private Long fCntqty;
  77. /**
  78. * 货值
  79. */
  80. @Excel(name = "货值")
  81. private BigDecimal fGoodsval;
  82. /**
  83. * 箱型,20GP 4OGP
  84. */
  85. @Excel(name = "箱型,20GP 4OGP")
  86. private String fCntrtype;
  87. /**
  88. * 计划件数
  89. */
  90. @Excel(name = "计划件数")
  91. private Long fPlanqty;
  92. /**
  93. * 计费方式(数据字典)
  94. */
  95. @Excel(name = "计费方式(数据字典)")
  96. private Long fBillingway;
  97. /**
  98. * 计划尺码
  99. */
  100. @Excel(name = "计划尺码")
  101. private BigDecimal fPlanvolumn;
  102. /**
  103. * 入库日期
  104. */
  105. @JsonFormat(pattern = "yyyy-MM-dd")
  106. @Excel(name = "入库日期", width = 30, dateFormat = "yyyy-MM-dd")
  107. private Date fOriginalbilldate;
  108. /**
  109. * 包装规格
  110. */
  111. @Excel(name = "包装规格")
  112. private String fPackagespecs;
  113. /**
  114. * 计划毛重
  115. */
  116. @Excel(name = "计划毛重")
  117. private BigDecimal fPlangrossweight;
  118. /**
  119. * 仓储计费日期
  120. */
  121. @JsonFormat(pattern = "yyyy-MM-dd")
  122. @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
  123. private Date fChargedate;
  124. /**
  125. * 计划净重
  126. */
  127. @Excel(name = "计划净重")
  128. private BigDecimal fPlannetweight;
  129. /**
  130. * 件数
  131. */
  132. @Excel(name = "件数")
  133. private Long fQty;
  134. /**
  135. * 尺码
  136. */
  137. @Excel(name = "尺码")
  138. private BigDecimal fVolumn;
  139. /**
  140. * 毛重
  141. */
  142. @Excel(name = "毛重")
  143. private BigDecimal fGrossweight;
  144. /**
  145. * 净重
  146. */
  147. @Excel(name = "净重")
  148. private BigDecimal fNetweight;
  149. /**
  150. * 箱号
  151. */
  152. @Excel(name = "箱号")
  153. private String fCntrno;
  154. /**
  155. * 车号
  156. */
  157. @Excel(name = "车号")
  158. private String fTruckno;
  159. /**
  160. * 状态,N 入(出)库中,T入(出)库完成,状态为完成不能删除,状态变化,用邮件、微信通知客户。
  161. */
  162. @Excel(name = "状态,N 入", readConverterExp = "出=")
  163. private Long fBillstatus;
  164. /**
  165. * 删除状态
  166. */
  167. private String delFlag;
  168. /**
  169. * 唛头
  170. */
  171. @Excel(name = "唛头")
  172. private String fMarks;
  173. /**
  174. * 库存天数(出库日期-仓储费计费日期)
  175. */
  176. @Excel(name = "库存天数(出库日期-仓储费计费日期)")
  177. private Long fInventoryDays;
  178. /**
  179. * 金额
  180. */
  181. @Excel(name = "金额")
  182. private BigDecimal fAmt;
  183. /** 仓储费截至日期 */
  184. @JsonFormat(pattern = "yyyy-MM-dd")
  185. @Excel(name = "仓储费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  186. private Date fStorageFeeDeadline;
  187. /**
  188. * 计费天数
  189. */
  190. @Excel(name = "计费天数")
  191. private Long fBillingDays;
  192. /**
  193. * 司机名
  194. */
  195. @Excel(name = "司机名")
  196. private String fDriverName;
  197. /**
  198. * 司机电话
  199. */
  200. @Excel(name = "司机电话")
  201. private String fDriverTel;
  202. /**
  203. * 司机身份证
  204. */
  205. @Excel(name = "司机身份证")
  206. private String fDriverIdCar;
  207. /**
  208. * 流水号
  209. */
  210. @Excel(name = "流水号")
  211. private String fSerialNumber;
  212. /**
  213. * 是否已放行(T为放行、F未放行)
  214. */
  215. @Excel(name = "是否已放行(T为放行、F未放行)")
  216. private String fIsPass;
  217. /**
  218. * 单据类型(数据字典)SJRK(入库) SJCK(实际出库) CKDB(调拨) HQZY(货权转移)
  219. */
  220. @Excel(name = "单据类型(数据字典)SJRK", readConverterExp = "入=库")
  221. private String fBilltype;
  222. /**
  223. * 计费数量
  224. */
  225. @Excel(name = "计费数量")
  226. private BigDecimal fBillingQty;
  227. /**
  228. * 仓储费计费截至日期
  229. */
  230. @JsonFormat(pattern = "yyyy-MM-dd")
  231. @Excel(name = "仓储费计费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  232. private Date fBillingDeadline;
  233. /** 业务类型(存汉字的,用来选择 产地 规格 品牌) */
  234. @Excel(name = "业务类型(存汉字的,用来选择 产地 规格 品牌)")
  235. private Long fBusinessType;
  236. /** 是否入库0入总帐;1不计入总账(用于入库时候选择场地直装) */
  237. @Excel(name = "是否入库")
  238. private Long fIsInventory;
  239. /** 仓库/库区/库位 */
  240. @Excel(name = "仓库/库区/库位")
  241. private String fWarehouseInformation;
  242. public void setfId(Long fId) {
  243. this.fId = fId;
  244. }
  245. public Long getfId() {
  246. return fId;
  247. }
  248. public void setfPid(Long fPid) {
  249. this.fPid = fPid;
  250. }
  251. public Long getfPid() {
  252. return fPid;
  253. }
  254. public void setfLineno(Long fLineno) {
  255. this.fLineno = fLineno;
  256. }
  257. public Long getfLineno() {
  258. return fLineno;
  259. }
  260. public void setfSrcid(Long fSrcid) {
  261. this.fSrcid = fSrcid;
  262. }
  263. public Long getfSrcid() {
  264. return fSrcid;
  265. }
  266. public void setfGoodsid(Long fGoodsid) {
  267. this.fGoodsid = fGoodsid;
  268. }
  269. public Long getfGoodsid() {
  270. return fGoodsid;
  271. }
  272. public void setfBillno(String fBillno) {
  273. this.fBillno = fBillno;
  274. }
  275. public String getfBillno() {
  276. return fBillno;
  277. }
  278. public void setfMblno(String fMblno) {
  279. this.fMblno = fMblno;
  280. }
  281. public String getfMblno() {
  282. return fMblno;
  283. }
  284. public void setfWarehouselocid(Long fWarehouselocid) {
  285. this.fWarehouselocid = fWarehouselocid;
  286. }
  287. public Long getfWarehouselocid() {
  288. return fWarehouselocid;
  289. }
  290. public void setfTransferWarehouselocid(Long fTransferWarehouselocid) {
  291. this.fTransferWarehouselocid = fTransferWarehouselocid;
  292. }
  293. public Long getfTransferWarehouselocid() {
  294. return fTransferWarehouselocid;
  295. }
  296. public void setfStorageFeeDeadline(Date fStorageFeeDeadline) {
  297. this.fStorageFeeDeadline = fStorageFeeDeadline;
  298. }
  299. public Date getfStorageFeeDeadline() {
  300. return fStorageFeeDeadline;
  301. }
  302. public void setfOriginalbillno(String fOriginalbillno) {
  303. this.fOriginalbillno = fOriginalbillno;
  304. }
  305. public String getfOriginalbillno() {
  306. return fOriginalbillno;
  307. }
  308. public void setfBsdate(Date fBsdate) {
  309. this.fBsdate = fBsdate;
  310. }
  311. public Date getfBsdate() {
  312. return fBsdate;
  313. }
  314. public void setfBoxno(String fBoxno) {
  315. this.fBoxno = fBoxno;
  316. }
  317. public String getfBoxno() {
  318. return fBoxno;
  319. }
  320. public void setfCntqty(Long fCntqty) {
  321. this.fCntqty = fCntqty;
  322. }
  323. public Long getfCntqty() {
  324. return fCntqty;
  325. }
  326. public void setfGoodsval(BigDecimal fGoodsval) {
  327. this.fGoodsval = fGoodsval;
  328. }
  329. public BigDecimal getfGoodsval() {
  330. return fGoodsval;
  331. }
  332. public void setfCntrtype(String fCntrtype) {
  333. this.fCntrtype = fCntrtype;
  334. }
  335. public String getfCntrtype() {
  336. return fCntrtype;
  337. }
  338. public void setfPlanqty(Long fPlanqty) {
  339. this.fPlanqty = fPlanqty;
  340. }
  341. public Long getfPlanqty() {
  342. return fPlanqty;
  343. }
  344. public void setfBillingway(Long fBillingway) {
  345. this.fBillingway = fBillingway;
  346. }
  347. public Long getfBillingway() {
  348. return fBillingway;
  349. }
  350. public void setfPlanvolumn(BigDecimal fPlanvolumn) {
  351. this.fPlanvolumn = fPlanvolumn;
  352. }
  353. public BigDecimal getfPlanvolumn() {
  354. return fPlanvolumn;
  355. }
  356. public void setfOriginalbilldate(Date fOriginalbilldate) {
  357. this.fOriginalbilldate = fOriginalbilldate;
  358. }
  359. public Date getfOriginalbilldate() {
  360. return fOriginalbilldate;
  361. }
  362. public void setfPackagespecs(String fPackagespecs) {
  363. this.fPackagespecs = fPackagespecs;
  364. }
  365. public String getfPackagespecs() {
  366. return fPackagespecs;
  367. }
  368. public void setfPlangrossweight(BigDecimal fPlangrossweight) {
  369. this.fPlangrossweight = fPlangrossweight;
  370. }
  371. public BigDecimal getfPlangrossweight() {
  372. return fPlangrossweight;
  373. }
  374. public void setfChargedate(Date fChargedate) {
  375. this.fChargedate = fChargedate;
  376. }
  377. public Date getfChargedate() {
  378. return fChargedate;
  379. }
  380. public void setfPlannetweight(BigDecimal fPlannetweight) {
  381. this.fPlannetweight = fPlannetweight;
  382. }
  383. public BigDecimal getfPlannetweight() {
  384. return fPlannetweight;
  385. }
  386. public void setfQty(Long fQty) {
  387. this.fQty = fQty;
  388. }
  389. public Long getfQty() {
  390. return fQty;
  391. }
  392. public void setfVolumn(BigDecimal fVolumn) {
  393. this.fVolumn = fVolumn;
  394. }
  395. public BigDecimal getfVolumn() {
  396. return fVolumn;
  397. }
  398. public void setfGrossweight(BigDecimal fGrossweight) {
  399. this.fGrossweight = fGrossweight;
  400. }
  401. public BigDecimal getfGrossweight() {
  402. return fGrossweight;
  403. }
  404. public void setfNetweight(BigDecimal fNetweight) {
  405. this.fNetweight = fNetweight;
  406. }
  407. public BigDecimal getfNetweight() {
  408. return fNetweight;
  409. }
  410. public void setfCntrno(String fCntrno) {
  411. this.fCntrno = fCntrno;
  412. }
  413. public String getfCntrno() {
  414. return fCntrno;
  415. }
  416. public void setfTruckno(String fTruckno) {
  417. this.fTruckno = fTruckno;
  418. }
  419. public String getfTruckno() {
  420. return fTruckno;
  421. }
  422. public void setfBillstatus(Long fBillstatus) {
  423. this.fBillstatus = fBillstatus;
  424. }
  425. public Long getfBillstatus() {
  426. return fBillstatus;
  427. }
  428. public void setDelFlag(String delFlag) {
  429. this.delFlag = delFlag;
  430. }
  431. public String getDelFlag() {
  432. return delFlag;
  433. }
  434. public void setfMarks(String fMarks) {
  435. this.fMarks = fMarks;
  436. }
  437. public String getfMarks() {
  438. return fMarks;
  439. }
  440. public void setfInventoryDays(Long fInventoryDays) {
  441. this.fInventoryDays = fInventoryDays;
  442. }
  443. public Long getfInventoryDays() {
  444. return fInventoryDays;
  445. }
  446. public void setfAmt(BigDecimal fAmt) {
  447. this.fAmt = fAmt;
  448. }
  449. public BigDecimal getfAmt() {
  450. return fAmt;
  451. }
  452. public void setfBillingDays(Long fBillingDays) {
  453. this.fBillingDays = fBillingDays;
  454. }
  455. public Long getfBillingDays() {
  456. return fBillingDays;
  457. }
  458. public void setfDriverName(String fDriverName) {
  459. this.fDriverName = fDriverName;
  460. }
  461. public String getfDriverName() {
  462. return fDriverName;
  463. }
  464. public void setfDriverTel(String fDriverTel) {
  465. this.fDriverTel = fDriverTel;
  466. }
  467. public String getfDriverTel() {
  468. return fDriverTel;
  469. }
  470. public void setfDriverIdCar(String fDriverIdCar) {
  471. this.fDriverIdCar = fDriverIdCar;
  472. }
  473. public String getfDriverIdCar() {
  474. return fDriverIdCar;
  475. }
  476. public void setfSerialNumber(String fSerialNumber) {
  477. this.fSerialNumber = fSerialNumber;
  478. }
  479. public String getfSerialNumber() {
  480. return fSerialNumber;
  481. }
  482. public void setfIsPass(String fIsPass) {
  483. this.fIsPass = fIsPass;
  484. }
  485. public String getfIsPass() {
  486. return fIsPass;
  487. }
  488. public void setfBilltype(String fBilltype) {
  489. this.fBilltype = fBilltype;
  490. }
  491. public String getfBilltype() {
  492. return fBilltype;
  493. }
  494. public void setfBillingQty(BigDecimal fBillingQty) {
  495. this.fBillingQty = fBillingQty;
  496. }
  497. public BigDecimal getfBillingQty() {
  498. return fBillingQty;
  499. }
  500. public void setfBillingDeadline(Date fBillingDeadline) {
  501. this.fBillingDeadline = fBillingDeadline;
  502. }
  503. public Date getfBillingDeadline() {
  504. return fBillingDeadline;
  505. }
  506. public void setfBusinessType(Long fBusinessType) {
  507. this.fBusinessType = fBusinessType;
  508. }
  509. public Long getfBusinessType() {
  510. return fBusinessType;
  511. }
  512. public void setfIsInventory(Long fIsInventory) {
  513. this.fIsInventory = fIsInventory;
  514. }
  515. public Long getfIsInventory() {
  516. return fIsInventory;
  517. }
  518. public String getfWarehouseInformation() {
  519. return fWarehouseInformation;
  520. }
  521. public void setfWarehouseInformation(String fWarehouseInformation) {
  522. this.fWarehouseInformation = fWarehouseInformation;
  523. }
  524. @Override
  525. public String toString() {
  526. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  527. .append("fId", getfId())
  528. .append("fPid", getfPid())
  529. .append("fLineno", getfLineno())
  530. .append("fSrcid", getfSrcid())
  531. .append("fGoodsid", getfGoodsid())
  532. .append("fBillno", getfBillno())
  533. .append("fMblno", getfMblno())
  534. .append("fWarehouselocid", getfWarehouselocid())
  535. .append("fTransferWarehouselocid", getfTransferWarehouselocid())
  536. .append("fOriginalbillno", getfOriginalbillno())
  537. .append("fBsdate", getfBsdate())
  538. .append("fBoxno", getfBoxno())
  539. .append("fCntqty", getfCntqty())
  540. .append("fGoodsval", getfGoodsval())
  541. .append("fCntrtype", getfCntrtype())
  542. .append("fPlanqty", getfPlanqty())
  543. .append("fStorageFeeDeadline", getfStorageFeeDeadline())
  544. .append("fBillingway", getfBillingway())
  545. .append("fPlanvolumn", getfPlanvolumn())
  546. .append("fOriginalbilldate", getfOriginalbilldate())
  547. .append("fPackagespecs", getfPackagespecs())
  548. .append("fPlangrossweight", getfPlangrossweight())
  549. .append("fChargedate", getfChargedate())
  550. .append("fPlannetweight", getfPlannetweight())
  551. .append("fQty", getfQty())
  552. .append("fVolumn", getfVolumn())
  553. .append("fGrossweight", getfGrossweight())
  554. .append("fNetweight", getfNetweight())
  555. .append("fCntrno", getfCntrno())
  556. .append("fTruckno", getfTruckno())
  557. .append("fBillstatus", getfBillstatus())
  558. .append("delFlag", getDelFlag())
  559. .append("createBy", getCreateBy())
  560. .append("createTime", getCreateTime())
  561. .append("updateBy", getUpdateBy())
  562. .append("updateTime", getUpdateTime())
  563. .append("remark", getRemark())
  564. .append("fMarks", getfMarks())
  565. .append("fInventoryDays", getfInventoryDays())
  566. .append("fAmt", getfAmt())
  567. .append("fBillingDays", getfBillingDays())
  568. .append("fDriverName", getfDriverName())
  569. .append("fDriverTel", getfDriverTel())
  570. .append("fDriverIdCar", getfDriverIdCar())
  571. .append("fSerialNumber", getfSerialNumber())
  572. .append("fIsPass", getfIsPass())
  573. .append("fBilltype", getfBilltype())
  574. .append("fBillingQty", getfBillingQty())
  575. .append("fIsInventory", getfIsInventory())
  576. .append("fBusinessType", getfBusinessType())
  577. .append("fBillingDeadline", getfBillingDeadline())
  578. .toString();
  579. }
  580. }