| 123456789101112131415161718 |
- syntax="proto3";
- package protos;
- message Request{
- uint32 msgId = 1;
- uint64 guid = 2;
- string msgName = 3;
- bytes req = 10;
- }
- message Response{
- uint32 msgId = 1;
- uint64 guid = 2;
- string msgName = 3;
- int32 ec = 4;
- bytes res = 10;
- }
|