com.alipay.api.domain.MybankCreditLoanapplyFinleaseConsultQueryModel 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;
/**
* 赊呗分月付用户准入查询
*
* @author auto create
* @since 1.0, 2023-02-03 14:43:49
*/
public class MybankCreditLoanapplyFinleaseConsultQueryModel extends AlipayObject {
private static final long serialVersionUID = 4718941659918849341L;
/**
* 公司名称
*/
@ApiField("corporationname")
private String corporationname;
/**
* 蚂蚁统一会员ID
*/
@ApiField("open_id")
private String openId;
/**
* 工商注册号
*/
@ApiField("registrationno")
private String registrationno;
/**
* 蚂蚁统一会员ID
*/
@ApiField("userid")
private String userid;
public String getCorporationname() {
return this.corporationname;
}
public void setCorporationname(String corporationname) {
this.corporationname = corporationname;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getRegistrationno() {
return this.registrationno;
}
public void setRegistrationno(String registrationno) {
this.registrationno = registrationno;
}
public String getUserid() {
return this.userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy