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; /** *

* 备忘录 Mapper 接口 *

* * @author hh * @since 2025-11-10 13:58:42 */ @Mapper public interface MemoMapper extends BaseMapper { List getIndexTitle(IndexSearch indexSearch); }