92 lines
3.0 KiB
XML
92 lines
3.0 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.haitongauto.mapper.base.RequesterMapper">
|
||
|
<!--添加数据-->
|
||
|
<select id="insert" parameterType="com.haitongauto.models.pojo.Requester" resultType="String">
|
||
|
insert into applet_requester
|
||
|
(
|
||
|
id,
|
||
|
url,
|
||
|
param_map,
|
||
|
request_type,
|
||
|
type_description,
|
||
|
create_time,
|
||
|
update_time,
|
||
|
is_del
|
||
|
)
|
||
|
values
|
||
|
(
|
||
|
#{id},
|
||
|
#{url},
|
||
|
#{param_map},
|
||
|
#{request_type},
|
||
|
#{type_description},
|
||
|
current_timestamp,
|
||
|
current_timestamp,
|
||
|
0
|
||
|
)
|
||
|
returning id
|
||
|
</select>
|
||
|
<!--软删除-->
|
||
|
<update id="logicDel" parameterType="String">
|
||
|
update applet_requester set is_del=1 where id=#{id}
|
||
|
</update>
|
||
|
<!--硬删除-->
|
||
|
<delete id="delete" parameterType="String">
|
||
|
delete from applet_requester where id=#{id}
|
||
|
</delete>
|
||
|
<!--数据更新-->
|
||
|
<update id="update" parameterType="com.haitongauto.models.pojo.Requester">
|
||
|
update applet_requester
|
||
|
<set>
|
||
|
<if test="id != null and id != ''">
|
||
|
id = #{id},
|
||
|
</if>
|
||
|
<if test="url != null and url != ''">
|
||
|
url = #{url},
|
||
|
</if>
|
||
|
<if test="param_map != null and param_map != ''">
|
||
|
param_map = #{param_map},
|
||
|
</if>
|
||
|
<if test="request_type != null">
|
||
|
request_type = #{request_type},
|
||
|
</if>
|
||
|
<if test="type_description != null and type_description != ''">
|
||
|
type_description = #{type_description},
|
||
|
</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.Requester">
|
||
|
select
|
||
|
id,url,param_map,request_type,type_description,create_time,update_time,is_del
|
||
|
from applet_requester
|
||
|
where id=#{id} and is_del=0
|
||
|
</select>
|
||
|
<!--数据列表-->
|
||
|
<select id="getList" resultType="com.haitongauto.models.pojo.Requester">
|
||
|
select
|
||
|
id,url,param_map,request_type,type_description,create_time,update_time,is_del
|
||
|
from applet_requester
|
||
|
where is_del=0
|
||
|
order by create_time desc
|
||
|
</select>
|
||
|
|
||
|
<select id="getRequesterForType" resultType="com.haitongauto.models.pojo.Requester">
|
||
|
select
|
||
|
id,url,param_map,request_type,type_description,create_time,update_time,is_del
|
||
|
from applet_requester
|
||
|
where is_del=0
|
||
|
and request_type=#{request_type}
|
||
|
</select>
|
||
|
</mapper>
|