All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.SubMerchant Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show 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-05-03 13:59:11
 */
public class SubMerchant extends AlipayObject {

	private static final long serialVersionUID = 5479826916896149942L;

	/**
	 * 二级商户的支付宝id
	 */
	@ApiField("merchant_id")
	private String merchantId;

	public String getMerchantId() {
		return this.merchantId;
	}
	public void setMerchantId(String merchantId) {
		this.merchantId = merchantId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy