|
@@ -4,12 +4,13 @@
|
|
|
<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="companyName" property="companyName" 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, before_money, recharge_mony, recharge_time
|
|
|
+ id, customer_name,companyName, before_money, recharge_mony, recharge_time
|
|
|
</sql>
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
|
select
|
|
@@ -19,6 +20,9 @@
|
|
|
<if test="customerRecharge.customerName != null and customerRecharge.customerName != ''">
|
|
|
and customer_name LIKE CONCAT('%',#{customerRecharge.customerName},'%')
|
|
|
</if>
|
|
|
+ <if test="customerRecharge.companyName != null and customerRecharge.companyName != ''">
|
|
|
+ and companyName LIKE CONCAT('%',#{customerRecharge.companyName},'%')
|
|
|
+ </if>
|
|
|
</where>
|
|
|
</select>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
@@ -32,9 +36,9 @@
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
|
- insert into t_customer_recharge ( customer_name, before_money,recharge_mony,
|
|
|
+ insert into t_customer_recharge ( customer_name,companyName, before_money,recharge_mony,
|
|
|
recharge_time)
|
|
|
- values ( #{customerName,jdbcType=VARCHAR}, #{beforeMony,jdbcType=DOUBLE}, #{rechargeMony,jdbcType=DOUBLE},
|
|
|
+ values ( #{customerName,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{beforeMony,jdbcType=DOUBLE}, #{rechargeMony,jdbcType=DOUBLE},
|
|
|
#{rechargeTime,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
@@ -46,6 +50,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
customer_name,
|
|
|
</if>
|
|
|
+ <if test="companyName != null" >
|
|
|
+ companyName,
|
|
|
+ </if>
|
|
|
<if test="beforeMony != null" >
|
|
|
before_money,
|
|
|
</if>
|
|
@@ -63,6 +70,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
#{customerName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="companyName != null" >
|
|
|
+ #{companyName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="beforeMony != null" >
|
|
|
#{before_money,jdbcType=DOUBLE},
|
|
|
</if>
|
|
@@ -80,6 +90,9 @@
|
|
|
<if test="customerName != null" >
|
|
|
customer_name = #{customerName,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="companyName != null" >
|
|
|
+ companyName = #{companyName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
<if test="beforeMony != null" >
|
|
|
before_money = #{beforeMony,jdbcType=DOUBLE},
|
|
|
</if>
|
|
@@ -95,6 +108,7 @@
|
|
|
<update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.CustomerRecharge" >
|
|
|
update t_customer_recharge
|
|
|
set customer_name = #{customerName,jdbcType=VARCHAR},
|
|
|
+ companyName = #{companyName,jdbcType=VARCHAR},
|
|
|
before_money = #{beforeMony,jdbcType=DOUBLE},
|
|
|
recharge_mony = #{rechargeMony,jdbcType=DOUBLE},
|
|
|
recharge_time = #{rechargeTime,jdbcType=VARCHAR}
|