浏览代码

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

mahongran 8 月之前
父节点
当前提交
6f6e95cfdb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      miniprogram/message/message.go

+ 1 - 1
miniprogram/message/message.go

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