item.proto 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  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/screen.proto";
  5. import "app/service/openplatform/ticket-item/api/grpc/v1/bulletin.proto";
  6. import "app/service/openplatform/ticket-item/api/grpc/v1/guest.proto";
  7. import "app/service/openplatform/ticket-item/api/grpc/v1/time.proto";
  8. import "app/service/openplatform/ticket-item/api/grpc/v1/venue.proto";
  9. option (gogoproto.goproto_enum_prefix_all) = false;
  10. option (gogoproto.goproto_getters_all) = false;
  11. option (gogoproto.unmarshaler_all) = true;
  12. option (gogoproto.marshaler_all) = true;
  13. option (gogoproto.sizer_all) = true;
  14. option go_package = "v1";
  15. // The get service definition.
  16. service Item {
  17. // Info Servcie
  18. rpc Info (InfoRequest) returns (InfoReply) {}
  19. // cards Servcie
  20. rpc Cards (CardsRequest) returns (CardsReply) {}
  21. // BillInfo Servcie
  22. rpc BillInfo (BillRequest) returns (BillReply) {}
  23. // Wish Service
  24. rpc Wish (WishRequest) returns (WishReply) {}
  25. // Version Service
  26. rpc Version (VersionRequest) returns (VersionReply) {}
  27. // VersionReview Service
  28. rpc VersionReview (VersionReviewRequest) returns (VersionReviewReply) {}
  29. // VersionStatus Service
  30. rpc VersionStatus (VersionStatusRequest) returns (VersionStatusReply) {}
  31. // BannerEdit Service
  32. rpc BannerEdit (BannerEditRequest) returns (BannerEditReply) {}
  33. }
  34. // The request message containing the itemID.
  35. message InfoRequest {
  36. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ID"];
  37. }
  38. // The request message containing the itemIDs.
  39. message CardsRequest {
  40. repeated int64 ids = 1 [(gogoproto.jsontag) = "ids", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "IDs"];
  41. }
  42. // The request message containing the itemIDs ScIDs TicketIDs.
  43. message BillRequest {
  44. repeated int64 ids = 1 [(gogoproto.jsontag) = "ids", (gogoproto.moretags) = "validate:\"required\"",(gogoproto.customname)= "IDs"];
  45. repeated int64 tk_ids = 2 [(gogoproto.jsontag) = "sc_ids", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ScIDs"];
  46. repeated int64 sc_ids = 3 [(gogoproto.jsontag) = "tk_ids", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "TkIDs"];
  47. }
  48. // The response message containing the itembaseinfo and related screeninfo,ticketinfo
  49. message InfoReply {
  50. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\"", (gogoproto.customname)= "ID"];
  51. string name = 2 [(gogoproto.jsontag) = "name"];
  52. int32 status = 3 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"min=1\""];
  53. int32 type = 4 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"min=0\""];
  54. int32 rec = 5 [(gogoproto.jsontag) = "rec", (gogoproto.moretags) = "validate:\"min=0\""];
  55. int32 is_sale = 6 [(gogoproto.jsontag) = "is_sale", (gogoproto.moretags) = "validate:\"min=0\""];
  56. string ticket_desc = 7 [(gogoproto.jsontag) = "desc"];
  57. int32 sale_flag = 8 [(gogoproto.jsontag) = "sale_flag", (gogoproto.moretags) = "validate:\"min=1\""];
  58. string prom_tag = 9 [(gogoproto.jsontag) = "promo_tags"];
  59. ImgList img = 10 [(gogoproto.jsontag) = "img"];
  60. ItemTime time = 11 [(gogoproto.jsontag) = "time"];
  61. map<int64,ScreenInfo> screen = 12 [(gogoproto.jsontag) = "screen"];
  62. ItemExt ext = 13 [(gogoproto.jsontag) = "ext"];
  63. BillOpt bill_opt = 14 [(gogoproto.jsontag) = "bill_opt"];
  64. }
  65. // The response message containing the map type cardinfo
  66. message CardsReply{
  67. map<int64,CardReply> cards = 1 [(gogoproto.jsontag) = "list"];
  68. }
  69. // The response message containing the itembaseInfo
  70. message CardReply {
  71. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\"", (gogoproto.customname)= "ID"];
  72. string name = 2 [(gogoproto.jsontag) = "name"];
  73. int32 status = 3 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"min=1\""];
  74. int32 type = 4 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"min=0\""];
  75. int32 rec = 5 [(gogoproto.jsontag) = "rec", (gogoproto.moretags) = "validate:\"min=0\""];
  76. int32 is_sale = 6 [(gogoproto.jsontag) = "is_sale", (gogoproto.moretags) = "validate:\"min=0\""];
  77. string ticket_desc = 7 [(gogoproto.jsontag) = "desc"];
  78. int32 sale_flag = 8 [(gogoproto.jsontag) = "sale_flag", (gogoproto.moretags) = "validate:\"min=1\""];
  79. string prom_tag = 9 [(gogoproto.jsontag) = "promo_tags"];
  80. ImgList img = 10 [(gogoproto.jsontag) = "img"];
  81. ItemTime time = 11 [(gogoproto.jsontag) = "time"];
  82. VenueInfo venue = 12 [(gogoproto.jsontag) = "venue"];
  83. }
  84. // The response message containing billinfo
  85. message BillReply {
  86. map<int64,ItemBase> base_info= 1 [(gogoproto.jsontag) = "base_info"];
  87. map<int64,BillOpt> bill_opt= 2 [(gogoproto.jsontag) = "bill_opt"];
  88. }
  89. // The response message containing the itembaseinfo and map type screeninfo
  90. message ItemBase {
  91. int64 id = 1 [(gogoproto.jsontag) = "id", (gogoproto.moretags) = "validate:\"min=1\"", (gogoproto.customname)= "ID"];
  92. int32 status = 2 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"min=0\""];
  93. string name = 3 [(gogoproto.jsontag) = "name"];
  94. int32 type = 4 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"min=0\""];
  95. int32 is_sale = 5 [(gogoproto.jsontag) = "is_sale", (gogoproto.moretags) = "validate:\"min=0\""];
  96. string prom_tag = 6 [(gogoproto.jsontag) = "promo_tags"];
  97. uint64 ver_id = 7 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"min=0\"", (gogoproto.customname)= "VerID"];
  98. ItemTime time = 8 [(gogoproto.jsontag) = "time"];
  99. ImgList img = 9 [(gogoproto.jsontag) = "img"];
  100. map<int64,ScreenInfo> screen = 10 [(gogoproto.jsontag) = "screen"];
  101. }
  102. // The response message containing the ItemExtinfo
  103. message ItemExt {
  104. string label = 1 [(gogoproto.jsontag) = "label"];
  105. int32 sp_type = 2 [(gogoproto.jsontag) = "sponsor_type", (gogoproto.moretags) = "validate:\"min=0\""];
  106. uint64 ver_id = 3 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"min=0\"", (gogoproto.customname)= "VerID"];
  107. string detail = 4 [(gogoproto.jsontag) = "detail"];
  108. VenueInfo venue = 5 [(gogoproto.jsontag) = "venue"];
  109. repeated BulletinInfo bulletin = 6 [(gogoproto.jsontag) = "bulletin"];
  110. repeated GuestInfoRequest guest = 7 [(gogoproto.jsontag) = "guest"];
  111. }
  112. // The response message containing the ImgList
  113. message ImgList {
  114. string first = 1 [(gogoproto.jsontag) = "first"];
  115. string banner = 2 [(gogoproto.jsontag) = "banner"];
  116. }
  117. // The response message containing the ItemBillOption
  118. message BillOpt {
  119. string buyerInfo = 1 [(gogoproto.jsontag) = "buyer_info"];
  120. int32 exp_tip = 2 [(gogoproto.jsontag) = "exptip"];
  121. int32 exp_free = 3 [(gogoproto.jsontag) = "expfree"];
  122. int32 vip_exp_free = 4 [(gogoproto.jsontag) = "vip_exp_free"];
  123. BuyNumLimit buy_limit = 5 [(gogoproto.jsontag) = "buy_num_limit"];
  124. }
  125. // 项目限购结构
  126. message BuyNumLimit {
  127. repeated BnlLevel level = 1 [(gogoproto.jsontag) = "level"];
  128. int32 per = 2 [(gogoproto.jsontag) = "per"];
  129. map<int32, BnlLevel> vip = 3 [(gogoproto.jsontag) = "vip", (gogoproto.customname) = "VIP"];
  130. }
  131. message BnlLevel {
  132. int32 apply_to_vip = 1 [(gogoproto.jsontag) = "apply_to_vip"];
  133. int32 max = 2 [(gogoproto.jsontag) = "max"];
  134. int32 min = 3 [(gogoproto.jsontag) = "min"];
  135. }
  136. // The request message containing ItemID MID Face.
  137. message WishRequest {
  138. int64 item_id = 1 [(gogoproto.jsontag) = "item_id", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ItemID"];
  139. int64 mid = 2 [(gogoproto.jsontag) = "mid", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "MID"];
  140. string face = 3 [(gogoproto.jsontag) = "face"];
  141. }
  142. // The response message containing the ITEMID MID
  143. message WishReply {
  144. int64 item_id = 1 [(gogoproto.jsontag) = "item_id", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ItemID"];
  145. int64 mid = 2 [(gogoproto.jsontag) = "mid", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "MID"];
  146. }
  147. // FavRequest 收藏
  148. message FavRequest {
  149. int64 item_id = 1 [(gogoproto.jsontag) = "item_id", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ItemID"];
  150. int64 mid = 2 [(gogoproto.jsontag) = "mid", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "MID"];
  151. int32 type = 3 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"required,min=1,max=3\"", (gogoproto.customname)= "Type"];
  152. int32 Status = 4 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"required,min=0,max=1\"", (gogoproto.customname)= "Status"];
  153. }
  154. // FavReply 收藏
  155. message FavReply {
  156. int64 item_id = 1 [(gogoproto.jsontag) = "item_id", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "ItemID"];
  157. int64 mid = 2 [(gogoproto.jsontag) = "mid", (gogoproto.moretags) = "validate:\"required\"", (gogoproto.customname)= "MID"];
  158. int32 type = 3 [(gogoproto.jsontag) = "type", (gogoproto.moretags) = "validate:\"required,min=0,max=1\"", (gogoproto.customname)= "Type"];
  159. int32 Status = 4 [(gogoproto.jsontag) = "status", (gogoproto.moretags) = "validate:\"required,min=0,max=1\"", (gogoproto.customname)= "Status"];
  160. }
  161. // The request message containing the version info to update/insert project
  162. message VersionRequest {
  163. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id", (gogoproto.moretags) = "validate:\"required,min=0\""];
  164. uint32 op_type = 2 [(gogoproto.jsontag) = "op_type", (gogoproto.moretags) = "validate:\"max=1\""];
  165. }
  166. // The general response message containing the result after updating/inserting the project info
  167. message VersionReply {
  168. int64 project_id = 1 [(gogoproto.jsontag) = "project_id"];
  169. }
  170. // The request message containing the info to add/edit a banner
  171. message BannerEditRequest {
  172. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id"];
  173. int32 op_type = 2 [(gogoproto.jsontag) = "op_type"];
  174. string name = 3 [(gogoproto.jsontag) = "name"];
  175. int32 position = 4 [(gogoproto.jsontag) = "position"];
  176. int32 sub_position = 5 [(gogoproto.jsontag) = "sub_position"];
  177. int32 order = 6 [(gogoproto.jsontag) = "order"];
  178. int64 pub_start = 7 [(gogoproto.jsontag) = "pub_start"];
  179. int64 pub_end = 8 [(gogoproto.jsontag) = "pub_end"];
  180. string pic = 9 [(gogoproto.jsontag) = "pic"];
  181. string url = 10 [(gogoproto.jsontag) = "url"];
  182. string from = 11 [(gogoproto.jsontag) = "from"];
  183. string location = 12 [(gogoproto.jsontag) = "location"];
  184. string uname = 13 [(gogoproto.jsontag) = "uname"];
  185. int32 target_user = 14 [(gogoproto.jsontag) = "target_user"];
  186. }
  187. // The response message containing the result after adding/editing a banner
  188. message BannerEditReply {
  189. int64 banner_id = 1 [(gogoproto.jsontag) = "banner_id"];
  190. }
  191. // The request message containing the info to pass/reject a version
  192. message VersionReviewRequest {
  193. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id"];
  194. int32 op_type = 2 [(gogoproto.jsontag) = "op_type"];
  195. int32 ver_type = 3 [(gogoproto.jsontag) = "ver_type"];
  196. string msg = 4 [(gogoproto.jsontag) = "msg"];
  197. string uname = 5 [(gogoproto.jsontag) = "uname"];
  198. }
  199. // The response message containing the result after passing/rejecting a version
  200. message VersionReviewReply {
  201. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id"];
  202. }
  203. // The request message containing the info to change a version's status
  204. message VersionStatusRequest {
  205. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id"];
  206. int32 op_type = 2 [(gogoproto.jsontag) = "op_type"];
  207. int32 ver_type = 3 [(gogoproto.jsontag) = "ver_type"];
  208. string uname = 4 [(gogoproto.jsontag) = "uname"];
  209. }
  210. // The response message containing the result after changing a version's status
  211. message VersionStatusReply {
  212. uint64 ver_id = 1 [(gogoproto.jsontag) = "ver_id"];
  213. }