This commit is contained in:
wangjinlei
2023-11-01 16:50:56 +08:00
parent 5a15ba417c
commit eff309f8cb
12 changed files with 90 additions and 7 deletions

View File

@@ -1,8 +1,10 @@
package com.peanut.modules.book.vo.response;
import com.peanut.modules.book.entity.BookEntity;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
/**
* @Description: 商品信息 Value Object
@@ -11,6 +13,8 @@ import java.math.BigDecimal;
*/
@Data
public class GoodsResponseVo {
private Integer ProductId;
private Integer buyOrderProductId;
/**
* 商品名称
@@ -32,4 +36,8 @@ public class GoodsResponseVo {
* 快递
*/
private ExpressResponseVo expressInfo;
/**
* 对应的书list
*/
private List<BookEntity> books;
}