|
@@ -7,7 +7,7 @@
|
|
<id column="id_" jdbcType="BIGINT" property="id" />
|
|
<id column="id_" jdbcType="BIGINT" property="id" />
|
|
<result column="order_no_" jdbcType="VARCHAR" property="orderNo" />
|
|
<result column="order_no_" jdbcType="VARCHAR" property="orderNo" />
|
|
<result column="trans_no_" jdbcType="VARCHAR" property="transNo" />
|
|
<result column="trans_no_" jdbcType="VARCHAR" property="transNo" />
|
|
- <result column="open_type" jdbcType="VARCHAR" property="openType" />
|
|
|
|
|
|
+ <result column="open_type_" jdbcType="VARCHAR" property="openType" />
|
|
<result column="pay_channel_" jdbcType="VARCHAR" property="payChannel" />
|
|
<result column="pay_channel_" jdbcType="VARCHAR" property="payChannel" />
|
|
<result column="pay_amt_" jdbcType="DECIMAL" property="payAmt" />
|
|
<result column="pay_amt_" jdbcType="DECIMAL" property="payAmt" />
|
|
<result column="fee_amt_" jdbcType="DECIMAL" property="feeAmt" />
|
|
<result column="fee_amt_" jdbcType="DECIMAL" property="feeAmt" />
|
|
@@ -25,7 +25,7 @@
|
|
<sql id="Base_Column_List">
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
<!--@mbg.generated-->
|
|
id_, order_no_, trans_no_, pay_channel_, pay_amt_, fee_amt_, pay_info_, status_,
|
|
id_, order_no_, trans_no_, pay_channel_, pay_amt_, fee_amt_, pay_info_, status_,
|
|
- pay_fail_msg_, arrival_time_,close_status_,close_fail_msg_,close_time_,create_time_, update_time_,adapay_no_,open_type
|
|
|
|
|
|
+ pay_fail_msg_, arrival_time_,close_status_,close_fail_msg_,close_time_,create_time_, update_time_,adapay_no_,open_type_
|
|
</sql>
|
|
</sql>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
<!--@mbg.generated-->
|
|
<!--@mbg.generated-->
|
|
@@ -44,7 +44,7 @@
|
|
insert into user_order_payment (order_no_, trans_no_, pay_channel_,
|
|
insert into user_order_payment (order_no_, trans_no_, pay_channel_,
|
|
pay_amt_, fee_amt_, pay_info_,
|
|
pay_amt_, fee_amt_, pay_info_,
|
|
status_, pay_fail_msg_, arrival_time_,
|
|
status_, pay_fail_msg_, arrival_time_,
|
|
- create_time_, update_time_,close_status_,close_fail_msg_,close_time_,adapay_no_,open_type)
|
|
|
|
|
|
+ create_time_, update_time_,close_status_,close_fail_msg_,close_time_,adapay_no_,open_type_)
|
|
values (#{orderNo,jdbcType=VARCHAR}, #{transNo,jdbcType=VARCHAR}, #{payChannel,jdbcType=VARCHAR},
|
|
values (#{orderNo,jdbcType=VARCHAR}, #{transNo,jdbcType=VARCHAR}, #{payChannel,jdbcType=VARCHAR},
|
|
#{payAmt,jdbcType=DECIMAL}, #{feeAmt,jdbcType=DECIMAL}, #{payInfo,jdbcType=VARCHAR},
|
|
#{payAmt,jdbcType=DECIMAL}, #{feeAmt,jdbcType=DECIMAL}, #{payInfo,jdbcType=VARCHAR},
|
|
#{status,jdbcType=VARCHAR}, #{payFailMsg,jdbcType=VARCHAR}, #{arrivalTime,jdbcType=TIMESTAMP},
|
|
#{status,jdbcType=VARCHAR}, #{payFailMsg,jdbcType=VARCHAR}, #{arrivalTime,jdbcType=TIMESTAMP},
|
|
@@ -101,7 +101,7 @@
|
|
adapay_no_,
|
|
adapay_no_,
|
|
</if>
|
|
</if>
|
|
<if test="openType != null">
|
|
<if test="openType != null">
|
|
- open_type,
|
|
|
|
|
|
+ open_type_,
|
|
</if>
|
|
</if>
|
|
</trim>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
@@ -204,8 +204,8 @@
|
|
<if test="adapayNo != null">
|
|
<if test="adapayNo != null">
|
|
adapay_no_ = #{adapayNo,jdbcType=TIMESTAMP},
|
|
adapay_no_ = #{adapayNo,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</if>
|
|
- <if test="opentType != null">
|
|
|
|
- open_type = #{opentType,jdbcType=TIMESTAMP},
|
|
|
|
|
|
+ <if test="openType != null">
|
|
|
|
+ open_type_ = #{openType,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</if>
|
|
</set>
|
|
</set>
|
|
where id_ = #{id,jdbcType=BIGINT}
|
|
where id_ = #{id,jdbcType=BIGINT}
|
|
@@ -228,7 +228,7 @@
|
|
close_fail_msg_ = #{closeFailMsg},
|
|
close_fail_msg_ = #{closeFailMsg},
|
|
close_time_ = #{closeTime,jdbcType=TIMESTAMP},
|
|
close_time_ = #{closeTime,jdbcType=TIMESTAMP},
|
|
adapay_no_ = #{adapayNo,jdbcType=TIMESTAMP},
|
|
adapay_no_ = #{adapayNo,jdbcType=TIMESTAMP},
|
|
- open_type = #{openType,jdbcType=TIMESTAMP}
|
|
|
|
|
|
+ open_type_ = #{openType,jdbcType=TIMESTAMP}
|
|
where id_ = #{id,jdbcType=BIGINT}
|
|
where id_ = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
</update>
|
|
|
|
|