<?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.gkhy.system.mapper.ProjectExpertMapper">
|
|
<resultMap type="ProjectExpert" id="ProjectExpertResult">
|
<result property="id" column="id" />
|
<result property="projectId" column="project_id" />
|
<result property="expertId" column="expert_id" />
|
<result property="score" column="score" />
|
<result property="envaluationState" column="envaluation_state" />
|
<result property="selectionMode" column="selection_mode" />
|
<result property="teamLeader" column="team_leader" />
|
<result property="delFlag" column="del_flag" />
|
<result property="createBy" column="create_by" />
|
<result property="createTime" column="create_time" />
|
<result property="updateBy" column="update_by" />
|
<result property="updateTime" column="update_time" />
|
</resultMap>
|
|
<sql id="selectProjectExpertVo">
|
select id, project_id, expert_id, score, envaluation_state, selection_mode, team_leader, del_flag, create_by, create_time, update_by, update_time from project_expert
|
</sql>
|
|
<select id="selectProjectExpertList" parameterType="ProjectExpert" resultMap="ProjectExpertResult">
|
<include refid="selectProjectExpertVo"/>
|
<where>
|
<if test="projectId != null "> and project_id = #{projectId}</if>
|
<if test="expertId != null "> and expert_id = #{expertId}</if>
|
<if test="score != null "> and score = #{score}</if>
|
<if test="envaluationState != null "> and envaluation_state = #{envaluationState}</if>
|
<if test="selectionMode != null "> and selection_mode = #{selectionMode}</if>
|
<if test="teamLeader != null "> and team_leader = #{teamLeader}</if>
|
</where>
|
</select>
|
|
<select id="selectProjectExpertById" parameterType="Long" resultMap="ProjectExpertResult">
|
<include refid="selectProjectExpertVo"/>
|
where id = #{id}
|
</select>
|
|
<insert id="insertProjectExpert" parameterType="ProjectExpert" useGeneratedKeys="true" keyProperty="id">
|
insert into project_expert
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="projectId != null">project_id,</if>
|
<if test="expertId != null">expert_id,</if>
|
<if test="score != null">score,</if>
|
<if test="envaluationState != null">envaluation_state,</if>
|
<if test="selectionMode != null">selection_mode,</if>
|
<if test="teamLeader != null">team_leader,</if>
|
<if test="delFlag != null">del_flag,</if>
|
<if test="createBy != null">create_by,</if>
|
<if test="createTime != null">create_time,</if>
|
<if test="updateBy != null">update_by,</if>
|
<if test="updateTime != null">update_time,</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="projectId != null">#{projectId},</if>
|
<if test="expertId != null">#{expertId},</if>
|
<if test="score != null">#{score},</if>
|
<if test="envaluationState != null">#{envaluationState},</if>
|
<if test="selectionMode != null">#{selectionMode},</if>
|
<if test="teamLeader != null">#{teamLeader},</if>
|
<if test="delFlag != null">#{delFlag},</if>
|
<if test="createBy != null">#{createBy},</if>
|
<if test="createTime != null">#{createTime},</if>
|
<if test="updateBy != null">#{updateBy},</if>
|
<if test="updateTime != null">#{updateTime},</if>
|
</trim>
|
</insert>
|
|
<update id="updateProjectExpert" parameterType="ProjectExpert">
|
update project_expert
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="projectId != null">project_id = #{projectId},</if>
|
<if test="expertId != null">expert_id = #{expertId},</if>
|
<if test="score != null">score = #{score},</if>
|
<if test="envaluationState != null">envaluation_state = #{envaluationState},</if>
|
<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>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deleteProjectExpertById" parameterType="Long">
|
delete from project_expert where id = #{id}
|
</delete>
|
|
<delete id="deleteProjectExpertByIds" parameterType="String">
|
delete from project_expert where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
</mapper>
|