bws.proto 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. syntax = "proto3";
  2. package activity.service;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. option go_package = "bws";
  5. option (gogoproto.goproto_enum_prefix_all) = false;
  6. option (gogoproto.goproto_getters_all) = false;
  7. option (gogoproto.unmarshaler_all) = true;
  8. option (gogoproto.marshaler_all) = true;
  9. option (gogoproto.sizer_all) = true;
  10. message Users {
  11. int64 ID = 1 [(gogoproto.jsontag) = "id"];
  12. int64 Mid = 2 [(gogoproto.jsontag) = "mid"];
  13. string Key = 3 [(gogoproto.jsontag) = "key"];
  14. int64 Ctime = 4 [(gogoproto.jsontag) = "ctime", (gogoproto.casttype) = "go-common/library/time.Time"];
  15. int64 Mtime = 5 [(gogoproto.jsontag) = "mtime", (gogoproto.casttype) = "go-common/library/time.Time"];
  16. int64 Bid = 6 [(gogoproto.jsontag) = "bid"];
  17. }
  18. message Point {
  19. int64 ID = 1 [(gogoproto.jsontag) = "id"];
  20. string Name = 2 [(gogoproto.jsontag) = "name"];
  21. string Icon = 3 [(gogoproto.jsontag) = "icon"];
  22. int64 Fid = 4 [(gogoproto.jsontag) = "fid"];
  23. string Image = 5 [(gogoproto.jsontag) = "image"];
  24. int64 Unlocked = 6 [(gogoproto.jsontag) = "unlocked"];
  25. int64 LockType = 7 [(gogoproto.jsontag) = "lockType"];
  26. string Dic = 8 [(gogoproto.jsontag) = "dic"];
  27. string Rule = 9 [(gogoproto.jsontag) = "rule"];
  28. int64 Bid = 10 [(gogoproto.jsontag) = "bid"];
  29. int64 LoseUnlocked = 11 [(gogoproto.jsontag) = "lose_unlocked"];
  30. string OtherIp = 12 [(gogoproto.jsontag) = "other_ip"];
  31. int64 Ower = 13 [(gogoproto.jsontag) = "ower"];
  32. int64 Ctime = 14 [(gogoproto.jsontag) = "ctime", (gogoproto.casttype) = "go-common/library/time.Time"];
  33. int64 Mtime = 15 [(gogoproto.jsontag) = "mtime", (gogoproto.casttype) = "go-common/library/time.Time"];
  34. }
  35. message Points {
  36. repeated Point points = 1;
  37. }
  38. message Achievement {
  39. int64 ID = 1 [(gogoproto.jsontag) = "id"];
  40. string Name = 2 [(gogoproto.jsontag) = "name"];
  41. string Icon = 3 [(gogoproto.jsontag) = "icon"];
  42. string Dic = 4 [(gogoproto.jsontag) = "dic"];
  43. int64 LockType = 5 [(gogoproto.jsontag) = "lockType"];
  44. int64 Unlock = 6 [(gogoproto.jsontag) = "unlock"];
  45. int64 Bid = 7 [(gogoproto.jsontag) = "bid"];
  46. string IconBig = 8 [(gogoproto.jsontag) = "icon_big"];
  47. string IconActive = 9 [(gogoproto.jsontag) = "icon_active"];
  48. string IconActiveBig = 10 [(gogoproto.jsontag) = "icon_active_big"];
  49. int64 Award = 11 [(gogoproto.jsontag) = "award"];
  50. int64 UserCount = 12 [(gogoproto.jsontag) = "user_count"];
  51. int64 Ctime = 13 [(gogoproto.jsontag) = "ctime", (gogoproto.casttype) = "go-common/library/time.Time"];
  52. int64 Mtime = 14 [(gogoproto.jsontag) = "mtime", (gogoproto.casttype) = "go-common/library/time.Time"];
  53. string Image = 15 [(gogoproto.jsontag) = "image"];
  54. int64 SuitID = 16 [(gogoproto.jsontag) = "suit_id"];
  55. }
  56. message Achievements {
  57. repeated Achievement achievements = 1;
  58. }