com.pig4cloud.plugin.excel.processor.NameProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-spring-boot-starter Show documentation
Show all versions of excel-spring-boot-starter Show documentation
easy and high performance excel
package com.pig4cloud.plugin.excel.processor;
import java.lang.reflect.Method;
/**
* @author lengleng
* @date 2020/3/29
*/
public interface NameProcessor {
/**
* 解析名称
* @param args 拦截器对象
* @param method
* @param key 表达式
* @return
*/
String doDetermineName(Object[] args, Method method, String key);
}