Commit c21830db by zhiwj

咨询建议导出

parent afff1584
......@@ -55,6 +55,10 @@ public class EvaluateReplyDTO implements Serializable {
private String memberImgUrl;
/**
* 是否展示
*/
private Integer showStatus;
/**
*
*/
private Integer userId;
......@@ -160,4 +164,12 @@ public class EvaluateReplyDTO implements Serializable {
public void setMemberImgUrl(String memberImgUrl) {
this.memberImgUrl = memberImgUrl;
}
public Integer getShowStatus() {
return showStatus;
}
public void setShowStatus(Integer showStatus) {
this.showStatus = showStatus;
}
}
......@@ -57,6 +57,12 @@ public class EvaluateManagerController {
return ResultControllerUtils.commonResult(serviceResponse);
}
@RequestMapping("/update-reply-show-status")
public RestResponse updateReplyShowStatus(Integer evaluateReplyId, Integer showStatus) {
ServiceResponse<Void> serviceResponse = evaluateManageApiService.updateReplyShowStatus(UserDetailUtils.getUserDetail().getEnterpriseId(), evaluateReplyId, showStatus);
return ResultControllerUtils.commonResult(serviceResponse);
}
@RequestMapping("/update-top-hot-status")
public RestResponse updateTopHotStatus(Integer evaluateId, Integer topHotStatus) {
ServiceResponse<Void> serviceResponse = evaluateManageApiService.updateTopHotStatus(UserDetailUtils.getUserDetail().getEnterpriseId(), evaluateId, topHotStatus);
......
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