Created
June 4, 2020 13:23
-
-
Save kaantas/3a76364e5a7aae28790ccbe4fd60f88b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import lombok.Data; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.cloud.context.config.annotation.RefreshScope; | |
import org.springframework.stereotype.Component; | |
@Component | |
@Data | |
@ConfigurationProperties(prefix = "dispatcher.cargo.selector") | |
@RefreshScope | |
public class DispatcherCargoSelectorConfigServerProperties { | |
private int staffUserCargoProviderId; | |
private int defaultCargoProviderId; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment