|
@@ -0,0 +1,153 @@
|
|
|
+package com.fs.course.controller;
|
|
|
+
|
|
|
+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.utils.ServletUtils;
|
|
|
+import com.fs.common.utils.poi.ExcelUtil;
|
|
|
+import com.fs.core.security.LoginUser;
|
|
|
+import com.fs.core.web.service.TokenService;
|
|
|
+import com.fs.course.domain.FsCourseRedPacketLog;
|
|
|
+import com.fs.course.mapper.FsUserCourseMapper;
|
|
|
+import com.fs.course.mapper.FsUserCourseVideoMapper;
|
|
|
+import com.fs.course.param.FsCourseRedPacketLogParam;
|
|
|
+import com.fs.course.service.IFsCourseRedPacketLogService;
|
|
|
+import com.fs.course.vo.FsCourseRedPacketLogListPVO;
|
|
|
+import com.fs.his.vo.OptionsVO;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * 短链课程看课记录Controller
|
|
|
+ *
|
|
|
+ * @author fs
|
|
|
+ * @date 2024-10-24
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/course/courseRedPacketLog")
|
|
|
+public class FsCourseRedPacketLogController extends BaseController
|
|
|
+{
|
|
|
+ @Autowired
|
|
|
+ private IFsCourseRedPacketLogService fsCourseRedPacketLogService;
|
|
|
+ @Autowired
|
|
|
+ FsUserCourseMapper fsUserCourseMapper;
|
|
|
+ @Autowired
|
|
|
+ FsUserCourseVideoMapper fsUserCourseVideoMapper;
|
|
|
+ @Autowired
|
|
|
+ private TokenService tokenService;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:list')")
|
|
|
+ @GetMapping("/list")
|
|
|
+ public TableDataInfo list(FsCourseRedPacketLogParam fsCourseRedPacketLog)
|
|
|
+ {
|
|
|
+ startPage();
|
|
|
+ if (fsCourseRedPacketLog.getPhoneMk() != null && fsCourseRedPacketLog.getPhoneMk() != "") {
|
|
|
+ fsCourseRedPacketLog.setPhone(fsCourseRedPacketLog.getPhoneMk());
|
|
|
+ }
|
|
|
+
|
|
|
+ List<FsCourseRedPacketLogListPVO> list = fsCourseRedPacketLogService.selectFsCourseRedPacketLogListVO(fsCourseRedPacketLog);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导出短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:export')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.EXPORT)
|
|
|
+ @GetMapping("/export")
|
|
|
+ public AjaxResult export(FsCourseRedPacketLogParam fsCourseRedPacketLog)
|
|
|
+ {
|
|
|
+// LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
+// fsCourseRedPacketLog.setCompanyId( loginUser.getCompany().getCompanyId());
|
|
|
+
|
|
|
+ if (fsCourseRedPacketLog.getPhoneMk()!=null&&fsCourseRedPacketLog.getPhoneMk()!=""){
|
|
|
+ fsCourseRedPacketLog.setPhone(fsCourseRedPacketLog.getPhoneMk());
|
|
|
+ }
|
|
|
+ List<FsCourseRedPacketLogListPVO> list = fsCourseRedPacketLogService.selectFsCourseRedPacketLogListVO(fsCourseRedPacketLog);
|
|
|
+ ExcelUtil<FsCourseRedPacketLogListPVO> util = new ExcelUtil<FsCourseRedPacketLogListPVO>(FsCourseRedPacketLogListPVO.class);
|
|
|
+ return util.exportExcel(list, "短链课程看课记录数据");
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 导出短链课程看课记录列表
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:myExport')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.EXPORT)
|
|
|
+ @GetMapping("/myExport")
|
|
|
+ public AjaxResult myExport(FsCourseRedPacketLogParam fsCourseRedPacketLog)
|
|
|
+ {
|
|
|
+ if (fsCourseRedPacketLog.getPhoneMk()!=null&&fsCourseRedPacketLog.getPhoneMk()!=""){
|
|
|
+ fsCourseRedPacketLog.setPhone(fsCourseRedPacketLog.getPhoneMk());
|
|
|
+ }
|
|
|
+ List<FsCourseRedPacketLogListPVO> list = fsCourseRedPacketLogService.selectFsCourseRedPacketLogListVO(fsCourseRedPacketLog);
|
|
|
+ ExcelUtil<FsCourseRedPacketLogListPVO> util = new ExcelUtil<FsCourseRedPacketLogListPVO>(FsCourseRedPacketLogListPVO.class);
|
|
|
+ return util.exportExcel(list, "短链课程看课记录数据");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取短链课程看课记录详细信息
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:query')")
|
|
|
+ @GetMapping(value = "/{logId}")
|
|
|
+ public AjaxResult getInfo(@PathVariable("logId") Long logId)
|
|
|
+ {
|
|
|
+ return AjaxResult.success(fsCourseRedPacketLogService.selectFsCourseRedPacketLogByLogId(logId));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:add')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.INSERT)
|
|
|
+ @PostMapping
|
|
|
+ public AjaxResult add(@RequestBody FsCourseRedPacketLog fsCourseRedPacketLog)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseRedPacketLogService.insertFsCourseRedPacketLog(fsCourseRedPacketLog));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:edit')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.UPDATE)
|
|
|
+ @PutMapping
|
|
|
+ public AjaxResult edit(@RequestBody FsCourseRedPacketLog fsCourseRedPacketLog)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseRedPacketLogService.updateFsCourseRedPacketLog(fsCourseRedPacketLog));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除短链课程看课记录
|
|
|
+ */
|
|
|
+ @PreAuthorize("@ss.hasPermi('course:courseRedPacketLog:remove')")
|
|
|
+ @Log(title = "短链课程看课记录", businessType = BusinessType.DELETE)
|
|
|
+ @DeleteMapping("/{logIds}")
|
|
|
+ public AjaxResult remove(@PathVariable Long[] logIds)
|
|
|
+ {
|
|
|
+ return toAjax(fsCourseRedPacketLogService.deleteFsCourseRedPacketLogByLogIds(logIds));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/courseList")
|
|
|
+ public R courseList()
|
|
|
+ {
|
|
|
+ List<OptionsVO> optionsVOS = fsUserCourseMapper.selectFsUserCourseAllList();
|
|
|
+ return R.ok().put("list", optionsVOS);
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping(value = "/videoList/{id}")
|
|
|
+ public R videoList(@PathVariable("id") Long id)
|
|
|
+ {
|
|
|
+ List<OptionsVO> optionsVOS = fsUserCourseVideoMapper.selectFsUserCourseVodeAllList(id);
|
|
|
+ return R.ok().put("list", optionsVOS);
|
|
|
+ }
|
|
|
+}
|