1234567891011121314151617181920212223 |
- syntax = "proto3";
- option csharp_namespace = "XYY.gRpc.Tracking";
- import public "greet.proto";
- import "google/protobuf/timestamp.proto";
- package greet;
- service HandErrorLog{
- rpc PostData(HandErrorLogReq) returns(BaseRes);
- }
- message HandErrorLogReq{
- repeated ErrorLog Logs=1;
- }
- message ErrorLog{
- string TrackingNumber = 1;
- google.protobuf.Timestamp TargetTime = 2;
- string RequestMessage = 3;
- string Source = 4;
- string ErrorMessage =5;
- }
|