add tagIdLike search param to selectTagBaseInfo
This commit is contained in:

parent
72bdec3ccd
commit
837ff7cc84
@ -136,6 +136,9 @@
|
|||||||
<if test="tagNmLike != null and tagNmLike != ''">
|
<if test="tagNmLike != null and tagNmLike != ''">
|
||||||
AND TAG_NM LIKE '%' || #{tagNmLike} || '%'
|
AND TAG_NM LIKE '%' || #{tagNmLike} || '%'
|
||||||
</if>
|
</if>
|
||||||
|
<if test="tagIdLike != null and tagIdLike != ''">
|
||||||
|
AND TAG_ID LIKE '%' || #{tagIdLike} || '%'
|
||||||
|
</if>
|
||||||
<if test="readDataTypeCd != null and readDataTypeCd != ''">
|
<if test="readDataTypeCd != null and readDataTypeCd != ''">
|
||||||
AND READ_DATA_TYPE_CD = #{readDataTypeCd}
|
AND READ_DATA_TYPE_CD = #{readDataTypeCd}
|
||||||
</if>
|
</if>
|
||||||
|
Reference in New Issue
Block a user