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.
32 lines
1012 B
32 lines
1012 B
package com.fr.design.actions.community; |
|
|
|
import com.fr.design.i18n.LocaleLinkProvider; |
|
import com.fr.design.i18n.Toolkit; |
|
|
|
/** |
|
* @Description 工单中心 |
|
* @Author Henry.Wang |
|
* @Date 2021/3/8 14:02 |
|
**/ |
|
public class WorkOrderCenterAction extends UpAction { |
|
|
|
/** |
|
* 云中心工单中心在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY = "Fine-Design-CloudCenter_Work_Order_Center"; |
|
|
|
/** |
|
* 云中心工单中心默认链接在配置文件中对应的配置文件key |
|
*/ |
|
private static final String PROPS_LINK_KEY_DEFAULT = "Fine-Design-CloudCenter_Work_Order_Center_Default"; |
|
|
|
public WorkOrderCenterAction() { |
|
this.setSmallIcon("/com/fr/design/images/bbs/workOrderCenter"); |
|
this.setName(Toolkit.i18nText("Fine-Design_Basic_Commuinity_Work_Order_Center")); |
|
} |
|
|
|
@Override |
|
public String getJumpUrl() { |
|
return LocaleLinkProvider.getInstance().getLink(PROPS_LINK_KEY, PROPS_LINK_KEY_DEFAULT); |
|
} |
|
} |