Commit 170117e2 by zhiwj

咨询建议列表

parent ef88b44d
......@@ -56,9 +56,9 @@ public interface EvaluateManageApiService {
* @Title: updateReplyShowStatus
* @Description:
* @author zhiwj
* @param enterpriseId
* @param evaluateReplyId
* @param showStatus
* @param enterpriseId
* @param evaluateReplyId
* @param showStatus
* @return com.gic.api.base.commons.ServiceResponse<java.lang.Void>
* @throws
*/
......
......@@ -65,4 +65,11 @@ public class ProblemController {
ServiceResponse<Void> serviceResponse = problemManageApiService.replyProblem(Arrays.asList(problemUserReplyVO.getProblemIds()), EntityUtil.changeEntityByJSON(ProblemUserReplyDTO.class, problemUserReplyVO));
return ResultControllerUtils.commonResult(serviceResponse);
}
@RequestMapping("/update-malicious-status")
public RestResponse updateMaliciousStatus(Integer problemId, Integer maliciousStatus) {
ServiceResponse<Void> serviceResponse = problemManageApiService.updateMaliciousStatus(problemId, maliciousStatus);
return ResultControllerUtils.commonResult(serviceResponse);
}
}
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