package org.dromara.system.domain.properties; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Data @Component @ConfigurationProperties(prefix = "police") public class Boundary { /** * 测试 */ private String localhost; /** * 政务云 */ private String chief; /** * 视频网 */ private String video; }