huliguo
2025-05-28 340a6a4ba1297249af7f03c0974818bb5baae497
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.system.domain.SystemConfig;
import com.ruoyi.system.pojo.dto.AddSystemConfigDTO;
import com.ruoyi.system.pojo.vo.SystemConfigVO;
 
/**
 * 参数配置 服务层
 * 
 * @author ruoyi
 */
public interface SystemConfigService extends IService<SystemConfig> {
 
    SystemConfigVO getSystemConfigByType(Integer type);
 
    void setSystemConfig(AddSystemConfigDTO addSystemConfigDTO);
 
}