Compare commits

...

2 Commits

Author SHA1 Message Date
cabbage 3a5303462f ## 商品上下架时间可以为空; 2025-09-04 10:49:21 +08:00
cabbage 16982adde0 ## 商品上下架时间可以为空; 2025-09-04 10:49:21 +08:00
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; private Date putOnTime;
/** /**
* 下架时间 * 下架时间
*/ */
@TableField("PUT_OFF_TIME") @TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date putOffTime; 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; private Date arrivalTime;
/** /**