错误背景
在使用mybatis api根据id集合查询数据时出现错误Invalid bound statement (not found):xxxMapper.selectById
super.listByIds(userIdList);
问题出现的原因
在定义实体中未加@TableId注解
解决办法
在对应的实体中添加@TableId注解
issues
在使用mybatis api根据id集合查询数据时出现错误Invalid bound statement (not found):xxxMapper.selectById
super.listByIds(userIdList);
在定义实体中未加@TableId注解
在对应的实体中添加@TableId注解
issues