|
@@ -46,6 +46,12 @@ public class TCommentController extends BaseController {
|
|
|
return R.ok(commentService.saveComment(comment,wxLoginUser));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("后台管理新增评论")
|
|
|
+ @RequestMapping(value = "black/add", method = RequestMethod.POST)
|
|
|
+ public R blackAdd(@RequestBody TComment comment) {
|
|
|
+ return R.ok(commentService.save(comment));
|
|
|
+
|
|
|
+ }
|
|
|
@ApiOperation("查询评论")
|
|
|
@ApiImplicitParam(name = "cJsid", value = "技师id", required = true, dataType = "String", paramType = "query", dataTypeClass = String.class)
|
|
|
@RequestMapping(value = "wx/select", method = RequestMethod.POST)
|