Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/adapay/vo/AdapaySettleAccountVO.java
2023-06-14 14:48:58 +08:00

81 lines
1.4 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.jsowell.adapay.vo;
import lombok.*;
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class AdapaySettleAccountVO {
/**
* 主键
*/
private Long id;
/**
* 运营商id
*/
private String merchantId;
/**
* 汇付会员id
*/
private String adapayMemberId;
/**
* 结算账户对象 id
*/
private String settleAccountId;
/**
* 银行卡号
*/
private String cardId;
/**
* 银行卡对应的户名
*/
private String cardName;
/**
* 证件号,银行账户类型为对私时,必填
*/
private String certId;
/**
* 证件类型仅支持00-身份证,银行账户类型为对私时,必填
*/
private String certType;
/**
* 手机号
*/
private String telNo;
/**
* 银行编码,详见附录 银行代码,银行账户类型对公时,必填
*/
private String bankCode;
/**
* 开户银行名称
*/
private String bankName;
/**
* 银行账户类型1-对公2-对私
*/
private String bankAcctType;
/**
* 银行账户开户银行所在省份编码 (省市编码),银行账户类型为对公时,必填
*/
private String provCode;
/**
* 银行账户开户银行所在地区编码(省市编码),银行账户类型为对公时,必填
*/
private String areaCode;
}