123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?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="com.kmall.api.dao.ApiCategoryMapper">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.kmall.api.entity.CategoryVo" id="categoryMap">
- <result property="id" column="id"/>
- <result property="name" column="name"/>
- <result property="keywords" column="keywords"/>
- <result property="front_desc" column="front_desc"/>
- <result property="parent_id" column="parent_id"/>
- <result property="sort_order" column="sort_order"/>
- <result property="show_index" column="show_index"/>
- <result property="is_show" column="is_show"/>
- <result property="banner_url" column="banner_url"/>
- <result property="icon_url" column="icon_url"/>
- <result property="img_url" column="img_url"/>
- <result property="wap_banner_url" column="wap_banner_url"/>
- <result property="level" column="level"/>
- <result property="type" column="type"/>
- <result property="front_name" column="front_name"/>
- <result property="merchSn" column="merch_sn"/>
- <result property="storeId" column="store_id"/>
- </resultMap>
- <select id="queryObject" resultMap="categoryMap">
- select * from mall_category where id = #{value}
- </select>
- <select id="queryList" resultMap="categoryMap">
- select
- <if test="fields != null and fields != ''">
- ${fields}
- </if>
- <if test="fields == null or fields == ''">
- *
- </if>
- from mall_category
- where 1 = 1 and (is_show = 1
- <if test="parent_id != null and parent_id != null">
- and parent_id = #{parent_id}
- </if>
- <if test="store_id != null and store_id != null">
- and store_id = #{store_id}
- </if>
- <if test="notName != null and notName != null">
- and 'name' != #{notName}
- </if>
- <if test="ids != null and ids.size > 0">
- and id in
- <foreach item="item" collection="ids" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- )
- <choose>
- <when test="sidx != null and sidx.trim() != ''">
- order by ${sidx} ${order}
- </when>
- <otherwise>
- order by id asc
- </otherwise>
- </choose>
- <if test="offset != null and limit != null">
- limit #{offset}, #{limit}
- </if>
- </select>
- <select id="queryTotal" resultType="int">
- select count(*) from mall_category
- </select>
- <insert id="save" parameterType="com.kmall.api.entity.CategoryVo">
- insert into mall_category
- (
- `id`,
- `name`,
- `keywords`,
- `front_desc`,
- `parent_id`,
- `sort_order`,
- `show_index`,
- `is_show`,
- `banner_url`,
- `icon_url`,
- `img_url`,
- `wap_banner_url`,
- `level`,
- `type`,
- `front_name`
- )
- values
- (
- #{id},
- #{name},
- #{keywords},
- #{front_desc},
- #{parent_id},
- #{sort_order},
- #{show_index},
- #{is_show},
- #{banner_url},
- #{icon_url},
- #{img_url},
- #{wap_banner_url},
- #{level},
- #{type},
- #{front_name}
- )
- </insert>
- <update id="update" parameterType="com.kmall.api.entity.CategoryVo">
- update mall_category
- <set>
- <if test="name != null">`name` = #{name},</if>
- <if test="keywords != null">`keywords` = #{keywords},</if>
- <if test="front_desc != null">`front_desc` = #{front_desc},</if>
- <if test="parent_id != null">`parent_id` = #{parent_id},</if>
- <if test="sort_order != null">`sort_order` = #{sort_order},</if>
- <if test="show_index != null">`show_index` = #{show_index},</if>
- <if test="is_show != null">`is_show` = #{is_show},</if>
- <if test="banner_url != null">`banner_url` = #{banner_url},</if>
- <if test="icon_url != null">`icon_url` = #{icon_url},</if>
- <if test="img_url != null">`img_url` = #{img_url},</if>
- <if test="wap_banner_url != null">`wap_banner_url` = #{wap_banner_url},</if>
- <if test="level != null">`level` = #{level},</if>
- <if test="type != null">`type` = #{type},</if>
- <if test="front_name != null">`front_name` = #{front_name}</if>
- </set>
- where id = #{id}
- </update>
- <select id="queryListByParentId" resultMap="categoryMap">
- select
- <if test="fields != null and fields != ''">
- ${fields}
- </if>
- <if test="fields == null or fields == ''">
- *
- </if>
- from mall_category
- where 1 = 1 and is_show = 1
- <if test="parent_id != null and parent_id != null">
- and FIND_IN_SET(id, getCategoryChildLst(#{parent_id})) and id !=#{parent_id}
- </if>
- <if test="notName != null and notName != null">
- and 'name' != #{notName}
- </if>
- <if test="store_id != null and store_id != null">
- and store_id = #{store_id}
- </if>
- <if test="ids != null and ids.size > 0">
- and id in
- <foreach item="item" collection="ids" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- <choose>
- <when test="sidx != null and sidx.trim() != ''">
- order by ${sidx} ${order}
- </when>
- <otherwise>
- order by id asc
- </otherwise>
- </choose>
- <if test="offset != null and limit != null">
- limit #{offset}, #{limit}
- </if>
- </select>
- </mapper>
|