164f355a043b5bad41ce5c265336b4e77d856da4.svn-base 362 B

12345678910111213141516171819
  1. package cn.com.goldenwater.dcproj.utils.poi;
  2. /**
  3. * Excel数据格式处理适配器
  4. *
  5. * @author ruoyi
  6. */
  7. public interface ExcelHandlerAdapter
  8. {
  9. /**
  10. * 格式化
  11. *
  12. * @param value 单元格数据值
  13. * @param args excel注解args参数组
  14. *
  15. * @return 处理后的值
  16. */
  17. Object format(Object value, String[] args);
  18. }