package com.ruoyi.payment.domain.model;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 商品明细
|
*
|
* @author ruoyi
|
*/
|
@Data
|
public class GoodsDetail implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/** 商品ID */
|
private String goodsId;
|
|
/** 商品名称 */
|
private String goodsName;
|
|
/** 商品数量 */
|
private Integer quantity;
|
|
/** 商品单价(分) */
|
private Integer price;
|
|
/** 商品类别 */
|
private String goodsCategory;
|
|
/** 商品描述 */
|
private String body;
|
|
public GoodsDetail() {}
|
|
public GoodsDetail(String goodsId, String goodsName, Integer quantity, Integer price) {
|
this.goodsId = goodsId;
|
this.goodsName = goodsName;
|
this.quantity = quantity;
|
this.price = price;
|
}
|
|
public GoodsDetail(String goodsId, String goodsName, Integer quantity, Integer price, String goodsCategory, String body) {
|
this.goodsId = goodsId;
|
this.goodsName = goodsName;
|
this.quantity = quantity;
|
this.price = price;
|
this.goodsCategory = goodsCategory;
|
this.body = body;
|
}
|
}
|