obo
2 years ago
2 changed files with 33 additions and 3 deletions
@ -0,0 +1,28 @@
|
||||
package com.fr.design.locale.impl; |
||||
|
||||
import com.fr.design.i18n.LocaleLinkProvider; |
||||
import com.fr.general.locale.LocaleMark; |
||||
|
||||
/** |
||||
* 根据国际化获取启用行式引擎执行层式报表帮助文档链接 |
||||
* |
||||
* @author obo |
||||
* @since 11.0 |
||||
* Created on 2023/4/19 |
||||
*/ |
||||
public class LineEngineMark implements LocaleMark<String> { |
||||
|
||||
/** |
||||
* 云中心数据脱敏帮助链接链接在配置文件中对应的配置文件key |
||||
*/ |
||||
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Line_Engine"; |
||||
|
||||
/** |
||||
* 云中心数据脱敏默认帮助链接在配置文件中对应的配置文件key |
||||
*/ |
||||
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Line_Engine_Default"; |
||||
@Override |
||||
public String getValue() { |
||||
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
||||
} |
||||
} |
Loading…
Reference in new issue