package com.gkhy.assess.system.mapper;
|
|
import com.gkhy.assess.system.domain.SysConfig;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* <p>
|
* 系统配置表 Mapper 接口
|
* </p>
|
*
|
* @author kzy
|
* @since 2023-11-13 08:39:55
|
*/
|
@Mapper
|
public interface SysConfigMapper extends BaseMapper<SysConfig> {
|
|
/**
|
* 查询参数配置信息
|
* @param config
|
* @return
|
*/
|
public SysConfig getConfig(SysConfig config);
|
|
}
|