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.
25 lines
643 B
25 lines
643 B
2 years ago
|
package com.fr.plugin.cpic.web.component;
|
||
|
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.browser.RequestClient;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
|
||
|
@FunctionRecorder
|
||
|
public class CpicHomeComponent extends Component {
|
||
|
|
||
|
public static CpicHomeComponent KEY = new CpicHomeComponent();
|
||
|
|
||
|
private CpicHomeComponent() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@ExecuteFunctionRecord
|
||
|
@Override
|
||
|
public ScriptPath script(RequestClient requestClient) {
|
||
|
return ScriptPath.build("/com/fr/plugin/cpic/web/js/cpic_home.js");
|
||
|
}
|
||
|
|
||
|
}
|