obo
2 years ago
3 changed files with 40 additions and 3 deletions
@ -0,0 +1,30 @@ |
|||||||
|
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 DataMaskMark implements LocaleMark<String> { |
||||||
|
|
||||||
|
/** |
||||||
|
* 云中心数据脱敏帮助链接链接在配置文件中对应的配置文件key |
||||||
|
*/ |
||||||
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Data_Mask"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 云中心数据脱敏默认帮助链接在配置文件中对应的配置文件key |
||||||
|
*/ |
||||||
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design_Report_Desensitization_Help_Document_Url"; |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getValue() { |
||||||
|
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue