TWhgenleg.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  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.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. import java.util.List;
  10. /**
  11. * 库存总账对象 t_whgenleg
  12. *
  13. * @author ruoyi
  14. * @date 2020-12-25
  15. */
  16. public class TWhgenleg extends BaseEntity {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * $column.columnComment
  20. */
  21. private Long fId;
  22. /**
  23. * 年
  24. */
  25. private Long fAccyear;
  26. /**
  27. * 月
  28. */
  29. private Long fAccmonth;
  30. /**
  31. * 客户id,t_corps 中的name
  32. */
  33. private Long fCorpid;
  34. /**
  35. * 提单号
  36. */
  37. private String fMblno;
  38. /**
  39. * 原始入库业务编号
  40. */
  41. @Excel(name = "原始入库业务编号")
  42. private String fOriginalbillno;
  43. /**
  44. * 库区,显示仓库 库位 库区
  45. */
  46. private Long fWarehouseLocationid;
  47. /**
  48. * 货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
  49. */
  50. private Long fGoodsid;
  51. /**
  52. * 贸易方式,对应t_trademodels name
  53. */
  54. private Long fTrademodeid;
  55. /**
  56. * 上期件数
  57. */
  58. @Excel(name = "上期件数")
  59. private Long fPreqty;
  60. /**
  61. * 上期毛重,单位为吨,保留6位小数
  62. */
  63. @Excel(name = "上期毛重,单位为吨,保留6位小数")
  64. private BigDecimal fPregrossweight;
  65. /**
  66. * 仓库
  67. */
  68. @Excel(name = "仓库")
  69. private Long fWarehouseid;
  70. /**
  71. * 上期净重,
  72. */
  73. @Excel(name = "上期净重,")
  74. private BigDecimal fPrenetweight;
  75. /**
  76. * 入库件数
  77. */
  78. @Excel(name = "入库件数")
  79. private Long fQtyd;
  80. /**
  81. * 入库尺码
  82. */
  83. @Excel(name = "入库尺码")
  84. private BigDecimal fVolumnd;
  85. /**
  86. * 入库毛重
  87. */
  88. @Excel(name = "入库毛重")
  89. private BigDecimal fGrossweightd;
  90. /**
  91. * 入库净重
  92. */
  93. @Excel(name = "入库净重")
  94. private BigDecimal fNetweightd;
  95. /**
  96. * 出口尺码
  97. */
  98. @Excel(name = "出口尺码")
  99. private BigDecimal fVolumnc;
  100. /**
  101. * 出库件数
  102. */
  103. @Excel(name = "出库件数")
  104. private Long fQtyc;
  105. /**
  106. * 结余件数
  107. */
  108. @Excel(name = "结余件数")
  109. private Long fQtyblc;
  110. /**
  111. * 出库毛重,单位为吨
  112. */
  113. @Excel(name = "出库毛重,单位为吨")
  114. private BigDecimal fGrossweightc;
  115. /**
  116. * 结余毛重
  117. */
  118. @Excel(name = "结余毛重")
  119. private BigDecimal fGrossweightblc;
  120. /**
  121. * 出库净重
  122. */
  123. @Excel(name = "出库净重")
  124. private BigDecimal fNetweightc;
  125. /**
  126. * 结余净重
  127. */
  128. @Excel(name = "结余净重")
  129. private BigDecimal fNetweightblc;
  130. /**
  131. * 箱号
  132. */
  133. @Excel(name = "箱号")
  134. private String fCntrno;
  135. /**
  136. * 状态,默认 T ,正常T 停用F 下拉选择
  137. */
  138. @Excel(name = "状态,默认 T ,正常T 停用F 下拉选择")
  139. private String fStatus;
  140. /**
  141. * 删除状态
  142. */
  143. private String delFlag;
  144. /**
  145. * 唛头
  146. */
  147. @Excel(name = "唛头")
  148. private String fMarks;
  149. /**
  150. * 原始入库日期
  151. */
  152. @JsonFormat(pattern = "yyyy-MM-dd")
  153. @Excel(name = "原始入库日期", width = 30, dateFormat = "yyyy-MM-dd")
  154. private Date fOriginalbilldate;
  155. /**
  156. * 查询时间区间
  157. */
  158. private List<String> orgStorageDate;
  159. public void setorgStorageDate(List<String> orgStorageDate) {
  160. this.orgStorageDate = orgStorageDate;
  161. }
  162. public List<String> getorgStorageDate() {
  163. return orgStorageDate;
  164. }
  165. public void setfId(Long fId) {
  166. this.fId = fId;
  167. }
  168. public Long getfId() {
  169. return fId;
  170. }
  171. public void setfAccyear(Long fAccyear) {
  172. this.fAccyear = fAccyear;
  173. }
  174. public Long getfAccyear() {
  175. return fAccyear;
  176. }
  177. public void setfAccmonth(Long fAccmonth) {
  178. this.fAccmonth = fAccmonth;
  179. }
  180. public Long getfAccmonth() {
  181. return fAccmonth;
  182. }
  183. public void setfCorpid(Long fCorpid) {
  184. this.fCorpid = fCorpid;
  185. }
  186. public Long getfCorpid() {
  187. return fCorpid;
  188. }
  189. public void setfMblno(String fMblno) {
  190. this.fMblno = fMblno;
  191. }
  192. public String getfMblno() {
  193. return fMblno;
  194. }
  195. public void setfOriginalbillno(String fOriginalbillno) {
  196. this.fOriginalbillno = fOriginalbillno;
  197. }
  198. public String getfOriginalbillno() {
  199. return fOriginalbillno;
  200. }
  201. public void setfWarehouseLocationid(Long fWarehouseLocationid) {
  202. this.fWarehouseLocationid = fWarehouseLocationid;
  203. }
  204. public Long getfWarehouseLocationid() {
  205. return fWarehouseLocationid;
  206. }
  207. public void setfGoodsid(Long fGoodsid) {
  208. this.fGoodsid = fGoodsid;
  209. }
  210. public Long getfGoodsid() {
  211. return fGoodsid;
  212. }
  213. public void setfTrademodeid(Long fTrademodeid) {
  214. this.fTrademodeid = fTrademodeid;
  215. }
  216. public Long getfTrademodeid() {
  217. return fTrademodeid;
  218. }
  219. public void setfPreqty(Long fPreqty) {
  220. this.fPreqty = fPreqty;
  221. }
  222. public Long getfPreqty() {
  223. return fPreqty;
  224. }
  225. public void setfPregrossweight(BigDecimal fPregrossweight) {
  226. this.fPregrossweight = fPregrossweight;
  227. }
  228. public BigDecimal getfPregrossweight() {
  229. return fPregrossweight;
  230. }
  231. public void setfWarehouseid(Long fWarehouseid) {
  232. this.fWarehouseid = fWarehouseid;
  233. }
  234. public Long getfWarehouseid() {
  235. return fWarehouseid;
  236. }
  237. public void setfPrenetweight(BigDecimal fPrenetweight) {
  238. this.fPrenetweight = fPrenetweight;
  239. }
  240. public BigDecimal getfPrenetweight() {
  241. return fPrenetweight;
  242. }
  243. public void setfQtyd(Long fQtyd) {
  244. this.fQtyd = fQtyd;
  245. }
  246. public Long getfQtyd() {
  247. return fQtyd;
  248. }
  249. public void setfVolumnd(BigDecimal fVolumnd) {
  250. this.fVolumnd = fVolumnd;
  251. }
  252. public BigDecimal getfVolumnd() {
  253. return fVolumnd;
  254. }
  255. public void setfGrossweightd(BigDecimal fGrossweightd) {
  256. this.fGrossweightd = fGrossweightd;
  257. }
  258. public BigDecimal getfGrossweightd() {
  259. return fGrossweightd;
  260. }
  261. public void setfNetweightd(BigDecimal fNetweightd) {
  262. this.fNetweightd = fNetweightd;
  263. }
  264. public BigDecimal getfNetweightd() {
  265. return fNetweightd;
  266. }
  267. public void setfVolumnc(BigDecimal fVolumnc) {
  268. this.fVolumnc = fVolumnc;
  269. }
  270. public BigDecimal getfVolumnc() {
  271. return fVolumnc;
  272. }
  273. public void setfQtyc(Long fQtyc) {
  274. this.fQtyc = fQtyc;
  275. }
  276. public Long getfQtyc() {
  277. return fQtyc;
  278. }
  279. public void setfQtyblc(Long fQtyblc) {
  280. this.fQtyblc = fQtyblc;
  281. }
  282. public Long getfQtyblc() {
  283. return fQtyblc;
  284. }
  285. public void setfGrossweightc(BigDecimal fGrossweightc) {
  286. this.fGrossweightc = fGrossweightc;
  287. }
  288. public BigDecimal getfGrossweightc() {
  289. return fGrossweightc;
  290. }
  291. public void setfGrossweightblc(BigDecimal fGrossweightblc) {
  292. this.fGrossweightblc = fGrossweightblc;
  293. }
  294. public BigDecimal getfGrossweightblc() {
  295. return fGrossweightblc;
  296. }
  297. public void setfNetweightc(BigDecimal fNetweightc) {
  298. this.fNetweightc = fNetweightc;
  299. }
  300. public BigDecimal getfNetweightc() {
  301. return fNetweightc;
  302. }
  303. public void setfNetweightblc(BigDecimal fNetweightblc) {
  304. this.fNetweightblc = fNetweightblc;
  305. }
  306. public BigDecimal getfNetweightblc() {
  307. return fNetweightblc;
  308. }
  309. public void setfCntrno(String fCntrno) {
  310. this.fCntrno = fCntrno;
  311. }
  312. public String getfCntrno() {
  313. return fCntrno;
  314. }
  315. public void setfStatus(String fStatus) {
  316. this.fStatus = fStatus;
  317. }
  318. public String getfStatus() {
  319. return fStatus;
  320. }
  321. public void setDelFlag(String delFlag) {
  322. this.delFlag = delFlag;
  323. }
  324. public String getDelFlag() {
  325. return delFlag;
  326. }
  327. public void setfMarks(String fMarks) {
  328. this.fMarks = fMarks;
  329. }
  330. public String getfMarks() {
  331. return fMarks;
  332. }
  333. public void setfOriginalbilldate(Date fOriginalbilldate) {
  334. this.fOriginalbilldate = fOriginalbilldate;
  335. }
  336. public Date getfOriginalbilldate() {
  337. return fOriginalbilldate;
  338. }
  339. @Override
  340. public String toString() {
  341. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  342. .append("fId", getfId())
  343. .append("fAccyear", getfAccyear())
  344. .append("fAccmonth", getfAccmonth())
  345. .append("fCorpid", getfCorpid())
  346. .append("fMblno", getfMblno())
  347. .append("fOriginalbillno", getfOriginalbillno())
  348. .append("fWarehouseLocationid", getfWarehouseLocationid())
  349. .append("fGoodsid", getfGoodsid())
  350. .append("fTrademodeid", getfTrademodeid())
  351. .append("fPreqty", getfPreqty())
  352. .append("fPregrossweight", getfPregrossweight())
  353. .append("fWarehouseid", getfWarehouseid())
  354. .append("fPrenetweight", getfPrenetweight())
  355. .append("fQtyd", getfQtyd())
  356. .append("fVolumnd", getfVolumnd())
  357. .append("fGrossweightd", getfGrossweightd())
  358. .append("fNetweightd", getfNetweightd())
  359. .append("fVolumnc", getfVolumnc())
  360. .append("fQtyc", getfQtyc())
  361. .append("fQtyblc", getfQtyblc())
  362. .append("fGrossweightc", getfGrossweightc())
  363. .append("fGrossweightblc", getfGrossweightblc())
  364. .append("fNetweightc", getfNetweightc())
  365. .append("fNetweightblc", getfNetweightblc())
  366. .append("fCntrno", getfCntrno())
  367. .append("fStatus", getfStatus())
  368. .append("delFlag", getDelFlag())
  369. .append("fMarks", getfMarks())
  370. .append("createBy", getCreateBy())
  371. .append("createTime", getCreateTime())
  372. .append("updateBy", getUpdateBy())
  373. .append("updateTime", getUpdateTime())
  374. .append("remark", getRemark())
  375. .append("fOriginalbilldate", getfOriginalbilldate())
  376. .toString();
  377. }
  378. }