|
|
@ -5,12 +5,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
<mapper namespace="com.ruoyi.model.mapper.AppletPetTypeMapper"> |
|
|
|
|
|
|
|
<resultMap type="AppletPetType" id="AppletPetTypeResult"> |
|
|
|
<result property="id" column="id" /> |
|
|
|
<result property="title" column="title" /> |
|
|
|
<result property="image" column="image" /> |
|
|
|
<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="selectAppletPetTypeVo"> |
|
|
|
select title, image from applet_pet_type |
|
|
|
select id, title, image, del_flag, create_by, create_time, update_by, update_time from applet_pet_type |
|
|
|
</sql> |
|
|
|
|
|
|
|
<select id="selectAppletPetTypeList" parameterType="AppletPetType" resultMap="AppletPetTypeResult"> |
|
|
@ -21,39 +27,55 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
|
</where> |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="selectAppletPetTypeByTitle" parameterType="String" resultMap="AppletPetTypeResult"> |
|
|
|
<select id="selectAppletPetTypeById" parameterType="Long" resultMap="AppletPetTypeResult"> |
|
|
|
<include refid="selectAppletPetTypeVo"/> |
|
|
|
where title = #{title} |
|
|
|
where id = #{id} |
|
|
|
</select> |
|
|
|
|
|
|
|
<insert id="insertAppletPetType" parameterType="AppletPetType"> |
|
|
|
<insert id="insertAppletPetType" parameterType="AppletPetType" useGeneratedKeys="true" keyProperty="id"> |
|
|
|
insert into applet_pet_type |
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=","> |
|
|
|
<if test="title != null and title != ''">title,</if> |
|
|
|
<if test="image != null">image,</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="title != null and title != ''">#{title},</if> |
|
|
|
<if test="image != null">#{image},</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="updateAppletPetType" parameterType="AppletPetType"> |
|
|
|
update applet_pet_type |
|
|
|
<trim prefix="SET" suffixOverrides=","> |
|
|
|
<if test="title != null and title != ''">title = #{title},</if> |
|
|
|
<if test="image != null">image = #{image},</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 title = #{title} |
|
|
|
where id = #{id} |
|
|
|
</update> |
|
|
|
|
|
|
|
<delete id="deleteAppletPetTypeByTitle" parameterType="String"> |
|
|
|
delete from applet_pet_type where title = #{title} |
|
|
|
<delete id="deleteAppletPetTypeById" parameterType="Long"> |
|
|
|
delete from applet_pet_type where id = #{id} |
|
|
|
</delete> |
|
|
|
|
|
|
|
<delete id="deleteAppletPetTypeByTitles" parameterType="String"> |
|
|
|
delete from applet_pet_type where title in |
|
|
|
<foreach item="title" collection="array" open="(" separator="," close=")"> |
|
|
|
#{title} |
|
|
|
<delete id="deleteAppletPetTypeByIds" parameterType="String"> |
|
|
|
delete from applet_pet_type where id in |
|
|
|
<foreach item="id" collection="array" open="(" separator="," close=")"> |
|
|
|
#{id} |
|
|
|
</foreach> |
|
|
|
</delete> |
|
|
|
</mapper> |