修改bug

This commit is contained in:
2025-02-27 16:13:22 +08:00
parent 4f6598b23b
commit 5d1c3b39e2
5 changed files with 107 additions and 5 deletions

View File

@ -256,7 +256,7 @@ public class WgzAppController {
@ApiOperation("【日报】【日报日历】日报日历·查看日报")
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userCheckDailyNewspaper')")
@GetMapping("/WgzUserCheckDailyNewspaper/{id}")
public AjaxResult<WgzDailyClock> userCheckDailyNewspaper(@NotNull(message = "主键不能为空") @PathVariable("id") Long id) {
public AjaxResult<WgzAppCheckDailyNewspaperRes> userCheckDailyNewspaper(@NotNull(message = "主键不能为空") @PathVariable("id") Long id) {
return AjaxResult.success(iWgzDailyClockService.userCheckDailyNewspaper(id));
}