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;
|
}
|