|
|
|
@ -53,7 +53,8 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
"finish_time, remarks, ", |
|
|
|
|
"refund_time, refund_price, ", |
|
|
|
|
"refund_content, refusal_refund_content, ", |
|
|
|
|
"Identification_code, ext_1, ", |
|
|
|
|
"Identification_code, profit_sharing_status, ", |
|
|
|
|
"account_merchant_num, ext_1, ", |
|
|
|
|
"ext_2, ext_3)", |
|
|
|
|
"values (#{orderNo,jdbcType=VARCHAR}, #{memDiscountId,jdbcType=BIGINT}, ", |
|
|
|
|
"#{memDiscountName,jdbcType=VARCHAR}, #{memId,jdbcType=BIGINT}, ", |
|
|
|
@ -69,7 +70,8 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
"#{finishTime,jdbcType=TIMESTAMP}, #{remarks,jdbcType=VARCHAR}, ", |
|
|
|
|
"#{refundTime,jdbcType=TIMESTAMP}, #{refundPrice,jdbcType=DECIMAL}, ", |
|
|
|
|
"#{refundContent,jdbcType=VARCHAR}, #{refusalRefundContent,jdbcType=VARCHAR}, ", |
|
|
|
|
"#{identificationCode,jdbcType=BIGINT}, #{ext1,jdbcType=VARCHAR}, ", |
|
|
|
|
"#{identificationCode,jdbcType=BIGINT}, #{profitSharingStatus,jdbcType=BIT}, ", |
|
|
|
|
"#{accountMerchantNum,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
|
|
|
|
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
|
|
|
|
}) |
|
|
|
|
@Options(useGeneratedKeys=true,keyProperty="id") |
|
|
|
@ -111,6 +113,8 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
@Result(column="refund_content", property="refundContent", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="refusal_refund_content", property="refusalRefundContent", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="Identification_code", property="identificationCode", jdbcType=JdbcType.BIGINT), |
|
|
|
|
@Result(column="profit_sharing_status", property="profitSharingStatus", jdbcType=JdbcType.BIT), |
|
|
|
|
@Result(column="account_merchant_num", property="accountMerchantNum", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
|
|
|
@ -123,7 +127,8 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
"mem_card_id, mem_card_type, mem_card_no, pay_model, pay_type, pay_gold, pay_price, ", |
|
|
|
|
"pay_real_price, pay_serial_no, deduction_price, order_status, total_price, create_time, ", |
|
|
|
|
"pay_time, cancel_time, cancel_remarks, finish_time, remarks, refund_time, refund_price, ", |
|
|
|
|
"refund_content, refusal_refund_content, Identification_code, ext_1, ext_2, ext_3", |
|
|
|
|
"refund_content, refusal_refund_content, Identification_code, profit_sharing_status, ", |
|
|
|
|
"account_merchant_num, ext_1, ext_2, ext_3", |
|
|
|
|
"from high_order", |
|
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
|
}) |
|
|
|
@ -158,6 +163,8 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
@Result(column="refund_content", property="refundContent", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="refusal_refund_content", property="refusalRefundContent", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="Identification_code", property="identificationCode", jdbcType=JdbcType.BIGINT), |
|
|
|
|
@Result(column="profit_sharing_status", property="profitSharingStatus", jdbcType=JdbcType.BIT), |
|
|
|
|
@Result(column="account_merchant_num", property="accountMerchantNum", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
|
|
|
|
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
|
|
|
@ -204,12 +211,12 @@ public interface HighOrderMapper extends HighOrderMapperExt { |
|
|
|
|
"refund_content = #{refundContent,jdbcType=VARCHAR},", |
|
|
|
|
"refusal_refund_content = #{refusalRefundContent,jdbcType=VARCHAR},", |
|
|
|
|
"Identification_code = #{identificationCode,jdbcType=BIGINT},", |
|
|
|
|
"profit_sharing_status = #{profitSharingStatus,jdbcType=BIT},", |
|
|
|
|
"account_merchant_num = #{accountMerchantNum,jdbcType=VARCHAR},", |
|
|
|
|
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
|
|
|
|
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
|
|
|
|
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
|
|
|
|
"where id = #{id,jdbcType=BIGINT}" |
|
|
|
|
}) |
|
|
|
|
int updateByPrimaryKey(HighOrder record); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |