PositionDictMapper.xml 1.28 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.laowu.mapper.PositionDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.laowu.model.PositionDictDO">
        <id column="id" property="id" />
        <result column="create_date" property="createDate" />
        <result column="update_date" property="updateDate" />
        <result column="delete_date" property="deleteDate" />
        <result column="position_type" property="positionType" />
        <result column="parent_id" property="parentId" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, position_type, parent_id
    </sql>

    <select id="jobCode" parameterType="long" resultType="string">
        SELECT
            CONCAT( t2.position_code, t.position_code ) AS position_code
        FROM
            position_dict t
            LEFT JOIN position_dict t2 ON t.parent_id = t2.id
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t.parent_id IS NOT NULL
            AND t.id = #{positionId}
    </select>


</mapper>