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.

55 lines
1.4 KiB

3 years ago
  1. syntax = "proto3";
  2. package user;
  3. // 使用token查询用户信息请求结构
  4. message UserRequest {
  5. string dbname = 1;
  6. string token = 2;
  7. }
  8. // 使用token查询用户信息响应结构
  9. message UserResponse {
  10. string user_id = 1; //ID
  11. string username = 2; //用户名
  12. string nickname = 3; //昵称
  13. string mobile = 4; //手机
  14. string email = 5; //邮箱
  15. string status = 6; //状态
  16. string business_id = 7; //所属商家
  17. string store_id = 8; //门店
  18. string fans_to = 9;//被谁锁粉
  19. string is_vip = 10;//是否VIP
  20. string usercode = 11;//工号
  21. string group_id = 12;//分组ID
  22. }
  23. // 用户登录请求结构
  24. message LoginRequest {
  25. string dbname = 1;
  26. string account = 2;
  27. string password = 3;
  28. }
  29. // 使用token查询用户信息响应结构
  30. message LoginResponse {
  31. string user_id = 1; //ID
  32. string username = 2; //用户名
  33. string nickname = 3; //昵称
  34. string mobile = 4; //手机
  35. string email = 5; //邮箱
  36. string status = 6; //状态
  37. string business_id = 7; //所属商家
  38. string store_id = 8; //门店
  39. string fans_to = 9;//被谁锁粉
  40. string is_vip = 10;//是否VIP
  41. string token = 11;//token
  42. string usercode = 12;//工号
  43. string group_id = 13;//分组ID
  44. }
  45. // rpc方法
  46. service UserService {
  47. rpc getByToken (UserRequest) returns (UserResponse); // 使用token查询用户
  48. rpc login (LoginRequest) returns (LoginResponse); // 登录
  49. }