package com.gkhy.exam.system.mapper; import com.gkhy.exam.system.domain.SysConfig; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* 系统配置表 Mapper 接口 *

* * @author kzy * @since 2023-11-13 08:39:55 */ @Mapper public interface SysConfigMapper extends BaseMapper { /** * 查询参数配置信息 * @param config * @return */ public SysConfig getConfig(SysConfig config); /** * 参数配置列表 * @param config * @return */ public List selectConfigList(SysConfig config); }