添加hrm模块

This commit is contained in:
2026-01-05 15:36:22 +08:00
parent c8f6aea972
commit fb6bc5f53c
209 changed files with 8980 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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);
}