“djh”
5 天以前 99132a43bf344f2aafdd9894b0762d2eedd9767b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
 
/**
 * <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);
 
    /**
     * 参数配置列表
     * @param config
     * @return
     */
    public List<SysConfig> selectConfigList(SysConfig config);
 
}