From 89a2e1941997465067560c106cdfc2132b8b302e Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 15 Sep 2025 14:19:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(order):=20=E6=B7=BB=E5=8A=A0=E5=80=92?= =?UTF-8?q?=E8=AE=A1=E6=97=B6=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 IsBuyBatchRespVO 类中添加 countdown 属性,初始值为 3600秒(1小时) - 用于表示订单倒计时时间,增强用户体验 --- .../java/com/ycwl/basic/model/mobile/order/IsBuyBatchRespVO.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/ycwl/basic/model/mobile/order/IsBuyBatchRespVO.java b/src/main/java/com/ycwl/basic/model/mobile/order/IsBuyBatchRespVO.java index 121c86dc..7abfb7a3 100644 --- a/src/main/java/com/ycwl/basic/model/mobile/order/IsBuyBatchRespVO.java +++ b/src/main/java/com/ycwl/basic/model/mobile/order/IsBuyBatchRespVO.java @@ -17,6 +17,7 @@ public class IsBuyBatchRespVO { private BigDecimal origPrice = BigDecimal.ZERO; private Integer couponId; private Integer couponRecordId; + private Integer countdown = 3600; private BigDecimal couponPrice = BigDecimal.ZERO; private BigDecimal slashPrice;