面试稽核操作类名修改

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
* @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.mapper.HyInspectionMapper;
import com.cool.store.service.InspectionService;
import com.cool.store.service.InterviewInspectionService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
* @date 2023/7/19 16:50
*/
@Service
public class InspectionServiceImpl implements InspectionService {
public class InterviewInspectionServiceImpl implements InterviewInspectionService {
@Autowired
private HyInspectionMapper inspectionMapper;