Add comments

This commit is contained in:
Changhua 2024-02-14 15:05:35 +08:00
parent f59cdd9816
commit a70582372a

View File

@ -42,23 +42,23 @@ message Request
Functions func = 1; Functions func = 1;
oneof msg oneof msg
{ {
Empty empty = 2; Empty empty = 2; //
string str = 3; string str = 3; //
TextMsg txt = 4; TextMsg txt = 4; //
PathMsg file = 5; PathMsg file = 5; //
DbQuery query = 6; DbQuery query = 6; //
Verification v = 7; Verification v = 7; //
MemberMgmt m = 8; // MemberMgmt m = 8; //
XmlMsg xml = 9; XmlMsg xml = 9; // XML参数结构
DecPath dec = 10; DecPath dec = 10; //
Transfer tf = 11; Transfer tf = 11; //
uint64 ui64 = 12 [jstype = JS_STRING]; // 64 uint64 ui64 = 12 [ jstype = JS_STRING ]; // 64
bool flag = 13; bool flag = 13; //
AttachMsg att = 14; AttachMsg att = 14; //
AudioMsg am = 15; AudioMsg am = 15; //
RichText rt = 16; RichText rt = 16; //
PatMsg pm = 17; PatMsg pm = 17; //
ForwardMsg fm = 18; ForwardMsg fm = 18; //
} }
} }
@ -86,7 +86,7 @@ message WxMsg
{ {
bool is_self = 1; // bool is_self = 1; //
bool is_group = 2; // bool is_group = 2; //
uint64 id = 3 [jstype = JS_STRING]; // id uint64 id = 3 [ jstype = JS_STRING ]; // id
uint32 type = 4; // uint32 type = 4; //
uint32 ts = 5; // uint32 ts = 5; //
string roomid = 6; // id string roomid = 6; // id
@ -194,14 +194,14 @@ message Transfer
message AttachMsg message AttachMsg
{ {
uint64 id = 1 [jstype = JS_STRING]; // id uint64 id = 1 [ jstype = JS_STRING ]; // id
string thumb = 2; // thumb string thumb = 2; // thumb
string extra = 3; // extra string extra = 3; // extra
} }
message AudioMsg message AudioMsg
{ {
uint64 id = 1 [jstype = JS_STRING]; // id uint64 id = 1 [ jstype = JS_STRING ]; // id
string dir = 2; // string dir = 2; //
} }
@ -230,6 +230,6 @@ message OcrMsg
message ForwardMsg message ForwardMsg
{ {
uint64 id = 1 [jstype = JS_STRING]; // ID uint64 id = 1 [ jstype = JS_STRING ]; // ID
string receiver = 2; // roomId wxid string receiver = 2; // roomId wxid
} }