定时任务逻辑调整

This commit is contained in:
zhangchenbiao
2023-08-22 15:03:01 +08:00
parent 8946e73112
commit 47627a1945
5 changed files with 40 additions and 18 deletions

View File

@@ -274,4 +274,10 @@ public class TestController {
followTaskService.followTaskDailyRemind();
return ResponseResult.success();
}
@GetMapping("/followTaskAnHourAgoRemind")
public ResponseResult followTaskAnHourAgoRemind() {
followTaskService.followTaskAnHourAgoRemind();
return ResponseResult.success();
}
}