mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
20 lines
333 B
Go
20 lines
333 B
Go
package income
|
|
|
|
import (
|
|
"go-common/library/time"
|
|
)
|
|
|
|
// ArchiveIncome include av income and column income
|
|
type ArchiveIncome struct {
|
|
ID int64
|
|
AID int64
|
|
MID int64
|
|
TagID int64
|
|
IsOriginal int
|
|
UploadTime time.Time
|
|
Income int64
|
|
TaxMoney int64
|
|
TotalIncome int64
|
|
Date time.Time
|
|
}
|