package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
|
/**
|
*
|
*
|
* @date 2016-07-18 18:11
|
*/
|
public class SysAllotDetail implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 序号
|
*/
|
private Long id;
|
|
/**
|
* 所属调拨单id
|
*/
|
private Long allotId;
|
|
/**
|
* sku id
|
*/
|
private Long skuId;
|
|
/**
|
* 调拨申请数量
|
*/
|
private Integer appTotal;
|
|
/**
|
* 实际调拨数量
|
*/
|
private Integer realTotal;
|
/**
|
* 实际接收数量
|
*/
|
private Integer receiveTotal;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 关联的sku
|
*/
|
|
private SysGoods goods;
|
/**
|
* 调拨单价
|
*/
|
private Double wholesale;
|
|
/*
|
* 调拨库存id
|
*/
|
private Long storeId;
|
|
/**
|
*出库
|
*/
|
private SysStoreInfo storeInfo;
|
|
|
public Double getWholesale() {
|
return wholesale;
|
}
|
|
public void setWholesale(Double wholesale) {
|
this.wholesale = wholesale;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
|
|
public Long getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(Long storeId) {
|
this.storeId = storeId;
|
}
|
|
public Integer getReceiveTotal() {
|
return receiveTotal;
|
}
|
|
public void setReceiveTotal(Integer receiveTotal) {
|
this.receiveTotal = receiveTotal;
|
}
|
|
public Integer getAppTotal() {
|
return appTotal;
|
}
|
|
public void setAppTotal(Integer appTotal) {
|
this.appTotal = appTotal;
|
}
|
|
public Integer getRealTotal() {
|
return realTotal;
|
}
|
|
public void setRealTotal(Integer realTotal) {
|
this.realTotal = realTotal;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
public SysStoreInfo getStoreInfo() {
|
return storeInfo;
|
}
|
|
public void setStoreInfo(SysStoreInfo storeInfo) {
|
this.storeInfo = storeInfo;
|
}
|
|
public Long getAllotId() {
|
return allotId;
|
}
|
|
public void setAllotId(Long allotId) {
|
this.allotId = allotId;
|
}
|
|
public Long getSkuId() {
|
return skuId;
|
}
|
|
public void setSkuId(Long skuId) {
|
this.skuId = skuId;
|
}
|
|
|
public SysGoods getGoods() {
|
return goods;
|
}
|
|
public void setGoods(SysGoods goods) {
|
this.goods = goods;
|
}
|
}
|