forked from fanruan/demo-system-management
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.
42 lines
988 B
42 lines
988 B
7 years ago
|
package com.fr.plugin;
|
||
|
|
||
|
import com.fr.decision.fun.SystemOptionProvider;
|
||
|
import com.fr.decision.fun.impl.AbstractSystemOptionProvider;
|
||
|
import com.fr.decision.web.MainComponent;
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
7 years ago
|
import com.fr.plugin.web.FanruanComponent;
|
||
7 years ago
|
import com.fr.stable.fun.mark.API;
|
||
|
import com.fr.web.struct.Atom;
|
||
|
|
||
|
|
||
|
@FunctionRecorder
|
||
|
@API(level = SystemOptionProvider.CURRENT_LEVEL)
|
||
7 years ago
|
public class FanruanOption extends AbstractSystemOptionProvider {
|
||
7 years ago
|
|
||
|
@Override
|
||
|
@ExecuteFunctionRecord
|
||
|
public String id() {
|
||
7 years ago
|
return "decision-management-fanruan-help";
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
|
public String displayName() {
|
||
7 years ago
|
return "Dec_System_Option_Fanruan_Help";
|
||
7 years ago
|
}
|
||
|
|
||
|
@Override
|
||
|
public int sortIndex() {
|
||
|
return 2;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Atom attach() {
|
||
|
return MainComponent.KEY;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Atom client() {
|
||
7 years ago
|
return FanruanComponent.KEY;
|
||
7 years ago
|
}
|
||
|
}
|