|
@@ -459,10 +459,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
and o.company_id=#{companyId}
|
|
|
</if>
|
|
|
<if test= 'sTime != null '>
|
|
|
- and o.create_time >= #{sTime}
|
|
|
+ and DATE(o.create_time) >= #{sTime}
|
|
|
</if>
|
|
|
<if test='eTime != null '>
|
|
|
- and o.create_time <= #{eTime}
|
|
|
+ and DATE(o.create_time) <= #{eTime}
|
|
|
</if>
|
|
|
<if test ='courseId !=null'>
|
|
|
and o.course_id = #{courseId}
|
|
@@ -484,7 +484,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
GROUP BY o.video_id,o.user_id,DATE(o.create_time),o.project,o.course_id
|
|
|
ORDER BY o.video_id ,DATE(o.create_time)
|
|
|
|
|
|
- limit ${(pageNum-1)*pageSize},${pageSize}
|
|
|
+<!-- limit ${(pageNum-1)*pageSize},${pageSize}-->
|
|
|
</select>
|
|
|
<select id="selectFsCourseWatchLogStatisticsListVONewCount" resultType="java.lang.Long">
|
|
|
SELECT COUNT(*)
|