TC 수정

This commit is contained in:
kimre
2022-07-18 20:55:42 +09:00
parent 2069d87f49
commit 8475672b02
4 changed files with 22 additions and 24 deletions

View File

@@ -58,19 +58,19 @@
<sql id="sndnoBlckCondition">
<if test="regId != null and regId != ''">
AND UPPER(esb.REG_ID) LIKE UPPER(CONCAT('%', #{regId}, '%'))
AND UPPER(esb.REG_ID) LIKE UPPER(CONCAT('%', #{regId}, '%'))
</if>
<if test="sndblckTpCd != null and sndblckTpCd != ''">
AND esb.SNDBLCK_TP_CD = #{sndblckTpCd}
AND esb.SNDBLCK_TP_CD = #{sndblckTpCd}
</if>
<if test="blckYn != null and blckYn != ''">
AND esb.BLCK_YN = #{blckYn}
AND esb.BLCK_YN = #{blckYn}
</if>
<if test="blckRsnCd != null and blckRsnCd != ''">
AND esb.BLCK_RSN_CD = #{blckRsnCd}
AND esb.BLCK_RSN_CD = #{blckRsnCd}
</if>
<if test="blckSndrno != null and blckSndrno != ''">
AND esb.BLCK_SNDRNO = #{blckSndrno}
AND esb.BLCK_SNDRNO LIKE CONCAT('%', #{blckSndrno},'%')
</if>
</sql>