package com.ishop.model.vo;
|
|
public class ProductTabsHeaderVo {
|
|
public ProductTabsHeaderVo() {
|
}
|
|
public ProductTabsHeaderVo(Integer count, Integer type) {
|
this.count = count;
|
this.type = type;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
// @ApiModelProperty(value = "商品数量")
|
private Integer count;
|
|
// @ApiModelProperty(value = "类型(1:出售中(已上架),2:仓库中(未上架),3:已售罄,4:警戒库存,5:回收站,6:待审核,7:审核失败)")
|
private Integer type;
|
}
|