@@ -120,6 +120,9 @@
OR lower(p.process_no) like lower(CONCAT('%',#{searchKeyWord},'%')))
</if>
ORDER BY p.process_status DESC,p.update_date DESC
+ <if test="currentPage != null and currentPage != ''">
+ LIMIT ${startRecord}, ${pageSize}
+ </if>
</select>
</mapper>