3
0
Fork 0

Compare commits

..

No commits in common. "b36f49ca1d99d12d750c092f5e196e8bae28fb84" and "d88f886cefc1db0e76574ac2f6b55358d7a1e2c7" have entirely different histories.

1 changed files with 6 additions and 3 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;
/** /**
@ -134,7 +137,7 @@ public class BdWaresExtend extends BaseEntity {
/** /**
* 预计时间到货时间 * 预计时间到货时间
*/ */
@TableField(value = "ARRIVAL_TIME", jdbcType = JdbcType.DATE, updateStrategy = FieldStrategy.IGNORED) @TableField("ARRIVAL_TIME")
private Date arrivalTime; private Date arrivalTime;
/** /**