Mybatis把返回结果封装成map类型,表的字段名对应map中的key,字段所属的值对应map中的value时提示@MapKey is required
解决方案:
添加注解:@SuppressWarnings("MybatisXMapperMethodInspection")
在上方加入你所要指定的主键即可,@MapKey("xx") 指定一个字段xx作为返回Map中的key
来源地址:https://blog.csdn.net/m0_60464220/article/details/128949924