|
@@ -7,6 +7,7 @@ import com.fs.qw.vo.QwWatchLogAllStatisticsListVO;
|
|
|
import com.fs.qw.vo.QwWatchLogStatisticsListVO;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
+import org.springframework.security.core.parameters.P;
|
|
|
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
@@ -230,5 +231,10 @@ public interface QwWatchLogMapper extends BaseMapper<QwWatchLog>{
|
|
|
|
|
|
Long selectQwExtCountByDayAndCount(QwWatchLogStatisticsListParam param);
|
|
|
|
|
|
- Long selectQwWatchLogAllStatisticsListVONewCount(List<Long> userIds, String sTime, String eTime, Long project, Long courseId, Long videoId);
|
|
|
+ Long selectQwWatchLogAllStatisticsListVONewCount(@Param("companyUserIds") List<Long> userIds,
|
|
|
+ @Param("sDate") String sTime,
|
|
|
+ @Param("eDate") String eTime,
|
|
|
+ @Param("project") Long project,
|
|
|
+ @Param("courseId") Long courseId,
|
|
|
+ @Param("videoId") Long videoId);
|
|
|
}
|