select claim_id, area_id, user_id, coupon_id, create_time from et_coupon_claim_log
insert into et_coupon_claim_log
area_id,
user_id,
coupon_id,
create_time,
#{areaId},
#{userId},
#{couponId},
#{createTime},
update et_coupon_claim_log
area_id = #{areaId},
user_id = #{userId},
coupon_id = #{couponId},
create_time = #{createTime},
where claim_id = #{claimId}
delete from et_coupon_claim_log where claim_id = #{claimId}
delete from et_coupon_claim_log where claim_id in
#{claimId}