wechat.go 954 B

12345678910111213141516171819202122232425262728293031323334
  1. package model
  2. //MsgSendReq message send request of wechat
  3. type MsgSendReq struct {
  4. ChatID string `json:"chatid" form:"chatid"`
  5. MsgType string `json:"msgtype" form:"msgtype"`
  6. Text MsgSendReqText `json:"text" form:"test"`
  7. Safe int `json:"safe" form:"safe"`
  8. }
  9. // MsgSendPersonReq send msg to person request model
  10. type MsgSendPersonReq struct {
  11. Users []string `json:"touser"`
  12. Content string `json:"content"`
  13. }
  14. //MsgSendReqText MegSendReq test
  15. type MsgSendReqText struct {
  16. Content string `json:"content"`
  17. }
  18. //MsgSendRes message send response
  19. type MsgSendRes struct {
  20. Code int `json:"code"`
  21. Message string `json:"message"`
  22. TTL int `json:"ttl"`
  23. Data WechatMegSendResData `json:"data"`
  24. }
  25. //WechatMegSendResData message send response data of wechat
  26. type WechatMegSendResData struct {
  27. Errcode int `json:"errcode"`
  28. Errmsg string `json:"errmsg"`
  29. }