1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.kmall.admin.dao.HaiKongResendMsgDao">
- <insert id="saveResendMsg" parameterType="com.kmall.admin.entity.HaiKongResendMsgEntity" >
- insert into haikong_resend_msg
- (
- open_id,
- order_sn,
- interface_type,
- request_msg,
- response_msg,
- resend_num,
- resend_time,
- last_resend_time,
- is_valid
- )
- values
- (
- #{openId},
- #{orderSn},
- #{interfaceType},
- #{requestMsg},
- #{responseMsg},
- #{isValid}
- )
- </insert>
-
- </mapper>
|