ticket.proto 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. option go_package = "v1";
  6. // The response message containing the TicketInfo
  7. message TicketInfo {
  8. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\"", (gogoproto.customname)= "ID"];
  9. string desc = 2 [(gogoproto.jsontag) = "name"];
  10. // 票类型:1-单场票 2-通票 3-联票
  11. int32 type = 3 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"min=0\""];
  12. // 售卖类型 1-预售票 2-现场票
  13. int32 sale_type = 4 [(gogoproto.jsontag) = "stype", (gogoproto.moretags) = "validate:\"min=0\""];
  14. string link_sc = 5 [(gogoproto.jsontag) = "lk_screen"];
  15. string link_ticket_id = 6 [(gogoproto.jsontag) = "lk_ticket", (gogoproto.customname)= "LinkTicketID"];
  16. string symbol = 7 [(gogoproto.jsontag) = "symbol"];
  17. string color = 8 [(gogoproto.jsontag) = "color"];
  18. int32 buy_limit = 9 [(gogoproto.jsontag) = "buy_limit", (gogoproto.moretags) = "validate:\"min=0\""];
  19. string desc_detail = 10 [(gogoproto.jsontag) = "desc"];
  20. int32 sale_flag = 11 [(gogoproto.jsontag) = "sale_flag", (gogoproto.moretags) = "validate:\"min=0\""];
  21. TicketPriceList price_list = 12[(gogoproto.jsontag) = "price"];
  22. TicketStatus status_list = 13 [(gogoproto.jsontag) = "status"];
  23. TicketTime time = 14 [(gogoproto.jsontag) = "time"];
  24. TicketBuyNumLimit buy_num_limit = 15 [(gogoproto.jsontag) = "buy_num_limit"];
  25. }
  26. message TicketBuyNumLimit {
  27. map<int32,int64> normal = 1 [(gogoproto.jsontag) = "normal"];
  28. map<int32,int64> vip = 2 [(gogoproto.jsontag) = "vip"];
  29. map<int32,int64> annual_vip = 3 [(gogoproto.jsontag) = "annual_vip"];
  30. }
  31. // The response message containing the IsSale IsVisible IsRefund
  32. message TicketStatus {
  33. int32 is_sale = 1 [(gogoproto.jsontag) = "is_sale", (gogoproto.moretags) = "validate:\"min=0\""];
  34. int32 is_visible = 2[(gogoproto.jsontag) = "is_visible", (gogoproto.moretags) = "validate:\"min=0\""];
  35. int32 is_refund =3 [(gogoproto.jsontag) = "is_refund", (gogoproto.moretags) = "validate:\"min=0\""];
  36. }
  37. // The response message containing the Price OriginPrice MarketPrice
  38. message TicketPriceList {
  39. int32 price = 1 [(gogoproto.jsontag) = "price", (gogoproto.moretags) = "validate:\"min=0\""];
  40. int32 ori_price = 2 [(gogoproto.jsontag) = "oprice", (gogoproto.moretags) = "validate:\"min=0\""];
  41. int32 mkt_price = 3 [(gogoproto.jsontag) = "mprice", (gogoproto.moretags) = "validate:\"min=0\""];
  42. }