Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fzm-joying
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lei
fzm-joying
Commits
007d0f15
Commit
007d0f15
authored
Mar 16, 2022
by
33
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 消息对象时间类型BUG
parent
8933be26
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
Notify.java
...ng-common/src/main/java/com/fzm/common/entity/Notify.java
+3
-3
NotifyVO.java
...mmon/src/main/java/com/fzm/common/entity/vo/NotifyVO.java
+2
-2
No files found.
joying-common/src/main/java/com/fzm/common/entity/Notify.java
View file @
007d0f15
...
...
@@ -2,7 +2,7 @@ package com.fzm.common.entity;
import
lombok.Data
;
import
java.
time.LocalDateTim
e
;
import
java.
util.Dat
e
;
/**
* @author wt
...
...
@@ -35,8 +35,8 @@ public class Notify {
* 状态1有效2无效
*/
private
Integer
state
;
private
LocalDateTim
e
createTime
;
private
LocalDateTim
e
updateTime
;
private
Dat
e
createTime
;
private
Dat
e
updateTime
;
/**
* 0未删除,1已删除
*/
...
...
joying-common/src/main/java/com/fzm/common/entity/vo/NotifyVO.java
View file @
007d0f15
...
...
@@ -4,7 +4,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.
time.LocalDateTim
e
;
import
java.
util.Dat
e
;
/**
* @author wt
...
...
@@ -24,5 +24,5 @@ public class NotifyVO {
@ApiModelProperty
(
"内容"
)
private
String
content
;
@ApiModelProperty
(
"创建时间"
)
private
LocalDateTim
e
createTime
;
private
Dat
e
createTime
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment