aircraft-server/aircraft-system/src/main/resources/mapper/article/CpTextMapper.xml

14 lines
539 B
XML
Raw Normal View History

2025-07-11 19:33:54 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.aircraft.modules.article.mapper.CpTextMapper">
2025-07-16 22:35:44 +08:00
<select id="findByPage" resultType="com.aircraft.modules.article.domain.CpText">
SELECT *
FROM cp_text
WHERE del_flag = 0
<if test="keyWord != null and keyWord != ''">
AND text LIKE CONCAT('%', #{keyWord}, '%')
</if>
ORDER BY id DESC
</select>
2025-07-11 19:33:54 +08:00
</mapper>