com.alipay.api.domain.KoubeiRetailShopitemBatchqueryModel 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;
/**
* isv 回传的门店商品信息查询接口
*
* @author auto create
* @since 1.0, 2017-04-14 18:19:47
*/
public class KoubeiRetailShopitemBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 7449728683381613927L;
/**
* 查询店铺商品查询入参
*/
@ApiListField("shop_items")
@ApiField("request_ext_shop_item_query")
private List shopItems;
public List getShopItems() {
return this.shopItems;
}
public void setShopItems(List shopItems) {
this.shopItems = shopItems;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy