HandErrorLog.proto 449 B

1234567891011121314151617181920212223
  1. syntax = "proto3";
  2. option csharp_namespace = "XYY.gRpc.Tracking";
  3. import public "greet.proto";
  4. import "google/protobuf/timestamp.proto";
  5. package greet;
  6. service HandErrorLog{
  7. rpc PostData(HandErrorLogReq) returns(BaseRes);
  8. }
  9. message HandErrorLogReq{
  10. repeated ErrorLog Logs=1;
  11. }
  12. message ErrorLog{
  13. string TrackingNumber = 1;
  14. google.protobuf.Timestamp TargetTime = 2;
  15. string RequestMessage = 3;
  16. string Source = 4;
  17. string ErrorMessage =5;
  18. }