com.kangaroohy.plugin.excel.service.ExcelSelectorService 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
The newest version!
package com.kangaroohy.plugin.excel.service;
/**
* 类 ExcelSelectorService 功能描述:
*
* @author hy
* @version 0.0.1
* @date 2023/8/21 21:54
*/
public interface ExcelSelectorService {
/**
* 获取下拉数据
*
* @return
*/
String[] getSelectorData();
/**
* 根据字典key获取下拉数据
*
* @param dictKeyValue
* @return
*/
String[] getSelectorData(String dictKeyValue);
}