Revert "fix(BdWaresExtend): 商品管理-上下架及预计发货时间可以传空"

This reverts commit 26053da65e.
This commit is contained in:
woody 2025-10-11 10:39:29 +08:00 committed by cabbage
parent 20059a77bb
commit 83c471e255
1 changed files with 3 additions and 3 deletions

View File

@ -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; private Date putOnTime;
/** /**
* 下架时间 * 下架时间
*/ */
@TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED) @TableField("PUT_OFF_TIME")
private Date putOffTime; 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; private Date arrivalTime;
/** /**