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.
49 lines
1.1 KiB
49 lines
1.1 KiB
/* |
|
* Copyright (C), 2018-2021 |
|
* Project: starter |
|
* FileName: DingTalkSystemOption |
|
* Author: Louis |
|
* Date: 2021/6/22 16:40 |
|
*/ |
|
package com.fr.plugin.xxxx.dingtalksyn.provider; |
|
|
|
import com.fanruan.api.i18n.I18nKit; |
|
import com.fr.decision.fun.impl.AbstractSystemOptionProvider; |
|
import com.fr.decision.web.MainComponent; |
|
import com.fr.plugin.xxxx.dingtalksyn.provider.components.DingTalkComponent; |
|
import com.fr.web.struct.Atom; |
|
|
|
/** |
|
* <Function Description><br> |
|
* <DingTalkSystemOption> |
|
* |
|
* @author fr.open |
|
* @since 1.0.0 |
|
*/ |
|
public class DingTalkSystemOption extends AbstractSystemOptionProvider { |
|
|
|
public static final String DING_TALK_SYN_SYSTEM_OPTION = "DingTalkSynSystemOption"; |
|
|
|
public DingTalkSystemOption() { |
|
} |
|
|
|
public String id() { |
|
return DING_TALK_SYN_SYSTEM_OPTION; |
|
} |
|
|
|
public String displayName() { |
|
return I18nKit.getLocText("Plugin-dingtalksyn_DingTalk_Manager"); |
|
} |
|
|
|
public int sortIndex() { |
|
return 2; |
|
} |
|
|
|
public Atom attach() { |
|
return MainComponent.KEY; |
|
} |
|
|
|
public Atom client() { |
|
return DingTalkComponent.KEY; |
|
} |
|
} |