TWarehousebillsitems.java 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.ruoyi.common.annotation.Excel;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. /**
  9. * 仓库明细从表对象 t_warehousebillsitems
  10. *
  11. * @author ruoyi
  12. * @date 2020-12-16
  13. */
  14. public class TWarehousebillsitems extends BaseEntity {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * $column.columnComment
  18. */
  19. private Long fId;
  20. /**
  21. * PID,对应主表id
  22. */
  23. @Excel(name = "PID,对应主表id")
  24. private Long fPid;
  25. /**
  26. * 行号,针对pid顺序排列,1,2,3,4,
  27. */
  28. @Excel(name = "行号,针对pid顺序排列,1,2,3,4,")
  29. private Long fLineno;
  30. /**
  31. * 货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
  32. */
  33. @Excel(name = "货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name")
  34. private Long fGoodsid;
  35. /**
  36. * 入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id
  37. */
  38. @Excel(name = "入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id")
  39. private Long fWarehouselocid;
  40. /**
  41. * 入(出)库日期
  42. */
  43. @Excel(name = "入", readConverterExp = "出=")
  44. private Date fBsdate;
  45. /**
  46. * 提单号
  47. */
  48. @Excel(name = "提单号")
  49. private String fMblno;
  50. /**
  51. * 唛头
  52. */
  53. @Excel(name = "唛头")
  54. private String fMarks;
  55. /**
  56. * 箱号
  57. */
  58. @Excel(name = "箱号")
  59. private String fBoxno;
  60. /**
  61. * 箱量
  62. */
  63. @Excel(name = "箱量")
  64. private Long fCntqty;
  65. /**
  66. * 货值
  67. */
  68. @Excel(name = "货值")
  69. private BigDecimal fGoodsval;
  70. /**
  71. * 箱型,20GP 4OGP
  72. */
  73. @Excel(name = "箱型,20GP 4OGP")
  74. private String fCntrtype;
  75. /**
  76. * 计划件数
  77. */
  78. @Excel(name = "计划件数")
  79. private Long fPlanqty;
  80. /**
  81. * 计划尺码
  82. */
  83. @Excel(name = "计划尺码")
  84. private BigDecimal fPlanvolumn;
  85. /**
  86. * 包装规格
  87. */
  88. @Excel(name = "包装规格")
  89. private Long fPackagespecs;
  90. /**
  91. * 计划毛重
  92. */
  93. @Excel(name = "计划毛重")
  94. private BigDecimal fPlangrossweight;
  95. /**
  96. * 计划净重
  97. */
  98. @Excel(name = "计划净重")
  99. private BigDecimal fPlannetweight;
  100. /**
  101. * 件数
  102. */
  103. @Excel(name = "件数")
  104. private Long fQty;
  105. /**
  106. * 尺码
  107. */
  108. @Excel(name = "尺码")
  109. private BigDecimal fVolumn;
  110. /**
  111. * 毛重
  112. */
  113. @Excel(name = "毛重")
  114. private BigDecimal fGrossweight;
  115. /**
  116. * 净重
  117. */
  118. @Excel(name = "净重")
  119. private BigDecimal fNetweight;
  120. /**
  121. * 箱号
  122. */
  123. @Excel(name = "箱号")
  124. private String fCntrno;
  125. /**
  126. * 车号
  127. */
  128. @Excel(name = "车号")
  129. private String fTruckno;
  130. /**
  131. * 状态,N 入(出)库中,T入(出)库完成,状态为完成不能删除,状态变化,用邮件、微信通知客户。
  132. */
  133. @Excel(name = "状态,N 入", readConverterExp = "出=")
  134. private String fBillstatus;
  135. /**
  136. * 删除状态
  137. */
  138. private String delFlag;
  139. public void setfId(Long fId) {
  140. this.fId = fId;
  141. }
  142. public Long getfId() {
  143. return fId;
  144. }
  145. public void setfPid(Long fPid) {
  146. this.fPid = fPid;
  147. }
  148. public Long getfPid() {
  149. return fPid;
  150. }
  151. public void setfLineno(Long fLineno) {
  152. this.fLineno = fLineno;
  153. }
  154. public Long getfLineno() {
  155. return fLineno;
  156. }
  157. public void setfGoodsid(Long fGoodsid) {
  158. this.fGoodsid = fGoodsid;
  159. }
  160. public Long getfGoodsid() {
  161. return fGoodsid;
  162. }
  163. public void setfWarehouselocid(Long fWarehouselocid) {
  164. this.fWarehouselocid = fWarehouselocid;
  165. }
  166. public Long getfWarehouselocid() {
  167. return fWarehouselocid;
  168. }
  169. public void setfBsdate(Date fBsdate) {
  170. this.fBsdate = fBsdate;
  171. }
  172. public Date getfBsdate() {
  173. return fBsdate;
  174. }
  175. public void setfBoxno(String fBoxno) {
  176. this.fBoxno = fBoxno;
  177. }
  178. public String getfBoxno() {
  179. return fBoxno;
  180. }
  181. public void setfMblno(String fMblno) {
  182. this.fMblno = fMblno;
  183. }
  184. public String getfMblno() {
  185. return fMblno;
  186. }
  187. public void setfMarks(String fMarks) {
  188. this.fMarks = fMarks;
  189. }
  190. public String getfMarks() {
  191. return fMarks;
  192. }
  193. public void setfCntqty(Long fCntqty) {
  194. this.fCntqty = fCntqty;
  195. }
  196. public Long getfCntqty() {
  197. return fCntqty;
  198. }
  199. public void setfGoodsval(BigDecimal fGoodsval) {
  200. this.fGoodsval = fGoodsval;
  201. }
  202. public BigDecimal getfGoodsval() {
  203. return fGoodsval;
  204. }
  205. public void setfCntrtype(String fCntrtype) {
  206. this.fCntrtype = fCntrtype;
  207. }
  208. public String getfCntrtype() {
  209. return fCntrtype;
  210. }
  211. public void setfPlanqty(Long fPlanqty) {
  212. this.fPlanqty = fPlanqty;
  213. }
  214. public Long getfPlanqty() {
  215. return fPlanqty;
  216. }
  217. public void setfPlanvolumn(BigDecimal fPlanvolumn) {
  218. this.fPlanvolumn = fPlanvolumn;
  219. }
  220. public BigDecimal getfPlanvolumn() {
  221. return fPlanvolumn;
  222. }
  223. public void setfPackagespecs(Long fPackagespecs) {
  224. this.fPackagespecs = fPackagespecs;
  225. }
  226. public Long getfPackagespecs() {
  227. return fPackagespecs;
  228. }
  229. public void setfPlangrossweight(BigDecimal fPlangrossweight) {
  230. this.fPlangrossweight = fPlangrossweight;
  231. }
  232. public BigDecimal getfPlangrossweight() {
  233. return fPlangrossweight;
  234. }
  235. public void setfPlannetweight(BigDecimal fPlannetweight) {
  236. this.fPlannetweight = fPlannetweight;
  237. }
  238. public BigDecimal getfPlannetweight() {
  239. return fPlannetweight;
  240. }
  241. public void setfQty(Long fQty) {
  242. this.fQty = fQty;
  243. }
  244. public Long getfQty() {
  245. return fQty;
  246. }
  247. public void setfVolumn(BigDecimal fVolumn) {
  248. this.fVolumn = fVolumn;
  249. }
  250. public BigDecimal getfVolumn() {
  251. return fVolumn;
  252. }
  253. public void setfGrossweight(BigDecimal fGrossweight) {
  254. this.fGrossweight = fGrossweight;
  255. }
  256. public BigDecimal getfGrossweight() {
  257. return fGrossweight;
  258. }
  259. public void setfNetweight(BigDecimal fNetweight) {
  260. this.fNetweight = fNetweight;
  261. }
  262. public BigDecimal getfNetweight() {
  263. return fNetweight;
  264. }
  265. public void setfCntrno(String fCntrno) {
  266. this.fCntrno = fCntrno;
  267. }
  268. public String getfCntrno() {
  269. return fCntrno;
  270. }
  271. public void setfTruckno(String fTruckno) {
  272. this.fTruckno = fTruckno;
  273. }
  274. public String getfTruckno() {
  275. return fTruckno;
  276. }
  277. public void setfBillstatus(String fBillstatus) {
  278. this.fBillstatus = fBillstatus;
  279. }
  280. public String getfBillstatus() {
  281. return fBillstatus;
  282. }
  283. public void setDelFlag(String delFlag) {
  284. this.delFlag = delFlag;
  285. }
  286. public String getDelFlag() {
  287. return delFlag;
  288. }
  289. @Override
  290. public String toString() {
  291. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  292. .append("fId", getfId())
  293. .append("fPid", getfPid())
  294. .append("fLineno", getfLineno())
  295. .append("fGoodsid", getfGoodsid())
  296. .append("fWarehouselocid", getfWarehouselocid())
  297. .append("fBsdate", getfBsdate())
  298. .append("fBoxno", getfBoxno())
  299. .append("fMblno", getfMblno())
  300. .append("fCntqty", getfCntqty())
  301. .append("fGoodsval", getfGoodsval())
  302. .append("fCntrtype", getfCntrtype())
  303. .append("fPlanqty", getfPlanqty())
  304. .append("fPlanvolumn", getfPlanvolumn())
  305. .append("fPackagespecs", getfPackagespecs())
  306. .append("fPlangrossweight", getfPlangrossweight())
  307. .append("fPlannetweight", getfPlannetweight())
  308. .append("fQty", getfQty())
  309. .append("fVolumn", getfVolumn())
  310. .append("fGrossweight", getfGrossweight())
  311. .append("fNetweight", getfNetweight())
  312. .append("fCntrno", getfCntrno())
  313. .append("fTruckno", getfTruckno())
  314. .append("fBillstatus", getfBillstatus())
  315. .append("delFlag", getDelFlag())
  316. .append("createBy", getCreateBy())
  317. .append("createTime", getCreateTime())
  318. .append("updateBy", getUpdateBy())
  319. .append("updateTime", getUpdateTime())
  320. .append("remark", getRemark())
  321. .toString();
  322. }
  323. }