Blame view

fw-morax-common/src/main/java/cn/fw/morax/common/config/FileVal.java 416 Bytes
d9e88886   姜超   feature(*): 模板文件修改
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  package cn.fw.morax.common.config;
  
  import lombok.Data;
  import org.springframework.boot.context.properties.ConfigurationProperties;
  import org.springframework.stereotype.Component;
  
  @Data
  @ConfigurationProperties(prefix = "file-url")
  @Component
  public class FileVal {
  
      /**
       * 考评人员模板
       */
      private String evalStaff;
  
      /**
       * 考评门店模板
       */
      private String evalShop;
  
  }