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 { SystemConfigVO getSystemConfigByType(Integer type); void setSystemConfig(AddSystemConfigDTO addSystemConfigDTO); }