From fcfee0a068bceb2e5b5128204745563dbb298ac6 Mon Sep 17 00:00:00 2001 From: xiaoguaiYJ <33287565+xiaoguaiYJ@users.noreply.github.com> Date: Wed, 23 Feb 2022 09:44:29 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=AE=9A=E4=B9=89=E7=B1=BB=E5=9E=8B=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: xiaoqiang --- .../bean/marketing/payroll/AuthRecordResult.java | 12 ++++++------ .../bean/marketing/transfer/BatchDetailsResult.java | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/payroll/AuthRecordResult.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/payroll/AuthRecordResult.java index abf839763..5318e5315 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/payroll/AuthRecordResult.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/payroll/AuthRecordResult.java @@ -44,7 +44,7 @@ public class AuthRecordResult implements Serializable { * */ @SerializedName(value = "mchid") - private Integer mchid; + private String mchid; /** *
      * 字段名:子商户号
@@ -57,7 +57,7 @@ public class AuthRecordResult implements Serializable {
      * 
*/ @SerializedName(value = "sub_mchid") - private Integer subMchid; + private String subMchid; /** *
      * 字段名:用户标识
@@ -70,7 +70,7 @@ public class AuthRecordResult implements Serializable {
      * 
*/ @SerializedName(value = "openid") - private Integer openid; + private String openid; /** *
      * 字段名:核身渠道
@@ -85,7 +85,7 @@ public class AuthRecordResult implements Serializable {
      * 
*/ @SerializedName(value = "authenticate_scene") - private Integer authenticateScene; + private String authenticateScene; /** *
      * 字段名:核身渠道标识
@@ -98,7 +98,7 @@ public class AuthRecordResult implements Serializable {
      * 
*/ @SerializedName(value = "authenticate_source") - private Integer authenticateSource; + private String authenticateSource; /** *
      * 字段名:项目名称
@@ -111,7 +111,7 @@ public class AuthRecordResult implements Serializable {
      * 
*/ @SerializedName(value = "project_name") - private Integer projectName; + private String projectName; /** *
      * 字段名:单位名称
diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/transfer/BatchDetailsResult.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/transfer/BatchDetailsResult.java
index 0ca10dcb4..5c77281e7 100644
--- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/transfer/BatchDetailsResult.java
+++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/transfer/BatchDetailsResult.java
@@ -235,5 +235,5 @@ public class BatchDetailsResult implements Serializable {
    * 
*/ @SerializedName(value = "update_time") - private Date updateTime; + private String updateTime; }