You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
import "time" |
|
|
|
// Report etc. |
|
type Report struct { |
|
ID int64 |
|
Name string |
|
DateVersion string |
|
Val int64 |
|
Ctime time.Time |
|
} |
|
|
|
const ( |
|
//BlockCount block count |
|
BlockCount = "封禁总数" |
|
// SecurityLoginCount security login count |
|
SecurityLoginCount = "二次验证总数" |
|
)
|
|
|