电子档案
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.

26 lines
327 B

  1. #数据库类型转Java类型
  2. tinyint=Integer
  3. smallint=Integer
  4. mediumint=Integer
  5. int=Integer
  6. integer=Integer
  7. bigint=Long
  8. float=Float
  9. double=Double
  10. decimal=BigDecimal
  11. bit=Boolean
  12. char=String
  13. varchar=String
  14. tinytext=String
  15. text=String
  16. mediumtext=String
  17. longtext=String
  18. date=Timestamp
  19. datetime=Timestamp
  20. timestamp=Timestamp