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.
|
package com.ruoyi.common.utils.poi; |
|
|
|
/** |
|
* Excel数据格式处理适配器 |
|
* |
|
* @author ruoyi |
|
*/ |
|
public interface ExcelHandlerAdapter |
|
{ |
|
/** |
|
* 格式化 |
|
* |
|
* @param value 单元格数据值 |
|
* @param args excel注解args参数组 |
|
* |
|
* @return 处理后的值 |
|
*/ |
|
Object format(Object value, String[] args); |
|
}
|
|
|