初步修改前端

This commit is contained in:
2025-10-08 09:34:50 +08:00
parent 741e89bc62
commit d9ea2e842b
14 changed files with 133 additions and 54 deletions

View File

@@ -9,6 +9,7 @@
<result column="name" property="name" jdbcType="VARCHAR"/>
<result column="parent_id" property="parentID" jdbcType="VARCHAR"/>
<result column="url" property="url" jdbcType="VARCHAR"/>
<result column="component" property="component" jdbcType="VARCHAR"/>
<result column="icon" property="icon" jdbcType="VARCHAR"/>
<result column="order_num" property="orderNum" jdbcType="INTEGER"/>
<result column="type" property="type" jdbcType="INTEGER"/>
@@ -22,7 +23,7 @@
<!-- 基础字段 -->
<sql id="Base_Column_List">
m.id, m.menu_id, m.name, m.parent_id, m.url, m.icon, m.order_num, m.type,
m.id, m.menu_id, m.name, m.parent_id, m.url, m.component, m.icon, m.order_num, m.type,
m.creator, m.updater, m.create_time, m.update_time, m.delete_time, m.deleted
</sql>
@@ -125,6 +126,7 @@
<if test="name != null">name,</if>
<if test="type != null">type,</if>
<if test="url != null">url,</if>
<if test="component != null">component,</if>
<if test="icon != null">icon,</if>
<if test="creator != null">creator,</if>
<if test="createTime != null">create_time,</if>
@@ -137,6 +139,7 @@
<if test="name != null">#{name},</if>
<if test="type != null">#{type},</if>
<if test="url != null">#{url},</if>
<if test="component != null">#{component},</if>
<if test="icon != null">#{icon},</if>
<if test="creator != null">#{creator},</if>
<if test="createTime != null">#{createTime},</if>
@@ -153,6 +156,7 @@
<if test="name != null">name = #{name},</if>
<if test="type != null">type = #{type},</if>
<if test="url != null">url = #{url},</if>
<if test="component != null">component = #{component},</if>
<if test="icon != null">icon = #{icon},</if>
<if test="updater != null">updater = #{updater},</if>
update_time = NOW()