🎨 修复部分字段类型

This commit is contained in:
缪贵荣 2022-07-12 16:35:31 +08:00 committed by Binary Wang
parent d166c27fad
commit e0f3c76cea
2 changed files with 3 additions and 3 deletions

View File

@ -232,7 +232,7 @@ public class WxCpTpAuthInfo extends WxCpBaseResp {
* </ul>
*/
@SerializedName("user_limit")
private Integer userLimit;
private Long userLimit;
/**
* 版本到期时间, 秒级时间戳, 根据需要自行乘以1000根据购买版本可能是试用到期时间或付费使用到期时间

View File

@ -223,7 +223,7 @@ public class WxPayApplyment4SubCreateRequest implements Serializable {
* 是否是金融机构
*/
@SerializedName("finance_institution")
private boolean financeInstitution;
private Boolean financeInstitution;
/**
* 营业执照
@ -450,7 +450,7 @@ public class WxPayApplyment4SubCreateRequest implements Serializable {
* 经营者/法人是否为受益人
*/
@SerializedName("owner")
private boolean owner;
private Boolean owner;
@Data
@Builder