面试稽核操作first-commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.cool.store.service;
|
||||
|
||||
/**
|
||||
* @author Fun Li
|
||||
* @version 1.0
|
||||
* @date 2023/7/19 16:50
|
||||
*/
|
||||
public interface InspectionService {
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
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 org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author Fun Li
|
||||
* @version 1.0
|
||||
* @date 2023/7/19 16:50
|
||||
*/
|
||||
@Service
|
||||
public class InspectionServiceImpl implements InspectionService {
|
||||
|
||||
@Autowired
|
||||
private HyInspectionMapper inspectionMapper;
|
||||
|
||||
@Autowired
|
||||
private HyInterviewInspectionLog interviewInspectionLog;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user