package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @date 2016-08-23 17:50
|
*/
|
public class SysCheckDetail implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Long id;
|
private Long storeId;
|
|
/**
|
* 盘点单
|
*/
|
private Long checkId;
|
|
|
/**
|
* skuId
|
*/
|
private Long skuId;
|
|
|
/**
|
* 审核通过时库存数量
|
*/
|
private Double beginBalance;
|
|
|
/**
|
* 收入数
|
*/
|
private Double incomeNum;
|
|
|
/**
|
* 发出数
|
*/
|
private Double outcomeNum;
|
|
|
/**
|
* 期末余额
|
*/
|
private Double endBalance;
|
|
|
/**
|
* 结存单价
|
*/
|
private Double price;
|
|
|
/**
|
* 结存总价
|
*/
|
private Double priceSum;
|
|
|
/**
|
* 实际数量
|
*/
|
private Double actuallySum;
|
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 扩展属性
|
*
|
*/
|
private ShoppingGoods goods;
|
|
|
/**
|
* 盘点单号
|
*/
|
private String checkNo;
|
|
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 Long getCheckId() {
|
return checkId;
|
}
|
|
public void setCheckId(Long checkId) {
|
this.checkId = checkId;
|
}
|
|
public Long getSkuId() {
|
return skuId;
|
}
|
|
public void setSkuId(Long skuId) {
|
this.skuId = skuId;
|
}
|
|
public Double getBeginBalance() {
|
return beginBalance;
|
}
|
|
public void setBeginBalance(Double beginBalance) {
|
this.beginBalance = beginBalance;
|
}
|
|
public Double getIncomeNum() {
|
return incomeNum;
|
}
|
|
public void setIncomeNum(Double incomeNum) {
|
this.incomeNum = incomeNum;
|
}
|
|
public Double getOutcomeNum() {
|
return outcomeNum;
|
}
|
|
public void setOutcomeNum(Double outcomeNum) {
|
this.outcomeNum = outcomeNum;
|
}
|
|
public Double getEndBalance() {
|
return endBalance;
|
}
|
|
public void setEndBalance(Double endBalance) {
|
this.endBalance = endBalance;
|
}
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public Double getPriceSum() {
|
return priceSum;
|
}
|
|
public void setPriceSum(Double priceSum) {
|
this.priceSum = priceSum;
|
}
|
|
public Double getActuallySum() {
|
return actuallySum;
|
}
|
|
public void setActuallySum(Double actuallySum) {
|
this.actuallySum = actuallySum;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
|
|
public String getCheckNo() {
|
return checkNo;
|
}
|
|
public void setCheckNo(String checkNo) {
|
this.checkNo = checkNo;
|
}
|
|
public ShoppingGoods getGoods() {
|
return goods;
|
}
|
|
public void setGoods(ShoppingGoods goods) {
|
this.goods = goods;
|
}
|
}
|