<?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="cn.timer.api.dao.jxgl.JxglProcessNodeMapper">

    <resultMap id="BaseResultMap" type="cn.timer.api.bean.jxgl.JxglProcessNode" >
                <id column="id" property="id" />
                <result column="appraisal_id" property="appraisalId" />
                <result column="executor_id" property="executorId" />
                <result column="executor_name" property="executorName" />
                <result column="execute_type" property="executeType" />
                <result column="process_type" property="processType" />
                <result column="name" property="name" />
                <result column="leader_tier" property="leaderTier" />
                <result column="weight" property="weight" />
                <result column="sts" property="sts" />
                <result column="update_time" property="updateTime" />
    </resultMap>

    <sql id="Base_Column_List">
                id,
                appraisal_id,
                executor_id,
                executor_name,
                execute_type,
                process_type,
                name,
                leader_tier,
                weight,
                sts,
                update_time
    </sql>
    
    <sql id="Base_Column_List_Alias">
                id JxglProcessNode_id,
                appraisal_id JxglProcessNode_appraisal_id,
                executor_id JxglProcessNode_executor_id,
                executor_name JxglProcessNode_executor_name,
                execute_type JxglProcessNode_execute_type,
                process_type JxglProcessNode_process_type,
                name JxglProcessNode_name,
                leader_tier JxglProcessNode_leader_tier,
                weight JxglProcessNode_weight,
                sts JxglProcessNode_sts,
                update_time JxglProcessNode_update_time
    </sql>

	<!-- 

    <insert id="insert" useGeneratedKeys="true" keyColumn="id" parameterType="cn.timer.api.bean.jxgl.JxglProcessNode">
        INSERT INTO jxgl_process_node
        <trim prefix="(" suffix=")" suffixOverrides=",">
                        <if test ='null != appraisalId'>
                        appraisal_id,
                        </if>
                        <if test ='null != executorId'>
                        executor_id,
                        </if>
                        <if test ='null != executorName'>
                        executor_name,
                        </if>
                        <if test ='null != executeType'>
                        execute_type,
                        </if>
                        <if test ='null != processType'>
                        process_type,
                        </if>
                        <if test ='null != name'>
                        name,
                        </if>
                        <if test ='null != leaderTier'>
                        leader_tier,
                        </if>
                        <if test ='null != weight'>
                        weight,W
                        </if>
                        <if test ='null != sts'>
                        sts,
                        </if>
                        <if test ='null != updateTime'>
                        update_time
                        </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
                        <if test ='null != appraisalId'>
                        #{appraisalId},
                        </if>
                        <if test ='null != executorId'>
                        #{executorId},
                        </if>
                        <if test ='null != executorName'>
                        #{executorName},
                        </if>
                        <if test ='null != executeType'>
                        #{executeType},
                        </if>
                        <if test ='null != processType'>
                        #{processType},
                        </if>
                        <if test ='null != name'>
                        #{name},
                        </if>
                        <if test ='null != leaderTier'>
                        #{leaderTier},
                        </if>
                        <if test ='null != weight'>
                        #{weight},
                        </if>
                        <if test ='null != sts'>
                        #{sts},
                        </if>
                        <if test ='null != updateTime'>
                        #{updateTime}
                        </if>
        </trim>
    </insert>

    <delete id="delete" >
        DELETE FROM jxgl_process_node
        WHERE id = #{id}
    </delete>

    <update id="update" parameterType="cn.timer.api.bean.jxgl.JxglProcessNode">
        UPDATE jxgl_process_node
        <set>
                    <if test ='null != appraisalId'>appraisal_id = #{appraisalId},</if>
                    <if test ='null != executorId'>executor_id = #{executorId},</if>
                    <if test ='null != executorName'>executor_name = #{executorName},</if>
                    <if test ='null != executeType'>execute_type = #{executeType},</if>
                    <if test ='null != processType'>process_type = #{processType},</if>
                    <if test ='null != name'>name = #{name},</if>
                    <if test ='null != leaderTier'>leader_tier = #{leaderTier},</if>
                    <if test ='null != weight'>weight = #{weight},</if>
                    <if test ='null != sts'>sts = #{sts},</if>
                    <if test ='null != updateTime'>update_time = #{updateTime}</if>
        </set>
        WHERE id = #{id}
    </update>


    <select id="load" resultMap="BaseResultMap">
        SELECT <include refid="Base_Column_List" />
        FROM jxgl_process_node
        WHERE id = #{id}
    </select>

    <select id="pageList" resultMap="BaseResultMap">
        SELECT <include refid="Base_Column_List" />
        FROM jxgl_process_node
        LIMIT #{offset}, #{pageSize}
    </select>

    <select id="pageListCount" resultType="java.lang.Integer">
        SELECT count(1)
        FROM jxgl_process_node
    </select>

	 -->

</mapper>