面试稽核操作类名修改

This commit is contained in:
feng.li
2023-07-19 17:04:40 +08:00
parent 29dfd53d4a
commit bc5d10ac26
3 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
package com.cool.store.controller;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.InspectionService;
import com.cool.store.service.InterviewInspectionService;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
@@ -16,10 +16,10 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/inspection/interview")
@Api(tags = "面试稽核")
public class InspectionController {
public class InterviewInspectionController {
@Autowired
private InspectionService inspectionService;
private InterviewInspectionService interviewInspectionService;
@PostMapping("/submission")
public ResponseResult interviewInspectionSubmit() {