검색을 위한 동적 쿼리가 작동하지 않았다.
<if test="schEtc01 != null and schEtc01 !='' and schEtc01 =='0'">
<if test="searchStartDate != null and searchStartDate != ''">
AND RGST_DT >= #{searchStartDate}
</if>
<if test="searchEndDate != null and searchEndDate != ''">
AND RGST_DT <= #{searchEndDate}
</if>
</if>
if 조건절에서 값에는 홑따옴표를 사용하지 않아도 된다.
<if test="schEtc01 != null and schEtc01 !='' and schEtc01 ==0"></if>