|
@@ -28,7 +28,7 @@
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectMenuVo">
|
|
|
- select menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
|
|
|
+ select menu_id, menu_name, parent_id, order_num, path, component, query, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
|
|
|
from sys_menu
|
|
|
</sql>
|
|
|
|
|
@@ -168,7 +168,7 @@
|
|
|
<if test="orderNum != null">order_num = #{orderNum},</if>
|
|
|
<if test="path != null and path != ''">path = #{path},</if>
|
|
|
<if test="component != null">component = #{component},</if>
|
|
|
- <if test="query != null">`query` = #{query},</if>
|
|
|
+ <if test="query != null">query = #{query},</if>
|
|
|
<if test="isFrame != null and isFrame != ''">is_frame = #{isFrame},</if>
|
|
|
<if test="isCache != null and isCache != ''">is_cache = #{isCache},</if>
|
|
|
<if test="menuType != null and menuType != ''">menu_type = #{menuType},</if>
|
|
@@ -191,7 +191,7 @@
|
|
|
<if test="orderNum != null">order_num,</if>
|
|
|
<if test="path != null and path != ''">path,</if>
|
|
|
<if test="component != null and component != ''">component,</if>
|
|
|
- <if test="query != null and query != ''">`query`,</if>
|
|
|
+ <if test="query != null and query != ''">query,</if>
|
|
|
<if test="isFrame != null and isFrame != ''">is_frame,</if>
|
|
|
<if test="isCache != null and isCache != ''">is_cache,</if>
|
|
|
<if test="menuType != null and menuType != ''">menu_type,</if>
|