添加作者表
This commit is contained in:
parent
1420c8862f
commit
74703e2719
@ -44,6 +44,11 @@ public class ApiController {
|
||||
@GetMapping("/api/notes")
|
||||
@OperLog(operModule = "获取所有笔记",operType = OperType.QUERY,operDesc = "获取所有笔记")
|
||||
public ResultBean<IPage<NoteVo>> page(NoteDto noteDto) {
|
||||
try {
|
||||
Thread.sleep(300);
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
IPage<NoteVo> pageInfo = noteService.selectNotePage(noteDto);
|
||||
return ResultBean.success(pageInfo);
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ jwt:
|
||||
# 需要过滤的请求,不限方法
|
||||
pattern:
|
||||
- "/api/**"
|
||||
- "/appUpload/**"
|
||||
- "/upload/**"
|
||||
- "/doc.html"
|
||||
- "/swagger-resources/**"
|
||||
|
@ -36,6 +36,7 @@ jwt:
|
||||
# 需要过滤的请求,不限方法
|
||||
pattern:
|
||||
- "/api/**"
|
||||
- "/appUpload/**"
|
||||
- "/upload/**"
|
||||
- "/doc.html"
|
||||
- "/swagger-resources/**"
|
||||
|
Loading…
x
Reference in New Issue
Block a user