77 lines
3.5 KiB
XML
77 lines
3.5 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="com.ruoyi.front.mapper.HomePageCarouselMapper">
|
|
|
|
<resultMap type="HomePageCarousel" id="HomePageCarouselResult">
|
|
<result property="id" column="id" />
|
|
<result property="pictureUrl" column="picture_url" />
|
|
<result property="delFlag" column="del_flag" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="updateBy" column="update_by" />
|
|
<result property="updateTime" column="update_time" />
|
|
</resultMap>
|
|
|
|
<sql id="selectHomePageCarouselVo">
|
|
select id, picture_url, del_flag, create_by, create_time, update_by, update_time from home_page_carousel
|
|
</sql>
|
|
|
|
<select id="selectHomePageCarouselList" parameterType="HomePageCarousel" resultMap="HomePageCarouselResult">
|
|
<include refid="selectHomePageCarouselVo"/>
|
|
<where>
|
|
<if test="pictureUrl != null and pictureUrl != ''"> and picture_url = #{pictureUrl}</if>
|
|
</where>
|
|
</select>
|
|
|
|
<select id="selectHomePageCarouselById" parameterType="Long" resultMap="HomePageCarouselResult">
|
|
<include refid="selectHomePageCarouselVo"/>
|
|
where id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertHomePageCarousel" parameterType="HomePageCarousel" useGeneratedKeys="true" keyProperty="id">
|
|
insert into home_page_carousel
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="pictureUrl != null and pictureUrl != ''">picture_url,</if>
|
|
<if test="delFlag != null">del_flag,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="pictureUrl != null and pictureUrl != ''">#{pictureUrl},</if>
|
|
<if test="delFlag != null">#{delFlag},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateHomePageCarousel" parameterType="HomePageCarousel">
|
|
update home_page_carousel
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="pictureUrl != null and pictureUrl != ''">picture_url = #{pictureUrl},</if>
|
|
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteHomePageCarouselById" parameterType="Long">
|
|
delete from home_page_carousel where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteHomePageCarouselByIds" parameterType="String">
|
|
delete from home_page_carousel where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
|
|
</mapper> |