1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cc.mrbird.febs.mall.dto;
|
| import lombok.Data;
|
| /**
| * BSPAY (巴西PIX) 支付配置 DTO
| * 对应 data_dictionary_custom 表 type='BSPAY_CONFIG' 的多条记录
| *
| * @author auto-generated
| */
| @Data
| public class BsPayConfigDto {
| /** BSPAY 商户号 */
| private String memberId;
| /** BSPAY 签名密钥 */
| private String secretKey;
| /** 异步回调通知地址 */
| private String notifyUrl;
| /** BSPAY API 基础地址 */
| private String apiBaseUrl;
| }
|
|