You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
730 B

package com.fr.plugin.xx.theme.sky.web;
import com.fr.decision.fun.impl.AbstractURLAliasProvider;
import com.fr.decision.webservice.url.alias.URLAlias;
import com.fr.decision.webservice.url.alias.URLAliasFactory;
/**
* @author k
* @Project name finereport10
* @description:
* @created on 2019/10/27 16:44.
* @email xx.xx@qq.com
* @Modified By
*/
public class AliasBridge extends AbstractURLAliasProvider {
public AliasBridge() {
}
@Override
public URLAlias[] registerAlias() {
return new URLAlias[]{
URLAliasFactory.createPluginAlias("/sky/getAllMenu", "/sky/getAllMenu", true),
URLAliasFactory.createPluginAlias("/sky/getConfig", "/sky/getConfig", true)};
}
}