Commit 12d8adfb3ade8379b90139336a530b07949d3534
1 parent
4d17ba07
fix: update config
Showing
2 changed files
with
23 additions
and
1 deletions
ruoyi-admin/src/main/java/com/ruoyi/report/ReportController.java
0 → 100644
| 1 | +package com.ruoyi.report; | |
| 2 | + | |
| 3 | +import io.swagger.annotations.Api; | |
| 4 | +import io.swagger.annotations.ApiOperation; | |
| 5 | +import org.springframework.web.bind.annotation.GetMapping; | |
| 6 | +import org.springframework.web.bind.annotation.RequestMapping; | |
| 7 | +import org.springframework.web.bind.annotation.RestController; | |
| 8 | + | |
| 9 | +/** | |
| 10 | + * @author 20412 | |
| 11 | + */ | |
| 12 | +@RestController | |
| 13 | +@RequestMapping("/report") | |
| 14 | +@Api(tags = "报表管理") | |
| 15 | +public class ReportController { | |
| 16 | + | |
| 17 | + @ApiOperation("签到报表集合查询") | |
| 18 | + @GetMapping("/list" ) | |
| 19 | + public String getList() { | |
| 20 | + return "暂未开发"; | |
| 21 | + } | |
| 22 | +} | ... | ... |
ruoyi-admin/src/main/java/com/ruoyi/web/core/config/SwaggerConfig.java