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
28
29
30
31
32
33
package com.walker.pay.response;
 
import com.walker.pay.ResponsePay;
 
/**
 * 对应扫码方式响应对象。
 * @author 时克英
 * @@date 2023-01-16
 */
public class ScanOrderResponsePay extends ResponsePay {
 
    /**
     * 返回二维码链接地址字符串。
     * @return
     */
    public String getCodeUrl() {
        return codeUrl;
    }
 
    public void setCodeUrl(String codeUrl) {
        this.codeUrl = codeUrl;
    }
 
    private String codeUrl;
 
    @Override
    public String toString(){
        return new StringBuilder("status=").append(this.getStatus())
                .append(", msg=").append(this.getMessage())
                .append(", codeUrl=").append(this.codeUrl)
                .append("]").toString();
    }
}