workphone.go 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. package types
  2. type WorkPhoneWeChat struct {
  3. Accountid string `json:"accountid"`
  4. Avatar string `json:"avatar"`
  5. Brand string `json:"brand"`
  6. Cid int64 `json:"cid"`
  7. City string `json:"city"`
  8. Cname interface{} `json:"cname"`
  9. Country string `json:"country"`
  10. Deviceid string `json:"deviceid"`
  11. Devnickname string `json:"devnickname"`
  12. Gender int64 `json:"gender"`
  13. Groupid interface{} `json:"groupid"`
  14. ID int64 `json:"id"`
  15. Isonline int64 `json:"isonline"`
  16. LoginTime int64 `json:"login_time"`
  17. ModifyTime int64 `json:"modify_time"`
  18. Module string `json:"module"`
  19. Province string `json:"province"`
  20. Snumber int64 `json:"snumber"`
  21. Wechatid string `json:"wechatid"`
  22. Wechatnick string `json:"wechatnick"`
  23. Wechatno string `json:"wechatno"`
  24. }
  25. type WorkPhoneGetWeChatsResp struct {
  26. Code int64 `json:"code"`
  27. Data []WorkPhoneWeChat `json:"data"`
  28. Msg string `json:"msg"`
  29. }