package com.gkhy.exam.system.mapper;
|
|
import com.gkhy.exam.system.domain.Memo;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.exam.system.domain.vo.IndexDataRep;
|
import com.gkhy.exam.system.domain.vo.IndexSearch;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 备忘录 Mapper 接口
|
* </p>
|
*
|
* @author hh
|
* @since 2025-11-10 13:58:42
|
*/
|
@Mapper
|
public interface MemoMapper extends BaseMapper<Memo> {
|
|
List<IndexDataRep> getIndexTitle(IndexSearch indexSearch);
|
}
|