TWarehousebillsitems.java 7.6 KB

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