函数扩展demo
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.
 
 

17 lines
389 B

package com.tptj.demo.hg.function.group;
import com.fr.script.AbstractFunction;
import com.fr.stable.exception.FormulaException;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021-04-27
**/
public class DemoFunc3 extends AbstractFunction {
@Override
public Object run(Object[] objects) throws FormulaException {
return "DemoFunc3";
}
}