ADD file via upload

master
pxh4iabou 2 years ago
parent 5d20c9d67e
commit 1ca0a169cf

@ -0,0 +1,63 @@
package com.example.controller;
import com.example.common.Result;
import com.example.entity.NotesInfoComment;
import com.example.vo.NotesInfoCommentVo;
import com.example.service.NotesInfoCommentService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import java.util.List;
@RestController
@RequestMapping(value = "/notesInfoComment")
public class NotesInfoCommentController {
@Resource
private NotesInfoCommentService notesInfoCommentService;
@PostMapping
public Result<NotesInfoComment> add(@RequestBody NotesInfoComment commentInfo, HttpServletRequest request) {
notesInfoCommentService.add(commentInfo, request);
return Result.success(commentInfo);
}
@DeleteMapping("/{id}")
public Result delete(@PathVariable Long id) {
notesInfoCommentService.delete(id);
return Result.success();
}
@PutMapping
public Result update(@RequestBody NotesInfoComment commentInfo) {
notesInfoCommentService.update(commentInfo);
return Result.success();
}
@GetMapping("/{id}")
public Result<NotesInfoComment> detail(@PathVariable Long id) {
NotesInfoComment commentInfo = notesInfoCommentService.findById(id);
return Result.success(commentInfo);
}
@GetMapping
public Result<List<NotesInfoCommentVo>> all() {
return Result.success(notesInfoCommentService.findAll());
}
@GetMapping("/page/{name}")
public Result<PageInfo<NotesInfoCommentVo>> page(@PathVariable String name,
@RequestParam(defaultValue = "1") Integer pageNum,
@RequestParam(defaultValue = "5") Integer pageSize,
HttpServletRequest request) {
return Result.success(notesInfoCommentService.findPage(name, pageNum, pageSize));
}
@GetMapping("/findByForeignId/{id}")
public Result<List<NotesInfoComment>> findByForeignId (@PathVariable Long id) {
return Result.success(notesInfoCommentService.findByForeignId(id));
}
}
Loading…
Cancel
Save