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-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 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, 2022-06-02 11:17:53
*/
public class KoubeiMarketingMallShoppromoinfoQueryModel extends AlipayObject {
private static final long serialVersionUID = 3583576439343938251L;
/**
* 商圈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