pet/com.datang.pet.mapper/target/classes/mapper/MusicMapper.xml

228 lines
7.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="com.datang.pet.mapper.MusicMapper">
<resultMap id="BaseResultMap" type="com.datang.pet.pojo.Music">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="src" jdbcType="VARCHAR" property="src" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="author" jdbcType="VARCHAR" property="author" />
<result column="poster" jdbcType="VARCHAR" property="poster" />
<result column="is_recommend" jdbcType="CHAR" property="isRecommend" />
</resultMap>
<sql id="Example_Where_Clause">
<where>
<foreach collection="oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Update_By_Example_Where_Clause">
<where>
<foreach collection="example.oredCriteria" item="criteria" separator="or">
<if test="criteria.valid">
<trim prefix="(" prefixOverrides="and" suffix=")">
<foreach collection="criteria.criteria" item="criterion">
<choose>
<when test="criterion.noValue">
and ${criterion.condition}
</when>
<when test="criterion.singleValue">
and ${criterion.condition} #{criterion.value}
</when>
<when test="criterion.betweenValue">
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when test="criterion.listValue">
and ${criterion.condition}
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql id="Base_Column_List">
id, src, name, author, poster, is_recommend
</sql>
<select id="selectByExample" parameterType="com.datang.pet.pojo.MusicExample" resultMap="BaseResultMap">
select
<if test="distinct">
distinct
</if>
<include refid="Base_Column_List" />
from music
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
<if test="orderByClause != null">
order by ${orderByClause}
</if>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from music
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from music
where id = #{id,jdbcType=INTEGER}
</delete>
<delete id="deleteByExample" parameterType="com.datang.pet.pojo.MusicExample">
delete from music
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</delete>
<insert id="insert" parameterType="com.datang.pet.pojo.Music">
insert into music (id, src, name,
author, poster, is_recommend
)
values (#{id,jdbcType=INTEGER}, #{src,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{author,jdbcType=VARCHAR}, #{poster,jdbcType=VARCHAR}, #{isRecommend,jdbcType=CHAR}
)
</insert>
<insert id="insertSelective" parameterType="com.datang.pet.pojo.Music">
insert into music
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="src != null">
src,
</if>
<if test="name != null">
name,
</if>
<if test="author != null">
author,
</if>
<if test="poster != null">
poster,
</if>
<if test="isRecommend != null">
is_recommend,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="src != null">
#{src,jdbcType=VARCHAR},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="author != null">
#{author,jdbcType=VARCHAR},
</if>
<if test="poster != null">
#{poster,jdbcType=VARCHAR},
</if>
<if test="isRecommend != null">
#{isRecommend,jdbcType=CHAR},
</if>
</trim>
</insert>
<select id="countByExample" parameterType="com.datang.pet.pojo.MusicExample" resultType="java.lang.Long">
select count(*) from music
<if test="_parameter != null">
<include refid="Example_Where_Clause" />
</if>
</select>
<update id="updateByExampleSelective" parameterType="map">
update music
<set>
<if test="record.id != null">
id = #{record.id,jdbcType=INTEGER},
</if>
<if test="record.src != null">
src = #{record.src,jdbcType=VARCHAR},
</if>
<if test="record.name != null">
name = #{record.name,jdbcType=VARCHAR},
</if>
<if test="record.author != null">
author = #{record.author,jdbcType=VARCHAR},
</if>
<if test="record.poster != null">
poster = #{record.poster,jdbcType=VARCHAR},
</if>
<if test="record.isRecommend != null">
is_recommend = #{record.isRecommend,jdbcType=CHAR},
</if>
</set>
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByExample" parameterType="map">
update music
set id = #{record.id,jdbcType=INTEGER},
src = #{record.src,jdbcType=VARCHAR},
name = #{record.name,jdbcType=VARCHAR},
author = #{record.author,jdbcType=VARCHAR},
poster = #{record.poster,jdbcType=VARCHAR},
is_recommend = #{record.isRecommend,jdbcType=CHAR}
<if test="_parameter != null">
<include refid="Update_By_Example_Where_Clause" />
</if>
</update>
<update id="updateByPrimaryKeySelective" parameterType="com.datang.pet.pojo.Music">
update music
<set>
<if test="src != null">
src = #{src,jdbcType=VARCHAR},
</if>
<if test="name != null">
name = #{name,jdbcType=VARCHAR},
</if>
<if test="author != null">
author = #{author,jdbcType=VARCHAR},
</if>
<if test="poster != null">
poster = #{poster,jdbcType=VARCHAR},
</if>
<if test="isRecommend != null">
is_recommend = #{isRecommend,jdbcType=CHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.datang.pet.pojo.Music">
update music
set src = #{src,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR},
author = #{author,jdbcType=VARCHAR},
poster = #{poster,jdbcType=VARCHAR},
is_recommend = #{isRecommend,jdbcType=CHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>