Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
徐少华
midjourney-proxy
Commits
b3f7294a
Commit
b3f7294a
authored
Oct 29, 2019
by
郑永强
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加开始时间
parent
4d501558
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
RecordDto.java
...mon/src/main/java/com/pcloud/common/shadow/RecordDto.java
+24
-0
No files found.
pcloud-common/src/main/java/com/pcloud/common/shadow/RecordDto.java
View file @
b3f7294a
package
com
.
pcloud
.
common
.
shadow
;
package
com
.
pcloud
.
common
.
shadow
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.util.Date
;
import
java.util.Map
;
import
java.util.Map
;
/**
/**
...
@@ -23,6 +26,11 @@ public class RecordDto implements Serializable{
...
@@ -23,6 +26,11 @@ public class RecordDto implements Serializable{
private
int
browserType
;
private
int
browserType
;
private
String
browserName
;
private
String
browserName
;
private
String
userAgent
;
private
String
userAgent
;
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
startTime
;
Long
partyId
;
Long
partyId
;
Long
userId
;
Long
userId
;
...
@@ -143,6 +151,22 @@ public class RecordDto implements Serializable{
...
@@ -143,6 +151,22 @@ public class RecordDto implements Serializable{
this
.
browserName
=
browserName
;
this
.
browserName
=
browserName
;
}
}
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
public
Date
getStartTime
()
{
return
startTime
;
}
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
public
void
setStartTime
(
Date
startTime
)
{
this
.
startTime
=
startTime
;
}
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
return
"RecordDto{"
+
return
"RecordDto{"
+
...
...
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