com.kangaroohy.plugin.excel.config.ExcelConfigProperties 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.config;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* @author hy
* @date 2020/3/29
*/
@Data
@ConfigurationProperties(prefix = ExcelConfigProperties.PREFIX)
public class ExcelConfigProperties {
static final String PREFIX = "kangaroohy.excel";
/**
* 模板路径
*/
private String templatePath = "excel";
}