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.
20 lines
439 B
20 lines
439 B
package model |
|
|
|
import "go-common/library/time" |
|
|
|
// Force ... |
|
type Force struct { |
|
ID int64 `json:"id"` |
|
AppID int64 `json:"app_id"` |
|
HostName string `json:"hostname"` |
|
IP string `json:"ip"` |
|
Version int64 `json:"version"` |
|
Operator string `json:"operator"` |
|
Ctime time.Time `json:"ctime"` |
|
Mtime time.Time `json:"mtime"` |
|
} |
|
|
|
// TableName build. |
|
func (Force) TableName() string { |
|
return "force" |
|
}
|
|
|