This commit is contained in:
2025-04-22 18:47:36 +08:00
parent 31dc7c9cde
commit 1c68932238
3 changed files with 4 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ public class LiveInfoController {
@GetMapping("/live/{cnlid}")
public String getLiveInfo(@PathVariable String cnlid) throws Exception {
log.info("执行查询直播cnlid: {}", cnlid);
return liveInfoService.getLiveInfo(cnlid);
}