jiangqs
2023-06-06 92da9546e1b37b06f78671b34389b1dec9dfadfc
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
package com.ruoyi.system.mapper.config;
 
import com.ruoyi.system.domain.pojo.config.CustomConfig;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import io.lettuce.core.dynamic.annotation.Param;
 
/**
 * <p>
 * 系统配置 Mapper 接口
 * </p>
 *
 * @author jqs
 * @since 2023-04-25
 */
public interface CustomConfigMapper extends BaseMapper<CustomConfig> {
 
    /**
     * @description  通过key获取系统自定义配置
     * @author  jqs
     * @date    2023/6/6 11:55
     * @param key
     * @return  CustomConfig
     */
    CustomConfig getByKey(@Param("key") String key);
}