成果记录list查询

This commit is contained in:
xxq250 2026-07-07 09:14:10 +08:00
parent d4dac70695
commit fc420f7b8e
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from achievements a
<where>
and 1 = 1
<if test='all == false'> and a.status='1'</if>
<if test='allStatus == false'> and a.status='1'</if>
<if test="achievementName != null and achievementName != ''"> and a.achievement_name like concat('%', #{achievementName}, '%')</if>
<if test="showAchievementName != null and showAchievementName != ''"> and a.show_ach_name like concat('%', #{showAchievementName}, '%')</if>
<if test="source != null and source != ''"> and a.source = #{source}</if>