account.go 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package model
  2. import (
  3. "time"
  4. )
  5. // AccountUser .
  6. type AccountUser struct {
  7. ID int64
  8. Biz string
  9. MID int64
  10. Currency string
  11. Balance int64
  12. Ver int64
  13. State string
  14. CTime time.Time
  15. MTime time.Time
  16. }
  17. // AccountBiz .
  18. type AccountBiz struct {
  19. ID int64
  20. Biz string
  21. Currency string
  22. Balance int64
  23. Ver int64
  24. State string
  25. CTime time.Time
  26. MTime time.Time
  27. }
  28. // OrderRechargeShell .
  29. type OrderRechargeShell struct {
  30. ID int64
  31. MID int64
  32. OrderID string
  33. Biz string
  34. Amount int64
  35. PayMSG string
  36. State string
  37. Ver int64
  38. CTime time.Time
  39. MTime time.Time
  40. }
  41. // OrderRechargeShellLog .
  42. type OrderRechargeShellLog struct {
  43. ID int64
  44. OrderID string
  45. FromState string
  46. ToState string
  47. Desc string
  48. BillUserMonthlyID string
  49. CTime time.Time
  50. MTime time.Time
  51. }