shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.ishop.model.vo;
 
public class AliPayJsResultVo {
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
    public String getMethod() {
        return method;
    }
 
    public void setMethod(String method) {
        this.method = method;
    }
 
    public String getFormat() {
        return format;
    }
 
    public void setFormat(String format) {
        this.format = format;
    }
 
    public String getCharset() {
        return charset;
    }
 
    public void setCharset(String charset) {
        this.charset = charset;
    }
 
    public String getSignType() {
        return signType;
    }
 
    public void setSignType(String signType) {
        this.signType = signType;
    }
 
    public String getSign() {
        return sign;
    }
 
    public void setSign(String sign) {
        this.sign = sign;
    }
 
    public String getTimestamp() {
        return timestamp;
    }
 
    public void setTimestamp(String timestamp) {
        this.timestamp = timestamp;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public String getNotifyUrl() {
        return notifyUrl;
    }
 
    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }
 
    public String getBizContent() {
        return bizContent;
    }
 
    public void setBizContent(String bizContent) {
        this.bizContent = bizContent;
    }
 
    //    @ApiModelProperty(value = "支付宝id")
    private String appId;
 
//    @ApiModelProperty(value = "接口名称")
    private String method;
 
//    @ApiModelProperty(value = "仅支持JSON")
    private String format = "JSON";
 
//    @ApiModelProperty(value = "编码格式")
    private String charset;
 
//    @ApiModelProperty(value = "签名算法类型:RSA,RSA2")
    private String signType;
 
//    @ApiModelProperty(value = "支付签名")
    private String sign;
 
//    @ApiModelProperty(value = "发送请求时间,格式'yyyy-MM-dd HH:mm:ss'")
    private String timestamp;
 
//    @ApiModelProperty(value = "调用的接口版本")
    private String version = "1.0";
 
//    @ApiModelProperty(value = "异步回调地址")
    private String notifyUrl;
 
//    @ApiModelProperty(value = "业务请求参数集合")
    private String bizContent;
}