<?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.ycl.platform.mapper.CheckScoreMapper">
|
|
<resultMap type="com.ycl.platform.domain.entity.CheckScore" id="CheckScoreResult">
|
<result property="id" column="id" />
|
<result property="score" column="score" />
|
<result property="deptId" column="dept_id" />
|
<result property="publishId" column="publish_id" />
|
<result property="ruleId" column="rule_id" />
|
<result property="examineCategory" column="examine_category" />
|
<result property="createTime" column="create_time" />
|
<result property="updateUser" column="update_user" />
|
<result property="updateUserName" column="update_user_name" />
|
<result property="auditState" column="audit_state" />
|
</resultMap>
|
|
<sql id="selectCheckScoreVo">
|
select id, score, dept_id, publish_id, rule_id, examine_category, create_time, update_user, update_user_name, audit_state from t_check_score
|
</sql>
|
|
<select id="selectCheckScoreList" resultMap="CheckScoreResult">
|
<include refid="selectCheckScoreVo"/>
|
<where>
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
<if test="publishId != null "> and publish_id = #{publishId}</if>
|
<if test="ruleId != null "> and rule_id = #{ruleId}</if>
|
<if test="examineCategory != null "> and examine_category = #{examineCategory}</if>
|
</where>
|
</select>
|
|
<select id="selectCheckScoreById" resultMap="CheckScoreResult">
|
<include refid="selectCheckScoreVo"/>
|
where id = #{id}
|
</select>
|
|
<insert id="insertCheckScore" useGeneratedKeys="true" keyProperty="id">
|
insert into t_check_score
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="score != null">score,</if>
|
<if test="deptId != null">dept_id,</if>
|
<if test="publishId != null">publish_id,</if>
|
<if test="ruleId != null">rule_id,</if>
|
<if test="examineCategory != null">examine_category,</if>
|
<if test="createTime != null">create_time,</if>
|
<if test="updateUser != null">update_user,</if>
|
<if test="updateUserName != null">update_user_name,</if>
|
<if test="auditState != null">audit_state,</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="score != null">#{score},</if>
|
<if test="deptId != null">#{deptId},</if>
|
<if test="publishId != null">#{publishId},</if>
|
<if test="ruleId != null">#{ruleId},</if>
|
<if test="examineCategory != null">#{examineCategory},</if>
|
<if test="createTime != null">#{createTime},</if>
|
<if test="updateUser != null">#{updateUser},</if>
|
<if test="updateUserName != null">#{updateUserName},</if>
|
<if test="auditState != null">#{auditState},</if>
|
</trim>
|
</insert>
|
|
<update id="updateCheckScore">
|
update t_check_score
|
<trim prefix="SET" suffixOverrides=",">
|
<if test="score != null">score = #{score},</if>
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
<if test="publishId != null">publish_id = #{publishId},</if>
|
<if test="ruleId != null">rule_id = #{ruleId},</if>
|
<if test="examineCategory != null">examine_category = #{examineCategory},</if>
|
<if test="createTime != null">create_time = #{createTime},</if>
|
<if test="updateUser != null">update_user = #{updateUser},</if>
|
<if test="updateUserName != null">update_user_name = #{updateUserName},</if>
|
<if test="auditState != null">audit_state = #{auditState},</if>
|
</trim>
|
where id = #{id}
|
</update>
|
|
<delete id="deleteCheckScoreById" >
|
delete from t_check_score where id = #{id}
|
</delete>
|
|
<delete id="deleteCheckScoreByIds" >
|
delete from t_check_score where id in
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
#{id}
|
</foreach>
|
</delete>
|
</mapper>
|