package com.nova.sankuai.domain.api.weiyaquanyi;
|
|
import lombok.Data;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
@Data
|
@Component
|
@ConfigurationProperties(prefix = "wei-ya.conf")
|
public class WeiYaConfigProperties {
|
/**
|
* AES加密密钥
|
*/
|
private String aesSecretKey;
|
|
/**
|
* 渠道编码
|
*/
|
private String channelCode;
|
|
/**
|
* 回调地址(根据不同的部署节点来设置,默认为海南测试节点地址)
|
*/
|
private String notifyUrl;
|
|
/**
|
* 拉取vip卡列表
|
*/
|
private String getChannelDataUrl;
|
|
/**
|
* 支付链接前缀
|
*/
|
private String memberPayUrl;
|
|
private String userGetUrl;
|
|
private String channelMemberNotifyUrl;
|
}
|