
com.alipay.api.domain.IsvMerchantInfo 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 商户信息列表
*
* @author auto create
* @since 1.0, 2017-08-04 15:15:46
*/
public class IsvMerchantInfo extends AlipayObject {
private static final long serialVersionUID = 2575226639959328964L;
/**
* 商户pid
*/
@ApiField("partner_id")
private String partnerId;
/**
* 门店ID列表
*/
@ApiListField("shop_ids")
@ApiField("string")
private List shopIds;
public String getPartnerId() {
return this.partnerId;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
public List getShopIds() {
return this.shopIds;
}
public void setShopIds(List shopIds) {
this.shopIds = shopIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy