mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
15 lines
274 B
Go
15 lines
274 B
Go
|
|
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
|
||
|
|
}
|