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

101 lines
3.1 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
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. string third_id = 14; //token对应的third_id
  39. string platform = 15; //平台
  40. }
  41. // 用户登录请求结构
  42. message LoginRequest {
  43. string dbname = 1;
  44. string account = 2;
  45. string password = 3;
  46. }
  47. // 使用token查询用户信息响应结构
  48. message LoginResponse {
  49. string user_id = 1; //ID
  50. string username = 2; //用户名
  51. string nickname = 3; //昵称
  52. string mobile = 4; //手机
  53. string email = 5; //邮箱
  54. string status = 6; //状态
  55. string business_id = 7; //所属商家
  56. string store_id = 8; //门店
  57. string fans_to = 9;//被谁锁粉
  58. string is_vip = 10;//是否VIP
  59. string token = 11;//token
  60. string usercode = 12;//工号
  61. string group_id = 13;//分组ID
  62. string type = 14;//类型
  63. string third_id = 15; //token对应的third_id
  64. string platform = 16; //平台
  65. }
  66. // 信息请求结构
  67. message Request {
  68. string data = 1;
  69. string time = 2;
  70. string sign = 3;
  71. }
  72. // 信息响应结构
  73. message Response {
  74. string data = 1;
  75. string time = 2;
  76. string sign = 3;
  77. }
  78. // rpc方法
  79. service UserService {
  80. rpc getByToken (UserRequest) returns (UserResponse); // 使用token查询用户
  81. rpc login (LoginRequest) returns (LoginResponse); // 登录
  82. rpc getByUsername (UserInfoByUsername) returns (UserResponse); // 使用username查询用户
  83. rpc getByUsercode (UserInfoByUsercode) returns (UserResponse); // 使用usercode查询用户
  84. rpc bindThird (Request) returns (Response); // 绑定第三方账号
  85. rpc getThird(Request) returns (Response); // 查询第三方账号
  86. rpc getUserThird(Request) returns (Response); // 查询第三方账号v2
  87. rpc getBusiness(Request) returns (Response); // 查询商户
  88. rpc getById(Request) returns (Response); // 查询用户
  89. rpc getBusinessInfo(Request) returns (Response); // 查询分销商
  90. rpc getAddressInfo(Request) returns (Response); // 查询地址
  91. rpc getUserScore(Request) returns (Response); // 查询用户积分
  92. rpc getUserRedEnvelope(Request) returns (Response); // 查询用户红包
  93. }