com.alipay.api.domain.ZhimaCreditPeZmgoPreConsultModel 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, 2024-10-16 11:29:00
*/
public class ZhimaCreditPeZmgoPreConsultModel extends AlipayObject {
private static final long serialVersionUID = 5793891415154161167L;
/**
* 用户id
*/
@ApiField("alipay_user_id")
private String alipayUserId;
/**
* 开放ID
*/
@ApiField("open_id")
private String openId;
/**
* 商户ID
*/
@ApiField("partner_id")
private String partnerId;
/**
* 手机号
*/
@ApiField("phone")
private String phone;
/**
* 查询等级
*/
@ApiField("query_level")
private String queryLevel;
/**
* 模板id
*/
@ApiField("template_id")
private String templateId;
public String getAlipayUserId() {
return this.alipayUserId;
}
public void setAlipayUserId(String alipayUserId) {
this.alipayUserId = alipayUserId;
}
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public String getPartnerId() {
return this.partnerId;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getQueryLevel() {
return this.queryLevel;
}
public void setQueryLevel(String queryLevel) {
this.queryLevel = queryLevel;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy