|
|
@@ -0,0 +1,219 @@
|
|
|
+package com.fs.course.controller;
|
|
|
+
|
|
|
+import cn.hutool.core.collection.CollectionUtil;
|
|
|
+import com.fs.common.annotation.Log;
|
|
|
+import com.fs.common.core.controller.BaseController;
|
|
|
+import com.fs.common.core.domain.AjaxResult;
|
|
|
+import com.fs.common.core.domain.R;
|
|
|
+import com.fs.common.core.page.TableDataInfo;
|
|
|
+import com.fs.common.enums.BusinessType;
|
|
|
+import com.fs.common.exception.CustomException;
|
|
|
+import com.fs.common.utils.poi.ExcelUtil;
|
|
|
+import com.fs.course.domain.FsCourseWatchLog;
|
|
|
+import com.fs.course.param.FsCourseOverParam;
|
|
|
+import com.fs.course.param.FsCourseWatchLogListParam;
|
|
|
+import com.fs.course.param.FsCourseWatchLogStatisticsListParam;
|
|
|
+import com.fs.course.service.IFsCourseWatchLogService;
|
|
|
+import com.fs.course.vo.FsCourseOverVO;
|
|
|
+import com.fs.course.vo.FsCourseWatchLogListVO;
|
|
|
+import com.fs.course.vo.FsCourseWatchLogStatisticsListVO;
|
|
|
+import com.fs.qw.param.QwWatchLogStatisticsListParam;
|
|
|
+import com.fs.qw.service.IQwWatchLogService;
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
+import com.github.pagehelper.PageInfo;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 短链课程看课记录Controller
|
|
|
+ *
|
|
|
+ * @author fs
|
|
|
+ * @date 2024-10-24
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/course/courseWatchLog")
|
|
|
+public class FsCourseWatchLogController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private IFsCourseWatchLogService fsCourseWatchLogService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IQwWatchLogService qwWatchLogService;
|
|
|
+ /**
|
|
|
+ * 查询短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:list')")
|
|
|
+ @GetMapping("/list")
|
|
|
+ public TableDataInfo list(FsCourseWatchLogListParam param)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ if(CollectionUtil.isNotEmpty(param.getUserIds())){
|
|
|
+ param.setUserIds(param.getUserIds().stream()
|
|
|
+ .filter(userId -> userId != null && userId.startsWith("user_"))
|
|
|
+ .map(userId -> userId.substring(5))
|
|
|
+ .collect(Collectors.toList())
|
|
|
+ );
|
|
|
+ }
|
|
|
+ List<FsCourseWatchLogListVO> list = fsCourseWatchLogService.selectFsCourseWatchLogListVO(param);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:pageList')")
|
|
|
+ @PostMapping("/pageList")
|
|
|
+ public R pageList(@RequestBody FsCourseWatchLogListParam param)
|
|
|
+ {
|
|
|
+ PageHelper.startPage(param.getPageNum(), param.getPageSize());
|
|
|
+ List<FsCourseWatchLogListVO> list = fsCourseWatchLogService.selectFsCourseWatchLogListVO(param);
|
|
|
+ return R.ok().put("data", new PageInfo<>(list));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/qwWatchLogAllStatisticsList")
|
|
|
+ public TableDataInfo qwWatchLogAllStatisticsList(QwWatchLogStatisticsListParam param)
|
|
|
+ {
|
|
|
+ logger.info("会员课程数据汇总 参数: {}",param);
|
|
|
+
|
|
|
+ if(param.getCompanyId() == null){
|
|
|
+ throw new CustomException("必须选择公司!");
|
|
|
+ }
|
|
|
+ if (param.getSTime()==null||param.getETime()==null){
|
|
|
+ return getDataTable(new ArrayList<>());
|
|
|
+ }
|
|
|
+ return qwWatchLogService.selectQwWatchLogAllStatisticsListVONew(param);
|
|
|
+ }
|
|
|
+ @GetMapping("/qwWatchLogStatisticsList")
|
|
|
+ public TableDataInfo qwWatchLogStatisticsList(QwWatchLogStatisticsListParam param)
|
|
|
+ {
|
|
|
+ if(param.getPageNum() == null){
|
|
|
+ param.setPageNum(1L);
|
|
|
+ }
|
|
|
+ if(param.getPageSize() == null){
|
|
|
+ param.setPageSize(10L);
|
|
|
+ }
|
|
|
+ if (param.getSTime()==null||param.getETime()==null){
|
|
|
+ return getDataTable(new ArrayList<>());
|
|
|
+ }
|
|
|
+ if(param.getCompanyId() == null){
|
|
|
+ throw new CustomException("必须选择公司!");
|
|
|
+ }
|
|
|
+ return qwWatchLogService.selectQwWatchLogStatisticsListVONew(param);
|
|
|
+ }
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:statisticsList')")
|
|
|
+ @GetMapping("/statisticsList")
|
|
|
+ public TableDataInfo statisticsList(FsCourseWatchLogStatisticsListParam param)
|
|
|
+ {
|
|
|
+ // 如果看指定用户就不用设置公司
|
|
|
+ if(param.getCompanyId() == null){
|
|
|
+ if(param.getUserId() == null) {
|
|
|
+ throw new CustomException("查看公司或者用户必填!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (param.getSTime()==null||param.getETime()==null){
|
|
|
+ throw new CustomException("必须选择开始时间和结束时间!");
|
|
|
+ }
|
|
|
+ startPage();
|
|
|
+ List<FsCourseWatchLogStatisticsListVO> list = fsCourseWatchLogService.selectFsCourseWatchLogStatisticsListVONew(param);
|
|
|
+
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员看课统计导出
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:statisticsExport')")
|
|
|
+ @Log(title = "会员看课统计导出", businessType = BusinessType.EXPORT)
|
|
|
+ @PostMapping("/statisticsExport")
|
|
|
+ public AjaxResult statisticsExport(@RequestBody FsCourseWatchLogStatisticsListParam param)
|
|
|
+ {
|
|
|
+
|
|
|
+ // 如果看指定用户就不用设置公司
|
|
|
+ if(param.getCompanyId() == null){
|
|
|
+ if(param.getUserId() == null) {
|
|
|
+ throw new CustomException("查看公司或者用户必填!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (param.getSTime()==null||param.getETime()==null){
|
|
|
+ throw new CustomException("必须选择开始时间和结束时间!");
|
|
|
+ }
|
|
|
+
|
|
|
+ List<FsCourseWatchLogStatisticsListVO> list = fsCourseWatchLogService.selectFsCourseWatchLogStatisticsListVONew(param);
|
|
|
+
|
|
|
+ ExcelUtil<FsCourseWatchLogStatisticsListVO> util = new ExcelUtil<FsCourseWatchLogStatisticsListVO>(FsCourseWatchLogStatisticsListVO.class);
|
|
|
+ return util.exportExcel(list, "会员看课统计");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:export')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.EXPORT)
|
|
|
+ @PostMapping("/export")
|
|
|
+ public AjaxResult export(@RequestBody FsCourseWatchLogListParam param)
|
|
|
+ {
|
|
|
+ List<FsCourseWatchLogListVO> list = fsCourseWatchLogService.selectFsCourseWatchLogListVO(param);
|
|
|
+ ExcelUtil<FsCourseWatchLogListVO> util = new ExcelUtil<FsCourseWatchLogListVO>(FsCourseWatchLogListVO.class);
|
|
|
+ return util.exportExcel(list, "短链课程看课记录数据");
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取短链课程看课记录详细信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:query')")
|
|
|
+ @GetMapping(value = "/{logId}")
|
|
|
+ public AjaxResult getInfo(@PathVariable("logId") Long logId)
|
|
|
+ {
|
|
|
+ return AjaxResult.success(fsCourseWatchLogService.selectFsCourseWatchLogByLogId(logId));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:add')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.INSERT)
|
|
|
+ @PostMapping
|
|
|
+ public AjaxResult add(@RequestBody FsCourseWatchLog fsCourseWatchLog)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseWatchLogService.insertFsCourseWatchLog(fsCourseWatchLog));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:edit')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping
|
|
|
+ public AjaxResult edit(@RequestBody FsCourseWatchLog fsCourseWatchLog)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseWatchLogService.updateFsCourseWatchLog(fsCourseWatchLog));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:remove')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.DELETE)
|
|
|
+ @DeleteMapping("/{logIds}")
|
|
|
+ public AjaxResult remove(@PathVariable Long[] logIds)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseWatchLogService.deleteFsCourseWatchLogByLogIds(logIds));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/watchLogStatistics")
|
|
|
+ public TableDataInfo watchLogStatistics(FsCourseOverParam param)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ if (param.getSTime()==null||param.getETime()==null){
|
|
|
+ return getDataTable(new ArrayList<>());
|
|
|
+ }
|
|
|
+ List<FsCourseOverVO> list = fsCourseWatchLogService.selectFsCourseWatchLogOverStatisticsListVO(param);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+}
|