Pre Merge pull request !537 from 文兵/master

pull/537/MERGE
文兵 2025-02-27 02:57:28 +00:00 committed by Gitee
commit 318d296160
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select table_name, table_comment, create_time, update_time from information_schema.tables
where table_schema = (select database())
AND table_name NOT LIKE 'qrtz\_%' AND table_name NOT LIKE 'gen\_%'
AND table_name NOT IN (select table_name from gen_table)
AND table_name NOT IN (SELECT CAST(IFNULL((SELECT table_name FROM gen_table), '') AS CHAR) AS table_name)
<if test="tableName != null and tableName != ''">
AND lower(table_name) like lower(concat('%', #{tableName}, '%'))
</if>