|
@@ -14,10 +14,11 @@
|
|
|
<result column="first_sign" property="firstSign" jdbcType="VARCHAR" />
|
|
|
<result column="accStatus" property="accstatus" jdbcType="INTEGER" />
|
|
|
<result column="company" property="company" jdbcType="VARCHAR" />
|
|
|
+ <result column="fee" property="fee" jdbcType="DOUBLE" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
id, customer_name, invoice_time, usenum_all, usenum_interface, usenum_plat, account_balance,
|
|
|
- bussiness_type, integration_type, first_sign, accStatus, company
|
|
|
+ bussiness_type, integration_type, first_sign, accStatus, company,fee
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
@@ -45,12 +46,12 @@
|
|
|
insert into t_customer (customer_name, invoice_time,
|
|
|
usenum_all, usenum_interface, usenum_plat,
|
|
|
account_balance, bussiness_type, integration_type,
|
|
|
- first_sign, accStatus, company
|
|
|
+ first_sign, accStatus, company,fee
|
|
|
)
|
|
|
values ( #{customerName,jdbcType=VARCHAR}, #{invoiceTime,jdbcType=TIMESTAMP},
|
|
|
#{usenumAll,jdbcType=INTEGER}, #{usenumInterface,jdbcType=INTEGER}, #{usenumPlat,jdbcType=INTEGER},
|
|
|
#{accountBalance,jdbcType=DOUBLE}, #{bussinessType,jdbcType=INTEGER}, #{integrationType,jdbcType=INTEGER},
|
|
|
- #{firstSign,jdbcType=VARCHAR}, #{accstatus,jdbcType=INTEGER}, #{company,jdbcType=VARCHAR}
|
|
|
+ #{firstSign,jdbcType=VARCHAR}, #{accstatus,jdbcType=INTEGER}, #{company,jdbcType=VARCHAR},#{fee,jdbcType=DOUBLE}
|
|
|
)
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
|
|
@@ -92,6 +93,9 @@
|
|
|
<if test="company != null" >
|
|
|
company,
|
|
|
</if>
|
|
|
+ <if test="fee != null" >
|
|
|
+ fee,
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
@@ -130,6 +134,9 @@
|
|
|
<if test="company != null" >
|
|
|
#{company,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="company != null" >
|
|
|
+ #{fee,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.jkcredit.invoice.model.entity.customer.Customer" >
|
|
@@ -168,6 +175,9 @@
|
|
|
<if test="company != null" >
|
|
|
company = #{company,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
+ <if test="fee != null" >
|
|
|
+ fee = #{fee,jdbcType=DOUBLE},
|
|
|
+ </if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
@@ -183,7 +193,8 @@
|
|
|
integration_type = #{integrationType,jdbcType=INTEGER},
|
|
|
first_sign = #{firstSign,jdbcType=VARCHAR},
|
|
|
accStatus = #{accstatus,jdbcType=INTEGER},
|
|
|
- company = #{company,jdbcType=VARCHAR}
|
|
|
+ company = #{company,jdbcType=VARCHAR},
|
|
|
+ fee = #{fee,jdbcType=DOUBLE}
|
|
|
where id = #{id,jdbcType=INTEGER}
|
|
|
</update>
|
|
|
</mapper>
|