com.alipay.api.domain.ExtItem 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 商品信息
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:42
*/
public class ExtItem extends AlipayObject {
private static final long serialVersionUID = 5591356431192772587L;
/**
* 品牌编码
*/
@ApiField("brand_code")
private String brandCode;
/**
* 品类编码
*/
@ApiField("category_code")
private String categoryCode;
/**
* 入数,必须为整数
*/
@ApiField("count")
private Long count;
/**
* 产地
*/
@ApiField("country")
private String country;
/**
* 商品描述
*/
@ApiField("description")
private String description;
/**
* 商品id
*/
@ApiField("id")
private Long id;
/**
* 商品条码
*/
@ApiField("item_code")
private String itemCode;
/**
* 商品图片url
*/
@ApiField("picture")
private String picture;
/**
* 参考价格,单位(分),必须为整数
*/
@ApiField("price")
private Long price;
/**
* 商品规格
*/
@ApiField("specification")
private String specification;
/**
* 商品名称
*/
@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 Long getCount() {
return this.count;
}
public void setCount(Long count) {
this.count = count;
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getItemCode() {
return this.itemCode;
}
public void setItemCode(String itemCode) {
this.itemCode = itemCode;
}
public String getPicture() {
return this.picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public Long getPrice() {
return this.price;
}
public void setPrice(Long price) {
this.price = price;
}
public String getSpecification() {
return this.specification;
}
public void setSpecification(String specification) {
this.specification = specification;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}