Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
PRMS
Project
Project
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
zhengfunan
PRMS
Commits
eccd0be6
Commit
eccd0be6
authored
Jan 14, 2021
by
gaozhentao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改线条颜色
parent
85f55ce2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
94 deletions
+1
-94
AuthCount.java
src/main/java/com/yingxin/prms/dto/AuthCount.java
+0
-38
Count.java
src/main/java/com/yingxin/prms/dto/Count.java
+0
-21
DailyCount.java
src/main/java/com/yingxin/prms/dto/DailyCount.java
+0
-35
Manager.java
src/main/java/com/yingxin/prms/service/business/Manager.java
+1
-0
No files found.
src/main/java/com/yingxin/prms/dto/AuthCount.java
deleted
100644 → 0
View file @
85f55ce2
package
com
.
yingxin
.
prms
.
dto
;
public
class
AuthCount
{
private
String
mode
;
private
String
ip
;
private
long
count
;
public
AuthCount
(
String
mode
,
String
ip
,
long
count
)
{
this
.
mode
=
mode
;
this
.
ip
=
ip
;
this
.
count
=
count
;
}
public
String
getMode
()
{
return
mode
;
}
public
void
setMode
(
String
mode
)
{
this
.
mode
=
mode
;
}
public
String
getIp
()
{
return
ip
;
}
public
void
setIp
(
String
ip
)
{
this
.
ip
=
ip
;
}
public
long
getCount
()
{
return
count
;
}
public
void
setCount
(
long
count
)
{
this
.
count
=
count
;
}
}
src/main/java/com/yingxin/prms/dto/Count.java
deleted
100644 → 0
View file @
85f55ce2
package
com
.
yingxin
.
prms
.
dto
;
public
class
Count
{
private
long
count
;
public
Count
()
{
}
public
Count
(
long
count
)
{
this
.
count
=
count
;
}
public
long
getCount
()
{
return
count
;
}
public
void
setCount
(
long
count
)
{
this
.
count
=
count
;
}
}
src/main/java/com/yingxin/prms/dto/DailyCount.java
deleted
100644 → 0
View file @
85f55ce2
package
com
.
yingxin
.
prms
.
dto
;
public
class
DailyCount
{
private
String
date
;
private
long
count
;
public
DailyCount
(
String
date
,
long
count
)
{
this
.
date
=
date
;
this
.
count
=
count
;
}
@Override
public
String
toString
()
{
return
"DailyCount{"
+
"date='"
+
date
+
'\''
+
", count="
+
count
+
'}'
;
}
public
String
getDate
()
{
return
date
;
}
public
void
setDate
(
String
date
)
{
this
.
date
=
date
;
}
public
long
getCount
()
{
return
count
;
}
public
void
setCount
(
long
count
)
{
this
.
count
=
count
;
}
}
src/main/java/com/yingxin/prms/service/business/Manager.java
View file @
eccd0be6
...
...
@@ -423,6 +423,7 @@ public class Manager {
lineDto
.
setTo
(
line
.
getClusterNameRight
());
lineDto
.
setFromSpot
(
line
.
getCoordinateLeft
());
lineDto
.
setToSpot
(
line
.
getCoordinateRight
());
lineDto
.
setColor
(
"#008000"
);
lineDtos
.
add
(
lineDto
);
}
result
.
put
(
"class"
,
"GraphLinksModel"
);
...
...
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