
com.alipay.api.domain.KoubeiMarketingMallShoppromoinfoQueryModel 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-06-20 15:01:09
*/
public class KoubeiMarketingMallShoppromoinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 4522156529473253871L;
/**
* 商圈id
*/
@ApiField("mall_id")
private String mallId;
/**
* 商圈下店铺id列表
*/
@ApiListField("shop_ids")
@ApiField("string")
private List shopIds;
public String getMallId() {
return this.mallId;
}
public void setMallId(String mallId) {
this.mallId = mallId;
}
public List getShopIds() {
return this.shopIds;
}
public void setShopIds(List shopIds) {
this.shopIds = shopIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy