ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
27
28
29
30
31
32
33
34
35
36
37
38
39
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;
}