charge.go 612 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package model
  2. import (
  3. "go-common/library/time"
  4. )
  5. // AvDailyCharge av_daily_charge
  6. type AvDailyCharge struct {
  7. AvID int64
  8. MID int64
  9. IncCharge int
  10. TotalCharge int
  11. Date time.Time
  12. IsDeleted int
  13. CTime time.Time
  14. MTime time.Time
  15. }
  16. // UpCharge up_charge
  17. type UpCharge struct {
  18. MID int64
  19. AvCount int
  20. IncCharge int
  21. TotalCharge int
  22. Date time.Time
  23. IsDeleted int
  24. CTime time.Time
  25. MTime time.Time
  26. }
  27. // AvChargeRatio av_charge_ratio
  28. type AvChargeRatio struct {
  29. ID int64
  30. AvID int64
  31. Ratio int64
  32. AdjustType int
  33. }