app版本修改,过滤当前版本

This commit is contained in:
lifenlong
2021-06-17 00:28:36 +08:00
parent 841903d2a6
commit fbcd5b7470
2 changed files with 5 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ public class StudioManagerController {
@ApiOperation(value = "获取店铺直播间详情")
@ApiImplicitParam(name = "studioId", value = "直播间ID", required = true, paramType = "path")
@GetMapping("/studioInfo/{studioId}")
@GetMapping("/{studioId}")
public ResultMessage<StudioVO> studioInfo(@PathVariable String studioId) {
return ResultUtil.data(studioService.getStudioVO(studioId));
}