修改代码生成器

This commit is contained in:
TinyAnts 2022-08-16 18:00:48 +08:00
parent 5b074e8b34
commit f19f2cbbe9
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public interface GenTableMapper extends IBaseMapper<GenTable> {
"FROM information_schema.tables " + "FROM information_schema.tables " +
"WHERE table_schema = (SELECT database()) " + "WHERE table_schema = (SELECT database()) " +
"AND table_name NOT LIKE 'qrtz_%' AND table_name NOT LIKE 'gen_%' " + "AND table_name NOT LIKE 'qrtz_%' AND table_name NOT LIKE 'gen_%' " +
"AND table_name NOT IN (select table_name from ls_gen_table)", "AND table_name NOT IN (select table_name from la_gen_table)",
"<if test=\"tableName != null and tableName != ''\">" + "<if test=\"tableName != null and tableName != ''\">" +
"AND lower(table_name) like lower(concat('%', #{tableName}, '%'))" + "AND lower(table_name) like lower(concat('%', #{tableName}, '%'))" +
"</if>", "</if>",