This commit is contained in:
wangjinlei
2023-10-26 17:52:54 +08:00
parent 7792024b15
commit c5e6cfdc89
9 changed files with 27 additions and 11 deletions

View File

@@ -3,6 +3,7 @@ package com.peanut.modules.book.vo.response;
import lombok.Data;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.util.Date;
import java.util.List;
@@ -74,6 +75,8 @@ public class BuyOrderResponseVo {
* 创建时间
*/
private Date createTime;
private Long timestamp;
/**
* 发货时间
*/

View File

@@ -19,4 +19,6 @@ public class CouponResponseVo {
* 优惠券金额
*/
Integer couponId;
BigDecimal couponAmount;
}