|
@@ -1,6 +1,9 @@
|
|
|
package com.ruoyi.ams.inv.domain;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
@@ -8,10 +11,11 @@ import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
/**
|
|
|
* 库位库存信息对象 inv_lot_loc_id
|
|
|
- *
|
|
|
* @author andy
|
|
|
* @date 2022-03-03
|
|
|
*/
|
|
|
+@Data
|
|
|
+@Accessors(chain = true)
|
|
|
public class InvLotLocId extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -72,165 +76,32 @@ public class InvLotLocId extends BaseEntity
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
private BigDecimal qtyonhold;
|
|
|
|
|
|
- public void setLotnum(String lotnum)
|
|
|
- {
|
|
|
- this.lotnum = lotnum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLotnum()
|
|
|
- {
|
|
|
- return lotnum;
|
|
|
- }
|
|
|
- public void setLocationId(String locationId)
|
|
|
- {
|
|
|
- this.locationId = locationId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getLocationId()
|
|
|
- {
|
|
|
- return locationId;
|
|
|
- }
|
|
|
- public void setTraceid(String traceid)
|
|
|
- {
|
|
|
- this.traceid = traceid;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTraceid()
|
|
|
- {
|
|
|
- return traceid;
|
|
|
- }
|
|
|
- public void setCustomerId(String customerId)
|
|
|
- {
|
|
|
- this.customerId = customerId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCustomerId()
|
|
|
- {
|
|
|
- return customerId;
|
|
|
- }
|
|
|
- public void setSku(String sku)
|
|
|
- {
|
|
|
- this.sku = sku;
|
|
|
- }
|
|
|
-
|
|
|
- public String getSku()
|
|
|
- {
|
|
|
- return sku;
|
|
|
- }
|
|
|
- public void setQty(BigDecimal qty)
|
|
|
- {
|
|
|
- this.qty = qty;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQty()
|
|
|
- {
|
|
|
- return qty;
|
|
|
- }
|
|
|
- public void setQtyEach(BigDecimal qtyEach)
|
|
|
- {
|
|
|
- this.qtyEach = qtyEach;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyEach()
|
|
|
- {
|
|
|
- return qtyEach;
|
|
|
- }
|
|
|
- public void setQtyallocated(BigDecimal qtyallocated)
|
|
|
- {
|
|
|
- this.qtyallocated = qtyallocated;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyallocated()
|
|
|
- {
|
|
|
- return qtyallocated;
|
|
|
- }
|
|
|
- public void setQtyallocatedEach(BigDecimal qtyallocatedEach)
|
|
|
- {
|
|
|
- this.qtyallocatedEach = qtyallocatedEach;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyallocatedEach()
|
|
|
- {
|
|
|
- return qtyallocatedEach;
|
|
|
- }
|
|
|
- public void setQtypa(BigDecimal qtypa)
|
|
|
- {
|
|
|
- this.qtypa = qtypa;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtypa()
|
|
|
- {
|
|
|
- return qtypa;
|
|
|
- }
|
|
|
- public void setQtyrpin(BigDecimal qtyrpin)
|
|
|
- {
|
|
|
- this.qtyrpin = qtyrpin;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyrpin()
|
|
|
- {
|
|
|
- return qtyrpin;
|
|
|
- }
|
|
|
- public void setQtyrpout(BigDecimal qtyrpout)
|
|
|
- {
|
|
|
- this.qtyrpout = qtyrpout;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyrpout()
|
|
|
- {
|
|
|
- return qtyrpout;
|
|
|
- }
|
|
|
- public void setQtymvin(BigDecimal qtymvin)
|
|
|
- {
|
|
|
- this.qtymvin = qtymvin;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtymvin()
|
|
|
- {
|
|
|
- return qtymvin;
|
|
|
- }
|
|
|
- public void setQtymvout(BigDecimal qtymvout)
|
|
|
- {
|
|
|
- this.qtymvout = qtymvout;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtymvout()
|
|
|
- {
|
|
|
- return qtymvout;
|
|
|
- }
|
|
|
- public void setQtyonhold(BigDecimal qtyonhold)
|
|
|
- {
|
|
|
- this.qtyonhold = qtyonhold;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getQtyonhold()
|
|
|
- {
|
|
|
- return qtyonhold;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("lotnum", getLotnum())
|
|
|
- .append("locationId", getLocationId())
|
|
|
- .append("traceid", getTraceid())
|
|
|
- .append("customerId", getCustomerId())
|
|
|
- .append("sku", getSku())
|
|
|
- .append("qty", getQty())
|
|
|
- .append("qtyEach", getQtyEach())
|
|
|
- .append("qtyallocated", getQtyallocated())
|
|
|
- .append("qtyallocatedEach", getQtyallocatedEach())
|
|
|
- .append("qtypa", getQtypa())
|
|
|
- .append("qtyrpin", getQtyrpin())
|
|
|
- .append("qtyrpout", getQtyrpout())
|
|
|
- .append("qtymvin", getQtymvin())
|
|
|
- .append("qtymvout", getQtymvout())
|
|
|
- .append("qtyonhold", getQtyonhold())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
+ .append("lotnum", getLotnum())
|
|
|
+ .append("locationId", getLocationId())
|
|
|
+ .append("traceid", getTraceid())
|
|
|
+ .append("customerId", getCustomerId())
|
|
|
+ .append("sku", getSku())
|
|
|
+ .append("qty", getQty())
|
|
|
+ .append("qtyEach", getQtyEach())
|
|
|
+ .append("qtyallocated", getQtyallocated())
|
|
|
+ .append("qtyallocatedEach", getQtyallocatedEach())
|
|
|
+ .append("qtypa", getQtypa())
|
|
|
+ .append("qtyrpin", getQtyrpin())
|
|
|
+ .append("qtyrpout", getQtyrpout())
|
|
|
+ .append("qtymvin", getQtymvin())
|
|
|
+ .append("qtymvout", getQtymvout())
|
|
|
+ .append("qtyonhold", getQtyonhold())
|
|
|
+ .append("createBy", getCreateBy())
|
|
|
+ .append("createTime", getCreateTime())
|
|
|
+ .append("updateBy", getUpdateBy())
|
|
|
+ .append("updateTime", getUpdateTime())
|
|
|
+ .append("remark", getRemark())
|
|
|
+ .toString();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|