9816ed31843033c3fc0da67e51b15f6b28c2e947.svn-base 464 B

123456789101112131415161718192021222324
  1. package cn.com.goldenwater.dcproj.config;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.context.annotation.Configuration;
  4. /**
  5. * Created by demoJs on 2019/3/7.
  6. */
  7. @Configuration
  8. //@PropertySource(value="classpath:export.properties")
  9. /**
  10. * Excel导出配置
  11. */
  12. public class ExportConfig {
  13. @Value("${export.basePath}")
  14. public String exportBasePath;
  15. // @Value("${export.T1.field}")
  16. // public List T1;
  17. }