seat.proto 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. syntax = "proto3";
  2. package ticket.service.item.v1;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. option (gogoproto.goproto_enum_prefix_all) = false;
  5. option (gogoproto.goproto_getters_all) = false;
  6. option (gogoproto.unmarshaler_all) = true;
  7. option (gogoproto.marshaler_all) = true;
  8. option (gogoproto.sizer_all) = true;
  9. option go_package = "v1";
  10. // The seat service definition.
  11. service Seat {
  12. rpc SeatInfo (SeatInfoRequest) returns (SeatInfoReply) {}
  13. rpc SeatStock (SeatStockRequest) returns (SeatStockReply) {}
  14. rpc RemoveSeatOrders (RemoveSeatOrdersRequest) returns (RemoveSeatOrdersReply) {}
  15. }
  16. // 单个座位信息
  17. message AreaSeatInfo {
  18. // 座位图x
  19. int32 X = 1 [(gogoproto.jsontag) = "x", (gogoproto.moretags) = "validate:\"min=0\""];
  20. // 座位图y
  21. int32 Y = 2 [(gogoproto.jsontag) = "y", (gogoproto.moretags) = "validate:\"min=0\""];
  22. // 座位号
  23. string Label = 3 [(gogoproto.jsontag) = "label", (gogoproto.moretags) = "validate:\"min=1\""];
  24. // 背景色
  25. string Bgcolor = 4 [(gogoproto.jsontag) = "bgcolor", (gogoproto.moretags) = "validate:\"min=1\""];
  26. // 区域ID
  27. int64 Area = 5 [(gogoproto.jsontag) = "area", (gogoproto.moretags) = "validate:\"min=1\""];
  28. }
  29. // seatInfo接口请求
  30. message SeatInfoRequest {
  31. // 区域ID
  32. int64 Area = 1 [(gogoproto.jsontag) = "area", (gogoproto.moretags) = "validate:\"min=1\""];
  33. // 座位数
  34. int32 SeatsNum = 2 [(gogoproto.jsontag) = "seats_num", (gogoproto.moretags) = "validate:\"min=1\""];
  35. // 座位图
  36. string SeatMap = 3 [(gogoproto.jsontag) = "seat_map", (gogoproto.moretags) = "validate:\"min=1\""];
  37. // 座位数组
  38. repeated AreaSeatInfo Seats = 4 [(gogoproto.jsontag) = "seats", (gogoproto.moretags) = "validate:\"min=1\""];
  39. // 坐区宽度
  40. int32 Width = 5 [(gogoproto.jsontag) = "width", (gogoproto.moretags) = "validate:\"min=1\""];
  41. // 坐区高度
  42. int32 Height = 6 [(gogoproto.jsontag) = "height", (gogoproto.moretags) = "validate:\"min=1\""];
  43. // 行号序列
  44. string RowList = 7 [(gogoproto.jsontag) = "row_list", (gogoproto.moretags) = "validate:\"min=1\""];
  45. // 座位起始坐标
  46. string SeatStart = 8 [(gogoproto.jsontag) = "seat_start", (gogoproto.moretags) = "validate:\"min=1\""];
  47. }
  48. // seatInfo接口返回
  49. message SeatInfoReply {
  50. // 操作结果
  51. bool Success = 1 [(gogoproto.jsontag) = "success"];
  52. }
  53. // 座位票种
  54. message SeatPrice {
  55. // 座位图x
  56. int32 X = 1 [(gogoproto.jsontag) = "x", (gogoproto.moretags) = "validate:\"min=0\""];
  57. // 座位图y
  58. int32 Y = 2 [(gogoproto.jsontag) = "y", (gogoproto.moretags) = "validate:\"min=0\""];
  59. // 票种ID
  60. int64 Price = 3 [(gogoproto.jsontag) = "price", (gogoproto.moretags) = "validate:\"min=1\""];
  61. }
  62. // seatStock接口请求
  63. message SeatStockRequest {
  64. // 场次ID
  65. int64 Screen = 1 [(gogoproto.jsontag) = "screen", (gogoproto.moretags) = "validate:\"min=1\""];
  66. // 区域ID
  67. int64 Area = 2 [(gogoproto.jsontag) = "area", (gogoproto.moretags) = "validate:\"min=1\""];
  68. // 座位票种定义数组
  69. repeated SeatPrice SeatInfo = 3 [(gogoproto.jsontag) = "seatInfo", (gogoproto.moretags) = "validate:\"min=1\""];
  70. }
  71. // seatStock接口返回
  72. message SeatStockReply {
  73. // 操作结果
  74. bool Success = 1 [(gogoproto.jsontag) = "success"];
  75. }
  76. // removeSeatOrders接口请求
  77. message RemoveSeatOrdersRequest {
  78. // 票价ID
  79. int64 Price = 1 [(gogoproto.jsontag) = "price", (gogoproto.moretags) = "validate:\"min=1\""];
  80. }
  81. // removeSeatOrders接口返回
  82. message RemoveSeatOrdersReply {
  83. // 影响的区域
  84. repeated int64 Areas = 1 [(gogoproto.jsontag) = "areas"];
  85. }