1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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.tanpu.fund.mapper.generator.TxFundDistributionMapper">
<resultMap id="BaseResultMap" type="com.tanpu.fund.entity.generator.TxFundDistribution">
<!--@mbg.generated-->
<!--@Table tamp_fund.tx_fund_distribution-->
<result column="id" jdbcType="BIGINT" property="id" />
<result column="fund_id" jdbcType="BIGINT" property="fundId" />
<result column="fund_code" jdbcType="VARCHAR" property="fundCode" />
<result column="fund_short_name" jdbcType="VARCHAR" property="fundShortName" />
<result column="ann_date" jdbcType="TIMESTAMP" property="annDate" />
<result column="register_date" jdbcType="TIMESTAMP" property="registerDate" />
<result column="distribute_date" jdbcType="TIMESTAMP" property="distributeDate" />
<result column="ex_date" jdbcType="TIMESTAMP" property="exDate" />
<result column="confirm_date" jdbcType="TIMESTAMP" property="confirmDate" />
<result column="distribution" jdbcType="DECIMAL" property="distribution" />
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
<result column="delete_tag" jdbcType="INTEGER" property="deleteTag" />
</resultMap>
<resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.tanpu.fund.entity.generator.TxFundDistribution">
<!--@mbg.generated-->
<!--@Table tamp_fund.tx_fund_distribution-->
<result column="distribute_type" jdbcType="VARBINARY" property="distributeType" />
<result column="create_by" jdbcType="VARBINARY" property="createBy" />
<result column="create_time" jdbcType="VARBINARY" property="createTime" />
<result column="update_by" jdbcType="VARBINARY" property="updateBy" />
<result column="org_id" jdbcType="VARBINARY" property="orgId" />
<result column="org" jdbcType="VARBINARY" property="org" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, fund_id, fund_code, fund_short_name, ann_date, register_date, distribute_date,
ex_date, confirm_date, distribution, update_time, delete_tag
</sql>
<sql id="Blob_Column_List">
<!--@mbg.generated-->
distribute_type, create_by, create_time, update_by, org_id, org
</sql>
</mapper>