You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SRuml/CommentController.java

93 lines
2.3 KiB

package com.example.controller;
import com.example.common.Result;
import com.example.entity.Comment;
import com.example.service.CommentService;
import com.github.pagehelper.PageInfo;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
* 评论前端操作接口
**/
@RestController
@RequestMapping("/comment")
public class CommentController {
@Resource
private CommentService commentService;
/**
* 新增
*/
@PostMapping("/add")
public Result add(@RequestBody Comment comment) {
commentService.add(comment);
return Result.success();
}
/**
* 删除
*/
@DeleteMapping("/delete/{id}")
public Result deleteById(@PathVariable Integer id) {
commentService.deleteById(id);
return Result.success();
}
/**
* 批量删除
*/
@DeleteMapping("/delete/batch")
public Result deleteBatch(@RequestBody List<Integer> ids) {
commentService.deleteBatch(ids);
return Result.success();
}
/**
* 修改
*/
@PutMapping("/update")
public Result updateById(@RequestBody Comment comment) {
commentService.updateById(comment);
return Result.success();
}
/**
* 根据ID查询
*/
@GetMapping("/selectById/{id}")
public Result selectById(@PathVariable Integer id) {
Comment comment = commentService.selectById(id);
return Result.success(comment);
}
@GetMapping("/selectByGoodsId")
public Result selectByGoodsId(@RequestParam Integer id) {
List<Comment> list = commentService.selectByGoodsId(id);
return Result.success(list);
}
/**
* 查询所有
*/
@GetMapping("/selectAll")
public Result selectAll(Comment comment ) {
List<Comment> list = commentService.selectAll(comment);
return Result.success(list);
}
/**
* 分页查询
*/
@GetMapping("/selectPage")
public Result selectPage(Comment comment,
@RequestParam(defaultValue = "1") Integer pageNum,
@RequestParam(defaultValue = "10") Integer pageSize) {
PageInfo<Comment> page = commentService.selectPage(comment, pageNum, pageSize);
return Result.success(page);
}
}