123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- package com.emato.biz.domain.warehouse;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.emato.common.annotation.Excel;
- import com.emato.common.core.domain.BaseEntity;
- /**
- * 库存退港对象 o_wb_inve_withdraw
- *
- * @author yangbo
- * @date 2021-02-01
- */
- public class OWbInveWithdraw extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 编号 */
- private String inveWithdrawSn;
- /** 保税仓代码(前海保税仓:01),req_20190710_001 */
- @Excel(name = "保税仓代码(前海保税仓:01),req_20190710_001")
- private String bondedCode;
- /** 仓库编号 */
- @Excel(name = "仓库编号")
- private String wareSn;
- /** 退港号 */
- @Excel(name = "退港号")
- private String withdrawNo;
- /** 商户编号 */
- @Excel(name = "商户编号")
- private String merchSn;
- /** 商户名称 */
- @Excel(name = "商户名称")
- private String merchName;
- /** 第三方商户代码 */
- @Excel(name = "第三方商户代码")
- private String thirdPartyMerchCode;
- /** 第三方商户名称 */
- @Excel(name = "第三方商户名称")
- private String thirdPartyMerchName;
- /** 退港日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "退港日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date withdrawDate;
- /** 创建人编号 */
- private String createrSn;
- /** 修改人编号 */
- private String moderSn;
- /** 修改时间,yyyy-MM-dd HH:mm:ss */
- private Date modTime;
- /** 时间戳 */
- private Date tstm;
- public void setInveWithdrawSn(String inveWithdrawSn)
- {
- this.inveWithdrawSn = inveWithdrawSn;
- }
- public String getInveWithdrawSn()
- {
- return inveWithdrawSn;
- }
- public void setBondedCode(String bondedCode)
- {
- this.bondedCode = bondedCode;
- }
- public String getBondedCode()
- {
- return bondedCode;
- }
- public void setWareSn(String wareSn)
- {
- this.wareSn = wareSn;
- }
- public String getWareSn()
- {
- return wareSn;
- }
- public void setWithdrawNo(String withdrawNo)
- {
- this.withdrawNo = withdrawNo;
- }
- public String getWithdrawNo()
- {
- return withdrawNo;
- }
- public void setMerchSn(String merchSn)
- {
- this.merchSn = merchSn;
- }
- public String getMerchSn()
- {
- return merchSn;
- }
- public void setMerchName(String merchName)
- {
- this.merchName = merchName;
- }
- public String getMerchName()
- {
- return merchName;
- }
- public void setThirdPartyMerchCode(String thirdPartyMerchCode)
- {
- this.thirdPartyMerchCode = thirdPartyMerchCode;
- }
- public String getThirdPartyMerchCode()
- {
- return thirdPartyMerchCode;
- }
- public void setThirdPartyMerchName(String thirdPartyMerchName)
- {
- this.thirdPartyMerchName = thirdPartyMerchName;
- }
- public String getThirdPartyMerchName()
- {
- return thirdPartyMerchName;
- }
- public void setWithdrawDate(Date withdrawDate)
- {
- this.withdrawDate = withdrawDate;
- }
- public Date getWithdrawDate()
- {
- return withdrawDate;
- }
- public void setCreaterSn(String createrSn)
- {
- this.createrSn = createrSn;
- }
- public String getCreaterSn()
- {
- return createrSn;
- }
- public void setModerSn(String moderSn)
- {
- this.moderSn = moderSn;
- }
- public String getModerSn()
- {
- return moderSn;
- }
- public void setModTime(Date modTime)
- {
- this.modTime = modTime;
- }
- public Date getModTime()
- {
- return modTime;
- }
- public void setTstm(Date tstm)
- {
- this.tstm = tstm;
- }
- public Date getTstm()
- {
- return tstm;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("inveWithdrawSn", getInveWithdrawSn())
- .append("bondedCode", getBondedCode())
- .append("wareSn", getWareSn())
- .append("withdrawNo", getWithdrawNo())
- .append("merchSn", getMerchSn())
- .append("merchName", getMerchName())
- .append("thirdPartyMerchCode", getThirdPartyMerchCode())
- .append("thirdPartyMerchName", getThirdPartyMerchName())
- .append("withdrawDate", getWithdrawDate())
- .append("remark", getRemark())
- .append("createrSn", getCreaterSn())
- .append("createTime", getCreateTime())
- .append("moderSn", getModerSn())
- .append("modTime", getModTime())
- .append("tstm", getTstm())
- .toString();
- }
- }
|