rtos-mini-service4/mapper/target/classes/mappers/base/AnnouncementMapper.xml

134 lines
3.9 KiB
XML
Raw Normal View History

2024-06-13 15:27:54 +08:00
<?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.haitongauto.mapper.base.AnnouncementMapper">
<!--添加数据-->
<select id="insert" parameterType="com.haitongauto.models.pojo.Announcement" resultType="String">
insert into applet_announcement
(
id,
sort,
title,
abstracts,
announcement,
announcement_text,
author,
reading_volume,
create_time,
update_time,
is_del
)
values
(
#{id},
#{sort},
#{title},
#{abstracts},
#{announcement},
#{announcement_text},
#{author},
#{reading_volume},
current_timestamp,
current_timestamp,
0
)
returning id
</select>
<!--软删除-->
<update id="logicDel" parameterType="String">
update applet_announcement set is_del=1 where id=#{id}
</update>
<!--硬删除-->
<delete id="delete" parameterType="String">
delete from applet_announcement where id=#{id}
</delete>
<!--数据更新-->
<update id="update" parameterType="com.haitongauto.models.pojo.Announcement">
update applet_announcement
<set>
<if test="id != null and id != ''">
id = #{id},
</if>
<if test="sort != null">
sort = #{sort},
</if>
<if test="title != null and title != ''">
title = #{title},
</if>
<if test="abstracts != null and abstracts != ''">
abstracts = #{abstracts},
</if>
<if test="announcement != null and announcement != ''">
announcement = #{announcement},
</if>
<if test="announcement_text != null and announcement_text != ''">
announcement_text = #{announcement_text},
</if>
<if test="author != null and author != ''">
author = #{author},
</if>
<if test="reading_volume != null">
reading_volume = #{reading_volume},
</if>
<if test="create_time != null and create_time != ''">
create_time = #{create_time}::timestamp,
</if>
<if test="is_del != null">
is_del = #{is_del},
</if>
update_time = current_timestamp
</set>
where id = #{id}
</update>
<!--指定Id的记录-->
<select id="getById" parameterType="String" resultType="com.haitongauto.models.pojo.Announcement">
select
id,
sort,
title,
abstracts,
announcement,
announcement_text,
author,
reading_volume,
create_time,
update_time,
is_del
from applet_announcement
where id = #{id}
</select>
<!--数据列表-->
<select id="getList" resultType="com.haitongauto.models.pojo.Announcement">
select
id,
sort,
title,
abstracts,
announcement,
announcement_text,
author,
reading_volume,
create_time,
update_time,
is_del
from applet_announcement
where is_del=0
order by create_time desc
</select>
<select id="getListBySort" resultType="com.haitongauto.models.pojo.Announcement">
select
*
from applet_announcement
where is_del=0
<if test="sort!=null ">
and sort =#{sort}
</if>
<if test="keyWords!=null and keyWords!=''">
and (title like concat('%',#{keyWords},'%') or announcement like concat('%',#{keyWords},'%'))
</if>
order by create_time desc
</select>
</mapper>