|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableId; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private String updatedBy = "system"; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Date createdTime; | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | private Date createdTime = new Date(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Date updatedTime; | 
|---|
|  |  |  | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
|---|
|  |  |  | private Date updatedTime = new Date(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(value = "id",type = IdType.AUTO) | 
|---|
|  |  |  | private Long id; | 
|---|