|
@@ -0,0 +1,28 @@
|
|
|
|
|
+package com.fs.company.controller.live;
|
|
|
|
|
+
|
|
|
|
|
+import com.fs.live.service.ILiveWatchUserService;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @author MixLiu
|
|
|
|
|
+ * @date 2025/12/18 下午3:26)
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+@RestController
|
|
|
|
|
+@RequestMapping("/live/LiveMixLiuTestOpen")
|
|
|
|
|
+public class LiveMixLiuTestOpenController {
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private ILiveWatchUserService liveWatchUserService;
|
|
|
|
|
+
|
|
|
|
|
+ @GetMapping("/goToMarkUser/{liveId}")
|
|
|
|
|
+ public void goToMarkUser(@PathVariable Long liveId){
|
|
|
|
|
+ liveWatchUserService.qwTagMarkByLiveWatchLog(liveId);
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+}
|