mirror of https://github.com/elunez/eladmin
供应商资料
parent
a1086d0bf0
commit
a0aeb5680c
|
@ -3,6 +3,8 @@ package me.zhengjie.modules.wms.bd.domain;
|
|||
import lombok.Data;
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import cn.hutool.core.bean.copier.CopyOptions;
|
||||
import org.hibernate.annotations.CreationTimestamp;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.sql.Timestamp;
|
||||
import java.io.Serializable;
|
||||
|
@ -35,10 +37,12 @@ public class SupplierInfo implements Serializable {
|
|||
|
||||
// 创建时间
|
||||
@Column(name = "create_time")
|
||||
@CreationTimestamp
|
||||
private Timestamp createTime;
|
||||
|
||||
// 更新时间
|
||||
@Column(name = "update_time")
|
||||
@CreationTimestamp
|
||||
private Timestamp updateTime;
|
||||
|
||||
// 备注
|
||||
|
|
Loading…
Reference in New Issue