com.alipay.api.domain.AlipayUserCreditCard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 包含两个String成员变量
String cardNo; //获取前6后2
String instId; //如ICBC
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:38
*/
public class AlipayUserCreditCard extends AlipayObject {
private static final long serialVersionUID = 6782162468974434799L;
/**
* 信用卡卡号,显示前6后2
*/
@ApiField("card_no")
private String cardNo;
/**
* 开户行代码
*/
@ApiField("inst_id")
private String instId;
public String getCardNo() {
return this.cardNo;
}
public void setCardNo(String cardNo) {
this.cardNo = cardNo;
}
public String getInstId() {
return this.instId;
}
public void setInstId(String instId) {
this.instId = instId;
}
}