package {{PACKAGE}};
import org.voovan.tools.TObject;
{{IMPORT}}
public class {{CLASSNAME}} implements org.voovan.tools.compiler.function.FunctionInterface {

    public {{CLASSNAME}}(){
    }

    {{IMPORTFUNCTION}}

    @SuppressWarnings("unchecked")
    public Object execute(Object ... args) throws Exception{
        {{PREPAREARG}}
        {{CODE}}
    }
}