-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4e31b1
commit 4bda30e
Showing
2 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
...ay-core/src/main/java/com/snake19870227/stiger/pay/channel/wxpay/WxpayAppClientParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package com.snake19870227.stiger.pay.channel.wxpay; | ||
|
||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.snake19870227.stiger.pay.channel.ChannelClientParam; | ||
|
||
/** | ||
* @author BuHuaYang | ||
* 2021/4/13 | ||
*/ | ||
public class WxpayAppClientParam implements ChannelClientParam { | ||
|
||
@ApiModelProperty("签名") | ||
private String sign; | ||
@ApiModelProperty("prepayId") | ||
private String prepayId; | ||
@ApiModelProperty("partnerId") | ||
private String partnerId; | ||
@ApiModelProperty("appId") | ||
private String appId; | ||
@ApiModelProperty("格式:Sign=WXPay") | ||
@JsonProperty("package") | ||
private String packageValue; | ||
@ApiModelProperty("时间戳") | ||
private String timeStamp; | ||
@ApiModelProperty("随机字符串") | ||
private String nonceStr; | ||
|
||
public String getSign() { | ||
return sign; | ||
} | ||
|
||
public void setSign(String sign) { | ||
this.sign = sign; | ||
} | ||
|
||
public String getPrepayId() { | ||
return prepayId; | ||
} | ||
|
||
public void setPrepayId(String prepayId) { | ||
this.prepayId = prepayId; | ||
} | ||
|
||
public String getPartnerId() { | ||
return partnerId; | ||
} | ||
|
||
public void setPartnerId(String partnerId) { | ||
this.partnerId = partnerId; | ||
} | ||
|
||
public String getAppId() { | ||
return appId; | ||
} | ||
|
||
public void setAppId(String appId) { | ||
this.appId = appId; | ||
} | ||
|
||
public String getPackageValue() { | ||
return packageValue; | ||
} | ||
|
||
public void setPackageValue(String packageValue) { | ||
this.packageValue = packageValue; | ||
} | ||
|
||
public String getTimeStamp() { | ||
return timeStamp; | ||
} | ||
|
||
public void setTimeStamp(String timeStamp) { | ||
this.timeStamp = timeStamp; | ||
} | ||
|
||
public String getNonceStr() { | ||
return nonceStr; | ||
} | ||
|
||
public void setNonceStr(String nonceStr) { | ||
this.nonceStr = nonceStr; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters