cms add api

This commit is contained in:
wangchuxiao
2022-09-19 11:52:03 +08:00
parent a4fe45d58c
commit 376c9bbdc7
7 changed files with 423 additions and 189 deletions
+10
View File
@@ -64,3 +64,13 @@ type GetBlockUsersResponse struct {
ResponsePagination
UserNums int32 `json:"userNums"`
}
type GetUserIDByEmailAndPhoneNumberRequest struct {
OperationID string `json:"operationID" binding:"required"`
PhoneNumber string `json:"operationID"`
Email string `json:"email"`
}
type GetUserIDByEmailAndPhoneNumberResponse struct {
UserIDList []string `json:"userIDList"`
}