1234567891011121314151617181920 |
- <?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.txz.cif.dao.AccountFreezdMapper">
- <resultMap id="BaseResultMap" type="com.txz.cif.model.AccountFreezd">
- <!--
- WARNING - @mbg.generated
- -->
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="account_id" jdbcType="BIGINT" property="accountId" />
- <result column="biz_id" jdbcType="BIGINT" property="bizId" />
- <result column="amount" jdbcType="DECIMAL" property="amount" />
- <result column="unfreeze_amount" jdbcType="DECIMAL" property="unfreezeAmount" />
- <result column="status" jdbcType="INTEGER" property="status" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- </resultMap>
- </mapper>
|