Merge branch 'dev/feat/partner1.6_20231226' into pre

This commit is contained in:
feng.li
2023-12-29 14:47:17 +08:00
6 changed files with 45 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import com.cool.store.dto.exhibition.ExhibitionEnterInterviewDTO;
import com.cool.store.dto.exhibition.ExhibitionGroupDTO;
import com.cool.store.dto.exhibition.SignUpExhibitionDTO;
import com.cool.store.exception.ApiException;
import com.cool.store.request.FinishInterviewReq;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.ExhibitionService;
import com.cool.store.vo.EnterInterviewVO;
@@ -88,6 +89,12 @@ public class ExhibitionController {
return ResponseResult.success(exhibitionService.startExhibitionInterview(dto));
}
@PostMapping("/finish/interview")
@ApiOperation("结束面试")
public ResponseResult finishInterview(@RequestBody FinishInterviewReq request) throws ApiException {
exhibitionService.finishInterview(request);
return ResponseResult.success();
}
@GetMapping(value = "/lineListByExhibitionId")
@ApiOperation("会销报名列表")