面试通过函详情及通过函生成和OSS服务器上传文件

This commit is contained in:
pserimal
2023-06-15 19:02:01 +08:00
parent 3fb8e439ec
commit d80c70deb7
15 changed files with 266 additions and 65 deletions

View File

@@ -1,8 +1,10 @@
package com.cool.store.controller;
import com.cool.store.dto.partner.EnterInterviewDto;
import com.cool.store.request.*;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.InterviewService;
import com.cool.store.vo.EnterInterviewVO;
import com.cool.store.vo.interview.InterviewVO;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
@@ -65,6 +67,10 @@ public class InterviewController {
return ResponseResult.success();
}
@PostMapping("/enter")
@ApiOperation("进入面试间")
public ResponseResult<EnterInterviewVO> enterInterviewRoom(@RequestBody EnterInterviewDto dto) {
return ResponseResult.success(interviewService.enterInterviewRoom(dto));
}
}