File was renamed from ycl-server/src/main/resources/mapper/zgyw/DefaultResultMapper.xml |
| | |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.ycl.platform.mapper.DefaultResultMapper"> |
| | | |
| | | <resultMap type="com.ycl.platform.domain.entity.DefaultResult" id="DefaultResultResult"> |
| | | |
| | | <resultMap type="com.ycl.platform.domain.entity.ContractResult" id="DefaultResultResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="unitId" column="unit_id" /> |
| | | <result property="publishId" column="publish_id" /> |
| | | <result property="defaultScore" column="default_score" /> |
| | | <result property="contractScore" column="default_score" /> |
| | | <result property="auditState" column="audit_state" /> |
| | | <result property="publish" column="publish" /> |
| | | <result property="checkTime" column="check_time" /> |
| | |
| | | </resultMap> |
| | | |
| | | <sql id="selectDefaultResultVo"> |
| | | select id, unit_id, publish_id, default_score, audit_state, publish, check_time, update_time, deleted from t_default_result |
| | | select id, unit_id, publish_id, default_score, audit_state, publish, check_time, update_time, deleted from t_contract_result |
| | | </sql> |
| | | |
| | | <select id="selectDefaultResultList" resultMap="DefaultResultResult"> |
| | | <include refid="selectDefaultResultVo"/> |
| | | <where> |
| | | <where> |
| | | <if test="unitId != null "> and unit_id = #{unitId}</if> |
| | | <if test="publishId != null "> and publish_id = #{publishId}</if> |
| | | <if test="auditState != null "> and audit_state = #{auditState}</if> |
| | |
| | | <if test="checkTime != null "> and check_time = #{checkTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | |
| | | <select id="selectDefaultResultById" resultMap="DefaultResultResult"> |
| | | <include refid="selectDefaultResultVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | |
| | | <insert id="insertDefaultResult" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into t_default_result |
| | | insert into t_contract_result |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="unitId != null">unit_id,</if> |
| | | <if test="publishId != null">publish_id,</if> |
| | | <if test="defaultScore != null">default_score,</if> |
| | | <if test="contractScore != null">default_score,</if> |
| | | <if test="auditState != null">audit_state,</if> |
| | | <if test="publish != null">publish,</if> |
| | | <if test="checkTime != null">check_time,</if> |
| | |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="unitId != null">#{unitId},</if> |
| | | <if test="publishId != null">#{publishId},</if> |
| | | <if test="defaultScore != null">#{defaultScore},</if> |
| | | <if test="contractScore != null">#{contractScore},</if> |
| | | <if test="auditState != null">#{auditState},</if> |
| | | <if test="publish != null">#{publish},</if> |
| | | <if test="checkTime != null">#{checkTime},</if> |
| | |
| | | </insert> |
| | | |
| | | <update id="updateDefaultResult" > |
| | | update t_default_result |
| | | update t_contract_result |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="unitId != null">unit_id = #{unitId},</if> |
| | | <if test="publishId != null">publish_id = #{publishId},</if> |
| | | <if test="defaultScore != null">default_score = #{defaultScore},</if> |
| | | <if test="contractScore != null">default_score = #{contractScore},</if> |
| | | <if test="auditState != null">audit_state = #{auditState},</if> |
| | | <if test="publish != null">publish = #{publish},</if> |
| | | <if test="checkTime != null">check_time = #{checkTime},</if> |
| | |
| | | </update> |
| | | |
| | | <delete id="deleteDefaultResultById"> |
| | | delete from t_default_result where id = #{id} |
| | | delete from t_contract_result where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteDefaultResultByIds" > |
| | | delete from t_default_result where id in |
| | | delete from t_contract_result where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
| | | </mapper> |