mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
20 lines
425 B
Go
20 lines
425 B
Go
|
|
package archive
|
||
|
|
|
||
|
|
import "go-common/library/time"
|
||
|
|
|
||
|
|
// VoteType 投票业务
|
||
|
|
const VoteType int8 = 2
|
||
|
|
|
||
|
|
// BIZ business
|
||
|
|
type BIZ struct {
|
||
|
|
ID int64 `json:"id"`
|
||
|
|
Type int32 `json:"type"`
|
||
|
|
Aid int64 `json:"aid"`
|
||
|
|
Uid int64 `json:"uid"`
|
||
|
|
State int8 `json:"state"`
|
||
|
|
Remark string `json:"remark"`
|
||
|
|
Data string `json:"data"`
|
||
|
|
Ctime time.Time `json:"ctime"`
|
||
|
|
Mtime time.Time `json:"mtime"`
|
||
|
|
}
|