From 05600d089901d44e8d5036046025b6a90ceb896a Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期二, 03 十二月 2024 16:57:20 +0800 Subject: [PATCH] 修改及增加功能 --- expert-system/src/main/resources/mapper/system/ProjectExpertMapper.xml | 121 +++++++++++++++++++++++++++++++++++++-- 1 files changed, 113 insertions(+), 8 deletions(-) diff --git a/expert-system/src/main/resources/mapper/system/ProjectExpertMapper.xml b/expert-system/src/main/resources/mapper/system/ProjectExpertMapper.xml index 153b0f2..5fa846f 100644 --- a/expert-system/src/main/resources/mapper/system/ProjectExpertMapper.xml +++ b/expert-system/src/main/resources/mapper/system/ProjectExpertMapper.xml @@ -3,7 +3,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.gkhy.system.mapper.ProjectExpertMapper"> - + <resultMap type="ProjectExpert" id="ProjectExpertResult"> <result property="id" column="id" /> <result property="projectId" column="project_id" /> @@ -17,12 +17,47 @@ <result property="createTime" column="create_time" /> <result property="updateBy" column="update_by" /> <result property="updateTime" column="update_time" /> + <result property="professionalEthics" column="professional_ethics" /> + <result property="impartialHonest" column="impartial_honest" /> + <result property="comprehensiveCoordination" column="comprehensive_coordination" /> + <result property="professionalAbility" column="professional_ability" /> + <result property="expressingOpinions" column="expressing_opinions" /> + <result property="others" column="others" /> + <result property="comprehensiveEvaluation" column="comprehensive_evaluation" /> + <result property="majorDangers" column="major_dangers" /> + <result property="generalHazards" column="general_hazards" /> + <result property="content" column="content" /> + <result property="freightBasis" column="freight_basis" /> + <result property="billingDuration" column="billing_duration" /> + <result property="afterTaxAmount" column="after_tax_amount" /> + <result property="openBank" column="open_bank" /> + <result property="bankCard" column="bank_card" /> </resultMap> - <sql id="selectProjectExpertVo"> - select id, project_id, expert_id, score, evaluation_state, selection_mode, team_leader, del_flag, create_by, create_time, update_by, update_time from project_expert - </sql> + <resultMap type="com.gkhy.system.domain.vo.response.ProjectExpertExportInfoRes" id="ProjectExpertExportInfoResult"> + <result property="projectName" column="project_name" /> + <result property="deptName" column="dept_name" /> + <collection property="projectExpertExportResps" javaType="java.util.List" resultMap="ExpertExport" /> + </resultMap> + <resultMap id="ExpertExport" type="com.gkhy.system.domain.vo.response.ProjectExpertExportResp"> + <result property="name" column="name" /> + <result property="idCard" column="id_card" /> + <result property="companyName" column="company_name" /> + <result property="job" column="job" /> + <result property="title" column="title" /> + <result property="freightBasis" column="freight_basis" /> + <result property="billingDuration" column="billing_duration" /> + <result property="afterTaxAmount" column="after_tax_amount" /> + <result property="openBank" column="open_bank" /> + <result property="bankCard" column="bank_card" /> + </resultMap> + + + <sql id="selectProjectExpertVo"> + select id, project_id, expert_id, score, evaluation_state, selection_mode, team_leader, del_flag, create_by, create_time, update_by, update_time, professional_ethics, impartial_honest, comprehensive_coordination, professional_ability, expressing_opinions, others, comprehensive_evaluation, major_dangers, general_hazards, content, + freight_basis, billing_duration, after_tax_amount, open_bank, bank_card from project_expert + </sql> <select id="selectProjectExpertList" parameterType="ProjectExpert" resultMap="ProjectExpertResult"> <include refid="selectProjectExpertVo"/> <where> @@ -33,6 +68,21 @@ <if test="evaluationState != null "> and evaluation_state = #{evaluationState}</if> <if test="selectionMode != null "> and selection_mode = #{selectionMode}</if> <if test="teamLeader != null "> and team_leader = #{teamLeader}</if> + <if test="professionalEthics != null "> and professional_ethics = #{professionalEthics}</if> + <if test="impartialHonest != null "> and impartial_honest = #{impartialHonest}</if> + <if test="comprehensiveCoordination != null "> and comprehensive_coordination = #{comprehensiveCoordination}</if> + <if test="professionalAbility != null "> and professional_ability = #{professionalAbility}</if> + <if test="expressingOpinions != null "> and expressing_opinions = #{expressingOpinions}</if> + <if test="others != null and others != ''"> and others = #{others}</if> + <if test="comprehensiveEvaluation != null "> and comprehensive_evaluation = #{comprehensiveEvaluation}</if> + <if test="majorDangers != null "> and major_dangers = #{majorDangers}</if> + <if test="generalHazards != null "> and general_hazards = #{generalHazards}</if> + <if test="content != null and content != ''"> and content = #{content}</if> + <if test="freightBasis != null and freightBasis != ''"> and freight_basis = #{freightBasis}</if> + <if test="billingDuration != null "> and billing_duration = #{billingDuration}</if> + <if test="afterTaxAmount != null "> and after_tax_amount = #{afterTaxAmount}</if> + <if test="openBank != null and openBank != ''"> and open_bank = #{openBank}</if> + <if test="bankCard != null and bankCard != ''"> and bank_card = #{bankCard}</if> </where> </select> @@ -55,7 +105,22 @@ <if test="createTime != null">create_time,</if> <if test="updateBy != null">update_by,</if> <if test="updateTime != null">update_time,</if> - </trim> + <if test="professionalEthics != null">professional_ethics,</if> + <if test="impartialHonest != null">impartial_honest,</if> + <if test="comprehensiveCoordination != null">comprehensive_coordination,</if> + <if test="professionalAbility != null">professional_ability,</if> + <if test="expressingOpinions != null">expressing_opinions,</if> + <if test="others != null">others,</if> + <if test="comprehensiveEvaluation != null">comprehensive_evaluation,</if> + <if test="majorDangers != null">major_dangers,</if> + <if test="generalHazards != null">general_hazards,</if> + <if test="content != null">content,</if> + <if test="freightBasis != null">freight_basis,</if> + <if test="billingDuration != null">billing_duration,</if> + <if test="afterTaxAmount != null">after_tax_amount,</if> + <if test="openBank != null">open_bank,</if> + <if test="bankCard != null">bank_card,</if> + </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="projectId != null">#{projectId},</if> <if test="expertId != null">#{expertId},</if> @@ -68,7 +133,22 @@ <if test="createTime != null">#{createTime},</if> <if test="updateBy != null">#{updateBy},</if> <if test="updateTime != null">#{updateTime},</if> - </trim> + <if test="professionalEthics != null">#{professionalEthics},</if> + <if test="impartialHonest != null">#{impartialHonest},</if> + <if test="comprehensiveCoordination != null">#{comprehensiveCoordination},</if> + <if test="professionalAbility != null">#{professionalAbility},</if> + <if test="expressingOpinions != null">#{expressingOpinions},</if> + <if test="others != null">#{others},</if> + <if test="comprehensiveEvaluation != null">#{comprehensiveEvaluation},</if> + <if test="majorDangers != null">#{majorDangers},</if> + <if test="generalHazards != null">#{generalHazards},</if> + <if test="content != null">#{content},</if> + <if test="freightBasis != null">#{freightBasis},</if> + <if test="billingDuration != null">#{billingDuration},</if> + <if test="afterTaxAmount != null">#{afterTaxAmount},</if> + <if test="openBank != null">#{openBank},</if> + <if test="bankCard != null">#{bankCard},</if> + </trim> </insert> <insert id="batchInsertProjectExpert" parameterType="java.util.List" > @@ -90,10 +170,23 @@ <if test="selectionMode != null">selection_mode = #{selectionMode},</if> <if test="teamLeader != null">team_leader = #{teamLeader},</if> <if test="delFlag != null">del_flag = #{delFlag},</if> - <if test="createBy != null">create_by = #{createBy},</if> - <if test="createTime != null">create_time = #{createTime},</if> <if test="updateBy != null">update_by = #{updateBy},</if> <if test="updateTime != null">update_time = #{updateTime},</if> + <if test="professionalEthics != null">professional_ethics = #{professionalEthics},</if> + <if test="impartialHonest != null">impartial_honest = #{impartialHonest},</if> + <if test="comprehensiveCoordination != null">comprehensive_coordination = #{comprehensiveCoordination},</if> + <if test="professionalAbility != null">professional_ability = #{professionalAbility},</if> + <if test="expressingOpinions != null">expressing_opinions = #{expressingOpinions},</if> + <if test="others != null">others = #{others},</if> + <if test="comprehensiveEvaluation != null">comprehensive_evaluation = #{comprehensiveEvaluation},</if> + <if test="majorDangers != null">major_dangers = #{majorDangers},</if> + <if test="generalHazards != null">general_hazards = #{generalHazards},</if> + <if test="content != null">content = #{content},</if> + <if test="freightBasis != null">freight_basis = #{freightBasis},</if> + <if test="billingDuration != null">billing_duration = #{billingDuration},</if> + <if test="afterTaxAmount != null">after_tax_amount = #{afterTaxAmount},</if> + <if test="openBank != null">open_bank = #{openBank},</if> + <if test="bankCard != null">bank_card = #{bankCard},</if> </trim> where id = #{id} </update> @@ -167,4 +260,16 @@ order by b.team_leader asc , b.create_time desc </select> + + <select id="projectExpertExportList" parameterType="Long" resultMap="ProjectExpertExportInfoResult"> + select a.project_name ,a.dept_name + ,c.name,c.id_card,c.name,c.job,c.title,c.company_name,b.freight_basis,b.billing_duration, b.after_tax_amount, b.open_bank, b.bank_card + from project_management a + left join project_expert b on a.id = b.project_id and b.del_flag = 0 + left join sys_expert_info c on b.expert_id = c.id + where a.id = #{projectId} + order by b.team_leader asc , b.create_time desc + </select> + + </mapper> \ No newline at end of file -- Gitblit v1.9.2