Functioner.java 149 B

12345678
  1. package com.yihu.quota.etl.formula;
  2. /**
  3. * @author l4qiang
  4. */
  5. public interface Functioner {
  6. Object execute(Object... args) throws Exception;
  7. }