当前位置:主页 > 软件编程 > JAVA代码 >

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

时间:2022-08-16 12:38:01 | 栏目:JAVA代码 | 点击:

使用 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'

您可能感兴趣的文章:

相关文章