mitao
108 分钟以前 28f9605441cdda5bd9cfabd2241ff8509a4a8888
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
<?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.ruoyi.system.mapper.ProjectInvestmentMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ruoyi.system.model.ProjectInvestment">
        <id column="id" property="id" />
        <result column="create_time" property="createTime" />
        <result column="create_by" property="createBy" />
        <result column="update_time" property="updateTime" />
        <result column="update_by" property="updateBy" />
        <result column="disabled" property="disabled" />
        <result column="central_budget_investment" property="centralBudgetInvestment" />
        <result column="central_subsidy_funds" property="centralSubsidyFunds" />
        <result column="provincial_subsidy_funds" property="provincialSubsidyFunds" />
        <result column="special_bond_funds" property="specialBondFunds" />
        <result column="general_bond_funds" property="generalBondFunds" />
        <result column="fund" property="fund" />
        <result column="stbs" property="stbs" />
        <result column="own_funds" property="ownFunds" />
        <result column="bank_loans" property="bankLoans" />
        <result column="other" property="other" />
        <result column="total_amount" property="totalAmount" />
        <result column="investment_type" property="investmentType" />
        <result column="project_id" property="projectId" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, create_time, create_by, update_time, update_by, disabled, central_budget_investment, central_subsidy_funds, provincial_subsidy_funds, special_bond_funds, general_bond_funds, fund, stbs, own_funds, bank_loans, other, total_amount, investment_type, project_id
    </sql>
 
</mapper>