...
|
...
|
@@ -4,7 +4,7 @@ |
|
|
<resultMap id="BaseResultMap" type="com.yoho.order.model.RefundRecord" >
|
|
|
<id column="id" property="id" jdbcType="INTEGER" />
|
|
|
<result column="create_date" property="createDate" jdbcType="INTEGER" />
|
|
|
<result column="order_code" property="orderCode" jdbcType="INTEGER" />
|
|
|
<result column="order_code" property="orderCode" jdbcType="BIGINT" />
|
|
|
<result column="uid" property="uid" jdbcType="INTEGER" />
|
|
|
<result column="refund_desc" property="refundDesc" jdbcType="VARCHAR" />
|
|
|
<result column="refund_type" property="refundType" jdbcType="TINYINT" />
|
...
|
...
|
@@ -167,7 +167,7 @@ |
|
|
create_date = #{createDate,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="orderCode != null" >
|
|
|
order_code = #{orderCode,jdbcType=INTEGER},
|
|
|
order_code = #{orderCode,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
<if test="uid != null" >
|
|
|
uid = #{uid,jdbcType=INTEGER},
|
...
|
...
|
@@ -217,7 +217,7 @@ |
|
|
<update id="updateByPrimaryKey" parameterType="com.yoho.order.model.RefundRecord" >
|
|
|
update refund_record
|
|
|
set create_date = #{createDate,jdbcType=INTEGER},
|
|
|
order_code = #{orderCode,jdbcType=INTEGER},
|
|
|
order_code = #{orderCode,jdbcType=BIGINT},
|
|
|
uid = #{uid,jdbcType=INTEGER},
|
|
|
refund_desc = #{refundDesc,jdbcType=VARCHAR},
|
|
|
refund_type = #{refundType,jdbcType=TINYINT},
|
...
|
...
|
|