parent
a98509f3a5
commit
824b170a72
6 changed files with 56 additions and 12 deletions
@ -1,16 +1,30 @@ |
||||
package com.ccic.safeliab.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.ccic.safeliab.dao.ExamScheduleMapper; |
||||
import com.ccic.safeliab.entity.ExamSchedule; |
||||
import com.ccic.safeliab.entity.Industry; |
||||
import com.ccic.safeliab.support.BaseServiceImpl; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
@Service |
||||
public class ExamScheduleServiceImpl extends ServiceImpl<ExamScheduleMapper, ExamSchedule> implements ExamScheduleService { |
||||
public class ExamScheduleServiceImpl extends BaseServiceImpl<ExamScheduleMapper, ExamSchedule> implements ExamScheduleService { |
||||
|
||||
public List<ExamSchedule> selectExamSchedule(Map<String, Object> param){ |
||||
return baseMapper.selectExamSchedule(param); |
||||
} |
||||
|
||||
public List<Map<String,Object>> getIndustry(){ |
||||
return baseMapper.getIndustry(); |
||||
} |
||||
|
||||
public List<Map<String,Object>> getPaper(){ |
||||
return baseMapper.getPaper(); |
||||
} |
||||
|
||||
} |
||||
|
Loading…
Reference in new issue