数据库字段类型、实体类字段类型、mapper文件jdbcType三者对应关系:
数据库字段类型 | 实体类字段类型 | mapper文件jdbcType |
bigint | Long | JdbcType.BIGINT |
decimal | String | JdbcType.VARCHAR |
varchar | String | JdbcType.VARCHAR |
char | String | JdbcType.CHAR |
int | Integer | JdbcType.INTEGER |
date | LocalDate | JdbcType.DATE |
date:年月日
datetime:年月日时分秒