type.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package hook
  2. type GetFriendAndChatRoomListReq struct {
  3. Type string `json:"type"`
  4. }
  5. type GetFriendAndChatRoomListReap struct {
  6. CountFriend string `json:"count_friend"`
  7. Friend []struct {
  8. Index string `json:"index"`
  9. Wxid string `json:"wxid"`
  10. Account string `json:"account"`
  11. Nickname string `json:"nickname"`
  12. V3 string `json:"v3"`
  13. Markname string `json:"markname"`
  14. Starrole string `json:"starrole"`
  15. Dontseeit string `json:"dontseeit"`
  16. Dontseeme string `json:"dontseeme"`
  17. Headimg string `json:"headimg"`
  18. Sex string `json:"sex"`
  19. Lag string `json:"lag"`
  20. } `json:"friend"`
  21. CountChatroom string `json:"count_chatroom"`
  22. Chatroom []struct {
  23. Index string `json:"index"`
  24. Gid string `json:"gid"`
  25. Gname string `json:"gname"`
  26. Markname string `json:"markname"`
  27. V3 string `json:"v3"`
  28. } `json:"chatroom"`
  29. CountGh string `json:"count_gh"`
  30. Gh []struct {
  31. Index string `json:"index"`
  32. Wxid string `json:"wxid"`
  33. Account string `json:"account"`
  34. Nickname string `json:"nickname"`
  35. Markname string `json:"markname"`
  36. V3 string `json:"v3"`
  37. } `json:"gh"`
  38. }
  39. type ConfigureMsgReciveReq struct {
  40. IsEnable string `json:"isEnable"`
  41. URL string `json:"url"`
  42. }
  43. type SendTextMsgReq struct {
  44. Wxid string `json:"wxid"`
  45. Msg string `json:"msg"`
  46. }
  47. type SendPicMsgReq struct {
  48. Wxid string `json:"wxid"`
  49. Picpath string `json:"picpath"`
  50. Diyfilename string `json:"diyfilename"`
  51. }
  52. type SendPicMsgLocalReq struct {
  53. Wxid string `json:"wxid"`
  54. Picpath string `json:"picpath"`
  55. }
  56. type GetSelfLoginInfoResp struct {
  57. ProcessID string `json:"ProcessID"`
  58. Wxid string `json:"wxid"`
  59. Account string `json:"account"`
  60. Nickname string `json:"nickname"`
  61. Tel string `json:"tel"`
  62. Country string `json:"country"`
  63. Province string `json:"province"`
  64. City string `json:"city"`
  65. HeadBig string `json:"head_big"`
  66. DiySign string `json:"diy_sign"`
  67. }
  68. type LogoutResp struct {
  69. Code string `json:"code"`
  70. Msg string `json:"msg"`
  71. }
  72. type GetWeChatProcessNumberResp struct {
  73. TotalNum string `json:"total_num"`
  74. List []struct {
  75. Index int `json:"Index"`
  76. ProcessName string `json:"ProcessName"`
  77. PID int `json:"PID"`
  78. Par string `json:"Par"`
  79. Port int `json:"Port"`
  80. } `json:"List"`
  81. }
  82. type GetLoginQRCodeReap struct {
  83. Base64 string `json:"base64"`
  84. }
  85. type IsLoginStatusResp struct {
  86. Onlinestatus string `json:"onlinestatus"`
  87. Msg string `json:"msg"`
  88. LoginLoading string `json:"login_loading"`
  89. Selfwxid string `json:"selfwxid"`
  90. Nickname string `json:"nickname"`
  91. }
  92. type GetPortOccupiedInfoReq struct {
  93. CheckPort string `json:"CheckPort"`
  94. }
  95. type GetPortOccupiedInfoResp struct {
  96. Occupied string `json:"Occupied"`
  97. }
  98. type StartWechatReq struct {
  99. StartPort string `json:"StartPort"`
  100. }
  101. type StartWechatResp struct {
  102. StartPort string `json:"StartPort"`
  103. Success string `json:"success"`
  104. }
  105. type ClickLoginButtonResp struct {
  106. ClickLoginButton string `json:"ClickLoginButton"`
  107. }