|
@@ -7,7 +7,7 @@
|
|
|
<resultMap id="BaseResultMap" type="com.mofangchuxing.aska.dao.domain.AskaSplitrecord">
|
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
|
<result property="payId" column="payId" jdbcType="INTEGER"/>
|
|
|
- <result property="spiltOrderId" column="spiltOrderId" jdbcType="VARCHAR"/>
|
|
|
+ <result property="splitOrderId" column="splitOrderId" jdbcType="VARCHAR"/>
|
|
|
<result property="recordType" column="recordType" jdbcType="INTEGER"/>
|
|
|
<result property="refundOrderId" column="refundOrderId" jdbcType="INTEGER"/>
|
|
|
<result property="payAmount" column="payAmount" jdbcType="INTEGER"/>
|
|
@@ -34,7 +34,7 @@
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
- id,payId,spiltOrderId,
|
|
|
+ id,payId,splitOrderId,
|
|
|
recordType,refundOrderId,payAmount,
|
|
|
retailId,retailName,retailAccount,
|
|
|
retailAmount,retailRealtimeAmount,retailAccountAmount,
|
|
@@ -63,7 +63,7 @@
|
|
|
</delete>
|
|
|
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.mofangchuxing.aska.dao.domain.AskaSplitrecord" useGeneratedKeys="true">
|
|
|
insert into aska_splitRecord
|
|
|
- ( id,payId,spiltOrderId
|
|
|
+ ( id,payId,splitOrderId
|
|
|
,recordType,refundOrderId,payAmount
|
|
|
,retailId,retailName,retailAccount
|
|
|
,retailAmount,retailRealtimeAmount,retailAccountAmount
|
|
@@ -72,7 +72,7 @@
|
|
|
,channelAccountAmount,channelSplitRule,status
|
|
|
,createTime,hasRefund,refundTotal
|
|
|
,refundRetail,refundChannel)
|
|
|
- values (#{id,jdbcType=INTEGER},#{payId,jdbcType=INTEGER},#{spiltOrderId,jdbcType=VARCHAR}
|
|
|
+ values (#{id,jdbcType=INTEGER},#{payId,jdbcType=INTEGER},#{splitOrderId,jdbcType=VARCHAR}
|
|
|
,#{recordType,jdbcType=INTEGER},#{refundOrderId,jdbcType=INTEGER},#{payAmount,jdbcType=INTEGER}
|
|
|
,#{retailId,jdbcType=INTEGER},#{retailName,jdbcType=VARCHAR},#{retailAccount,jdbcType=VARCHAR}
|
|
|
,#{retailAmount,jdbcType=VARCHAR},#{retailRealtimeAmount,jdbcType=INTEGER},#{retailAccountAmount,jdbcType=INTEGER}
|
|
@@ -87,7 +87,7 @@
|
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">id,</if>
|
|
|
<if test="payId != null">payId,</if>
|
|
|
- <if test="spiltOrderId != null">spiltOrderId,</if>
|
|
|
+ <if test="splitOrderId != null">splitOrderId,</if>
|
|
|
<if test="recordType != null">recordType,</if>
|
|
|
<if test="refundOrderId != null">refundOrderId,</if>
|
|
|
<if test="payAmount != null">payAmount,</if>
|
|
@@ -115,7 +115,7 @@
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">#{id,jdbcType=INTEGER},</if>
|
|
|
<if test="payId != null">#{payId,jdbcType=INTEGER},</if>
|
|
|
- <if test="spiltOrderId != null">#{spiltOrderId,jdbcType=VARCHAR},</if>
|
|
|
+ <if test="splitOrderId != null">#{splitOrderId,jdbcType=VARCHAR},</if>
|
|
|
<if test="recordType != null">#{recordType,jdbcType=INTEGER},</if>
|
|
|
<if test="refundOrderId != null">#{refundOrderId,jdbcType=INTEGER},</if>
|
|
|
<if test="payAmount != null">#{payAmount,jdbcType=INTEGER},</if>
|
|
@@ -147,8 +147,8 @@
|
|
|
<if test="payId != null">
|
|
|
payId = #{payId,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
- <if test="spiltOrderId != null">
|
|
|
- spiltOrderId = #{spiltOrderId,jdbcType=VARCHAR},
|
|
|
+ <if test="splitOrderId != null">
|
|
|
+ splitOrderId = #{splitOrderId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="recordType != null">
|
|
|
recordType = #{recordType,jdbcType=INTEGER},
|
|
@@ -226,7 +226,7 @@
|
|
|
update aska_splitRecord
|
|
|
set
|
|
|
payId = #{payId,jdbcType=INTEGER},
|
|
|
- spiltOrderId = #{spiltOrderId,jdbcType=VARCHAR},
|
|
|
+ splitOrderId = #{splitOrderId,jdbcType=VARCHAR},
|
|
|
recordType = #{recordType,jdbcType=INTEGER},
|
|
|
refundOrderId = #{refundOrderId,jdbcType=INTEGER},
|
|
|
payAmount = #{payAmount,jdbcType=INTEGER},
|