EmployeeMapper.xml 3.13 KB
<?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.pipihelper.project.feishu.dao.EmployeeDao">
    <resultMap id="EmployeeResultMap" type="com.pipihelper.project.feishu.entity.Employee">
        <id column="id" property="id"/>
        <result column="open_id" property="openId"/>
        <result column="mobile" property="mobile"/>
        <result column="name" property="name"/>
        <result column="gender" property="gender"/>
        <result column="department_id" property="departmentId"/>
        <result column="floor" property="floor"/>

    </resultMap>

    <!-- <resultMap id="BuffConfigResultBOMap" type="com.pipihelper.project.feishu.entity.Deployee"
                extends="EmployeeResultMap">
     </resultMap>-->

    <sql id="Base_Column_List">
        id,open_id,mobile,name,gender,department_id,floor
    </sql>

    <select id="findById" parameterType="java.lang.Integer" resultMap="EmployeeResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_employee
        <where>
            id = #{id}
        </where>
    </select>


    <select id="findStartList" resultMap="EmployeeResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_employee
        <where>
            id > #{startId}
            and floor = #{floor}
            limit #{limit};
        </where>
    </select>

    <select id="findByOpenId" parameterType="java.lang.String" resultMap="EmployeeResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_employee
        <where>
            open_id = #{openId}
        </where>
    </select>

    <select id="findAll" resultMap="EmployeeResultMap">
        select
        <include refid="Base_Column_List"/>
        from t_employee
    </select>

    <delete id="deleteById" parameterType="java.lang.Integer">
        delete from t_employee
        <where>
            id = #{id}
        </where>
    </delete>

    <insert id="create" useGeneratedKeys="true" keyProperty="id"
            parameterType="com.pipihelper.project.feishu.entity.Employee">
        insert into t_employee (open_id, mobile, name, gender, status, department_id,floor)
        values (#{openId}, #{mobile}, #{name}, #{gender}, #{status}, #{departmentId},#{floor})
    </insert>

    <update id="update" parameterType="com.pipihelper.project.feishu.entity.Employee">
        update t_employee
        <set>
            <if test="openId != null">
                open_id = #{openId},
            </if>

            <if test="mobile != null">
                mobile = #{mobile},
            </if>

            <if test="gender != null">
                gender = #{gender},
            </if>
            <if test="status != null">
                status = #{status},
            </if>

            <if test="departmentId != null">
                department_id = #{departmentId},
            </if>
            <if test="floor != null">
                floor = #{floor},
            </if>
        </set>
        <where>
            id = #{id}
        </where>
    </update>


</mapper>