com.alipay.api.domain.ItemUnitInfo 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, 2017-08-24 13:56:10
*/
public class ItemUnitInfo extends AlipayObject {
private static final long serialVersionUID = 2171283211425429262L;
/**
* 商品详情-商品套餐内容-菜品数量
*/
@ApiField("amount")
private Long amount;
/**
* 商品详情-商品套餐内容-菜品价格。字符串,单位元,两位小数
*/
@ApiField("price")
private String price;
/**
* 商品详情-商品套餐内容-菜品规格
*/
@ApiField("spec")
private String spec;
/**
* 商品详情-商品套餐内容-菜品名称。不得超过15个中文字符
*/
@ApiField("title")
private String title;
/**
* 商品详情-商品套餐内容-菜品数量单位
*/
@ApiField("unit")
private String unit;
public Long getAmount() {
return this.amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
public String getSpec() {
return this.spec;
}
public void setSpec(String spec) {
this.spec = spec;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUnit() {
return this.unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
}