20 lines
226 B
Go
20 lines
226 B
Go
package model
|
|
|
|
// IPListDetail .
|
|
type IPListDetail struct {
|
|
IP string
|
|
Num int64
|
|
}
|
|
|
|
// UIDListDetail .
|
|
type UIDListDetail struct {
|
|
UID string
|
|
Num int64
|
|
}
|
|
|
|
// ListDetail .
|
|
type ListDetail struct {
|
|
IP string
|
|
UID string
|
|
}
|