rpc.go 728 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package model
  2. // ArgMid is.
  3. type ArgMid struct {
  4. Mid int64
  5. }
  6. // ArgMids is.
  7. type ArgMids struct {
  8. Mids []int64
  9. }
  10. // ArgNames is.
  11. type ArgNames struct {
  12. Names []string
  13. }
  14. // ArgExp is.
  15. type ArgExp struct {
  16. Mid int64
  17. Exp float64
  18. Operater string
  19. Operate string
  20. Reason string
  21. RealIP string
  22. }
  23. // ArgMoral is.
  24. type ArgMoral struct {
  25. Mid int64
  26. Moral float64
  27. Oper string
  28. Reason string
  29. Remark string
  30. RealIP string
  31. }
  32. // ArgRelation is.
  33. type ArgRelation struct {
  34. Mid, Owner int64
  35. RealIP string
  36. }
  37. // ArgRelations is.
  38. type ArgRelations struct {
  39. Mid int64
  40. Owners []int64
  41. RealIP string
  42. }
  43. // ArgRichRelation is.
  44. type ArgRichRelation struct {
  45. Owner int64
  46. Mids []int64
  47. RealIP string
  48. }