面试稽核操作first-commit

This commit is contained in:
feng.li
2023-07-19 16:57:26 +08:00
parent 368e4757c3
commit f7fb454481
9 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.cool.store.service;
/**
* @author Fun Li
* @version 1.0
* @date 2023/7/19 16:50
*/
public interface InspectionService {
}

View File

@@ -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;
}