事件提醒

This commit is contained in:
2025-07-09 16:26:04 +08:00
parent 5e331360bd
commit 387e728b26
7 changed files with 147 additions and 2 deletions

View File

@@ -122,4 +122,14 @@ public class SysOaRemindController extends BaseController {
@PathVariable Long[] remindIds) {
return toAjax(iSysOaRemindService.deleteWithValidByIds(Arrays.asList(remindIds), true));
}
/**
* 查询所有小于三天的任务和项目提醒,只查当天(到秒)。
* @return List<SysOaRemindVo>
*/
@GetMapping("/getRecentRemindList")
public R<List<SysOaRemindVo>> getRecentRemindList() {
List<SysOaRemindVo> remindList = iSysOaRemindService.queryRecentRemindList();
return R.ok(remindList);
}
}