| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | | <?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.xzx.gc.order.mapper.PlatformAccountLogMapper">  |  |     <insert id="insertPlatFormLog" parameterType="com.xzx.gc.model.admin.PlatformAccountLogModel">  |  |         INSERT INTO `xzx_platform_account_log`  |  |         (`type`, `old_money`, `money`, `new_money`,  |  |          `old_hbb`, `hbb`, `new_hbb`, `create_user_id`,  |  |          `create_time`, `create_user_type`, `create_user_name`,  |  |          `create_user_mobile`, `flow_no`)  |  |         VALUES ('1', #{oldMoney}, #{money}, #{newMoney},  |  |                      #{oldHbb}, #{hbb},#{newHbb}, #{createUserId}, #{createTime},#{createUserType},  |  |                      #{createUserName}, #{createUserMobile}, #{flowNo})  |  |     </insert>  |  |   |  |   |  |   |  | </mapper> | 
 |