49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="cn.bunny.services.mapper.MenuIconMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="cn.bunny.dao.entity.system.MenuIcon">
|
|
<id column="id" property="id"/>
|
|
<id column="create_time" property="createTime"/>
|
|
<id column="update_time" property="updateTime"/>
|
|
<id column="create_user" property="createUser"/>
|
|
<id column="update_user" property="updateUser"/>
|
|
<id column="is_deleted" property="isDeleted"/>
|
|
<id column="icon_name" property="iconName"/>
|
|
<id column="icon_code" property="iconCode"/>
|
|
</resultMap>
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
id, create_time, update_time, create_user, update_user, is_deleted, icon_name, icon_code
|
|
</sql>
|
|
|
|
<!-- 分页查询系统菜单图标内容 -->
|
|
<select id="selectListByPage" resultType="cn.bunny.dao.entity.system.MenuIcon">
|
|
select
|
|
<include refid="Base_Column_List"/>
|
|
from sys_menu_icon
|
|
<where>
|
|
<if test="dto.iconCode != null and dto.iconCode != ''">
|
|
and icon_code like CONCAT('%',#{dto.iconCode},'%')
|
|
</if>
|
|
<if test="dto.iconName != null and dto.iconName != ''">
|
|
and icon_name like CONCAT('%',#{dto.iconName},'%')
|
|
</if>
|
|
</where>
|
|
order by update_time desc
|
|
</select>
|
|
|
|
<!-- 物理删除系统菜单图标 -->
|
|
<delete id="deleteBatchIdsWithPhysics">
|
|
delete
|
|
from sys_menu_icon
|
|
where id in
|
|
<foreach collection="ids" item="id" open="(" close=")" separator=",">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
|
|
</mapper>
|