一:排除非表中字段的三种方式?
1:使用 transient 修饰
private transient String noColumn;
2:使用static修饰
private static String noColumn;
3:使用 TableField 注解
@TableField(exist=false)
private String noColumn;
由于本人水平有限,如果文章和代码有不妥之处,还请不吝赐教。
一:排除非表中字段的三种方式?
1:使用 transient 修饰
private transient String noColumn;
2:使用static修饰
private static String noColumn;
3:使用 TableField 注解
@TableField(exist=false)
private String noColumn;
由于本人水平有限,如果文章和代码有不妥之处,还请不吝赐教。