update 删除多余 参数类型

This commit is contained in:
疯狂的狮子li
2022-03-04 13:42:08 +08:00
parent f1bf549e0f
commit 2d813b2191
2 changed files with 6 additions and 6 deletions

View File

@ -53,13 +53,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateTime" column="update_time" />
</resultMap>
<select id="selectPageDbTableList" parameterType="GenTable" resultMap="GenTableResult">
<select id="selectPageDbTableList" resultMap="GenTableResult">
select table_name, table_comment, create_time, update_time
from information_schema.tables
${ew.getCustomSqlSegment}
</select>
<select id="selectDbTableList" parameterType="GenTable" resultMap="GenTableResult">
<select id="selectDbTableList" resultMap="GenTableResult">
select table_name, table_comment, create_time, update_time
from information_schema.tables
${ew.getCustomSqlSegment}