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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.ishop.model.vo;
 
import java.io.Serializable;
 
/**
 * 商品评价数量和好评度响应对象
 * @date 2023-07-04
 */
public class ProductReplayCountVo implements Serializable {
 
    public ProductReplayCountVo() {}
 
    public ProductReplayCountVo(Integer sumCount, Integer goodCount, Integer inCount, Integer poorCount, String replyChance, Integer replyStar) {
        this.sumCount = sumCount;
        this.goodCount = goodCount;
        this.inCount = inCount;
        this.poorCount = poorCount;
        this.replyChance = replyChance;
        this.replyStar = replyStar;
    }
 
    public Integer getSumCount() {
        return sumCount;
    }
 
    public void setSumCount(Integer sumCount) {
        this.sumCount = sumCount;
    }
 
    public Integer getGoodCount() {
        return goodCount;
    }
 
    public void setGoodCount(Integer goodCount) {
        this.goodCount = goodCount;
    }
 
    public Integer getInCount() {
        return inCount;
    }
 
    public void setInCount(Integer inCount) {
        this.inCount = inCount;
    }
 
    public Integer getPoorCount() {
        return poorCount;
    }
 
    public void setPoorCount(Integer poorCount) {
        this.poorCount = poorCount;
    }
 
    public String getReplyChance() {
        return replyChance;
    }
 
    public void setReplyChance(String replyChance) {
        this.replyChance = replyChance;
    }
 
    public Integer getReplyStar() {
        return replyStar;
    }
 
    public void setReplyStar(Integer replyStar) {
        this.replyStar = replyStar;
    }
 
    //    @ApiModelProperty(value = "评论总数")
    private Integer sumCount;
 
//    @ApiModelProperty(value = "好评总数")
    private Integer goodCount;
 
//    @ApiModelProperty(value = "中评总数")
    private Integer inCount;
 
//    @ApiModelProperty(value = "差评总数")
    private Integer poorCount;
 
//    @ApiModelProperty(value = "好评率")
    private String replyChance;
 
//    @ApiModelProperty(value = "评分星数")
    private Integer replyStar;
}