package com.qxueyou.scc.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
@ConfigurationProperties(prefix = AliOnsConfig.CONFIG_PREFIX, ignoreUnknownFields = false)
|
public class AliOnsConfig {
|
final static String CONFIG_PREFIX="ali.ons";
|
|
private String docdealReceiveUrls;
|
|
private String commonTopic;
|
|
public String getCommonTopic() {
|
return commonTopic;
|
}
|
|
public void setCommonTopic(String commonTopic) {
|
this.commonTopic = commonTopic;
|
}
|
|
public String getDocdealReceiveUrls() {
|
return docdealReceiveUrls;
|
}
|
|
public void setDocdealReceiveUrls(String docdealReceiveUrls) {
|
this.docdealReceiveUrls = docdealReceiveUrls;
|
}
|
|
|
|
}
|