3
0
Fork 0

Compare commits

..

No commits in common. "4d40a7cc195bc1b4e5d7605db6503477614f1759" and "714dd440d6008028346ca0ee0c3c98b8a966f576" have entirely different histories.

1 changed files with 5 additions and 2 deletions

View File

@ -13,6 +13,9 @@ import org.apache.ibatis.type.JdbcType;
/** /**
* 商品发布扩展表 * 商品发布扩展表
*
* @author hzs
* @since 2022-09-09
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@ -86,13 +89,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;
/** /**