From d08fd7c3f0d3b11c19314b8f9677ee8626d50a49 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期六, 22 二月 2025 21:08:57 +0800 Subject: [PATCH] 项目投资及资金来源增设:地方政府专项债券、超长期特别国债 --- business/src/main/resources/mapper/ProjectInvestmentFundingMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/business/src/main/resources/mapper/ProjectInvestmentFundingMapper.xml b/business/src/main/resources/mapper/ProjectInvestmentFundingMapper.xml index c894c7c..3ccb767 100644 --- a/business/src/main/resources/mapper/ProjectInvestmentFundingMapper.xml +++ b/business/src/main/resources/mapper/ProjectInvestmentFundingMapper.xml @@ -7,6 +7,8 @@ <result column="project_id" property="projectId" /> <result column="total_investment" property="totalInvestment" /> <result column="principal" property="principal" /> + <result column="dept_bond" property="deptBond" /> + <result column="national_debt" property="nationalDebt" /> <result column="government_investment_total" property="governmentInvestmentTotal" /> <result column="central_investment_total" property="centralInvestmentTotal" /> <result column="central_budget_investment" property="centralBudgetInvestment" /> @@ -45,6 +47,8 @@ <select id="getById" resultMap="BaseResultMap"> SELECT TPIF.project_id, + TPIF.dept_bond, + TPIF.national_debt, TPIF.total_investment, TPIF.principal, TPIF.government_investment_total, @@ -85,6 +89,8 @@ <select id="getPage" resultMap="BaseResultMap"> SELECT TPIF.project_id, + TPIF.dept_bond, + TPIF.national_debt, TPIF.total_investment, TPIF.principal, TPIF.government_investment_total, -- Gitblit v1.8.0