美文网首页技术分享
使用MybatisPlus可能出现的问题

使用MybatisPlus可能出现的问题

作者: HeloWxl | 来源:发表于2019-10-17 11:28 被阅读0次

    之前的自己开始尝试使用MybatisPlus的时候,出现的一点小问题,以及解决办法

    selectById 报错

    Service层

    /**
     * 根据管理员ID查询管理员的详细信息
     * @param id
     * @return
     */
    public Admin selectAdminById(Integer id){
      return adminMapper.selectById(id);
    }
    

    报错截图

    报错截图.png

    解决办法

    就是在是实体类的ID上面加上一个注解即可

     @TableId(value = "admin_id")
    private Integer adminId;
    

    运行截图

    运行截图.png

    相关文章

      网友评论

        本文标题:使用MybatisPlus可能出现的问题

        本文链接:https://www.haomeiwen.com/subject/mdsmmctx.html