package com.gkhy.exam.system.mapper;
|
|
import com.gkhy.exam.system.domain.StandingBook;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 台账 Mapper 接口
|
* </p>
|
*
|
* @author hh
|
* @since 2025-07-31 16:12:02
|
*/
|
@Mapper
|
public interface StandingBookMapper extends BaseMapper<StandingBook> {
|
|
List<StandingBook> getStandingBooks(StandingBook standingBook);
|
|
}
|