123456789101112131415161718192021222324252627 |
- <?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.MallVmcSendLogDao">
- <insert id="saveVmcSend" parameterType="com.kmall.admin.entity.MallVmcSendlogEntity" >
- insert into mall_vmc_send_log
- (
- vmc_type,
- order_sn,
- request_msg,
- response_msg,
- send_date
- )
- values
- (
- #{vmcType},
- #{orderSn},
- #{requestMsg},
- #{responseMsg},
- SYSDATE()
- )
- </insert>
-
- </mapper>
|