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;
|
| /**
| * LWPAY 支付配置 DTO
| * 对应 data_dictionary_custom 表 type='LWPAY_CONFIG' 的多条记录
| *
| * @author auto-generated
| */
| @Data
| public class LwPayConfigDto {
| /** LWPAY 商户号 */
| private String memberId;
| /** LWPAY 签名密钥 */
| private String secretKey;
| /** 异步回调通知地址 */
| private String notifyUrl;
| /** 支付完成跳转地址 */
| private String returnUrl;
| }
|
|