3
0
Fork 0

Compare commits

..

2 Commits

Author SHA1 Message Date
cabbage b36f49ca1d ## 商品上下架时间可以为空; 2025-09-04 09:33:05 +08:00
cabbage 5448ff39f0 ## 商品上下架时间可以为空; 2025-09-04 09:33:05 +08:00
1 changed files with 3 additions and 6 deletions

View File

@ -13,9 +13,6 @@ import org.apache.ibatis.type.JdbcType;
/**
* 商品发布扩展表
*
* @author hzs
* @since 2022-09-09
*/
@Data
@EqualsAndHashCode(callSuper = true)
@ -89,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;
/**
@ -137,7 +134,7 @@ public class BdWaresExtend extends BaseEntity {
/**
* 预计时间到货时间
*/
@TableField("ARRIVAL_TIME")
@TableField(value = "ARRIVAL_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date arrivalTime;
/**