package com.sinata.config.properties;
|
|
import lombok.Data;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.stereotype.Component;
|
|
/**
|
* 配置参数
|
*
|
* @author: KingKong
|
* @create: 2018-12-17 14:36
|
**/
|
@Data
|
@Component
|
@Configuration
|
@ConfigurationProperties(prefix = "pay")
|
public class PayProperties {
|
|
/**
|
* 应用私钥
|
*/
|
private String aliPrivateKey;
|
/**
|
* 支付宝公钥
|
*/
|
private String aliPublicKey;
|
private String aliAppId;
|
private String aliNotifyUrl;
|
private String aliReturnUrl;
|
/**
|
* 支付宝账号
|
*/
|
private String aliSellerId;
|
|
|
/**
|
* 微信appId
|
*/
|
private String wxAppId;
|
/**
|
* 商户号
|
*/
|
private String wxMchId;
|
/**
|
* 微信key
|
*/
|
private String wxPayKey;
|
/**
|
* 支付回调地址
|
*/
|
private String wxNotifyUrl;
|
/**
|
* 支付回显地址
|
*/
|
private String wxReturnUrl;
|
/**
|
* 微信secret
|
*/
|
private String wxAppSecret;
|
/**
|
* 微信公众号secret
|
*/
|
private String wxPublicSecretKey;
|
|
}
|