27 lines
593 B
Go
27 lines
593 B
Go
package wx_helper_sdk
|
|
|
|
// SetHook
|
|
// @description: 设置回调
|
|
type SetHook struct {
|
|
Port string `json:"port"`
|
|
Ip string `json:"ip"`
|
|
Url string `json:"url"`
|
|
Timeout string `json:"timeout"`
|
|
EnableHttp string `json:"enableHttp"`
|
|
}
|
|
|
|
// SendAtText
|
|
// @description: 发送群里圈人文本信息
|
|
type SendAtText struct {
|
|
Wxids string `json:"wxids"`
|
|
ChatRoomId string `json:"chatRoomId"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
// SendText
|
|
// @description: 发送文本信息(私聊)
|
|
type SendText struct {
|
|
Wxid string `json:"wxid"`
|
|
Msg string `json:"msg"`
|
|
}
|