
com.alipay.api.domain.MybankCreditUserRoleCreateModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 创建网商会员
*
* @author auto create
* @since 1.0, 2017-08-22 14:22:11
*/
public class MybankCreditUserRoleCreateModel extends AlipayObject {
private static final long serialVersionUID = 8144636162793457449L;
/**
* 客户身份编码-个人是身份证号码、企业是工商注册号、会员是会员编号-具体的数字编号
*/
@ApiField("entity_code")
private String entityCode;
/**
* 客户身份标识-个人是姓名、企业是公司名称、会员是会员名称,如支付宝的手机号或者邮箱号
*/
@ApiField("entity_name")
private String entityName;
/**
* 客户身份类型-个人是PERSON、企业是COMPAY、会员是具体的站点如ALIPAY或者MYBANK
*/
@ApiField("entity_type")
private String entityType;
/**
* 扩展数据(map转换为json字符串)
*/
@ApiField("ext_data")
private String extData;
/**
* 业务场景,7-代表网商贷在开放平台对外开放
*/
@ApiField("scene_type")
private String sceneType;
public String getEntityCode() {
return this.entityCode;
}
public void setEntityCode(String entityCode) {
this.entityCode = entityCode;
}
public String getEntityName() {
return this.entityName;
}
public void setEntityName(String entityName) {
this.entityName = entityName;
}
public String getEntityType() {
return this.entityType;
}
public void setEntityType(String entityType) {
this.entityType = entityType;
}
public String getExtData() {
return this.extData;
}
public void setExtData(String extData) {
this.extData = extData;
}
public String getSceneType() {
return this.sceneType;
}
public void setSceneType(String sceneType) {
this.sceneType = sceneType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy