This commit is contained in:
menxipeng
2025-07-16 16:33:05 +08:00
parent 991ca432e1
commit d4178f9043
8 changed files with 78 additions and 39 deletions

View File

@@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.system.mapper.CategoryInfoMapper">
<resultMap type="CategoryInfo" id="CategoryInfoResult">
<result property="id" column="id" />
<result property="categoryId" column="category_id" />
@@ -21,7 +21,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectCategoryInfoList" parameterType="CategoryInfo" resultMap="CategoryInfoResult">
<include refid="selectCategoryInfoVo"/>
<where>
<where>
<if test="categoryId != null "> and category_id = #{categoryId}</if>
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
<if test="isDel != null "> and is_del = #{isDel}</if>
@@ -29,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="modify != null and modify != ''"> and modify = #{modify}</if>
</where>
</select>
<select id="selectCategoryInfoById" parameterType="String" resultMap="CategoryInfoResult">
<include refid="selectCategoryInfoVo"/>
where id = #{id}
@@ -76,9 +76,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</delete>
<delete id="deleteCategoryInfoByIds" parameterType="String">
delete from category_info where id in
delete from category_info where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>
<select id="selectCategoryList" resultType="com.ruoyi.common.core.domain.entity.CategoryInfo">
<include refid="selectCategoryInfoVo" /> where is_del = 0
</select>
</mapper>