Skip to content

Commit

Permalink
fix : 修正了插入接口的定义,以便于可以批量处理
Browse files Browse the repository at this point in the history
  • Loading branch information
universero committed Aug 27, 2024
1 parent f6fd6de commit c0c3ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/data/data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ option java_package = "com.xhpolaris.idlgen.platform.data";
option java_outer_classname = "DataProto";
option java_multiple_files = true;

message document {
message Document {
string event_name = 1;
string tags = 2;
}

message InsertReq{
repeated document documents = 1;
repeated Document documents = 1;
}

message InsertResp {
Expand Down

0 comments on commit c0c3ecb

Please sign in to comment.