You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
923 B
34 lines
923 B
package income |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// ArchiveStatis archive statis |
|
type ArchiveStatis struct { |
|
ID int64 |
|
Avs int64 |
|
MoneySection int |
|
MoneyTips string |
|
Income int64 |
|
CategroyID int64 |
|
CDate time.Time |
|
} |
|
|
|
// ArchiveIncome archive income |
|
type ArchiveIncome struct { |
|
ID int64 `json:"id"` |
|
AvID int64 `json:"archive_id"` |
|
MID int64 `json:"mid"` |
|
Type int `json:"type"` |
|
TagID int64 `json:"category_id"` |
|
IsOriginal int `json:"is_original"` |
|
UploadTime time.Time `json:"upload_time"` |
|
TotalIncome int64 `json:"total_income"` |
|
Income int64 `json:"income"` |
|
TaxMoney int64 `json:"tax_money"` |
|
Date time.Time `json:"date"` |
|
DateFormat string `json:"date_format"` |
|
Nickname string `json:"nickname"` |
|
Avs int `json:"avs"` |
|
}
|
|
|