OperationLogMapper.xml
681 字节
<?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.sibu.orderHelper.integral.web.dao.IMOperationLogDao">
<!-- 保存日志 -->
<insert id="save" parameterType="com.sibu.orderHelper.integral.model.OperationLog">
INSERT INTO `sibu_integralmall_base`.`operation_log` (
`operation_user`,
`operation_type`,
`operation_object`,
`operation_date`,
`operation_content`
)
VALUES
(
#{operationUser},
#{operationType},
#{operationObject},
#{operationDate},
#{operationContent}
) ;
</insert>
</mapper>