Commit 7d4b0f1f by 陶光胜

投诉建议状态变更

parent 076db34d
......@@ -116,12 +116,15 @@ public class EvaluateOrderConfigDTO implements Serializable {
* 恶意评价标记功能
*/
private Integer badEvaluateTag;
private Integer badEvaluateTagType;
/**
* 恶意投诉标记功能
*/
private Integer badSuggestionTag;
private Integer badSuggestionTagType;
/**
* 正面快捷短语
*/
......@@ -336,4 +339,20 @@ public class EvaluateOrderConfigDTO implements Serializable {
public void setShowType(Integer showType) {
this.showType = showType;
}
public Integer getBadEvaluateTagType() {
return badEvaluateTagType;
}
public void setBadEvaluateTagType(Integer badEvaluateTagType) {
this.badEvaluateTagType = badEvaluateTagType;
}
public Integer getBadSuggestionTagType() {
return badSuggestionTagType;
}
public void setBadSuggestionTagType(Integer badSuggestionTagType) {
this.badSuggestionTagType = badSuggestionTagType;
}
}
......@@ -25,12 +25,15 @@ public class BadTagConfigVO implements Serializable {
@Max(value = 1, message = "参数错误", groups = BadTagConfigValid.class)
private Integer badEvaluateTag;
private Integer badEvaluateTagType = -1;
/**
* 恶意投诉标记功能
*/
@Min(value = 0, message = "参数错误", groups = BadTagConfigValid.class)
@Max(value = 1, message = "参数错误", groups = BadTagConfigValid.class)
private Integer badSuggestionTag;
private Integer badSuggestionTagType = -1;
private Integer enterpriseId;
......@@ -65,4 +68,20 @@ public class BadTagConfigVO implements Serializable {
public void setEnterpriseId(Integer enterpriseId) {
this.enterpriseId = enterpriseId;
}
public Integer getBadEvaluateTagType() {
return badEvaluateTagType;
}
public void setBadEvaluateTagType(Integer badEvaluateTagType) {
this.badEvaluateTagType = badEvaluateTagType;
}
public Integer getBadSuggestionTagType() {
return badSuggestionTagType;
}
public void setBadSuggestionTagType(Integer badSuggestionTagType) {
this.badSuggestionTagType = badSuggestionTagType;
}
}
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