瀏覽代碼

fix: 进线客户统计

xdd 1 月之前
父節點
當前提交
61d2dceef6
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      fs-service-system/src/main/java/com/fs/qw/mapper/QwWatchLogMapper.java

+ 7 - 1
fs-service-system/src/main/java/com/fs/qw/mapper/QwWatchLogMapper.java

@@ -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);
 }