up_archive_statis.go 499 B

12345678910111213141516171819202122232425262728
  1. package income
  2. import (
  3. "go-common/library/time"
  4. )
  5. // UpArchStatis up archive statistics
  6. type UpArchStatis struct {
  7. MID int64
  8. WeeklyDate time.Time
  9. WeeklyAIDs string
  10. MonthlyDate time.Time
  11. MonthlyAIDs string
  12. }
  13. // UpAvStatis up av statistics
  14. type UpAvStatis struct {
  15. ID int64
  16. MID int64
  17. WeeklyDate time.Time
  18. WeeklyAvIDs string
  19. MonthlyDate time.Time
  20. MonthlyAvIDs string
  21. IsDeleted int
  22. CTime time.Time
  23. MTime time.Time
  24. DBState int
  25. }