add tagIdLike search param to selectTagBaseInfo

This commit is contained in:
Vu Trung Kien/(Vu Trung Kien)/현장대리인/SK
2025-07-31 16:39:11 +09:00
parent 72bdec3ccd
commit 837ff7cc84

View File

@ -136,6 +136,9 @@
<if test="tagNmLike != null and tagNmLike != ''">
AND TAG_NM LIKE '%' || #{tagNmLike} || '%'
</if>
<if test="tagIdLike != null and tagIdLike != ''">
AND TAG_ID LIKE '%' || #{tagIdLike} || '%'
</if>
<if test="readDataTypeCd != null and readDataTypeCd != ''">
AND READ_DATA_TYPE_CD = #{readDataTypeCd}
</if>