shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
}