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

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