TWhgenleg.java 9.1 KB

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