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