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" |
|
) |
|
|
|
// LogAccount . |
|
type LogAccount struct { |
|
ID int64 |
|
AccountID int64 |
|
From int64 |
|
To int64 |
|
Ver int64 |
|
State string |
|
CTime time.Time |
|
MTime time.Time |
|
}
|
|
|