package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* @date 2016-07-03 20:53
|
*/
|
public class SysGoods implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 序号
|
*/
|
private Long id;
|
|
/**
|
* 商品编号
|
*/
|
private String goodsNo;
|
/**
|
* 商品名称
|
*/
|
private String name;
|
|
/**
|
* 商品规格
|
*/
|
private String unit;
|
/**
|
* 状态
|
*/
|
private String deleted;
|
/**
|
* 属性
|
*/
|
private String goodsAttr;
|
/**
|
* 分类
|
*/
|
private Long goodsSortId;
|
/**
|
* 所属门店
|
*/
|
private Long shopId;
|
|
|
|
/**
|
* 往来单位id
|
*/
|
private Long supplierId;
|
|
/**
|
* 计量单位
|
*/
|
private String measure;
|
|
|
/**
|
* 商品分类名称
|
*/
|
private String goodsSortName;
|
|
|
|
|
private Long companyId;
|
|
/**
|
* 库存警戒值 sku旧值------------
|
*/
|
private Integer alarmNum;
|
|
|
/**
|
* 容积
|
*/
|
private int volume;
|
|
/**
|
* 结存单价,成本价
|
*/
|
private Double price;
|
|
/**
|
* 批发价
|
*/
|
private Double wholesale;
|
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getGoodsNo() {
|
return goodsNo;
|
}
|
|
public void setGoodsNo(String goodsNo) {
|
this.goodsNo = goodsNo;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getDeleted() {
|
return deleted;
|
}
|
|
public void setDeleted(String deleted) {
|
this.deleted = deleted;
|
}
|
|
public String getGoodsAttr() {
|
return goodsAttr;
|
}
|
|
public void setGoodsAttr(String goodsAttr) {
|
this.goodsAttr = goodsAttr;
|
}
|
|
public Long getGoodsSortId() {
|
return goodsSortId;
|
}
|
|
public void setGoodsSortId(Long goodsSortId) {
|
this.goodsSortId = goodsSortId;
|
}
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
|
|
public Long getSupplierId() {
|
return supplierId;
|
}
|
|
public void setSupplierId(Long supplierId) {
|
this.supplierId = supplierId;
|
}
|
|
public String getMeasure() {
|
return measure;
|
}
|
|
public void setMeasure(String measure) {
|
this.measure = measure;
|
}
|
|
public String getGoodsSortName() {
|
return goodsSortName;
|
}
|
|
public void setGoodsSortName(String goodsSortName) {
|
this.goodsSortName = goodsSortName;
|
}
|
|
|
|
public Integer getAlarmNum() {
|
return alarmNum;
|
}
|
|
public void setAlarmNum(Integer alarmNum) {
|
this.alarmNum = alarmNum;
|
}
|
|
public int getVolume() {
|
return volume;
|
}
|
|
public void setVolume(int volume) {
|
this.volume = volume;
|
}
|
|
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public Double getWholesale() {
|
return wholesale;
|
}
|
|
public void setWholesale(Double wholesale) {
|
this.wholesale = wholesale;
|
}
|
}
|