This commit is contained in:
wangchuxiao
2022-03-28 12:17:07 +08:00
parent 46605479e9
commit 9d619d520d
6 changed files with 119 additions and 59 deletions
+19 -1
View File
@@ -1,6 +1,9 @@
package base_info
import pbOffice "Open_IM/pkg/proto/office"
import (
pbOffice "Open_IM/pkg/proto/office"
server_api_params "Open_IM/pkg/proto/sdk_ws"
)
type GetUserTagsReq struct {
pbOffice.GetUserTagsReq
@@ -44,3 +47,18 @@ type SendMsg2TagReq struct {
type SendMsg2TagResp struct {
CommResp
}
type GetTagSendLogsReq struct {
server_api_params.RequestPagination
UserID string `json:"userID"`
OperationID string `json:"operationID"`
}
type GetTagSendLogsResp struct {
CommResp
Data struct {
Logs []*pbOffice.TagSendLog `json:"logs"`
CurrentPage int32 `json:"currentPage"`
ShowNumber int32 `json:"showNumber"`
} `json:"data"`
}