login.proto 763 B

123456789101112131415161718192021222324252627
  1. syntax = "proto3";
  2. message login {
  3. string phone = 1; // 登录手机;
  4. string passwrod = 2; // 登录密码;
  5. string macAddr = 3; // 物理网卡地址;
  6. }
  7. message userInfo{
  8. string id = 1; // 用户id;
  9. string name = 2; // 用户姓名或昵称;
  10. bool gender = 3; // 用户性别;
  11. string phone = 4; // 用户手机;
  12. repeated rtype reply = 5;
  13. }
  14. message rtype{
  15. string id = 1; // 回复类型id
  16. string name = 2; // 回复类型名称;
  17. repeated rdetail detail = 3;
  18. }
  19. message rdetail {
  20. string id = 1; // 回复id
  21. string name = 2; // 回复名称;
  22. string content = 3; // 回复内容;
  23. }