com.alipay.api.domain.PidShopInfo 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
alipay-sdk project for Spring Project
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;
/**
* 招商pid和pid对应的门第列表
*
* @author auto create
* @since 1.0, 2017-06-05 11:25:25
*/
public class PidShopInfo extends AlipayObject {
private static final long serialVersionUID = 4175687219133525159L;
/**
* 商户pid
*/
@ApiField("pid")
private String pid;
/**
* pid下的门店列表
*/
@ApiListField("shop_ids")
@ApiField("string")
private List shopIds;
public String getPid() {
return this.pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public List getShopIds() {
return this.shopIds;
}
public void setShopIds(List shopIds) {
this.shopIds = shopIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy