com.github.edgar615.util.spring.appkey.ClientFixProperties Maven / Gradle / Ivy
package com.github.edgar615.util.spring.appkey;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Service;
/**
* Created by Administrator on 2016/4/22.
*/
@ConfigurationProperties(prefix = "client.fix")
@Service
public class ClientFixProperties {
private String companyCode;
private String appKey;
private String appSecret;
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCompanyCode() {
return companyCode;
}
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public String getAppKey() {
return appKey;
}
public void setAppKey(String appKey) {
this.appKey = appKey;
}
public String getAppSecret() {
return appSecret;
}
public void setAppSecret(String appSecret) {
this.appSecret = appSecret;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy