短信rpc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
402 B

2 years ago
  1. syntax = "proto3";
  2. package smsrpc;
  3. // 信息请求结构
  4. message Request {
  5. string data = 1;
  6. string time = 2;
  7. string sign = 3;
  8. }
  9. // 信息响应结构
  10. message Response {
  11. string data = 1;
  12. string time = 2;
  13. string sign = 3;
  14. }
  15. // rpc方法
  16. service SmsService {
  17. rpc SendWoMsg (Request) returns (Response); // wo msg
  18. rpc SendTencentMsg (Request) returns (Response); // wo msg
  19. }