@PrePersist
public void prePersist() {
updatedAt = new Timestamp(System.currentTimeMillis());
createdAt = new Timestamp(System.currentTimeMillis());
}
/**
* 在持久化时,数据有变化,此方法会执行
*/
@PreUpdate
public void preUpdate() {
updatedAt = new Timestamp(System.currentTimeMillis());
}
@PrePersist
最新推荐文章于 2024-06-15 22:39:10 发布