SystemParamService.java 225 Bytes
package com.bsth.service;

import com.bsth.entity.SystemParam;

/**
 * @author Hill
 */
public interface SystemParamService extends BaseService<SystemParam, Integer> {

    void refresh();

    String getValue(String key);
}