1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-04 12:52:27 +08:00

SubscribeMsgSentList结构中的ErrorCode类型从int更新为string (#859)

This commit is contained in:
mahongran
2025-10-24 20:49:24 +08:00
committed by GitHub
parent c806a0c172
commit 6f6e95cfdb

View File

@@ -556,7 +556,7 @@ type SubscribeMsgSentEvent struct {
type SubscribeMsgSentList struct { type SubscribeMsgSentList struct {
TemplateID string `xml:"TemplateId" json:"TemplateId"` TemplateID string `xml:"TemplateId" json:"TemplateId"`
MsgID string `xml:"MsgID" json:"MsgID"` MsgID string `xml:"MsgID" json:"MsgID"`
ErrorCode int `xml:"ErrorCode" json:"ErrorCode"` ErrorCode string `xml:"ErrorCode" json:"ErrorCode"`
ErrorStatus string `xml:"ErrorStatus" json:"ErrorStatus"` ErrorStatus string `xml:"ErrorStatus" json:"ErrorStatus"`
} }