Blame view

JobDictMapper.xml 575 Bytes
涂亚平 committed
1 2 3 4
<?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.subsidy.mapper.JobDictMapper">

5 6 7 8 9 10 11 12 13 14
    <select id="queryMemberJobs" parameterType="long" resultType="com.subsidy.model.JobDictDO">
        SELECT
            t2.*
        FROM
            job_member_mapping t
            LEFT JOIN job_dict t2 ON t.job_id = t2.id
            where t.delete_date is null
            and t2.delete_date is null
            and t.member_id = #{memberId}
    </select>
涂亚平 committed
15
</mapper>