|
|
@@ -1,5 +1,7 @@ |
|
|
|
package com.github.binarywang.wxpay.bean.applyment; |
|
|
|
|
|
|
|
import com.github.binarywang.wxpay.bean.applyment.enums.AccountTypeEnum; |
|
|
|
import com.github.binarywang.wxpay.bean.applyment.enums.SettlementVerifyResultEnum; |
|
|
|
import com.google.gson.annotations.SerializedName; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import lombok.Builder; |
|
|
@@ -23,7 +25,7 @@ public class SettlementInfoResult implements Serializable { |
|
|
|
* 账户类型 |
|
|
|
*/ |
|
|
|
@SerializedName("account_type") |
|
|
|
private String accountType; |
|
|
|
private AccountTypeEnum accountType; |
|
|
|
/** |
|
|
|
* 开户银行 |
|
|
|
*/ |
|
|
@@ -50,5 +52,11 @@ public class SettlementInfoResult implements Serializable { |
|
|
|
* @see com.github.binarywang.wxpay.bean.applyment.enums.SettlementVerifyResultEnum |
|
|
|
*/ |
|
|
|
@SerializedName("verify_result") |
|
|
|
private String verifyResult; |
|
|
|
private SettlementVerifyResultEnum verifyResult; |
|
|
|
|
|
|
|
/** |
|
|
|
* 汇款验证失败原因 |
|
|
|
*/ |
|
|
|
@SerializedName("verify_fail_reason") |
|
|
|
private String verifyFailReason; |
|
|
|
} |