视频面试

This commit is contained in:
戈经莹
2026-07-31 22:58:25 +08:00
parent 998ddc1f1a
commit 36fe840f36
2 changed files with 6 additions and 10 deletions

View File

@@ -8,6 +8,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.SiteSecurityUtils; import com.ruoyi.common.utils.SiteSecurityUtils;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
/** 面试视频房间接口。 */ /** 面试视频房间接口。 */
@@ -16,11 +17,8 @@ import org.springframework.web.bind.annotation.*;
@Api(tags = "移动端:面试视频房间") @Api(tags = "移动端:面试视频房间")
public class AppInterviewRtcController extends BaseController { public class AppInterviewRtcController extends BaseController {
private final MyRtcService myRtcService; @Autowired
private MyRtcService myRtcService;
public AppInterviewRtcController(MyRtcService myRtcService) {
this.myRtcService = myRtcService;
}
/** /**
* 创建面试房间并同时签发面试官、候选人的 token。 * 创建面试房间并同时签发面试官、候选人的 token。

View File

@@ -8,6 +8,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.utils.SecurityUtils; import com.ruoyi.common.utils.SecurityUtils;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
/** 面试视频房间接口。 */ /** 面试视频房间接口。 */
@@ -16,11 +17,8 @@ import org.springframework.web.bind.annotation.*;
@Api(tags = "后台:面试视频房间") @Api(tags = "后台:面试视频房间")
public class CmsInterviewRtcController extends BaseController { public class CmsInterviewRtcController extends BaseController {
private final MyRtcService myRtcService; @Autowired
private MyRtcService myRtcService;
public CmsInterviewRtcController(MyRtcService myRtcService) {
this.myRtcService = myRtcService;
}
/** /**
* 创建面试房间并同时签发面试官、候选人的 token。 * 创建面试房间并同时签发面试官、候选人的 token。