|
|
@@ -0,0 +1,211 @@
|
|
|
+package com.fs.course.controller;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+import com.fs.common.core.domain.R;
|
|
|
+import com.fs.common.exception.CustomException;
|
|
|
+import com.fs.course.param.FsCourseOverParam;
|
|
|
+import com.fs.course.param.FsCourseWatchLogListParam;
|
|
|
+import com.fs.course.param.FsCourseWatchLogStatisticsListParam;
|
|
|
+import com.fs.course.service.IFsUserCoursePeriodDaysService;
|
|
|
+import com.fs.course.service.IFsUserCoursePeriodService;
|
|
|
+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.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.PutMapping;
|
|
|
+import org.springframework.web.bind.annotation.DeleteMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+import com.fs.common.annotation.Log;
|
|
|
+import com.fs.common.core.controller.BaseController;
|
|
|
+import com.fs.common.core.domain.AjaxResult;
|
|
|
+import com.fs.common.enums.BusinessType;
|
|
|
+import com.fs.course.domain.FsCourseWatchLog;
|
|
|
+import com.fs.course.service.IFsCourseWatchLogService;
|
|
|
+import com.fs.common.utils.poi.ExcelUtil;
|
|
|
+import com.fs.common.core.page.TableDataInfo;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 短链课程看课记录Controller
|
|
|
+ *
|
|
|
+ * @author fs
|
|
|
+ * @date 2024-10-24
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/course/courseWatchLog")
|
|
|
+public class FsCourseWatchLogController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private IFsCourseWatchLogService fsCourseWatchLogService;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IQwWatchLogService qwWatchLogService;
|
|
|
+ @Autowired
|
|
|
+ private IFsUserCoursePeriodDaysService userCoursePeriodDaysService;
|
|
|
+ @Autowired
|
|
|
+ private IFsUserCoursePeriodService userCoursePeriodService;
|
|
|
+
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseWatchLog:list')")
|
|
|
+ @PostMapping("/list")
|
|
|
+ public R list(@RequestBody FsCourseWatchLogListParam param)
|
|
|
+ {
|
|
|
+ if (param.getSendType()==1&& param.getPeriodETime()!=null && param.getPeriodSTime()!=null) {
|
|
|
+ List<Long> periodIds = userCoursePeriodDaysService.selectFsUserCoursePeriodDaysByTime(param.getPeriodSTime(), param.getPeriodETime());
|
|
|
+
|
|
|
+ if (!periodIds.isEmpty()){
|
|
|
+ List<Long> longs = userCoursePeriodService.selectFsUserCoursePeriodListByPeriodId(periodIds, param.getCompanyId());
|
|
|
+ if (!longs.isEmpty()){
|
|
|
+ param.setPeriodIds(longs);
|
|
|
+ }else {
|
|
|
+ return R.ok().put("data", new PageInfo<>(new ArrayList<>()));
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ return R.ok().put("data", new PageInfo<>(new ArrayList<>()));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ PageHelper.startPage(param.getPageNum(), param.getPageSize());
|
|
|
+ return R.ok().put("data", new PageInfo<>(fsCourseWatchLogService.selectFsCourseWatchLogListVO(param)));
|
|
|
+ }
|
|
|
+
|
|
|
+ @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 && (param.getUserIds() == null || param.getUserIds().isEmpty())) {
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+}
|