Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
browser-backend
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
Administrator
browser-backend
Commits
8fc704b8
Commit
8fc704b8
authored
Mar 23, 2020
by
renjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
绑定记录
parent
ca092787
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
IpResource.java
...a/com/edgec/browserbackend/browser/domain/IpResource.java
+3
-4
No files found.
src/main/java/com/edgec/browserbackend/browser/domain/IpResource.java
View file @
8fc704b8
...
@@ -7,7 +7,6 @@ import org.springframework.data.annotation.Transient;
...
@@ -7,7 +7,6 @@ import org.springframework.data.annotation.Transient;
import
org.springframework.data.mongodb.core.mapping.Document
;
import
org.springframework.data.mongodb.core.mapping.Document
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.List
;
@Document
(
collection
=
"ipresource"
)
@Document
(
collection
=
"ipresource"
)
...
@@ -26,7 +25,7 @@ public class IpResource {
...
@@ -26,7 +25,7 @@ public class IpResource {
private
long
purchasedTime
;
private
long
purchasedTime
;
private
long
validTime
;
private
long
validTime
;
private
String
details
;
private
String
details
;
List
<
HashMap
<
String
,
String
>
>
bindHistory
=
new
ArrayList
<>();
List
<
BindHistory
>
bindHistory
=
new
ArrayList
<>();
private
boolean
isDeleted
;
private
boolean
isDeleted
;
private
String
username
;
private
String
username
;
private
String
owner
;
private
String
owner
;
...
@@ -84,11 +83,11 @@ public class IpResource {
...
@@ -84,11 +83,11 @@ public class IpResource {
this
.
ipType
=
ipType
;
this
.
ipType
=
ipType
;
}
}
public
List
<
HashMap
<
String
,
String
>
>
getBindHistory
()
{
public
List
<
BindHistory
>
getBindHistory
()
{
return
bindHistory
;
return
bindHistory
;
}
}
public
void
setBindHistory
(
List
<
HashMap
<
String
,
String
>
>
bindHistory
)
{
public
void
setBindHistory
(
List
<
BindHistory
>
bindHistory
)
{
this
.
bindHistory
=
bindHistory
;
this
.
bindHistory
=
bindHistory
;
}
}
...
...
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