3
0
Fork 0

## 商品上下架时间可以为空;

This commit is contained in:
cabbage 2025-09-04 09:25:21 +08:00
parent 3e6c3f0c0a
commit 841efef189
1 changed files with 2 additions and 5 deletions

View File

@ -13,9 +13,6 @@ import org.apache.ibatis.type.JdbcType;
/** /**
* 商品发布扩展表 * 商品发布扩展表
*
* @author hzs
* @since 2022-09-09
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @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; private Date putOnTime;
/** /**
* 下架时间 * 下架时间
*/ */
@TableField("PUT_OFF_TIME") @TableField(value = "PUT_OFF_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED)
private Date putOffTime; private Date putOffTime;
/** /**