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;
|
}
|