From 00bddd5e57ce327aed32ed6e1463ab8b637bb336 Mon Sep 17 00:00:00 2001 From: wangchuxiao Date: Fri, 5 Aug 2022 17:01:08 +0800 Subject: [PATCH] fix bug --- pkg/base_info/group_api_struct.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/base_info/group_api_struct.go b/pkg/base_info/group_api_struct.go index 9afdcc042..896f40438 100644 --- a/pkg/base_info/group_api_struct.go +++ b/pkg/base_info/group_api_struct.go @@ -73,8 +73,8 @@ type GetGroupMemberListResp struct { type GetGroupAllMemberReq struct { GroupID string `json:"groupID" binding:"required"` OperationID string `json:"operationID" binding:"required"` - Offset int32 `json:"offset" binding:"required"` - Count int32 `json:"count" binding:"required"` + Offset int32 `json:"offset"` + Count int32 `json:"count"` } type GetGroupAllMemberResp struct { CommResp