superGroupMaxSeq

This commit is contained in:
wangchuxiao
2022-07-26 15:16:46 +08:00
parent 76505bd0e7
commit cf205c2480
12 changed files with 521 additions and 173 deletions
+16 -6
View File
@@ -40,12 +40,13 @@ type AccountCheckResp struct {
}
type ManagementSendMsg struct {
OperationID string `json:"operationID" binding:"required"`
SendID string `json:"sendID" binding:"required"`
GroupID string `json:"groupID" `
SenderNickname string `json:"senderNickname" `
SenderFaceURL string `json:"senderFaceURL" `
SenderPlatformID int32 `json:"senderPlatformID"`
OperationID string `json:"operationID" binding:"required"`
BusinessOperationID string `json:"businessOperationID"`
SendID string `json:"sendID" binding:"required"`
GroupID string `json:"groupID" `
SenderNickname string `json:"senderNickname" `
SenderFaceURL string `json:"senderFaceURL" `
SenderPlatformID int32 `json:"senderPlatformID"`
//ForceList []string `json:"forceList" `
Content map[string]interface{} `json:"content" binding:"required" swaggerignore:"true"`
ContentType int32 `json:"contentType" binding:"required"`
@@ -76,3 +77,12 @@ type ManagementBatchSendMsgResp struct {
FailedIDList []string
} `json:"data"`
}
type CheckMsgIsSendSuccessReq struct {
OperationID string
}
type CheckMsgIsSendSuccessResp struct {
CommResp
Status int32 `json:"status"`
}