electripper/electripper-system/src/main/resources/mapper/system/EtChannelMapper.xml
2024-09-13 20:27:36 +08:00

100 lines
4.2 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.system.mapper.EtChannelMapper">
<resultMap type="ChannelVO" id="SmChannelResult" autoMapping="true">
<result property="costRate" column="cost_rate" typeHandler="com.ruoyi.system.mapper.typehandler.NonNullDecimalTypeHandler"/>
</resultMap>
<sql id="selectSmChannelVo">
select
sc.channel_id,
sc.name,
sc.code,
sc.enabled,
sc.cost_rate,
sc.picture,
sc.merchant_id,
sc.api_v3_key,
sc.notify_url,
sc.private_key_path,
sc.merchant_serial_number,
sc.refund_notify_url
from et_channel sc
</sql>
<sql id="searchCondition">
<if test="query.name != null and query.name != ''"> and sc.name like concat('%', #{query.name}, '%')</if>
<if test="query.enabled != null "> and sc.enabled = #{query.enabled}</if>
<if test="query.channelIds != null and query.channelIds.size() > 0 ">
and sc.channel_id in
<foreach item="item" collection="query.channelIds" open="(" separator="," close=")">
#{item}
</foreach>
</if>
</sql>
<select id="selectSmChannelList" parameterType="ChannelQuery" resultMap="SmChannelResult">
<include refid="selectSmChannelVo"/>
<where>
<include refid="searchCondition"/>
</where>
</select>
<select id="selectSmChannelByChannelId" parameterType="Long" resultMap="SmChannelResult">
<include refid="selectSmChannelVo"/>
where sc.channel_id = #{channelId}
</select>
<insert id="insertSmChannel" parameterType="Channel">
insert into et_channel
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="channelId != null">channel_id,</if>
<if test="name != null">`name`,</if>
<if test="code != null">`code`,</if>
<if test="enabled != null">enabled,</if>
<if test="costRate != null">cost_rate,</if>
<if test="picture != null">picture,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="channelId != null">#{channelId},</if>
<if test="name != null">#{name},</if>
<if test="code != null">#{code},</if>
<if test="enabled != null">#{enabled},</if>
<if test="costRate != null">#{costRate},</if>
<if test="picture != null">#{picture},</if>
</trim>
</insert>
<update id="updateSmChannel" parameterType="Channel">
update et_channel
<trim prefix="SET" suffixOverrides=",">
<if test="data.name != null">name = #{data.name},</if>
<if test="data.code != null">code = #{data.code},</if>
<if test="data.enabled != null">enabled = #{data.enabled},</if>
<if test="data.costRate != null">cost_rate = #{data.costRate},</if>
<if test="data.picture != null">picture = #{data.picture},</if>
<if test="data.merchantId != null">merchant_id = #{data.merchantId},</if>
<if test="data.apiV3Key != null">api_v3_key = #{data.apiV3Key},</if>
<if test="data.notifyUrl != null">notify_url = #{data.notifyUrl},</if>
<if test="data.privateKeyPath != null">private_key_path = #{data.privateKeyPath},</if>
<if test="data.merchantSerialNumber != null">merchant_serial_number = #{data.merchantSerialNumber},</if>
<if test="data.refundNotifyUrl != null">refund_notify_url = #{data.refundNotifyUrl},</if>
</trim>
where channel_id = #{data.channelId}
</update>
<delete id="deleteSmChannelByChannelId" parameterType="Long">
delete from et_channel where channel_id = #{channelId}
</delete>
<delete id="deleteSmChannelByChannelIds" parameterType="String">
delete from et_channel where channel_id in
<foreach item="channelId" collection="array" open="(" separator="," close=")">
#{channelId}
</foreach>
</delete>
</mapper>