33 lines
907 B
Java
33 lines
907 B
Java
|
package com.yutou.bilibili.Controllers;
|
||
|
|
||
|
import com.alibaba.fastjson2.JSONObject;
|
||
|
import com.yutou.bilibili.datas.ResultData;
|
||
|
import com.yutou.bilibili.datas.VideoFilePath;
|
||
|
import com.yutou.bilibili.services.LiveDanmuService;
|
||
|
import com.yutou.bilibili.services.LiveService;
|
||
|
import com.yutou.bilibili.services.LiveVideoService;
|
||
|
import jakarta.annotation.Resource;
|
||
|
import org.springframework.stereotype.Controller;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Controller
|
||
|
public class LiveController {
|
||
|
@Resource
|
||
|
LiveVideoService videoService;
|
||
|
@Resource
|
||
|
LiveDanmuService danmuService;
|
||
|
@Resource
|
||
|
LiveService liveService;
|
||
|
|
||
|
|
||
|
@RequestMapping("/live/list")
|
||
|
@ResponseBody
|
||
|
public JSONObject getLiveList(){
|
||
|
|
||
|
return ResultData.success(liveService.getLiveList());
|
||
|
}
|
||
|
}
|