charge.go 682 B

123456789101112131415161718192021222324252627
  1. package income
  2. import "go-common/library/time"
  3. // ArchiveCharge av charge
  4. type ArchiveCharge struct {
  5. AID int64 `json:"aid"`
  6. AvID int64 `json:"-"`
  7. MID int64 `json:"mid"`
  8. Nickname string `json:"nickname"`
  9. CategoryID int64 `json:"category_id"`
  10. Charge int64 `json:"charge"`
  11. TotalCharge int64 `json:"total_charge"`
  12. UploadTime time.Time `json:"upload_time"`
  13. Date time.Time `json:"date"`
  14. }
  15. // ArchiveChargeStatis av charge statis
  16. type ArchiveChargeStatis struct {
  17. ID int64
  18. Avs int64
  19. MoneySection int
  20. MoneyTips string
  21. Charge int64
  22. CategroyID int64
  23. CDate time.Time
  24. }