income_daily_statis.go 385 B

1234567891011121314151617181920
  1. package income
  2. import (
  3. "go-common/library/time"
  4. )
  5. // DateStatis up_income_daily_statis and av_income_daily_statis struct
  6. type DateStatis struct {
  7. ID int64
  8. Count int64
  9. MoneySection int64
  10. MoneyTips string
  11. Income int64
  12. MinIncome int64
  13. MaxIncome int64
  14. CategoryID int64
  15. CDate time.Time
  16. CTime time.Time
  17. MTime time.Time
  18. }