public interface MockDbDataMapper
@Select(value="select * from information_schema.TABLES where TABLE_SCHEMA=(select database())") List<Map<String,Object>> listTable()
@Select(value="select * from information_schema.COLUMNS where TABLE_SCHEMA = (select database()) and TABLE_NAME=#{tableName}")
List<Map<String,Object>> listTableColumn(String tableName)
tableName - 表名Copyright © 2022. All rights reserved.