package com.ycl.jxkg.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ycl.jxkg.domain.entity.StudyRecord;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* 会议表 Mapper 接口
|
*
|
* @author flq
|
* @since 2024-06-17
|
*/
|
@Mapper
|
public interface StudyRecordMapper extends BaseMapper<StudyRecord> {
|
|
/**
|
* id查找
|
* @param
|
* @return
|
*/
|
StudyRecord getByStudentId(Integer studentId);
|
|
|
void updateBatch(List<StudyRecord> list);
|
|
}
|