screen.proto 1.6 KB

1234567891011121314151617181920212223242526272829
  1. syntax = "proto3";
  2. package ticket.service.item.v1;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. import "app/service/openplatform/ticket-item/api/grpc/v1/time.proto";
  5. import "app/service/openplatform/ticket-item/api/grpc/v1/ticket.proto";
  6. option go_package = "v1";
  7. // The response message containing the ScreenInfo
  8. message ScreenInfo {
  9. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=0\"", (gogoproto.customname)= "ID"];
  10. string name = 2 [(gogoproto.jsontag) = "name"];
  11. int32 status = 3 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"min=0\""];
  12. // 类型: 1-坐, 2-站
  13. int32 type = 4 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"min=0\""];
  14. // 出票方式: 1-纸质票, 2-电子票, 3-外部票
  15. int32 ticket_type = 5 [(gogoproto.jsontag) = "ticket_type", (gogoproto.moretags) = "validate:\"min=0\""];
  16. // 票区分的场次类型: 1-普通场次, 2-通票场次 3-联票场次
  17. int32 screen_type = 6 [(gogoproto.jsontag) = "screen_type", (gogoproto.moretags) = "validate:\"min=0\""];
  18. // 配送方式: 1-不配送, 2-自取, 3-快递
  19. int32 delivery_type = 7 [(gogoproto.jsontag) = "delivery_type", (gogoproto.moretags) = "validate:\"min=0\""];
  20. // 是否选座 是-1,否-0
  21. int32 pick_seat = 8 [(gogoproto.jsontag) = "pick_seat", (gogoproto.moretags) = "validate:\"min=0\""];
  22. // 售卖状态
  23. int32 sale_flag = 9 [(gogoproto.jsontag) = "sale_flag", (gogoproto.moretags) = "validate:\"min=0\""];
  24. ScreenTime sc_time = 10 [(gogoproto.jsontag) = "time"];
  25. map<int64,TicketInfo> Ticket = 11 [(gogoproto.jsontag) = "ticket"];
  26. }