package types

type WeworkInfo struct {
	Accountid   string      `json:"accountid"`
	Avatar      string      `json:"avatar"`
	Brand       string      `json:"brand"`
	Cid         int64       `json:"cid"`
	Cname       interface{} `json:"cname"`
	Name        string      `json:"name"`
	Deviceid    string      `json:"deviceid"`
	Devnickname string      `json:"devnickname"`
	Gender      int64       `json:"gender"`
	ID          int64       `json:"id"`
	Isonline    int64       `json:"isonline"`
	LoginTime   int64       `json:"login_time"`
	ModifyTime  int64       `json:"modify_time"`
	Module      string      `json:"module"`
	WxId        string      `json:"wxid"`
	Alias       string      `json:"alias"`
	Job         string      `json:"job"`
	Phone       string      `json:"phone"`
	Accountname string      `json:"accountname"`
}

type WeworkGetResp struct {
	Code int64        `json:"code"`
	Data []WeworkInfo `json:"data"`
	Msg  string       `json:"msg"`
}