|
@@ -4,11 +4,12 @@
|
|
|
<resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
|
<result column="customer_name" property="customerName" jdbcType="VARCHAR" />
|
|
|
+ <result column="before_money" property="beforeMony" jdbcType="DOUBLE" />
|
|
|
<result column="recharge_mony" property="rechargeMony" jdbcType="DOUBLE" />
|
|
|
<result column="recharge_time" property="rechargeTime" jdbcType="VARCHAR" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
- id, customer_name, recharge_mony, recharge_time
|
|
|
+ id, customer_name, before_money, recharge_mony, recharge_time
|
|
|
</sql>
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
|
select
|
|
@@ -26,9 +27,9 @@
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
|
- insert into t_customer_recharge ( customer_name, recharge_mony,
|
|
|
+ insert into t_customer_recharge ( customer_name, before_money,recharge_mony,
|
|
|
recharge_time)
|
|
|
- values ( #{customerName,jdbcType=VARCHAR}, #{rechargeMony,jdbcType=DOUBLE},
|
|
|
+ values ( #{customerName,jdbcType=VARCHAR}, #{beforeMony,jdbcType=DOUBLE}, #{rechargeMony,jdbcType=DOUBLE},
|
|
|
#{rechargeTime,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
@@ -40,6 +41,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
customer_name,
|
|
|
</if>
|
|
|
+ <if test="beforeMony != null" >
|
|
|
+ before_money,
|
|
|
+ </if>
|
|
|
<if test="rechargeMony != null" >
|
|
|
recharge_mony,
|
|
|
</if>
|
|
@@ -54,6 +58,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
#{customerName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="beforeMony != null" >
|
|
|
+ #{before_money,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
<if test="rechargeMony != null" >
|
|
|
#{rechargeMony,jdbcType=DOUBLE},
|
|
|
</if>
|
|
@@ -68,6 +75,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
customer_name = #{customerName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="beforeMony != null" >
|
|
|
+ before_money = #{beforeMony,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
<if test="rechargeMony != null" >
|
|
|
recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
|
|
|
</if>
|
|
@@ -80,6 +90,7 @@
|
|
|
<update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
|
update t_customer_recharge
|
|
|
set customer_name = #{customerName,jdbcType=VARCHAR},
|
|
|
+ before_money = #{beforeMony,jdbcType=DOUBLE},
|
|
|
recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
|
|
|
recharge_time = #{rechargeTime,jdbcType=VARCHAR}
|
|
|
where id = #{id,jdbcType=INTEGER}
|