You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
376 B
13 lines
376 B
package com.ccic.safeliab.dao; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.ccic.safeliab.entity.ExamSchedule; |
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import java.util.List; |
|
import java.util.Map; |
|
|
|
@Mapper |
|
public interface ExamScheduleMapper extends BaseMapper<ExamSchedule> { |
|
List<ExamSchedule> selectExamSchedule(Map<String, Object> param); |
|
} |