<?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.yiboshi.science.dao.ComProjectAssignDAO"> <sql id="allColumns"> t.id as id, t.expert_id as expertId, t.proj_id as projId, t.assign_year as assignYear, t.total_score as gradeScore, t.remark as remark, t.created as created, t.updated as updated </sql> <select id="getListByPage" resultType="com.yiboshi.science.param.dto.ComProjectAssignDTO"> SELECT a.*, c.person_name,c.cert_id,c.sex,c.birthday,c.mobile,c.email,c.education,c.title,c.work_unit,g.unit_name,d.name education_name, e.name title_name,f.proj_name,f.app_no,f.proj_no,f.proj_class,h.total_funding, i.unit_name as app_unit_name, k.group_name, l.person_name as app_person_name, m.name as knowledge_name FROM com_project_assign a LEFT JOIN com_expert b ON a.expert_id = b.id LEFT JOIN com_person c ON b.person_id = c.id LEFT JOIN com_unit g ON c.unit_id = g.id left join system_parameter d on c.education=d.id and d.type_id=8 left join system_parameter e on c.title=e.id and e.type_id=7 left join com_project f on a.proj_id=f.id left join com_project_basic h on f.id = h.proj_id left join com_unit i on f.app_unit_id = i.id left join com_project_group_detail j on f.id = j.proj_id left join com_project_group k on j.group_id = k.id left join com_person l ON f.app_person_id = l.id left join system_parameter m on f.knowledge_id=m.id and m.type_id=68 <where> ${ew.sqlSegment} </where> ORDER BY f.id,a.created ASC </select> <select id="getAssignExpertListByProjectId" resultType="com.yiboshi.science.param.dto.ComProjectAssignDTO"> SELECT a.*, c.person_name,c.cert_id,c.sex,c.birthday,c.mobile,c.email,c.education,c.title,g.unit_name ,d.name education_name,e.name title_name FROM com_project_assign a LEFT JOIN com_expert b ON a.expert_id = b.id LEFT JOIN com_person c ON b.person_id = c.id LEFT JOIN com_unit g ON c.unit_id = g.id left join system_parameter d on c.education=d.id and d.type_id=8 left join system_parameter e on c.title=e.id and e.type_id=7 where a.proj_id = #{projectId} </select> <select id="getAssignExpertList" resultType="com.yiboshi.science.param.dto.ComProjectAssignDTO"> SELECT a.*, c.person_name as personName,c.work_unit FROM com_project_assign a LEFT JOIN com_expert b ON a.expert_id = b.id LEFT JOIN com_person c ON b.person_id = c.id where a.proj_id = #{projectId} order by a.expert_type asc,a.total_score desc,c.person_name asc </select> <select id="getAssignExpertById" parameterType="java.lang.String" resultType="com.yiboshi.science.param.dto.ComProjectAssignDTO"> SELECT a.*, c.person_name,c.cert_id,c.sex,c.birthday,c.mobile,c.email,c.education,c.title,g.unit_name ,d.name education_name,e.name title_name,f.proj_name,f.proj_no FROM com_project_assign a LEFT JOIN com_expert b ON a.expert_id = b.id LEFT JOIN com_person c ON b.person_id = c.id LEFT JOIN com_unit g ON c.unit_id = g.id left join system_parameter d on c.education=d.id and d.type_id=8 left join system_parameter e on c.title=e.id and e.type_id=7 left join com_project f on a.proj_id=f.id where a.id = #{id} </select> <select id="getAssignCount" parameterType="java.lang.String" resultType="com.yiboshi.science.entity.AssignCount"> SELECT assign_year year,count(*) assignCount FROM com_project_assign a where expert_id=#{expertId} group by assign_year </select> <select id="getProjectGroupAssignById" resultType="com.yiboshi.science.param.dto.ComProjectGroupDTO"> select a.*, b.proj_id, c.expert_id, d.id as assign_id from com_project_group a left join com_project_group_detail b on a.id = b.group_id left join com_project_group_assign c on a.id = c.group_id left join com_project_assign d on b.proj_id = d.proj_id and c.expert_id = d.expert_id where a.id = #{id} and c.expert_id = #{expertId} and d.id is not null </select> </mapper>