package com.artfess.base.conf; import lombok.Data; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; /** * @PackageName * @Author min.wu * @Date 2024/03/08 * @Description 铁建 */ @Data @Configuration public class TeijianConfig { @Value("${tiejian.url}") private String url; @Value("${tiejian.orgInterface}") private String orgInterface; @Value("${tiejian.userInterface}") private String userInterface; }