This commit is contained in:
2025-11-25 18:57:39 +08:00
parent b5d4f0f6ba
commit 780ed31a1d
9 changed files with 247 additions and 113 deletions

View File

@@ -363,7 +363,7 @@
<!-- 联表查询用户成就列表(包含进度信息)- 带权限过滤 -->
<select id="selectUserAchievementsWithProgress" resultMap="AchievementVOResultMap">
SELECT
SELECT DISTINCT
a.id,
a.achievement_id,
a.name,
@@ -398,6 +398,7 @@
<if test="type != null">
AND a.type = #{type}
</if>
ORDER BY a.order_num ASC, a.create_time DESC
</select>