mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
29 lines
499 B
Go
29 lines
499 B
Go
|
|
package income
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go-common/library/time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// UpArchStatis up archive statistics
|
||
|
|
type UpArchStatis struct {
|
||
|
|
MID int64
|
||
|
|
WeeklyDate time.Time
|
||
|
|
WeeklyAIDs string
|
||
|
|
MonthlyDate time.Time
|
||
|
|
MonthlyAIDs string
|
||
|
|
}
|
||
|
|
|
||
|
|
// UpAvStatis up av statistics
|
||
|
|
type UpAvStatis struct {
|
||
|
|
ID int64
|
||
|
|
MID int64
|
||
|
|
WeeklyDate time.Time
|
||
|
|
WeeklyAvIDs string
|
||
|
|
MonthlyDate time.Time
|
||
|
|
MonthlyAvIDs string
|
||
|
|
IsDeleted int
|
||
|
|
CTime time.Time
|
||
|
|
MTime time.Time
|
||
|
|
DBState int
|
||
|
|
}
|