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.
49 lines
759 B
49 lines
759 B
package model |
|
|
|
import ( |
|
"time" |
|
) |
|
|
|
// AggrIncomeUser . |
|
type AggrIncomeUser struct { |
|
ID int64 |
|
MID int64 |
|
Currency string |
|
PaySuccess int64 |
|
PayError int64 |
|
TotalIn int64 |
|
TotalOut int64 |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// AggrIncomeUserAsset . |
|
type AggrIncomeUserAsset struct { |
|
ID int64 |
|
MID int64 |
|
Currency string |
|
Ver int64 |
|
OID int64 |
|
OType string |
|
PaySuccess int64 |
|
PayError int64 |
|
TotalIn int64 |
|
TotalOut int64 |
|
CTime time.Time |
|
MTime time.Time |
|
} |
|
|
|
// AggrIncomeUserAssetList . |
|
type AggrIncomeUserAssetList struct { |
|
MID int64 |
|
Ver int64 |
|
Assets []*AggrIncomeUserAsset |
|
Page *Page |
|
} |
|
|
|
// Page . |
|
type Page struct { |
|
Num int64 |
|
Size int64 |
|
Total int64 |
|
}
|
|
|