package com.dhcc.finance.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; import lombok.Data; @Data @Component @ConfigurationProperties(prefix="dhcc.data-center") public class DhccCustomPropertiesConfig { private Integer workerId; private String busLogLevel; private String fileFullPath; }