com.alipay.api.domain.RequestExtShopItemQuery 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 批量查询店铺商品信息入参
*
* @author auto create
* @since 1.0, 2017-04-14 18:19:47
*/
public class RequestExtShopItemQuery extends AlipayObject {
private static final long serialVersionUID = 1614639311112759857L;
/**
* 店铺商品的品牌名称
*/
@ApiField("brand_code")
private String brandCode;
/**
* 店铺商品的商品类别
*/
@ApiField("category_code")
private String categoryCode;
/**
* 商品描述
*/
@ApiField("description")
private String description;
/**
* 店铺商品SKU
*/
@ApiField("item_code")
private String itemCode;
/**
* 口碑门店id
*/
@ApiField("kb_shop_id")
private String kbShopId;
/**
* 商品参考价格
*/
@ApiField("price")
private String price;
/**
* 店铺商品的名称
*/
@ApiField("title")
private String title;
public String getBrandCode() {
return this.brandCode;
}
public void setBrandCode(String brandCode) {
this.brandCode = brandCode;
}
public String getCategoryCode() {
return this.categoryCode;
}
public void setCategoryCode(String categoryCode) {
this.categoryCode = categoryCode;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getItemCode() {
return this.itemCode;
}
public void setItemCode(String itemCode) {
this.itemCode = itemCode;
}
public String getKbShopId() {
return this.kbShopId;
}
public void setKbShopId(String kbShopId) {
this.kbShopId = kbShopId;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy