feat: 初始化
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cc.mrbird.febs.server.generator.mapper.GeneratorMapper">
|
||||
<!--查询可用数据库-->
|
||||
<select id="getDatabases" resultType="java.lang.String">
|
||||
SELECT DISTINCT TABLE_SCHEMA
|
||||
FROM information_schema.TABLES
|
||||
</select>
|
||||
|
||||
<!--查询数据库下面的表-->
|
||||
<select id="getTables" resultType="com.yida.data.common.core.entity.system.Table" parameterType="string">
|
||||
SELECT
|
||||
CREATE_TIME createTime,
|
||||
UPDATE_TIME updateTime,
|
||||
TABLE_ROWS dataRows,
|
||||
TABLE_NAME name,
|
||||
TABLE_COMMENT remark
|
||||
FROM
|
||||
information_schema.TABLES
|
||||
WHERE
|
||||
TABLE_SCHEMA = #{schemaName}
|
||||
<if test="tableName != null and tableName != ''">
|
||||
AND TABLE_NAME = #{tableName}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<!--查询数据库表下面的列属性-->
|
||||
<select id="getColumns" resultType="com.yida.data.common.core.entity.system.Column">
|
||||
SELECT
|
||||
COLUMN_NAME name,
|
||||
CASE
|
||||
COLUMN_key
|
||||
WHEN 'PRI' THEN
|
||||
1 ELSE 0
|
||||
END isKey,
|
||||
DATA_TYPE type,
|
||||
COLUMN_COMMENT remark
|
||||
FROM information_schema.COLUMNS
|
||||
WHERE TABLE_SCHEMA = #{schemaName} AND TABLE_NAME = #{tableName}
|
||||
</select>
|
||||
|
||||
<!-- 获取单个数据表 -->
|
||||
<select id="getTable" resultType="com.yida.data.common.core.entity.system.Table">
|
||||
SELECT
|
||||
CREATE_TIME createTime,
|
||||
UPDATE_TIME updateTime,
|
||||
TABLE_ROWS dataRows,
|
||||
TABLE_NAME name,
|
||||
TABLE_COMMENT remark
|
||||
FROM
|
||||
information_schema.TABLES
|
||||
WHERE
|
||||
TABLE_SCHEMA = #{schemaName}
|
||||
<if test="tableName != null and tableName != ''">
|
||||
AND TABLE_NAME = #{tableName}
|
||||
</if>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user