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
package com.ishop.model.vo;
 
import java.io.Serializable;
 
/**
 * 商品详情评论
 * @date 2023-07-04
 */
public class ProductDetailReplyVo implements Serializable {
 
    public Integer getSumCount() {
        return sumCount;
    }
 
    public void setSumCount(Integer sumCount) {
        this.sumCount = sumCount;
    }
 
    public String getReplyChance() {
        return replyChance;
    }
 
    public void setReplyChance(String replyChance) {
        this.replyChance = replyChance;
    }
 
    public ProductReplyVo getProductReply() {
        return productReply;
    }
 
    public void setProductReply(ProductReplyVo productReply) {
        this.productReply = productReply;
    }
 
    //    @ApiModelProperty(value = "评论总数")
    private Integer sumCount;
 
//    @ApiModelProperty(value = "好评率")
    private String replyChance;
 
//    @ApiModelProperty(value = "最后一条评论信息")
    private ProductReplyVo productReply;
}