com.alipay.api.domain.ZhimaCreditEpCreditunionPaSubscribeModel 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-11-07 09:48:18
*/
public class ZhimaCreditEpCreditunionPaSubscribeModel extends AlipayObject {
private static final long serialVersionUID = 2391752569672345145L;
/**
* 授权单号
*/
@ApiField("auth_id")
private String authId;
/**
* 经营者信息(经营者证件号( sha256 加密))
*/
@ApiField("business_person")
private String businessPerson;
/**
* 企业名称
*/
@ApiField("ent_name")
private String entName;
/**
* 商户请求ID(需要唯一,有幂等校验)
*/
@ApiField("merchant_request_id")
private String merchantRequestId;
/**
* 产品码
*/
@ApiField("product_code")
private String productCode;
/**
* 企业注册号
*/
@ApiField("reg_no")
private String regNo;
/**
* 入参类型(企业入参:企业KEY三选一必填,建议统代>注册号>企业名称;经营者入参:经营者信息必填)
*/
@ApiField("type")
private String type;
/**
* 企业统一社会信用代码
*/
@ApiField("uscc")
private String uscc;
public String getAuthId() {
return this.authId;
}
public void setAuthId(String authId) {
this.authId = authId;
}
public String getBusinessPerson() {
return this.businessPerson;
}
public void setBusinessPerson(String businessPerson) {
this.businessPerson = businessPerson;
}
public String getEntName() {
return this.entName;
}
public void setEntName(String entName) {
this.entName = entName;
}
public String getMerchantRequestId() {
return this.merchantRequestId;
}
public void setMerchantRequestId(String merchantRequestId) {
this.merchantRequestId = merchantRequestId;
}
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getRegNo() {
return this.regNo;
}
public void setRegNo(String regNo) {
this.regNo = regNo;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getUscc() {
return this.uscc;
}
public void setUscc(String uscc) {
this.uscc = uscc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy