#
LSH
2023-06-07 f9650f22f2779b7f096918c20451f577452d7aa9
src/main/resources/mapper/BasDevpMapper.xml
@@ -66,4 +66,22 @@
        group by abd.dev_no
    </select>
    <select id="selectByWrkNo" resultMap="BaseResultMap">
        select top 1 *
        from asr_bas_devp
        where 1=1
        and wrk_no = #{wrkNo}
    </select>
    <select id="getLoading" resultMap="BaseResultMap">
        select * from dbo.asr_bas_devp where 1=1
        and loading = 'Y'
        <if test="sour > 200">
            and dev_no = 204
        </if>
        <if test="sour &lt; 200">
            and dev_no = 104
        </if>
    </select>
</mapper>