From 04d2803720568c1e7227e205d0f27cf9b83a2f00 Mon Sep 17 00:00:00 2001 From: zhanghl <253316343@qq.com> Date: 星期二, 06 五月 2025 14:47:04 +0800 Subject: [PATCH] BOM 基础代码 --- aps-modules/aps-gen/src/main/resources/mapper/generator/GenTableMapper.xml | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aps-modules/aps-gen/src/main/resources/mapper/generator/GenTableMapper.xml b/aps-modules/aps-gen/src/main/resources/mapper/generator/GenTableMapper.xml index d901fb5..167a3c9 100644 --- a/aps-modules/aps-gen/src/main/resources/mapper/generator/GenTableMapper.xml +++ b/aps-modules/aps-gen/src/main/resources/mapper/generator/GenTableMapper.xml @@ -61,10 +61,10 @@ <include refid="selectGenTableVo"/> <where> <if test="tableName != null and tableName != ''"> - AND lower(table_name) like lower(concat('%', #{tableName}, '%')) + AND lower(table_name) like '%'|| #{tableName}|| '%' </if> <if test="tableComment != null and tableComment != ''"> - AND lower(table_comment) like lower(concat('%', #{tableComment}, '%')) + AND lower(table_comment) like '%' || #{tableComment} ||'%' </if> <if test="params.beginTime != null and params.beginTime != ''"><!-- 寮�濮嬫椂闂存绱� --> and to_char(create_time,'yyyy-MM-dd') >= to_char(#{params.beginTime},'yyyy-MM-dd') @@ -81,10 +81,10 @@ WHERE table_name NOT LIKE 'qrtz_%' AND table_name NOT LIKE 'gen_%' AND table_name NOT IN (select table_name from gen_table) <if test="tableName != null and tableName != ''"> - AND lower(table_name) like lower(concat('%', #{tableName}, '%')) + AND lower(table_name) like '%'|| #{tableName}||'%' </if> <if test="tableComment != null and tableComment != ''"> - AND lower(table_comment) like lower(concat('%', #{tableComment}, '%')) + AND lower(table_comment) like '%'|| #{tableComment}||'%' </if> <if test="params.beginTime != null and params.beginTime != ''"><!-- 寮�濮嬫椂闂存绱� --> and create_time::date >= to_date(#{params.beginTime},'yyyy-MM-dd') -- Gitblit v1.9.3