| 123456789101112131415161718192021222324 |
- package cn.com.goldenwater.dcproj.config;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Configuration;
- /**
- * Created by demoJs on 2019/3/7.
- */
- @Configuration
- //@PropertySource(value="classpath:export.properties")
- /**
- * Excel导出配置
- */
- public class ExportConfig {
- @Value("${export.basePath}")
- public String exportBasePath;
- // @Value("${export.T1.field}")
- // public List T1;
- }
|