com.alipay.api.domain.GoodsInfoDTO 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, 2023-01-12 20:25:59
*/
public class GoodsInfoDTO extends AlipayObject {
private static final long serialVersionUID = 3566447361169725753L;
/**
* 商品金额
*/
@ApiField("goods_amount")
private String goodsAmount;
/**
* 商品购买数量
*/
@ApiField("goods_count")
private String goodsCount;
/**
* 商品标准69码
*/
@ApiField("goods_id")
private String goodsId;
/**
* 商品名称
*/
@ApiField("goods_name")
private String goodsName;
public String getGoodsAmount() {
return this.goodsAmount;
}
public void setGoodsAmount(String goodsAmount) {
this.goodsAmount = goodsAmount;
}
public String getGoodsCount() {
return this.goodsCount;
}
public void setGoodsCount(String goodsCount) {
this.goodsCount = goodsCount;
}
public String getGoodsId() {
return this.goodsId;
}
public void setGoodsId(String goodsId) {
this.goodsId = goodsId;
}
public String getGoodsName() {
return this.goodsName;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy