1
0

OWbInveWithdraw.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package com.emato.biz.domain.warehouse;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import org.apache.commons.lang3.builder.ToStringBuilder;
  5. import org.apache.commons.lang3.builder.ToStringStyle;
  6. import com.emato.common.annotation.Excel;
  7. import com.emato.common.core.domain.BaseEntity;
  8. /**
  9. * 库存退港对象 o_wb_inve_withdraw
  10. *
  11. * @author yangbo
  12. * @date 2021-02-01
  13. */
  14. public class OWbInveWithdraw extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 编号 */
  18. private String inveWithdrawSn;
  19. /** 保税仓代码(前海保税仓:01),req_20190710_001 */
  20. @Excel(name = "保税仓代码(前海保税仓:01),req_20190710_001")
  21. private String bondedCode;
  22. /** 仓库编号 */
  23. @Excel(name = "仓库编号")
  24. private String wareSn;
  25. /** 退港号 */
  26. @Excel(name = "退港号")
  27. private String withdrawNo;
  28. /** 商户编号 */
  29. @Excel(name = "商户编号")
  30. private String merchSn;
  31. /** 商户名称 */
  32. @Excel(name = "商户名称")
  33. private String merchName;
  34. /** 第三方商户代码 */
  35. @Excel(name = "第三方商户代码")
  36. private String thirdPartyMerchCode;
  37. /** 第三方商户名称 */
  38. @Excel(name = "第三方商户名称")
  39. private String thirdPartyMerchName;
  40. /** 退港日期 */
  41. @JsonFormat(pattern = "yyyy-MM-dd")
  42. @Excel(name = "退港日期", width = 30, dateFormat = "yyyy-MM-dd")
  43. private Date withdrawDate;
  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 setInveWithdrawSn(String inveWithdrawSn)
  53. {
  54. this.inveWithdrawSn = inveWithdrawSn;
  55. }
  56. public String getInveWithdrawSn()
  57. {
  58. return inveWithdrawSn;
  59. }
  60. public void setBondedCode(String bondedCode)
  61. {
  62. this.bondedCode = bondedCode;
  63. }
  64. public String getBondedCode()
  65. {
  66. return bondedCode;
  67. }
  68. public void setWareSn(String wareSn)
  69. {
  70. this.wareSn = wareSn;
  71. }
  72. public String getWareSn()
  73. {
  74. return wareSn;
  75. }
  76. public void setWithdrawNo(String withdrawNo)
  77. {
  78. this.withdrawNo = withdrawNo;
  79. }
  80. public String getWithdrawNo()
  81. {
  82. return withdrawNo;
  83. }
  84. public void setMerchSn(String merchSn)
  85. {
  86. this.merchSn = merchSn;
  87. }
  88. public String getMerchSn()
  89. {
  90. return merchSn;
  91. }
  92. public void setMerchName(String merchName)
  93. {
  94. this.merchName = merchName;
  95. }
  96. public String getMerchName()
  97. {
  98. return merchName;
  99. }
  100. public void setThirdPartyMerchCode(String thirdPartyMerchCode)
  101. {
  102. this.thirdPartyMerchCode = thirdPartyMerchCode;
  103. }
  104. public String getThirdPartyMerchCode()
  105. {
  106. return thirdPartyMerchCode;
  107. }
  108. public void setThirdPartyMerchName(String thirdPartyMerchName)
  109. {
  110. this.thirdPartyMerchName = thirdPartyMerchName;
  111. }
  112. public String getThirdPartyMerchName()
  113. {
  114. return thirdPartyMerchName;
  115. }
  116. public void setWithdrawDate(Date withdrawDate)
  117. {
  118. this.withdrawDate = withdrawDate;
  119. }
  120. public Date getWithdrawDate()
  121. {
  122. return withdrawDate;
  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("inveWithdrawSn", getInveWithdrawSn())
  160. .append("bondedCode", getBondedCode())
  161. .append("wareSn", getWareSn())
  162. .append("withdrawNo", getWithdrawNo())
  163. .append("merchSn", getMerchSn())
  164. .append("merchName", getMerchName())
  165. .append("thirdPartyMerchCode", getThirdPartyMerchCode())
  166. .append("thirdPartyMerchName", getThirdPartyMerchName())
  167. .append("withdrawDate", getWithdrawDate())
  168. .append("remark", getRemark())
  169. .append("createrSn", getCreaterSn())
  170. .append("createTime", getCreateTime())
  171. .append("moderSn", getModerSn())
  172. .append("modTime", getModTime())
  173. .append("tstm", getTstm())
  174. .toString();
  175. }
  176. }