事件提醒
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user