package com.qxueyou.scc.base.service; import com.qxueyou.scc.base.model.Result; public interface IDictionaryService { /** * »ñÈ¡ÅäÖà * @param key * @return */ String getConfig(String key); /** * ¸üÐÂÅäÖà * @param key * @param value * @return */ Result updateConfig(String key,String value); }