/evaluation接口不应该写在EvaluationController类里面吗?
/evaluation接口是新增评论的,写在了MemberController类里面,不应该写在EvaluationController类里面吗?这放在哪个类在实际开发中是有什么规则的?
@PostMapping("/evaluation")
@ResponseBody
public Map evaluation(Long memberId,Long bookId,Integer score,String content){
Map result = new HashMap();
try {
memberService.evaluation(memberId,bookId,score,content);
result.put("code","0");
result.put("msg","success");
}catch (BussinessException e){
e.printStackTrace();
result.put("code",e.getCode());
result.put("msg",e.getMsg());
}
return result;
}
21
收起
正在回答 回答被采纳积分+1
1回答
java工程师2020版
- 参与学习 人
- 提交作业 9400 份
- 解答问题 16556 个
综合就业常年第一,编程排行常年霸榜,无需脱产即可学习,北上广深月薪过万 无论你是未就业的学生还是想转行的在职人员,不需要基础,只要你有梦想,想高薪
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星