¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.system.entity.SysParams; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: ç³»ç»åæ°è¡¨ |
| | | * @Author: server-boot |
| | | * @Date: 2020-12-28 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface ISysParamsService extends IService<SysParams> { |
| | | /** |
| | | * æ ¹æ®åæ°é®è·åå¼ |
| | | * @param settingKey é® |
| | | * |
| | | * */ |
| | | List<SysParams> getSysPramsBySettingKey(String settingKey); |
| | | |
| | | /** |
| | | * æ¥è¯¢é
ç½®ä¿¡æ¯ |
| | | * @param keyName |
| | | * @return |
| | | */ |
| | | SysParams getSysPramBySettingKey(@NotNull String keyName); |
| | | } |