1234567891011121314151617 |
- <?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.xs.core.mapper.coin.GoldCoinProdRecordMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.xs.core.model.coin.entity.GoldCoinProdRecord">
- <result column="id" property="id"/>
- <result column="batch_id" property="batchId"/>
- <result column="user_id" property="userId"/>
- <result column="gold_coin_yield_total" property="goldCoinYieldTotal"/>
- <result column="start_timestamp" property="startTimestamp"/>
- <result column="end_timestamp" property="endTimestamp"/>
- <result column="yield_time" property="yieldTime"/>
- <result column="receiving" property="receiving"/>
- <result column="received_time" property="receivedTime"/>
- <result column="remark" property="remark"/>
- </resultMap>
- </mapper>
|