ExcelDateHandlerAdapter.java 337 B

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