From b2d2cf7f6bcde13eff56780097cbe4482e88b0b3 Mon Sep 17 00:00:00 2001 From: Eikoo <114289969+whxxxxxxxxxx@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:04:36 +0800 Subject: [PATCH] fix:consultingapi createrecruitchatgroup adjust --- consultingapis/dingtalk/v1/dingtalk.proto | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/consultingapis/dingtalk/v1/dingtalk.proto b/consultingapis/dingtalk/v1/dingtalk.proto index 85bef39..1c6d666 100644 --- a/consultingapis/dingtalk/v1/dingtalk.proto +++ b/consultingapis/dingtalk/v1/dingtalk.proto @@ -53,7 +53,7 @@ service DingTalkService { rpc CreateRecruitChatGroup(CreateRecruitChatGroupRequest) returns (CreateRecruitChatGroupResponse) { option (google.api.http) = { post: "/dingtalk/chat/v1/recruit/create" - body: "*" + body: "body" }; } } @@ -141,8 +141,11 @@ message SyncGradeChatGroupResponse { } message CreateRecruitChatGroupRequest{ - repeated string member_id = 1; - string name = 2; + Body body = 1; + message Body { + repeated string member_id = 1; + string name = 2; + } } message CreateRecruitChatGroupResponse{