<?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.dy.pipIrrGlobal.daoSe.SeRechargeProfileMapper">
|
<resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile">
|
<!--@mbg.generated-->
|
<!--@Table se_recharge_profile-->
|
<id column="id" jdbcType="BIGINT" property="id" />
|
<result column="recharge_amount" jdbcType="INTEGER" property="rechargeAmount" />
|
<result column="sort" jdbcType="INTEGER" property="sort" />
|
<result column="deleted" jdbcType="BIGINT" property="deleted" />
|
</resultMap>
|
<sql id="Base_Column_List">
|
<!--@mbg.generated-->
|
id, recharge_amount, sort, deleted
|
</sql>
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
<!--@mbg.generated-->
|
select
|
<include refid="Base_Column_List" />
|
from se_recharge_profile
|
where id = #{id,jdbcType=BIGINT}
|
</select>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
<!--@mbg.generated-->
|
delete from se_recharge_profile
|
where id = #{id,jdbcType=BIGINT}
|
</delete>
|
<insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile">
|
<!--@mbg.generated-->
|
insert into se_recharge_profile (id, recharge_amount, sort,
|
deleted)
|
values (#{id,jdbcType=BIGINT}, #{rechargeAmount,jdbcType=INTEGER}, #{sort,jdbcType=INTEGER},
|
#{deleted,jdbcType=BIGINT})
|
</insert>
|
<insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile">
|
<!--@mbg.generated-->
|
insert into se_recharge_profile
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
id,
|
</if>
|
<if test="rechargeAmount != null">
|
recharge_amount,
|
</if>
|
<if test="sort != null">
|
sort,
|
</if>
|
<if test="deleted != null">
|
deleted,
|
</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
#{id,jdbcType=BIGINT},
|
</if>
|
<if test="rechargeAmount != null">
|
#{rechargeAmount,jdbcType=INTEGER},
|
</if>
|
<if test="sort != null">
|
#{sort,jdbcType=INTEGER},
|
</if>
|
<if test="deleted != null">
|
#{deleted,jdbcType=BIGINT},
|
</if>
|
</trim>
|
</insert>
|
<update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile">
|
<!--@mbg.generated-->
|
update se_recharge_profile
|
<set>
|
<if test="rechargeAmount != null">
|
recharge_amount = #{rechargeAmount,jdbcType=INTEGER},
|
</if>
|
<if test="sort != null">
|
sort = #{sort,jdbcType=INTEGER},
|
</if>
|
<if test="deleted != null">
|
deleted = #{deleted,jdbcType=BIGINT},
|
</if>
|
</set>
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
<update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoSe.SeRechargeProfile">
|
<!--@mbg.generated-->
|
update se_recharge_profile
|
set recharge_amount = #{rechargeAmount,jdbcType=INTEGER},
|
sort = #{sort,jdbcType=INTEGER},
|
deleted = #{deleted,jdbcType=BIGINT}
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
|
<!--获取虚拟卡常用充值金额配置-->
|
<select id="gerRechargeProfiles" resultType="com.dy.pipIrrGlobal.voSe.VoRechargeProfile">
|
SELECT
|
id AS profileId,
|
recharge_amount AS rechargeAmount
|
FROM se_recharge_profile
|
ORDER BY sort
|
</select>
|
|
|
|
</mapper>
|