美文网首页
MyBatis-Plus的Entity文件排除非表中字段

MyBatis-Plus的Entity文件排除非表中字段

作者: 小鱼儿2020 | 来源:发表于2018-12-21 20:10 被阅读0次

    以下三种方式选择一种即可:

    使用 transient 修饰

    private transient String noColumn;
    

    使用 static 修饰

    private static String noColumn;
    

    使用 TableField 注解

    @TableField(exist=false)
    private String noColumn;
    

    相关文章

      网友评论

          本文标题:MyBatis-Plus的Entity文件排除非表中字段

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