From 40926584f344f6129cc05782bf7312099c464cd4 Mon Sep 17 00:00:00 2001 From: Binary Wang Date: Sat, 8 Jul 2023 11:59:04 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E3=80=90=E5=BE=AE=E4=BF=A1=E6=94=AF?= =?UTF-8?q?=E4=BB=98=E3=80=91=E6=9C=8D=E5=8A=A1=E5=95=86=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E6=8E=A5=E5=8F=A3=E5=A2=9E=E5=8A=A0=E8=8B=A5?= =?UTF-8?q?=E5=B9=B2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../notify/WxPayPartnerNotifyV3Result.java | 32 +++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/notify/WxPayPartnerNotifyV3Result.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/notify/WxPayPartnerNotifyV3Result.java index 58f3dbb2a..64671abd2 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/notify/WxPayPartnerNotifyV3Result.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/notify/WxPayPartnerNotifyV3Result.java @@ -8,8 +8,7 @@ import java.io.Serializable; import java.util.List; /** - * 微信支付服务商下单回调 - * 文档见:https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter4_1_5.shtml + * 微信支付服务商下单回调,文档:文档 * * @author Pursuer * @version 1.0 @@ -250,6 +249,7 @@ public class WxPayPartnerNotifyV3Result implements Serializable, WxPayBaseNotify @SerializedName(value = "promotion_detail") private List promotionDetails; } + @Data @NoArgsConstructor public static class Payer implements Serializable { @@ -267,6 +267,34 @@ public class WxPayPartnerNotifyV3Result implements Serializable, WxPayBaseNotify */ @SerializedName(value = "openid") private String openid; + + /** + *
+     * 字段名:用户服务标识
+     * 变量名:sp_openid
+     * 是否必填:是
+     * 类型:string[1,128]
+     * 描述:
+     *  用户在服务商appid下的唯一标识。
+     *  示例值:oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
+     * 
+ */ + @SerializedName(value = "sp_openid") + private String spOpenid; + + /** + *
+     * 字段名:用户子标识
+     * 变量名:sub_openid
+     * 是否必填:否
+     * 类型:string[1,128]
+     * 描述:
+     * 用户在子商户appid下的唯一标识。
+     *  示例值:oUpF8uMuAJO_M2pxb1Q9zNjWeS6o
+     * 
+ */ + @SerializedName(value = "sub_openid") + private String subOpenid; } @Data