面试稽核操作类名修改

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

@@ -5,5 +5,5 @@ package com.cool.store.service;
* @version 1.0 * @version 1.0
* @date 2023/7/19 16:50 * @date 2023/7/19 16:50
*/ */
public interface InspectionService { public interface InterviewInspectionService {
} }

View File

@@ -2,7 +2,7 @@ package com.cool.store.service.impl;
import com.cool.store.entity.HyInterviewInspectionLog; import com.cool.store.entity.HyInterviewInspectionLog;
import com.cool.store.mapper.HyInspectionMapper; import com.cool.store.mapper.HyInspectionMapper;
import com.cool.store.service.InspectionService; import com.cool.store.service.InterviewInspectionService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
* @date 2023/7/19 16:50 * @date 2023/7/19 16:50
*/ */
@Service @Service
public class InspectionServiceImpl implements InspectionService { public class InterviewInspectionServiceImpl implements InterviewInspectionService {
@Autowired @Autowired
private HyInspectionMapper inspectionMapper; private HyInspectionMapper inspectionMapper;

View File

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