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

* 台账 Mapper 接口 *

* * @author hh * @since 2025-07-31 16:12:02 */ @Mapper public interface StandingBookMapper extends BaseMapper { List getStandingBooks(StandingBook standingBook); }