Files
edu-old/febs-server/febs-server-generator/src/main/resources/mapper/GeneratorMapper.xml
T
2024-04-09 11:34:46 +08:00

58 lines
1.9 KiB
XML

<?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>