Commit 007d0f15 authored by 33's avatar 33

fix 消息对象时间类型BUG

parent 8933be26
...@@ -2,7 +2,7 @@ package com.fzm.common.entity; ...@@ -2,7 +2,7 @@ package com.fzm.common.entity;
import lombok.Data; import lombok.Data;
import java.time.LocalDateTime; import java.util.Date;
/** /**
* @author wt * @author wt
...@@ -35,8 +35,8 @@ public class Notify { ...@@ -35,8 +35,8 @@ public class Notify {
* 状态1有效2无效 * 状态1有效2无效
*/ */
private Integer state; private Integer state;
private LocalDateTime createTime; private Date createTime;
private LocalDateTime updateTime; private Date updateTime;
/** /**
* 0未删除,1已删除 * 0未删除,1已删除
*/ */
......
...@@ -4,7 +4,7 @@ import io.swagger.annotations.ApiModel; ...@@ -4,7 +4,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
import java.time.LocalDateTime; import java.util.Date;
/** /**
* @author wt * @author wt
...@@ -24,5 +24,5 @@ public class NotifyVO { ...@@ -24,5 +24,5 @@ public class NotifyVO {
@ApiModelProperty("内容") @ApiModelProperty("内容")
private String content; private String content;
@ApiModelProperty("创建时间") @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