|
@@ -21,14 +21,13 @@ func NewTalkToFriendTaskResultNoticeHandler(svcCtx *svc.ServiceContext) *TalkToF
|
|
|
}
|
|
|
|
|
|
type TalkToFriendTaskResultNoticeMessage struct {
|
|
|
- Success bool `json:"success"` // 是否成功
|
|
|
- Code string `json:"code"` // 错误码 Success = true 忽略
|
|
|
- ErrMsg string `json:"errMsg"` // 错误内容描述 Success = true 忽略
|
|
|
- WeChatId string `json:"weChatId"` // 执行的微信
|
|
|
- FriendId string `json:"friendId"` // 执行的用户对象
|
|
|
- MsgId string `json:"msgId"` // 聊天Id
|
|
|
- MsgSvrId int64 `json:"msgSvrId"` //
|
|
|
- CreateTime int64 `json:"createTime"` // 消息发送时间
|
|
|
+ Success bool `json:"success"` // 是否成功
|
|
|
+ Code string `json:"code"` // 错误码 Success = true 忽略
|
|
|
+ ErrMsg string `json:"errMsg"` // 错误内容描述 Success = true 忽略
|
|
|
+ WeChatId string `json:"weChatId"` // 执行的微信
|
|
|
+ FriendId string `json:"friendId"` // 执行的用户对象
|
|
|
+ MsgId string `json:"msgId"` // 聊天Id
|
|
|
+ MsgSvrId int64 `json:"msgSvrId"` //
|
|
|
}
|
|
|
|
|
|
func (f *TalkToFriendTaskResultNoticeHandler) Handler(msg *wechat_ws.MsgJsonObject) error {
|