Skip to content

Commit fcfee0a

Browse files
authored
🐛 修复部分字段定义类型错误
Co-authored-by: xiaoqiang <[email protected]>
1 parent a25c48e commit fcfee0a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/payroll/AuthRecordResult.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static class RecordData implements Serializable {
4444
* </pre>
4545
*/
4646
@SerializedName(value = "mchid")
47-
private Integer mchid;
47+
private String mchid;
4848
/**
4949
* <pre>
5050
* 字段名:子商户号
@@ -57,7 +57,7 @@ public static class RecordData implements Serializable {
5757
* </pre>
5858
*/
5959
@SerializedName(value = "sub_mchid")
60-
private Integer subMchid;
60+
private String subMchid;
6161
/**
6262
* <pre>
6363
* 字段名:用户标识
@@ -70,7 +70,7 @@ public static class RecordData implements Serializable {
7070
* </pre>
7171
*/
7272
@SerializedName(value = "openid")
73-
private Integer openid;
73+
private String openid;
7474
/**
7575
* <pre>
7676
* 字段名:核身渠道
@@ -85,7 +85,7 @@ public static class RecordData implements Serializable {
8585
* </pre>
8686
*/
8787
@SerializedName(value = "authenticate_scene")
88-
private Integer authenticateScene;
88+
private String authenticateScene;
8989
/**
9090
* <pre>
9191
* 字段名:核身渠道标识
@@ -98,7 +98,7 @@ public static class RecordData implements Serializable {
9898
* </pre>
9999
*/
100100
@SerializedName(value = "authenticate_source")
101-
private Integer authenticateSource;
101+
private String authenticateSource;
102102
/**
103103
* <pre>
104104
* 字段名:项目名称
@@ -111,7 +111,7 @@ public static class RecordData implements Serializable {
111111
* </pre>
112112
*/
113113
@SerializedName(value = "project_name")
114-
private Integer projectName;
114+
private String projectName;
115115
/**
116116
* <pre>
117117
* 字段名:单位名称

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/marketing/transfer/BatchDetailsResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,5 +235,5 @@ public String toString() {
235235
* </pre>
236236
*/
237237
@SerializedName(value = "update_time")
238-
private Date updateTime;
238+
private String updateTime;
239239
}

0 commit comments

Comments
 (0)