|
|
@@ -81,11 +81,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
LIMIT 1
|
|
|
</select>
|
|
|
|
|
|
- <!-- 查询用户最近一次完课记录 -->
|
|
|
+ <!-- 查询用户最近一次完课记录(不限直播间,用于计算连续天数) -->
|
|
|
<select id="selectLatestByUser" resultMap="LiveCompletionPointsRecordResult">
|
|
|
SELECT * FROM live_completion_points_record
|
|
|
- WHERE live_id = #{liveId}
|
|
|
- AND user_id = #{userId}
|
|
|
+ WHERE user_id = #{userId}
|
|
|
ORDER BY current_completion_date DESC
|
|
|
LIMIT 1
|
|
|
</select>
|