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.
20 lines
385 B
20 lines
385 B
package income |
|
|
|
import ( |
|
"go-common/library/time" |
|
) |
|
|
|
// DateStatis up_income_daily_statis and av_income_daily_statis struct |
|
type DateStatis struct { |
|
ID int64 |
|
Count int64 |
|
MoneySection int64 |
|
MoneyTips string |
|
Income int64 |
|
MinIncome int64 |
|
MaxIncome int64 |
|
CategoryID int64 |
|
CDate time.Time |
|
CTime time.Time |
|
MTime time.Time |
|
}
|
|
|