Commit 37eeb05f by zhiwj

修改bug

parent c2fa4f18
......@@ -40,6 +40,10 @@ public class BadEvaluateConfigVO implements Serializable {
@Max(value = 1, message = "参数错误", groups = BadEvaluateValid.class)
private Integer badTotalStatus;
private Integer badTotalType;
private Integer badTotalScore;
/**
* 商品质量评分类型
*/
......@@ -257,4 +261,20 @@ public class BadEvaluateConfigVO implements Serializable {
public void setGoodTotalScore(Integer goodTotalScore) {
this.goodTotalScore = goodTotalScore;
}
public Integer getBadTotalType() {
return badTotalType;
}
public void setBadTotalType(Integer badTotalType) {
this.badTotalType = badTotalType;
}
public Integer getBadTotalScore() {
return badTotalScore;
}
public void setBadTotalScore(Integer badTotalScore) {
this.badTotalScore = badTotalScore;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment