如果字段名是关键字,用mybatisplus时会报以下错误:
bad SQL grammar []; nested exception is java.sql.BatchUpdateException: ORA-01747: user.table.column, table.column 或列说明无效
解决方法:在字段名前后加上[``]
@TableField("MODE
")
private String mode;
如果字段名是关键字,用mybatisplus时会报以下错误:
bad SQL grammar []; nested exception is java.sql.BatchUpdateException: ORA-01747: user.table.column, table.column 或列说明无效
解决方法:在字段名前后加上[``]
@TableField("MODE
")
private String mode;