Commit 007d0f15 authored by 33's avatar 33

fix 消息对象时间类型BUG

parent 8933be26
......@@ -2,7 +2,7 @@ package com.fzm.common.entity;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.Date;
/**
* @author wt
......@@ -35,8 +35,8 @@ public class Notify {
* 状态1有效2无效
*/
private Integer state;
private LocalDateTime createTime;
private LocalDateTime updateTime;
private Date createTime;
private Date updateTime;
/**
* 0未删除,1已删除
*/
......
......@@ -4,7 +4,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.Date;
/**
* @author wt
......@@ -24,5 +24,5 @@ public class NotifyVO {
@ApiModelProperty("内容")
private String content;
@ApiModelProperty("创建时间")
private LocalDateTime createTime;
private Date createTime;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment