package com.ruoyi.jianguan.elutong.config;
|
|
import lombok.Data;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
@Data
|
@Component
|
@ConfigurationProperties(prefix = "app.server.config")
|
public class AppServerConfig {
|
|
//应用ID
|
private String appId;
|
//应用密码
|
private String appSecret;
|
//应用公钥
|
private String pubKey;
|
//应用私钥
|
private String priKey;
|
//AES秘钥
|
private String aesKey;
|
//接口地址
|
private String serverUrl;
|
//验签公钥
|
private String signPub;
|
}
|