当前位置 : 主页 > 编程语言 > java >

mybatis-plus排除非表中字段的操作

来源:互联网 收集:自由互联 发布时间:2021-04-03
使用 transient 修饰 private transient String noColumn; 使用 static 修饰 private static String noColumn; 使用 TableField 注解 @TableField(exist=false) private String noColumn; 补充知识: Mybatis plus @TableName实体中添加非

使用 transient 修饰

private transient String noColumn;

使用 static 修饰

private static String noColumn;

使用 TableField 注解

@TableField(exist=false)

private String noColumn;

补充知识:Mybatis plus @TableName实体中添加非数据库字段报错,如增加请在字段上加注解 @TableField(exist = false)

否则会出现以下异常:

### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column '***' in 'field list'

以上这篇mybatis-plus排除非表中字段的操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持易盾网络。

网友评论