mybatis-plus排除非表中字段

  • 使用 transient 修饰

    private transient String noColumn;
    
  • 使用 static 修饰

    private static String noColumn;
    
  • 使用 TableField 注解

    @TableField(exist=false)
    private String noColumn;




posted @ 2019-03-05 09:42  JXY_Super  阅读(763)  评论(0编辑  收藏  举报