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

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

使用 transient 修饰

private transient String noColumn;

使用 static 修饰

private static String noColumn;

使用 TableField 注解

@TableField(exist=false)
private String noColumn;

你可能感兴趣的:(MyBatis-Plus的Entity文件排除非表中字段)