From 4ee9e6833f738e22390c4e875fe140c2b96cfcc2 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期五, 29 十一月 2024 04:03:37 +0800 Subject: [PATCH] 项目库分页查询 --- business/src/main/resources/mapper/ProjectInfoMapper.xml | 166 ++++++++++++++++++++++++++++++++----------------------- 1 files changed, 96 insertions(+), 70 deletions(-) diff --git a/business/src/main/resources/mapper/ProjectInfoMapper.xml b/business/src/main/resources/mapper/ProjectInfoMapper.xml index 4beeb90..251f0c0 100644 --- a/business/src/main/resources/mapper/ProjectInfoMapper.xml +++ b/business/src/main/resources/mapper/ProjectInfoMapper.xml @@ -3,44 +3,15 @@ <mapper namespace="com.ycl.mapper.ProjectInfoMapper"> <!-- 閫氱敤鏌ヨ鏄犲皠缁撴灉 --> - <resultMap id="BaseResultMap" type="com.ycl.domain.entity.ProjectInfo"> - <id column="id" property="id"/> - <result column="project_name" property="projectName" /> - <result column="project_code" property="projectCode" /> - <result column="content" property="content" /> - <result column="project_type" property="projectType" /> - <result column="project_status" property="projectStatus" /> - <result column="fund_type" property="fundType" /> - <result column="invest_type" property="investType" /> - <result column="project_phase" property="projectPhase" /> - <result column="tag" property="tag" /> - <result column="competent_department" property="competentDepartment" /> - <result column="area" property="area" /> - <result column="management_centralization" property="managementCentralization" /> - <result column="project_approval_type" property="projectApprovalType" /> - <result column="importance_type" property="importanceType" /> - <result column="year" property="year" /> - <result column="year_invest_amount" property="yearInvestAmount" /> - <result column="create_project_time" property="createProjectTime" /> - <result column="plan_start_time" property="planStartTime" /> - <result column="plan_complete_time" property="planCompleteTime" /> - <result column="win_unit" property="winUnit" /> - <result column="win_amount" property="winAmount" /> - <result column="win_time" property="winTime" /> - <result column="project_address" property="projectAddress" /> - <result column="longitude" property="longitude" /> - <result column="latitude" property="latitude" /> - <result column="project_owner_unit" property="projectOwnerUnit" /> - <result column="project_contact_person" property="projectContactPerson" /> - <result column="contact" property="contact" /> - <result column="gmt_create" property="gmtCreate" /> - <result column="gmt_update" property="gmtUpdate" /> - <result column="update_by" property="updateBy" /> - <result column="create_by" property="createBy" /> + <resultMap id="resultMap" type="com.ycl.domain.vo.ProjectInfoVO" autoMapping="true"> + <association property="projectInvestmentInfo" javaType="com.ycl.domain.vo.ProjectInvestmentInfoVO" autoMapping="true" columnPrefix="TPII_"/> + <association property="projectInvestmentFunding" javaType="com.ycl.domain.vo.ProjectInvestmentFundingVO" autoMapping="true" columnPrefix="TPIF_"/> + <association property="projectUnitRegistrationInfo" javaType="com.ycl.domain.vo.ProjectUnitRegistrationInfoVO" autoMapping="true" columnPrefix="TPURI_"/> + <association property="projectInvestmentPolicyCompliance" javaType="com.ycl.domain.vo.ProjectInvestmentPolicyComplianceVO" autoMapping="true" columnPrefix="TPIPC_"/> </resultMap> - <select id="getById" resultMap="BaseResultMap"> + <select id="getById" resultType="com.ycl.domain.entity.ProjectInfo"> SELECT TPI.project_name, TPI.project_code, @@ -82,45 +53,100 @@ </select> - <select id="getPage" resultMap="BaseResultMap"> + <select id="getPage" resultMap="resultMap"> SELECT - TPI.project_name, - TPI.project_code, - TPI.content, - TPI.project_type, - TPI.project_status, - TPI.fund_type, - TPI.invest_type, - TPI.project_phase, - TPI.tag, - TPI.competent_department, - TPI.area, - TPI.management_centralization, - TPI.project_approval_type, - TPI.importance_type, - TPI.year, - TPI.year_invest_amount, - TPI.create_project_time, - TPI.plan_start_time, - TPI.plan_complete_time, - TPI.win_unit, - TPI.win_amount, - TPI.win_time, - TPI.project_address, - TPI.longitude, - TPI.latitude, - TPI.project_owner_unit, - TPI.project_contact_person, - TPI.contact, - TPI.gmt_create, - TPI.gmt_update, - TPI.update_by, - TPI.create_by, - TPI.id + TPI.*, + TPIF.total_investment as TPIF_totalInvestment, + TPIF.principal as TPIF_principal,TPIF.government_investment_total as TPIF_government_investment_total,TPIF.central_investment_total as TPIF_central_investment_total, + TPIF.central_budget_investment as TPIF_central_budget_investment,TPIF.central_fiscal_investment as TPIF_central_fiscal_investment, + TPIF.central_special_bond_investment as TPIF_central_special_bond_investment,TPIF.central_special_fund_investment as TPIF_central_special_fund_investment, + TPIF.provincial_investment_total as TPIF_provincial_investment_total,TPIF.provincial_budget_investment as TPIF_provincial_budget_investment, + TPIF.provincial_fiscal_investment as TPIF_provincial_fiscal_investment,TPIF.provincial_special_fund_investment as TPIF_provincial_special_fund_investment, + TPIF.city_investment_total as TPIF_city_investment_total,TPIF.city_budget_investment as TPIF_city_budget_investment,TPIF.city_fiscal_investment as TPIF_city_fiscal_investment, + TPIF.city_special_fund_investment as TPIF_city_special_fund_investment,TPIF.county_investment_total as TPIF_county_investment_total,TPIF.county_budget_investment as TPIF_county_budget_investment, + TPIF.county_fiscal_investment as TPIF_county_fiscal_investment,TPIF.county_special_fund_investment as TPIF_county_special_fund_investment, + TPIF.domestic_loan_total as TPIF_domestic_loan_total,TPIF.bank_loan as TPIF_bank_loan,TPIF.foreign_investment_total as TPIF_foreign_investment_total, + TPIF.enterprise_self_raised_total as TPIF_enterprise_self_raised_total,TPIF.other_investment_total as TPIF_other_investment_total, + TPII.be_cross_region as TPII_be_cross_region,TPII.construction_location as TPII_construction_location, + TPII.detailed_address as TPII_detailed_address,TPII.be_compensation_project as TPII_be_compensation_project,TPII.compensation_reason as TPII_compensation_reason, + TPII.planned_start_date as TPII_planned_start_date,TPII.expected_completion_date as TPII_expected_completion_date, + TPII.national_industry_classification as TPII_national_industry_classification,TPII.industry_classification as TPII_industry_classification,TPII.project_nature as TPII_project_nature, + TPII.project_attribute as TPII_project_attribute,TPII.use_earth as TPII_use_earth,TPII.content_scale as TPII_content_scale,TPII.code as TPII_code, + TPIPC.belongs_to_industry_adjustment_directory as TPIPC_belongs_to_industry_adjustment_directory,TPIPC.belongs_to_western_encouraged_directory as TPIPC_belongs_to_western_encouraged_directory, + TPIPC.not_banned_or_controlled_project as TPIPC_not_banned_or_controlled_project,TPIPC.information_is_true as TPIPC_information_is_true, + TPIPC.special_planning_compliance as TPIPC_special_planning_compliance,TPIPC.annual_energy_consumption as TPIPC_annual_energy_consumption,TPIPC.annual_electricity_consumption as TPIPC_annual_electricity_consumption, + TPIPC.energy_check as TPIPC_energy_check,TPIPC.no_only_check_type as TPIPC_no_only_check_type,TPIPC.remarks as TPIPC_remarks, + TPURI.total_investment as TPURI_total_investment, + TPURI.project_unit as TPURI_project_unit, + TPURI.project_unit_type as TPURI_project_unit_type, + TPURI.registration_type as TPURI_registration_type, + TPURI.holding_situation as TPURI_holding_situation, + TPURI.certificate_type as TPURI_certificate_type, + TPURI.certificate_number as TPURI_certificate_number, + TPURI.registered_address as TPURI_registered_address, + TPURI.registered_capital as TPURI_registered_capital, + TPURI.legal_representative as TPURI_legal_representative, + TPURI.fixed_phone as TPURI_fixed_phone, + TPURI.legal_person_idcard as TPURI_legal_person_idcard, + TPURI.project_contact_person as TPURI_project_contact_person, + TPURI.phone as TPURI_phone, + TPURI.contact_idcard as TPURI_contact_idcard, + TPURI.wechat as TPURI_wechat, + TPURI.contact_address as TPURI_contact_address, + TPURI.post_code as TPURI_post_code, + TPURI.email as TPURI_email FROM t_project_info TPI - WHERE + LEFT JOIN t_project_investment_funding TPIF ON TPI.id = TPIF.project_id and TPIF.deleted = 0 + LEFT JOIN t_project_investment_info TPII ON TPI.id = TPII.project_id and TPII.deleted = 0 + LEFT JOIN t_project_investment_policy_compliance TPIPC ON TPI.id = TPIPC.project_id and TPIPC.deleted = 0 + LEFT JOIN t_project_unit_registration_info TPURI ON TPI.id = TPURI.project_id and TPURI.deleted = 0 + <where> TPI.deleted = 0 + <if test="query.projectCategory !=null and query.projectCategory!=''"> + and TPI.project_phase = #{query.projectCategory} + </if> + <if test="query.projectName !=null and query.projectName!=''"> + and TPI.project_name like concat('%',#{query.projectName},'%') + </if> + <if test="query.projectCode !=null and query.projectCode!=''"> + and TPI.project_code like concat('%',#{query.projectCode},'%') + </if> + <if test="query.projectType !=null and query.projectType!=''"> + and TPI.project_type = #{query.projectType} + </if> + <if test="query.importanceType !=null and query.importanceType!=''"> + and TPI.importance_type = #{query.importanceType} + </if> + <if test="query.tag !=null and query.tag!=''"> + and TPI.tag like concat('%',#{query.tag},'%') + </if> + <if test="query.projectStatus !=null and query.projectStatus!=''"> + and TPI.project_status = #{query.projectStatus} + </if> + <if test="query.projectPhase !=null and query.projectPhase!=''"> + and TPI.project_phase = #{query.projectPhase} + </if> +<!-- <if test=" assignmentStatus !=null and assignmentStatus!=''">--> +<!-- and TPI.project_phase = #{projectPhase}--> +<!-- </if>--> + <if test="query.fundType !=null and query.fundType!=''"> + and TPI.fund_type = #{query.fundType} + </if> + <if test="query.projectPhase !=null and query.projectPhase!=''"> + and TPI.project_phase = #{query.projectPhase} + </if> + <if test="query.investType !=null and query.investType!=''"> + and TPI.invest_type = #{query.investType} + </if> + <if test="query.area !=null and query.area!=''"> + and TPI.area = #{query.area} + </if> + <if test="query.projectStartTime !=null and query.projectEndTime !=null"> + and TPI.create_project_time between #{query.projectStartTime} and #{query.projectEndTime} + </if> + </where> + order by gmt_create </select> </mapper> -- Gitblit v1.8.0