用户接口远程调用
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.

93 lines
2.6 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. syntax = "proto3";
  2. package userrpc;
  3. // 使用token查询用户信息请求结构
  4. message UserRequest {
  5. string dbname = 1;
  6. string token = 2;
  7. }
  8. // 使用username查询用户信息请求结构
  9. message UserInfoByUsername {
  10. string dbname = 1;
  11. string username = 2;
  12. }
  13. // 使用userid查询用户信息请求结构
  14. message UserInfoById {
  15. string dbname = 1;
  16. string userid = 2;
  17. }
  18. // 使用usercode查询用户信息请求结构
  19. message UserInfoByUsercode {
  20. string dbname = 1;
  21. string usercode = 2;
  22. }
  23. // 使用token查询用户信息响应结构
  24. message UserResponse {
  25. string user_id = 1; //ID
  26. string username = 2; //用户名
  27. string nickname = 3; //昵称
  28. string mobile = 4; //手机
  29. string email = 5; //邮箱
  30. string status = 6; //状态
  31. string business_id = 7; //所属商家
  32. string store_id = 8; //门店
  33. string fans_to = 9;//被谁锁粉
  34. string is_vip = 10;//是否VIP
  35. string usercode = 11;//工号
  36. string group_id = 12;//分组ID
  37. string type = 13;//类型
  38. }
  39. // 用户登录请求结构
  40. message LoginRequest {
  41. string dbname = 1;
  42. string account = 2;
  43. string password = 3;
  44. }
  45. // 使用token查询用户信息响应结构
  46. message LoginResponse {
  47. string user_id = 1; //ID
  48. string username = 2; //用户名
  49. string nickname = 3; //昵称
  50. string mobile = 4; //手机
  51. string email = 5; //邮箱
  52. string status = 6; //状态
  53. string business_id = 7; //所属商家
  54. string store_id = 8; //门店
  55. string fans_to = 9;//被谁锁粉
  56. string is_vip = 10;//是否VIP
  57. string token = 11;//token
  58. string usercode = 12;//工号
  59. string group_id = 13;//分组ID
  60. string type = 14;//类型
  61. }
  62. // 信息请求结构
  63. message Request {
  64. string data = 1;
  65. string time = 2;
  66. string sign = 3;
  67. }
  68. // 信息响应结构
  69. message Response {
  70. string data = 1;
  71. string time = 2;
  72. string sign = 3;
  73. }
  74. // rpc方法
  75. service UserService {
  76. rpc getByToken (UserRequest) returns (UserResponse); // 使用token查询用户
  77. rpc login (LoginRequest) returns (LoginResponse); // 登录
  78. rpc getByUsername (UserInfoByUsername) returns (UserResponse); // 使用username查询用户
  79. rpc getByUsercode (UserInfoByUsercode) returns (UserResponse); // 使用usercode查询用户
  80. rpc bindThird (Request) returns (Response); // 绑定第三方账号
  81. rpc getThird(Request) returns (Response); // 查询第三方账号
  82. rpc getBusiness(Request) returns (Response); // 查询商户
  83. rpc getById(Request) returns (Response); // 查询用户
  84. rpc getBusinessInfo(Request) returns (Response); // 查询分销商
  85. }