修改插入报错问题

This commit is contained in:
2025-07-09 18:50:26 +08:00
parent 8b93776a0d
commit 047c2901fb
8 changed files with 81 additions and 11 deletions

View File

@@ -128,8 +128,8 @@ public class SysOaRemindController extends BaseController {
* @return List<SysOaRemindVo>
*/
@GetMapping("/getRecentRemindList")
public R<List<SysOaRemindVo>> getRecentRemindList() {
List<SysOaRemindVo> remindList = iSysOaRemindService.queryRecentRemindList();
public R<List<SysOaRemindVo>> getRecentRemindList(SysOaRemindBo bo) {
List<SysOaRemindVo> remindList = iSysOaRemindService.queryRecentRemindList(bo);
return R.ok(remindList);
}
}