bgm_charge.go 654 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package charge
  2. import (
  3. "go-common/library/time"
  4. )
  5. // BgmCharge bgm charge
  6. type BgmCharge struct {
  7. ID int64
  8. SID int64
  9. AID int64
  10. MID int64
  11. CID int64
  12. IncCharge int64
  13. Date time.Time
  14. JoinAt time.Time
  15. Title string
  16. DBState int
  17. }
  18. // BgmStatis bgm statis
  19. type BgmStatis struct {
  20. ID int64
  21. SID int64
  22. AID int64
  23. MID int64
  24. CID int64
  25. Title string
  26. JoinAt time.Time
  27. TotalCharge int64
  28. DBState int
  29. }
  30. // Bgm background music
  31. type Bgm struct {
  32. ID int64
  33. MID int64
  34. SID int64
  35. AID int64
  36. CID int64
  37. JoinAt time.Time
  38. Title string
  39. }