forked from lxh/go-wxhelper
21 lines
729 B
Go
21 lines
729 B
Go
package model
|
|
|
|
// ChatRoomDetailInfo
|
|
// @description: 群聊详情
|
|
type ChatRoomDetailInfo struct {
|
|
Admin string `json:"admin"` // 群主微信
|
|
ChatRoomId string `json:"chatRoomId"` // 群Id
|
|
Notice string `json:"notice"` // 群公告
|
|
Xml string `json:"xml"` // 不知道是啥玩意儿
|
|
}
|
|
|
|
// GroupUser
|
|
// @description: 群成员返回结果
|
|
type GroupUser struct {
|
|
Admin string `json:"admin"` // 群主微信
|
|
AdminNickname string `json:"adminNickname"` // 群主昵称
|
|
ChatRoomId string `json:"chatRoomId"` // 群Id
|
|
MemberNickname string `json:"memberNickname"` // 成员昵称 `^G`切割
|
|
Members string `json:"members"` // 成员Id `^G`切割
|
|
}
|