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 "go-common/library/time" |
|
|
|
// Event def. |
|
type Event struct { |
|
ID int64 |
|
Name string // 事件标示 |
|
NickName string // 事件可读昵称 |
|
ServiceID int64 |
|
Status int8 // 0:删除 1:未删除 |
|
Ctime time.Time |
|
Mtime time.Time |
|
}
|
|
|