You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
529 B
21 lines
529 B
package com.hfkj.config;
|
|
|
|
import lombok.Data;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.context.annotation.PropertySource;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Component("commonSysConfig")
|
|
@ConfigurationProperties
|
|
@PropertySource("classpath:/commonConfig.properties")
|
|
@Data
|
|
public class CommonSysConfig {
|
|
|
|
/**
|
|
* 淘宝请求参数
|
|
*/
|
|
private String taoBaoPostUrl;
|
|
private String taoBaoAppKey;
|
|
private String taoBaoAppSecret;
|
|
|
|
}
|
|
|