完善项目

This commit is contained in:
2025-04-21 11:17:19 +08:00
parent 11a207a10a
commit f77777a055
24 changed files with 747 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
package com.ping.study.controller.tx;
import com.ping.study.service.tx.LiveInfoService;
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;
import reactor.core.publisher.Mono;
@RestController
@RequestMapping("/tx/nba")
public class LiveInfoController {
private final LiveInfoService liveInfoService;
public LiveInfoController(LiveInfoService liveInfoService) {
this.liveInfoService = liveInfoService;
}
@GetMapping("/live/{cnlid}")
public String getLiveInfo(@PathVariable String cnlid) {
return liveInfoService.getLiveInfo(cnlid);
}
}