TWhgenleg.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. package com.ruoyi.reportManagement.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.springframework.format.annotation.DateTimeFormat;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 库存总账对象 t_whgenleg
  11. *
  12. * @author ruoyi
  13. * @date 2020-12-25
  14. */
  15. public class TWhgenleg extends BaseEntity {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * $column.columnComment
  19. */
  20. private Long fId;
  21. /**
  22. * 年
  23. */
  24. private Long fAccyear;
  25. /**
  26. * 月
  27. */
  28. private Long fAccmonth;
  29. /**
  30. * 客户id,t_corps 中的name
  31. */
  32. private Long fCorpid;
  33. /**
  34. * 发货方
  35. */
  36. private String fShipper;
  37. /**
  38. * 提单号
  39. */
  40. private String fMblno;
  41. /**
  42. * 原始入库业务编号
  43. */
  44. @Excel(name = "原始入库业务编号")
  45. private String fOriginalbillno;
  46. /**
  47. * 库区,显示仓库 库位 库区
  48. */
  49. private Long fWarehouseLocationid;
  50. /**
  51. * 货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
  52. */
  53. private Long fGoodsid;
  54. /**
  55. * 业务日期
  56. */
  57. @JsonFormat(pattern = "yyyy-MM-dd")
  58. @DateTimeFormat(pattern = "yyyy-MM-dd")
  59. @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
  60. private Date fBsdate;
  61. /**
  62. * 仓储计费日期
  63. */
  64. @JsonFormat(pattern = "yyyy-MM-dd")
  65. @DateTimeFormat(pattern = "yyyy-MM-dd")
  66. @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
  67. private Date fChargedate;
  68. /**
  69. * 贸易方式,对应t_trademodels name
  70. */
  71. private Long fTrademodeid;
  72. /**
  73. * 上期件数
  74. */
  75. @Excel(name = "上期件数")
  76. private Long fPreqty;
  77. /**
  78. * 仓库
  79. */
  80. @Excel(name = "仓库")
  81. private Long fWarehouseid;
  82. /**
  83. * 上期毛重,单位为吨,保留6位小数
  84. */
  85. @Excel(name = "上期毛重,单位为吨,保留6位小数")
  86. private BigDecimal fPregrossweight;
  87. /**
  88. * 上期净重,
  89. */
  90. @Excel(name = "上期净重,")
  91. private BigDecimal fPrenetweight;
  92. /**
  93. * 入库件数
  94. */
  95. @Excel(name = "入库件数")
  96. private Long fQtyd;
  97. /**
  98. * 入库尺码
  99. */
  100. @Excel(name = "入库尺码")
  101. private BigDecimal fVolumnd;
  102. /**
  103. * 计费方式(数据字典)
  104. */
  105. @Excel(name = "计费方式(数据字典)")
  106. private Long fBillingway;
  107. /**
  108. * 入库毛重
  109. */
  110. @Excel(name = "入库毛重")
  111. private BigDecimal fGrossweightd;
  112. /**
  113. * 入库净重
  114. */
  115. @Excel(name = "入库净重")
  116. private BigDecimal fNetweightd;
  117. /**
  118. * 出口尺码
  119. */
  120. @Excel(name = "出口尺码")
  121. private BigDecimal fVolumnc;
  122. /**
  123. * 出库件数
  124. */
  125. @Excel(name = "出库件数")
  126. private Long fQtyc;
  127. /**
  128. * 出库毛重,单位为吨
  129. */
  130. @Excel(name = "出库毛重,单位为吨")
  131. private BigDecimal fGrossweightc;
  132. /**
  133. * 结余件数
  134. */
  135. @Excel(name = "结余件数")
  136. private Long fQtyblc;
  137. /**
  138. * 结余毛重
  139. */
  140. @Excel(name = "结余毛重")
  141. private BigDecimal fGrossweightblc;
  142. /**
  143. * 出库净重
  144. */
  145. @Excel(name = "出库净重")
  146. private BigDecimal fNetweightc;
  147. /**
  148. * 结余净重
  149. */
  150. @Excel(name = "结余净重")
  151. private BigDecimal fNetweightblc;
  152. /**
  153. * 结余尺码
  154. */
  155. @Excel(name = "结余尺码")
  156. private BigDecimal fVolumnblc;
  157. /**
  158. * 箱号
  159. */
  160. @Excel(name = "箱号")
  161. private String fCntrno;
  162. /**
  163. * 状态,默认 T ,正常T 停用F 下拉选择
  164. */
  165. @Excel(name = "状态,默认 T ,正常T 停用F 下拉选择")
  166. private String fStatus;
  167. /**
  168. * 删除状态
  169. */
  170. private String delFlag;
  171. /**
  172. * 业务类型(存汉字的,用来选择 产地 规格 品牌)
  173. */
  174. @Excel(name = "业务类型(存汉字的,用来选择 产地 规格 品牌)")
  175. private Long fBusinessType;
  176. /**
  177. * 唛头
  178. */
  179. @Excel(name = "唛头")
  180. private String fMarks;
  181. /**
  182. * 原始入库日期
  183. */
  184. @JsonFormat(pattern = "yyyy-MM-dd")
  185. @Excel(name = "原始入库日期", width = 30, dateFormat = "yyyy-MM-dd")
  186. private Date fOriginalbilldate;
  187. /** 库内箱号 */
  188. @Excel(name = "库内箱号")
  189. private String fLocalcntrno;
  190. /**
  191. * 查询时间区间
  192. */
  193. private List<String> orgStorageDate;
  194. /** 仓库 */
  195. @Excel(name = "仓库")
  196. private Long fLocation;
  197. /**
  198. * 报关单号
  199. */
  200. @Excel(name = "报关单号")
  201. private String fCustomno;
  202. /** 是否按照箱号 */
  203. private Long isCntrno;
  204. /** 是否按照提单号 */
  205. private Long isMblno;
  206. //手机号
  207. private String fTel;
  208. private String timeStartBsdate;
  209. private String timeEndBsdate;
  210. public Date getfBsdate() {
  211. return fBsdate;
  212. }
  213. public void setfBsdate(Date fBsdate) {
  214. this.fBsdate = fBsdate;
  215. }
  216. public String getfTel() {
  217. return fTel;
  218. }
  219. public void setfTel(String fTel) {
  220. this.fTel = fTel;
  221. }
  222. public static long getSerialVersionUID() {
  223. return serialVersionUID;
  224. }
  225. public Long getIsMblno() {
  226. return isMblno;
  227. }
  228. public void setIsMblno(Long isMblno) {
  229. this.isMblno = isMblno;
  230. }
  231. public String getfCustomno() {
  232. return fCustomno;
  233. }
  234. public void setfCustomno(String fCustomno) {
  235. this.fCustomno = fCustomno;
  236. }
  237. public Long getfId() {
  238. return fId;
  239. }
  240. public void setfId(Long fId) {
  241. this.fId = fId;
  242. }
  243. public Long getfAccyear() {
  244. return fAccyear;
  245. }
  246. public void setfAccyear(Long fAccyear) {
  247. this.fAccyear = fAccyear;
  248. }
  249. public Long getfAccmonth() {
  250. return fAccmonth;
  251. }
  252. public void setfAccmonth(Long fAccmonth) {
  253. this.fAccmonth = fAccmonth;
  254. }
  255. public Long getfCorpid() {
  256. return fCorpid;
  257. }
  258. public void setfCorpid(Long fCorpid) {
  259. this.fCorpid = fCorpid;
  260. }
  261. public String getfShipper() {
  262. return fShipper;
  263. }
  264. public void setfShipper(String fShipper) {
  265. this.fShipper = fShipper;
  266. }
  267. public String getfMblno() {
  268. return fMblno;
  269. }
  270. public void setfMblno(String fMblno) {
  271. this.fMblno = fMblno;
  272. }
  273. public String getfOriginalbillno() {
  274. return fOriginalbillno;
  275. }
  276. public void setfOriginalbillno(String fOriginalbillno) {
  277. this.fOriginalbillno = fOriginalbillno;
  278. }
  279. public Long getfWarehouseLocationid() {
  280. return fWarehouseLocationid;
  281. }
  282. public void setfWarehouseLocationid(Long fWarehouseLocationid) {
  283. this.fWarehouseLocationid = fWarehouseLocationid;
  284. }
  285. public Long getfGoodsid() {
  286. return fGoodsid;
  287. }
  288. public void setfGoodsid(Long fGoodsid) {
  289. this.fGoodsid = fGoodsid;
  290. }
  291. public Date getfChargedate() {
  292. return fChargedate;
  293. }
  294. public void setfChargedate(Date fChargedate) {
  295. this.fChargedate = fChargedate;
  296. }
  297. public Long getfTrademodeid() {
  298. return fTrademodeid;
  299. }
  300. public void setfTrademodeid(Long fTrademodeid) {
  301. this.fTrademodeid = fTrademodeid;
  302. }
  303. public Long getfPreqty() {
  304. return fPreqty;
  305. }
  306. public void setfPreqty(Long fPreqty) {
  307. this.fPreqty = fPreqty;
  308. }
  309. public Long getfWarehouseid() {
  310. return fWarehouseid;
  311. }
  312. public void setfWarehouseid(Long fWarehouseid) {
  313. this.fWarehouseid = fWarehouseid;
  314. }
  315. public BigDecimal getfPregrossweight() {
  316. return fPregrossweight;
  317. }
  318. public void setfPregrossweight(BigDecimal fPregrossweight) {
  319. this.fPregrossweight = fPregrossweight;
  320. }
  321. public BigDecimal getfPrenetweight() {
  322. return fPrenetweight;
  323. }
  324. public void setfPrenetweight(BigDecimal fPrenetweight) {
  325. this.fPrenetweight = fPrenetweight;
  326. }
  327. public Long getfQtyd() {
  328. return fQtyd;
  329. }
  330. public void setfQtyd(Long fQtyd) {
  331. this.fQtyd = fQtyd;
  332. }
  333. public BigDecimal getfVolumnd() {
  334. return fVolumnd;
  335. }
  336. public void setfVolumnd(BigDecimal fVolumnd) {
  337. this.fVolumnd = fVolumnd;
  338. }
  339. public Long getfBillingway() {
  340. return fBillingway;
  341. }
  342. public void setfBillingway(Long fBillingway) {
  343. this.fBillingway = fBillingway;
  344. }
  345. public BigDecimal getfGrossweightd() {
  346. return fGrossweightd;
  347. }
  348. public void setfGrossweightd(BigDecimal fGrossweightd) {
  349. this.fGrossweightd = fGrossweightd;
  350. }
  351. public BigDecimal getfNetweightd() {
  352. return fNetweightd;
  353. }
  354. public void setfNetweightd(BigDecimal fNetweightd) {
  355. this.fNetweightd = fNetweightd;
  356. }
  357. public BigDecimal getfVolumnc() {
  358. return fVolumnc;
  359. }
  360. public void setfVolumnc(BigDecimal fVolumnc) {
  361. this.fVolumnc = fVolumnc;
  362. }
  363. public Long getfQtyc() {
  364. return fQtyc;
  365. }
  366. public void setfQtyc(Long fQtyc) {
  367. this.fQtyc = fQtyc;
  368. }
  369. public BigDecimal getfGrossweightc() {
  370. return fGrossweightc;
  371. }
  372. public void setfGrossweightc(BigDecimal fGrossweightc) {
  373. this.fGrossweightc = fGrossweightc;
  374. }
  375. public Long getfQtyblc() {
  376. return fQtyblc;
  377. }
  378. public void setfQtyblc(Long fQtyblc) {
  379. this.fQtyblc = fQtyblc;
  380. }
  381. public BigDecimal getfGrossweightblc() {
  382. return fGrossweightblc;
  383. }
  384. public void setfGrossweightblc(BigDecimal fGrossweightblc) {
  385. this.fGrossweightblc = fGrossweightblc;
  386. }
  387. public BigDecimal getfNetweightc() {
  388. return fNetweightc;
  389. }
  390. public void setfNetweightc(BigDecimal fNetweightc) {
  391. this.fNetweightc = fNetweightc;
  392. }
  393. public BigDecimal getfNetweightblc() {
  394. return fNetweightblc;
  395. }
  396. public void setfNetweightblc(BigDecimal fNetweightblc) {
  397. this.fNetweightblc = fNetweightblc;
  398. }
  399. public BigDecimal getfVolumnblc() {
  400. return fVolumnblc;
  401. }
  402. public void setfVolumnblc(BigDecimal fVolumnblc) {
  403. this.fVolumnblc = fVolumnblc;
  404. }
  405. public String getfCntrno() {
  406. return fCntrno;
  407. }
  408. public void setfCntrno(String fCntrno) {
  409. this.fCntrno = fCntrno;
  410. }
  411. public String getfStatus() {
  412. return fStatus;
  413. }
  414. public void setfStatus(String fStatus) {
  415. this.fStatus = fStatus;
  416. }
  417. public String getDelFlag() {
  418. return delFlag;
  419. }
  420. public void setDelFlag(String delFlag) {
  421. this.delFlag = delFlag;
  422. }
  423. public Long getfBusinessType() {
  424. return fBusinessType;
  425. }
  426. public void setfBusinessType(Long fBusinessType) {
  427. this.fBusinessType = fBusinessType;
  428. }
  429. public String getfMarks() {
  430. return fMarks;
  431. }
  432. public void setfMarks(String fMarks) {
  433. this.fMarks = fMarks;
  434. }
  435. public Date getfOriginalbilldate() {
  436. return fOriginalbilldate;
  437. }
  438. public void setfOriginalbilldate(Date fOriginalbilldate) {
  439. this.fOriginalbilldate = fOriginalbilldate;
  440. }
  441. public List<String> getOrgStorageDate() {
  442. return orgStorageDate;
  443. }
  444. public void setOrgStorageDate(List<String> orgStorageDate) {
  445. this.orgStorageDate = orgStorageDate;
  446. }
  447. public Long getfLocation() {
  448. return fLocation;
  449. }
  450. public void setfLocation(Long fLocation) {
  451. this.fLocation = fLocation;
  452. }
  453. public Long getIsCntrno() {
  454. return isCntrno;
  455. }
  456. public void setIsCntrno(Long isCntrno) {
  457. this.isCntrno = isCntrno;
  458. }
  459. public String getTimeStartBsdate() {
  460. return timeStartBsdate;
  461. }
  462. public void setTimeStartBsdate(String timeStartBsdate) {
  463. this.timeStartBsdate = timeStartBsdate;
  464. }
  465. public String getTimeEndBsdate() {
  466. return timeEndBsdate;
  467. }
  468. public void setTimeEndBsdate(String timeEndBsdate) {
  469. this.timeEndBsdate = timeEndBsdate;
  470. }
  471. public String getfLocalcntrno() {
  472. return fLocalcntrno;
  473. }
  474. public void setfLocalcntrno(String fLocalcntrno) {
  475. this.fLocalcntrno = fLocalcntrno;
  476. }
  477. @Override
  478. public String toString() {
  479. return "TWhgenleg{" +
  480. "fId=" + fId +
  481. ", fAccyear=" + fAccyear +
  482. ", fAccmonth=" + fAccmonth +
  483. ", fCorpid=" + fCorpid +
  484. ", fShipper=" + fShipper +
  485. ", fMblno='" + fMblno + '\'' +
  486. ", fOriginalbillno='" + fOriginalbillno + '\'' +
  487. ", fWarehouseLocationid=" + fWarehouseLocationid +
  488. ", fGoodsid=" + fGoodsid +
  489. ", fChargedate=" + fChargedate +
  490. ", fTrademodeid=" + fTrademodeid +
  491. ", fPreqty=" + fPreqty +
  492. ", fWarehouseid=" + fWarehouseid +
  493. ", fPregrossweight=" + fPregrossweight +
  494. ", fPrenetweight=" + fPrenetweight +
  495. ", fQtyd=" + fQtyd +
  496. ", fVolumnd=" + fVolumnd +
  497. ", fBillingway=" + fBillingway +
  498. ", fGrossweightd=" + fGrossweightd +
  499. ", fNetweightd=" + fNetweightd +
  500. ", fVolumnc=" + fVolumnc +
  501. ", fQtyc=" + fQtyc +
  502. ", fGrossweightc=" + fGrossweightc +
  503. ", fQtyblc=" + fQtyblc +
  504. ", fGrossweightblc=" + fGrossweightblc +
  505. ", fNetweightc=" + fNetweightc +
  506. ", fNetweightblc=" + fNetweightblc +
  507. ", fVolumnblc=" + fVolumnblc +
  508. ", fCntrno='" + fCntrno + '\'' +
  509. ", fStatus='" + fStatus + '\'' +
  510. ", delFlag='" + delFlag + '\'' +
  511. ", fBusinessType=" + fBusinessType +
  512. ", fMarks='" + fMarks + '\'' +
  513. ", fOriginalbilldate=" + fOriginalbilldate +
  514. ", fLocalcntrno='" + fLocalcntrno + '\'' +
  515. ", orgStorageDate=" + orgStorageDate +
  516. ", fLocation=" + fLocation +
  517. ", isCntrno=" + isCntrno +
  518. ", timeStartBsdate='" + timeStartBsdate + '\'' +
  519. ", timeEndBsdate='" + timeEndBsdate + '\'' +
  520. ", fCustomno='" + fCustomno + '\'' +
  521. '}';
  522. }
  523. }