package com.matrix.system.hive.bean; import java.io.Serializable; /** * * @date 2016-07-15 13:10 */ public class SysInstoreDetail implements Serializable{ private static final long serialVersionUID = 1L; /** * 主键 */ private Long id; /** * 入库单Id */ private Long instoreId; /** *SKU ID */ private Long skuId; /** *数量 */ private Double amount; /** * 价格 */ private Double price; /** *总金额 */ private Double priceTotal; /** * 规格 */ private String unit; /** * 备注 */ private String remark; /** * 业务状态 */ private String ywstatus; /** * 入库批次 */ private String batch; /** * 扩展字段 */ private ShoppingGoods goods; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Double getAmount() { return amount; } public void setAmount(Double amount) { this.amount = amount; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public Double getPriceTotal() { return priceTotal; } public void setPriceTotal(Double priceTotal) { this.priceTotal = priceTotal; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getYwstatus() { return ywstatus; } public void setYwstatus(String ywstatus) { this.ywstatus = ywstatus; } public Long getInstoreId() { return instoreId; } public void setInstoreId(Long instoreId) { this.instoreId = instoreId; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public Long getSkuId() { return skuId; } public void setSkuId(Long skuId) { this.skuId = skuId; } public ShoppingGoods getGoods() { return goods; } public void setGoods(ShoppingGoods goods) { this.goods = goods; } public String getBatch() { return batch; } public void setBatch(String batch) { this.batch = batch; } }