Skip to content

Commit e0f3c76

Browse files
miaogr86binarywang
authored andcommitted
🎨 修复部分字段类型
1 parent d166c27 commit e0f3c76

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/WxCpTpAuthInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public static class Agent implements Serializable {
232232
* </ul>
233233
*/
234234
@SerializedName("user_limit")
235-
private Integer userLimit;
235+
private Long userLimit;
236236

237237
/**
238238
* 版本到期时间, 秒级时间戳, 根据需要自行乘以1000(根据购买版本,可能是试用到期时间或付费使用到期时间)。

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/bean/applyment/WxPayApplyment4SubCreateRequest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static class SubjectInfo implements Serializable {
223223
* 是否是金融机构
224224
*/
225225
@SerializedName("finance_institution")
226-
private boolean financeInstitution;
226+
private Boolean financeInstitution;
227227

228228
/**
229229
* 营业执照
@@ -450,7 +450,7 @@ public static class IdentityInfo implements Serializable {
450450
* 经营者/法人是否为受益人
451451
*/
452452
@SerializedName("owner")
453-
private boolean owner;
453+
private Boolean owner;
454454

455455
@Data
456456
@Builder

0 commit comments

Comments
 (0)