123456789101112131415161718192021 |
- <?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.juxiao.xchat.module.xbd.mapper.record.BillRecordMapper">
- <insert id="insert" parameterType="com.juxiao.xchat.module.xbd.domain.record.BillRecord" >
- insert into bill_record (bill_id, uid, target_uid,
- room_uid, bill_status, obj_id,
- obj_type, gift_id, gift_num,
- diamond_num, gold_num, money,
- create_time, update_time)
- values (#{billId,jdbcType=VARCHAR}, #{uid,jdbcType=BIGINT}, #{targetUid,jdbcType=BIGINT},
- #{roomUid,jdbcType=BIGINT}, #{billStatus,jdbcType=TINYINT}, #{objId,jdbcType=VARCHAR},
- #{objType,jdbcType=TINYINT}, #{giftId,jdbcType=INTEGER}, #{giftNum,jdbcType=INTEGER},
- #{diamondNum,jdbcType=DOUBLE}, #{goldNum,jdbcType=BIGINT}, #{money,jdbcType=BIGINT},
- #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
- </insert>
- </mapper>
|