test.proto 275 B

12345678910111213141516171819202122
  1. syntax = "proto3";
  2. package pb;
  3. import "standard/protobuf/pb2/ttt.proto";
  4. service ServiceChain {
  5. rpc test(TestAny) returns (Response) ;
  6. }
  7. message TestAny {
  8. pb2.StatusType status= 1;
  9. string Title = 2;
  10. }
  11. message Response {
  12. uint32 Code = 1;
  13. string Msg = 2;
  14. }