package cn.ksource.web.interfacee;
|
|
import java.util.List;
|
import java.util.Map;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
public interface InterfaceFacade {
|
|
/**
|
* 获取区域名称
|
* @param areaid
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 4:05:52 PM
|
*/
|
public Map getAreaNameById(String areaid);
|
|
/**
|
* 获取区域列表
|
* @param fid
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 3:43:02 PM
|
*/
|
public List<Map> getAreaList(String fid);
|
|
/**
|
* 根据子系统KEY,获取URL
|
* @param systemkey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 4:16:44 PM
|
*/
|
public String getSystemUrl(String systemkey);
|
|
/**
|
* 根据接口KEY,获取接口URL
|
* @param interfaceKey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 4:21:33 PM
|
*/
|
public String getInterfaceUrl(String interfaceKey);
|
|
/**
|
* 根据消息KEY,获取消息URL
|
* @param messageKey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 4:23:51 PM
|
*/
|
public String getMessageUrl(String messageKey);
|
|
|
/**
|
* 根据数据字典分类标识,获取下属所有数据字典
|
* @param categoryKey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 12:07:01 PM
|
*/
|
public List<Map> getDataDictionaryByCategoryKey(String categoryKey);
|
|
/**
|
* 根据数据字典分类标识,获取下属所有数据字典
|
* @param categoryKey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 12:07:01 PM
|
*/
|
public Map getDataDictionaryByCategory(String categoryKey);
|
|
/**
|
* 根据数据字典标识,获取数据字典值
|
* @param dicKey
|
* @return
|
* @version V1.0.0
|
* @author 杨凯
|
* @date May 16, 2014 12:07:46 PM
|
*/
|
public Map getDataDictionaryByKey(String dicKey);
|
|
|
}
|