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
27 lines
327 B
#数据库类型转Java类型
|
|
tinyint=Integer
|
|
smallint=Integer
|
|
mediumint=Integer
|
|
int=Integer
|
|
integer=Integer
|
|
|
|
bigint=Long
|
|
|
|
float=Float
|
|
|
|
double=Double
|
|
|
|
decimal=BigDecimal
|
|
|
|
bit=Boolean
|
|
|
|
char=String
|
|
varchar=String
|
|
tinytext=String
|
|
text=String
|
|
mediumtext=String
|
|
longtext=String
|
|
|
|
date=Timestamp
|
|
datetime=Timestamp
|
|
timestamp=Timestamp
|