1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.stylefeng.guns.excel.consts;
|
| /**
| * excel模块使用的常量
| *
| * @author fengshuonan
| * @Date 2020/3/18 21:19
| */
| public class ExcelConstants {
|
| /**
| * excel模板保存的path
| */
| public static final String EXCEL_FILE_TEMPLATE_PATH = "/uploadFiles/excelExportTemplate/";
|
| }
|
|