You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
327 B

3 years ago
#数据库类型转Java类型
tinyint=Integer
smallint=Integer
mediumint=Integer
int=Integer
integer=Integer
3 years ago
3 years ago
bigint=Long
3 years ago
3 years ago
float=Float
3 years ago
3 years ago
double=Double
3 years ago
3 years ago
decimal=BigDecimal
3 years ago
3 years ago
bit=Boolean
3 years ago
3 years ago
char=String
varchar=String
tinytext=String
text=String
mediumtext=String
longtext=String
3 years ago
3 years ago
date=Timestamp
datetime=Timestamp
timestamp=Timestamp