mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
17 lines
279 B
Go
17 lines
279 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
|
||
|
|
}
|