forked from wechatpay-apiv3/wechatpay-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
收付通合并支付相关接口对接实现(wechatpay-apiv3#282)
- Loading branch information
Showing
7 changed files
with
484 additions
and
858 deletions.
There are no files selected for viewing
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
24 changes: 24 additions & 0 deletions
24
.../java/com/wechat/pay/java/service/ecommercecombinepayments/h5/model/CombinePayerInfo.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,24 @@ | ||
package com.wechat.pay.java.service.ecommercecombinepayments.h5.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class CombinePayerInfo { | ||
|
||
@SerializedName("openid") | ||
private String openid; | ||
|
||
public String getOpenid() { | ||
return openid; | ||
} | ||
|
||
public void setOpenid(String openid) { | ||
this.openid = openid; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "CombinePayerInfo{" + | ||
"openid='" + openid + '\'' + | ||
'}'; | ||
} | ||
} |
Oops, something went wrong.