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

This commit is contained in:
woody 2025-08-25 16:08:26 +08:00 committed by cabbage
parent ebbd9d2d65
commit 6a18e7987a
1 changed files with 3 additions and 3 deletions

View File

@ -86,13 +86,13 @@ public class BdWaresExtend extends BaseEntity {
/**
* 上架时间
*/
@TableField("PUT_ON_TIME")
@TableField(value = "PUT_ON_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date putOnTime;
/**
* 下架时间
*/
@TableField("PUT_OFF_TIME")
@TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date putOffTime;
/**
@ -134,7 +134,7 @@ public class BdWaresExtend extends BaseEntity {
/**
* 预计时间到货时间
*/
@TableField("ARRIVAL_TIME")
@TableField(value = "ARRIVAL_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date arrivalTime;
/**