|
@@ -10,6 +10,7 @@
|
|
|
<result column="perms" jdbcType="VARCHAR" property="perms" />
|
|
<result column="perms" jdbcType="VARCHAR" property="perms" />
|
|
|
<result column="type" jdbcType="INTEGER" property="type" />
|
|
<result column="type" jdbcType="INTEGER" property="type" />
|
|
|
<result column="icon" jdbcType="VARCHAR" property="icon" />
|
|
<result column="icon" jdbcType="VARCHAR" property="icon" />
|
|
|
|
|
+ <result column="not_selected_icon_path" jdbcType="VARCHAR" property="notSelectedIconPath" />
|
|
|
<result column="sort" jdbcType="INTEGER" property="sort" />
|
|
<result column="sort" jdbcType="INTEGER" property="sort" />
|
|
|
<result column="level" jdbcType="INTEGER" property="level" />
|
|
<result column="level" jdbcType="INTEGER" property="level" />
|
|
|
<result column="custom" jdbcType="INTEGER" property="custom" />
|
|
<result column="custom" jdbcType="INTEGER" property="custom" />
|
|
@@ -34,6 +35,7 @@
|
|
|
sm.perms,
|
|
sm.perms,
|
|
|
sm.type,
|
|
sm.type,
|
|
|
sm.icon,
|
|
sm.icon,
|
|
|
|
|
+ sm.not_selected_icon_path,
|
|
|
sm.sort,
|
|
sm.sort,
|
|
|
sm.level,
|
|
sm.level,
|
|
|
sm.custom,
|
|
sm.custom,
|
|
@@ -86,6 +88,9 @@
|
|
|
<if test="icon != null">
|
|
<if test="icon != null">
|
|
|
icon,
|
|
icon,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="notSelectedIconPath != null">
|
|
|
|
|
+ not_selected_icon_path,
|
|
|
|
|
+ </if>
|
|
|
<if test="sort != null">
|
|
<if test="sort != null">
|
|
|
sort,
|
|
sort,
|
|
|
</if>
|
|
</if>
|
|
@@ -154,6 +159,9 @@
|
|
|
<if test="icon != null">
|
|
<if test="icon != null">
|
|
|
#{icon,jdbcType=VARCHAR},
|
|
#{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="notSelectedIconPath != null">
|
|
|
|
|
+ #{notSelectedIconPath,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
<if test="sort != null">
|
|
<if test="sort != null">
|
|
|
#{sort,jdbcType=INTEGER},
|
|
#{sort,jdbcType=INTEGER},
|
|
|
</if>
|
|
</if>
|
|
@@ -220,6 +228,9 @@
|
|
|
<if test="icon != null">
|
|
<if test="icon != null">
|
|
|
icon = #{icon,jdbcType=VARCHAR},
|
|
icon = #{icon,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="notSelectedIconPath != null">
|
|
|
|
|
+ not_selected_icon_path = #{notSelectedIconPath,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
<if test="sort != null">
|
|
<if test="sort != null">
|
|
|
sort = #{sort,jdbcType=INTEGER},
|
|
sort = #{sort,jdbcType=INTEGER},
|
|
|
</if>
|
|
</if>
|
|
@@ -378,6 +389,9 @@
|
|
|
<if test="icon != null">
|
|
<if test="icon != null">
|
|
|
and icon = #{icon,jdbcType=VARCHAR}
|
|
and icon = #{icon,jdbcType=VARCHAR}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="notSelectedIconPath != null">
|
|
|
|
|
+ and not_selected_icon_path = #{notSelectedIconPath,jdbcType=VARCHAR}
|
|
|
|
|
+ </if>
|
|
|
<if test="sort != null">
|
|
<if test="sort != null">
|
|
|
and sort = #{sort,jdbcType=INTEGER}
|
|
and sort = #{sort,jdbcType=INTEGER}
|
|
|
</if>
|
|
</if>
|