HaiKongResendMsgDao.xml 627 B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.kmall.admin.dao.HaiKongResendMsgDao">
  4. <insert id="saveResendMsg" parameterType="com.kmall.admin.entity.HaiKongResendMsgEntity" >
  5. insert into haikong_resend_msg
  6. (
  7. open_id,
  8. order_sn,
  9. interface_type,
  10. request_msg,
  11. response_msg,
  12. resend_num,
  13. resend_time,
  14. last_resend_time,
  15. is_valid
  16. )
  17. values
  18. (
  19. #{openId},
  20. #{orderSn},
  21. #{interfaceType},
  22. #{requestMsg},
  23. #{responseMsg},
  24. #{isValid}
  25. )
  26. </insert>
  27. </mapper>