Pu Zhibing
4 天以前 db0b7644a9a5a62ac2da3cf571fee41bb8b6974f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}