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_ware_adjustment_order_item * * @author yangbo * @date 2021-02-01 */ public class OWareAdjustmentOrderItem extends BaseEntity { private static final long serialVersionUID = 1L; /** 内调入库明细编号 */ private String adjustmentItemSn; /** 内调入库单编号 */ @Excel(name = "内调入库单编号") private String adjustmentOrderSn; /** 账册分类代码 */ @Excel(name = "账册分类代码") private String emsClassCode; /** sku */ @Excel(name = "sku") private String sku; /** 数量 */ @Excel(name = "数量") private Long quantity; /** 批号 */ @Excel(name = "批号") private String lot; /** 批次 */ @Excel(name = "批次") private String batch; /** 当前数量 */ @Excel(name = "当前数量") private Long currlimig; /** 创建人编号 */ private String createrSn; /** 修改人编号 */ private String moderSn; /** 修改时间,yyyy-MM-dd HH:mm:ss */ private Date modTime; /** 时间戳 */ private Date tstm; public void setAdjustmentItemSn(String adjustmentItemSn) { this.adjustmentItemSn = adjustmentItemSn; } public String getAdjustmentItemSn() { return adjustmentItemSn; } public void setAdjustmentOrderSn(String adjustmentOrderSn) { this.adjustmentOrderSn = adjustmentOrderSn; } public String getAdjustmentOrderSn() { return adjustmentOrderSn; } public void setEmsClassCode(String emsClassCode) { this.emsClassCode = emsClassCode; } public String getEmsClassCode() { return emsClassCode; } public void setSku(String sku) { this.sku = sku; } public String getSku() { return sku; } public void setQuantity(Long quantity) { this.quantity = quantity; } public Long getQuantity() { return quantity; } public void setLot(String lot) { this.lot = lot; } public String getLot() { return lot; } public void setBatch(String batch) { this.batch = batch; } public String getBatch() { return batch; } public void setCurrlimig(Long currlimig) { this.currlimig = currlimig; } public Long getCurrlimig() { return currlimig; } 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("adjustmentItemSn", getAdjustmentItemSn()) .append("adjustmentOrderSn", getAdjustmentOrderSn()) .append("emsClassCode", getEmsClassCode()) .append("sku", getSku()) .append("quantity", getQuantity()) .append("lot", getLot()) .append("batch", getBatch()) .append("currlimig", getCurrlimig()) .append("createrSn", getCreaterSn()) .append("createTime", getCreateTime()) .append("moderSn", getModerSn()) .append("modTime", getModTime()) .append("tstm", getTstm()) .toString(); } }