rpc.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package model
  2. // ArgMid is rpc mid params.
  3. type ArgMid struct {
  4. Mid int64
  5. RealIP string
  6. }
  7. // ArgVote is rpc vote params.
  8. type ArgVote struct {
  9. Mid int64
  10. Cid int64 `form:"cid" validate:"required"`
  11. RealIP string
  12. Vote int8 `form:"vote" validate:"min=1,max=4"`
  13. Attr int8 `form:"attr" validate:"min=0,max=1" default:"0"`
  14. Content string `form:"content"`
  15. Likes []int64 `form:"likes,split" validate:"min=0,max=20"`
  16. Hates []int64 `form:"hates,split" validate:"min=0,max=20"`
  17. AType int8 `form:"apply_type" default:"0"`
  18. AReason int8 `form:"apply_reason" default:"0"`
  19. }
  20. // ArgMidCid is rpc mid and cid params.
  21. type ArgMidCid struct {
  22. Mid, Cid int64
  23. RealIP string
  24. }
  25. // ArgCid is rpc cid params.
  26. type ArgCid struct {
  27. Cid int64 `form:"cid"`
  28. RealIP string
  29. }
  30. // ArgCaseList is rpc case list params.
  31. type ArgCaseList struct {
  32. Mid int64
  33. RealIP string
  34. Pn int64
  35. Ps int64
  36. }
  37. // ArgSetQs is rpc set question params.
  38. type ArgSetQs struct {
  39. ID int64
  40. Ans int64
  41. Status int64
  42. }
  43. // ArgAns is rpc answer params.
  44. type ArgAns struct {
  45. Mid int64
  46. RealIP string
  47. Refer string
  48. UA string
  49. Buvid string
  50. Ans *LabourAns
  51. }
  52. // ArgOpinion is rpc opinion arg.
  53. type ArgOpinion struct {
  54. Cid int64 `form:"cid" validate:"required"`
  55. PN int64 `form:"pn" default:"1"`
  56. PS int64 `form:"ps" validate:"min=0,max=10" default:"10"`
  57. IP string
  58. Otype int8 `form:"otype" validate:"min=1,max=2" default:"1"`
  59. }
  60. // ArgID id.
  61. type ArgID struct {
  62. ID int64
  63. }
  64. // ArgBlocked struct
  65. type ArgBlocked struct {
  66. Otype int64
  67. Btype int64
  68. PS int64
  69. PN int64
  70. }
  71. // ArgAnnounce struct
  72. type ArgAnnounce struct {
  73. Type int8
  74. PS int64
  75. PN int64
  76. }