## 商品上下架时间可以为空;
This commit is contained in:
parent
82b0d99b2f
commit
97582284ff
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue