Note.proto 559 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. syntax = "proto3";
  2. package live_user.v1;
  3. option go_package = "v1";
  4. service Note {
  5. /** 大航海续费提醒
  6. *
  7. */
  8. rpc get (NoteGetReq) returns (NoteGetResp);
  9. }
  10. message NoteGetReq {
  11. }
  12. message NoteGetResp {
  13. // code
  14. int64 code = 1;
  15. // msg 
  16. string msg = 2;
  17. //
  18. Data data = 3;
  19. message Data {
  20. // logo 的 url
  21. string logo = 1;
  22. // 标题
  23. string title = 2;
  24. // 内容
  25. string content = 3;
  26. // 跳转链接
  27. string link = 4;
  28. }
  29. }