OWbInveWithdrawItem.java 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package com.emato.biz.domain.warehouse;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import com.emato.common.annotation.Excel;
  8. import com.emato.common.core.domain.BaseEntity;
  9. /**
  10. * 库存退港明细对象 o_wb_inve_withdraw_item
  11. *
  12. * @author yangbo
  13. * @date 2021-02-01
  14. */
  15. public class OWbInveWithdrawItem extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** 退港明细编号 */
  19. private String iwItemSn;
  20. /** 退港编号 */
  21. @Excel(name = "退港编号")
  22. private String inveWithdrawSn;
  23. /** 账册分类代码 */
  24. @Excel(name = "账册分类代码")
  25. private String emsClassCode;
  26. /** SKU */
  27. @Excel(name = "SKU")
  28. private String sku;
  29. /** 良次品;0:良品,1:次品 */
  30. @Excel(name = "良次品;0:良品,1:次品")
  31. private String goodType;
  32. /** 库位号 */
  33. @Excel(name = "库位号")
  34. private Long slotId;
  35. /** 库位 */
  36. @Excel(name = "库位")
  37. private String slotLabel;
  38. /** 可退港数 */
  39. @Excel(name = "可退港数")
  40. private BigDecimal availableQty;
  41. /** 退港数 */
  42. @Excel(name = "退港数")
  43. private BigDecimal withdrawQty;
  44. /** 创建人编号 */
  45. private String createrSn;
  46. /** 修改人编号 */
  47. private String moderSn;
  48. /** 修改时间,yyyy-MM-dd HH:mm:ss */
  49. private Date modTime;
  50. /** 时间戳 */
  51. private Date tstm;
  52. public void setIwItemSn(String iwItemSn)
  53. {
  54. this.iwItemSn = iwItemSn;
  55. }
  56. public String getIwItemSn()
  57. {
  58. return iwItemSn;
  59. }
  60. public void setInveWithdrawSn(String inveWithdrawSn)
  61. {
  62. this.inveWithdrawSn = inveWithdrawSn;
  63. }
  64. public String getInveWithdrawSn()
  65. {
  66. return inveWithdrawSn;
  67. }
  68. public void setEmsClassCode(String emsClassCode)
  69. {
  70. this.emsClassCode = emsClassCode;
  71. }
  72. public String getEmsClassCode()
  73. {
  74. return emsClassCode;
  75. }
  76. public void setSku(String sku)
  77. {
  78. this.sku = sku;
  79. }
  80. public String getSku()
  81. {
  82. return sku;
  83. }
  84. public void setGoodType(String goodType)
  85. {
  86. this.goodType = goodType;
  87. }
  88. public String getGoodType()
  89. {
  90. return goodType;
  91. }
  92. public void setSlotId(Long slotId)
  93. {
  94. this.slotId = slotId;
  95. }
  96. public Long getSlotId()
  97. {
  98. return slotId;
  99. }
  100. public void setSlotLabel(String slotLabel)
  101. {
  102. this.slotLabel = slotLabel;
  103. }
  104. public String getSlotLabel()
  105. {
  106. return slotLabel;
  107. }
  108. public void setAvailableQty(BigDecimal availableQty)
  109. {
  110. this.availableQty = availableQty;
  111. }
  112. public BigDecimal getAvailableQty()
  113. {
  114. return availableQty;
  115. }
  116. public void setWithdrawQty(BigDecimal withdrawQty)
  117. {
  118. this.withdrawQty = withdrawQty;
  119. }
  120. public BigDecimal getWithdrawQty()
  121. {
  122. return withdrawQty;
  123. }
  124. public void setCreaterSn(String createrSn)
  125. {
  126. this.createrSn = createrSn;
  127. }
  128. public String getCreaterSn()
  129. {
  130. return createrSn;
  131. }
  132. public void setModerSn(String moderSn)
  133. {
  134. this.moderSn = moderSn;
  135. }
  136. public String getModerSn()
  137. {
  138. return moderSn;
  139. }
  140. public void setModTime(Date modTime)
  141. {
  142. this.modTime = modTime;
  143. }
  144. public Date getModTime()
  145. {
  146. return modTime;
  147. }
  148. public void setTstm(Date tstm)
  149. {
  150. this.tstm = tstm;
  151. }
  152. public Date getTstm()
  153. {
  154. return tstm;
  155. }
  156. @Override
  157. public String toString() {
  158. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  159. .append("iwItemSn", getIwItemSn())
  160. .append("inveWithdrawSn", getInveWithdrawSn())
  161. .append("emsClassCode", getEmsClassCode())
  162. .append("sku", getSku())
  163. .append("goodType", getGoodType())
  164. .append("slotId", getSlotId())
  165. .append("slotLabel", getSlotLabel())
  166. .append("availableQty", getAvailableQty())
  167. .append("withdrawQty", getWithdrawQty())
  168. .append("createrSn", getCreaterSn())
  169. .append("createTime", getCreateTime())
  170. .append("moderSn", getModerSn())
  171. .append("modTime", getModTime())
  172. .append("tstm", getTstm())
  173. .toString();
  174. }
  175. }