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; }