time.proto 1.1 KB

1234567891011121314151617181920212223242526
  1. syntax = "proto3";
  2. package ticket.service.item.v1;
  3. import "github.com/gogo/protobuf/gogoproto/gogo.proto";
  4. option go_package = "v1";
  5. // The response message containing the Item related time
  6. message ItemTime {
  7. int32 stime = 1 [(gogoproto.jsontag) = "stime"];
  8. int32 etime = 2 [(gogoproto.jsontag) = "etime"];
  9. }
  10. // The response message containing the Screen related time
  11. message ScreenTime {
  12. int32 stime = 1 [(gogoproto.jsontag) = "stime", (gogoproto.moretags) = "validate:\"min=0\""];
  13. int32 etime = 2 [(gogoproto.jsontag) = "etime", (gogoproto.moretags) = "validate:\"min=0\""];
  14. int32 sale_stime = 3 [(gogoproto.jsontag) = "sales", (gogoproto.moretags) = "validate:\"min=0\""];
  15. int32 sale_etime = 4 [(gogoproto.jsontag) = "salee", (gogoproto.moretags) = "validate:\"min=0\""];
  16. }
  17. // The response message containing the Ticket related time
  18. message TicketTime {
  19. int64 sale_stime = 1 [(gogoproto.jsontag) = "sales", (gogoproto.moretags) = "validate:\"min=0\""];
  20. int64 sale_etime = 2 [(gogoproto.jsontag) = "salee", (gogoproto.moretags) = "validate:\"min=0\""];
  21. }