shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
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
package com.walker.pay.payunk;
 
import com.walker.pay.ResponsePay;
 
/**
 * 支付宝个人转账响应对象。
 * @author 时克英
 * @date 2023-10-26
 */
public class Trans2AlipayResponsePay extends ResponsePay {
 
    /**
     * 支付宝支付链接。
     * @return
     */
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    private String url;
 
 
}