Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 590 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 590 Bytes

Mybatis-Table-Generate

使用Js批量生成Mybatis-Generate中的<table></table>

  • 实际效果(数据库表名下划线分隔,其他分隔符号可直接更改index.html中js的table.replace('_', '');)
  • 获取数据库中的所有表SQL

select table_name from information_schema.tables where table_schema='数据库名称' and table_type='base table';