From 83c471e2551678b23f1fe045deaa7d3825f237b7 Mon Sep 17 00:00:00 2001 From: woody Date: Sat, 11 Oct 2025 10:39:29 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"fix(BdWaresExtend):=20=E5=95=86?= =?UTF-8?q?=E5=93=81=E7=AE=A1=E7=90=86-=E4=B8=8A=E4=B8=8B=E6=9E=B6?= =?UTF-8?q?=E5=8F=8A=E9=A2=84=E8=AE=A1=E5=8F=91=E8=B4=A7=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E4=BC=A0=E7=A9=BA"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 26053da65e5195d92cde33b0eec44d2d499c4602. --- .../com/hzs/common/domain/sale/wares/BdWaresExtend.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bd-common/bd-common-domain/src/main/java/com/hzs/common/domain/sale/wares/BdWaresExtend.java b/bd-common/bd-common-domain/src/main/java/com/hzs/common/domain/sale/wares/BdWaresExtend.java index 523bb7a6..74687f79 100644 --- a/bd-common/bd-common-domain/src/main/java/com/hzs/common/domain/sale/wares/BdWaresExtend.java +++ b/bd-common/bd-common-domain/src/main/java/com/hzs/common/domain/sale/wares/BdWaresExtend.java @@ -86,13 +86,13 @@ public class BdWaresExtend extends BaseEntity { /** * 上架时间 */ - @TableField(value = "PUT_ON_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED) + @TableField("PUT_ON_TIME") private Date putOnTime; /** * 下架时间 */ - @TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED) + @TableField("PUT_OFF_TIME") private Date putOffTime; /** @@ -134,7 +134,7 @@ public class BdWaresExtend extends BaseEntity { /** * (预计时间)到货时间 */ - @TableField(value = "ARRIVAL_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED) + @TableField("ARRIVAL_TIME") private Date arrivalTime; /**