area.proto 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 area service definition.
  11. service Area {
  12. rpc AreaInfo (AreaInfoRequest) returns (AreaInfoReply) {}
  13. rpc DeleteArea (DeleteAreaRequest) returns (DeleteAreaReply) {}
  14. }
  15. // The response message containing the area info
  16. message AreaInfo {
  17. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.customname)= "ID"];
  18. string a_id = 2 [(gogoproto.jsontag) = "a_id", (gogoproto.customname)= "AID"];
  19. string name = 3 [(gogoproto.jsontag) = "name"];
  20. int32 seat_num = 4 [(gogoproto.jsontag) = "seat_num"];
  21. int32 width = 5 [(gogoproto.jsontag) = "width"];
  22. int32 height = 6 [(gogoproto.jsontag) = "height"];
  23. int64 place = 7 [(gogoproto.jsontag) = "place"];
  24. int32 col_start = 8 [(gogoproto.jsontag) = "col_start"];
  25. int32 col_type = 9 [(gogoproto.jsontag) = "col_type"];
  26. int32 col_direction = 10 [(gogoproto.jsontag) = "col_direction"];
  27. string row_list = 11 [(gogoproto.jsontag) = "row_list"];
  28. string seat_start = 12 [(gogoproto.jsontag) = "seat_start"];
  29. }
  30. // areaInfo接口请求
  31. message AreaInfoRequest {
  32. // 待修改区域的ID(为0表示创建)
  33. int64 ID = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=0\""];
  34. // 区域自定义编号
  35. string AID = 2 [(gogoproto.jsontag) = "a_id", (gogoproto.moretags) = "validate:\"min=1,max=16\""];
  36. // 区域名
  37. string Name = 3 [(gogoproto.jsontag) = "name", (gogoproto.moretags) = "validate:\"min=1,max=16\""];
  38. // 所属场地ID
  39. int64 Place = 4 [(gogoproto.jsontag) = "place", (gogoproto.moretags) = "validate:\"min=1\""];
  40. // 区域坐标
  41. string Coordinate = 5 [(gogoproto.jsontag) = "coordinate", (gogoproto.moretags) = "validate:\"min=1\""];
  42. }
  43. // areaInfo接口返回
  44. message AreaInfoReply {
  45. // 操作结果
  46. bool Success = 1 [(gogoproto.jsontag) = "success"];
  47. // 操作区域ID
  48. int64 ID = 2 [(gogoproto.jsontag) = "id"];
  49. // 场地坐标
  50. string Coordinate = 3 [(gogoproto.jsontag) = "coordinate"];
  51. }
  52. // deleteArea接口请求
  53. message DeleteAreaRequest {
  54. // 待删除区域的ID
  55. int64 ID = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\""];
  56. }
  57. // deleteArea接口返回
  58. message DeleteAreaReply {
  59. // 操作结果
  60. bool Success = 1 [(gogoproto.jsontag) = "success"];
  61. }