以下三种方式选择一种即可:
使用 transient 修饰
private transient String noColumn;
使用 static 修饰
private static String noColumn;
使用 TableField 注解
@TableField(exist=false)
private String noColumn;
以下三种方式选择一种即可:
使用 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
网友评论