orderCenter.pb.go 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.23.0
  4. // protoc v3.11.4
  5. // source: orderCenter.proto
  6. package pb
  7. import (
  8. context "context"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  14. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. // This is a compile-time assertion that a sufficiently up-to-date version
  25. // of the legacy proto package is being used.
  26. const _ = proto.ProtoPackageIsVersion4
  27. type GetOrderCodeReq struct {
  28. state protoimpl.MessageState
  29. sizeCache protoimpl.SizeCache
  30. unknownFields protoimpl.UnknownFields
  31. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  32. }
  33. func (x *GetOrderCodeReq) Reset() {
  34. *x = GetOrderCodeReq{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_orderCenter_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *GetOrderCodeReq) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*GetOrderCodeReq) ProtoMessage() {}
  45. func (x *GetOrderCodeReq) ProtoReflect() protoreflect.Message {
  46. mi := &file_orderCenter_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use GetOrderCodeReq.ProtoReflect.Descriptor instead.
  57. func (*GetOrderCodeReq) Descriptor() ([]byte, []int) {
  58. return file_orderCenter_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *GetOrderCodeReq) GetAppid() string {
  61. if x != nil {
  62. return x.Appid
  63. }
  64. return ""
  65. }
  66. type GetOrderCodeResp struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  71. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  72. Data *OrderCode `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  73. }
  74. func (x *GetOrderCodeResp) Reset() {
  75. *x = GetOrderCodeResp{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_orderCenter_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *GetOrderCodeResp) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*GetOrderCodeResp) ProtoMessage() {}
  86. func (x *GetOrderCodeResp) ProtoReflect() protoreflect.Message {
  87. mi := &file_orderCenter_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use GetOrderCodeResp.ProtoReflect.Descriptor instead.
  98. func (*GetOrderCodeResp) Descriptor() ([]byte, []int) {
  99. return file_orderCenter_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *GetOrderCodeResp) GetErrorCode() int64 {
  102. if x != nil {
  103. return x.ErrorCode
  104. }
  105. return 0
  106. }
  107. func (x *GetOrderCodeResp) GetErrorMsg() string {
  108. if x != nil {
  109. return x.ErrorMsg
  110. }
  111. return ""
  112. }
  113. func (x *GetOrderCodeResp) GetData() *OrderCode {
  114. if x != nil {
  115. return x.Data
  116. }
  117. return nil
  118. }
  119. type OrderCode struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. OrderCode string `protobuf:"bytes,1,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  124. }
  125. func (x *OrderCode) Reset() {
  126. *x = OrderCode{}
  127. if protoimpl.UnsafeEnabled {
  128. mi := &file_orderCenter_proto_msgTypes[2]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. }
  133. func (x *OrderCode) String() string {
  134. return protoimpl.X.MessageStringOf(x)
  135. }
  136. func (*OrderCode) ProtoMessage() {}
  137. func (x *OrderCode) ProtoReflect() protoreflect.Message {
  138. mi := &file_orderCenter_proto_msgTypes[2]
  139. if protoimpl.UnsafeEnabled && x != nil {
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. if ms.LoadMessageInfo() == nil {
  142. ms.StoreMessageInfo(mi)
  143. }
  144. return ms
  145. }
  146. return mi.MessageOf(x)
  147. }
  148. // Deprecated: Use OrderCode.ProtoReflect.Descriptor instead.
  149. func (*OrderCode) Descriptor() ([]byte, []int) {
  150. return file_orderCenter_proto_rawDescGZIP(), []int{2}
  151. }
  152. func (x *OrderCode) GetOrderCode() string {
  153. if x != nil {
  154. return x.OrderCode
  155. }
  156. return ""
  157. }
  158. type OrderAddUpdateReq struct {
  159. state protoimpl.MessageState
  160. sizeCache protoimpl.SizeCache
  161. unknownFields protoimpl.UnknownFields
  162. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  163. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  164. Order *Order `protobuf:"bytes,3,opt,name=order,proto3" json:"order,omitempty"`
  165. OrderExtend *OrderExtend `protobuf:"bytes,4,opt,name=order_extend,json=orderExtend,proto3" json:"order_extend,omitempty"`
  166. OrderCommodity []*OrderCommodity `protobuf:"bytes,5,rep,name=order_commodity,json=orderCommodity,proto3" json:"order_commodity,omitempty"`
  167. OrderBusiness *OrderBusiness `protobuf:"bytes,6,opt,name=order_business,json=orderBusiness,proto3" json:"order_business,omitempty"`
  168. }
  169. func (x *OrderAddUpdateReq) Reset() {
  170. *x = OrderAddUpdateReq{}
  171. if protoimpl.UnsafeEnabled {
  172. mi := &file_orderCenter_proto_msgTypes[3]
  173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  174. ms.StoreMessageInfo(mi)
  175. }
  176. }
  177. func (x *OrderAddUpdateReq) String() string {
  178. return protoimpl.X.MessageStringOf(x)
  179. }
  180. func (*OrderAddUpdateReq) ProtoMessage() {}
  181. func (x *OrderAddUpdateReq) ProtoReflect() protoreflect.Message {
  182. mi := &file_orderCenter_proto_msgTypes[3]
  183. if protoimpl.UnsafeEnabled && x != nil {
  184. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  185. if ms.LoadMessageInfo() == nil {
  186. ms.StoreMessageInfo(mi)
  187. }
  188. return ms
  189. }
  190. return mi.MessageOf(x)
  191. }
  192. // Deprecated: Use OrderAddUpdateReq.ProtoReflect.Descriptor instead.
  193. func (*OrderAddUpdateReq) Descriptor() ([]byte, []int) {
  194. return file_orderCenter_proto_rawDescGZIP(), []int{3}
  195. }
  196. func (x *OrderAddUpdateReq) GetAppid() string {
  197. if x != nil {
  198. return x.Appid
  199. }
  200. return ""
  201. }
  202. func (x *OrderAddUpdateReq) GetOrderCode() string {
  203. if x != nil {
  204. return x.OrderCode
  205. }
  206. return ""
  207. }
  208. func (x *OrderAddUpdateReq) GetOrder() *Order {
  209. if x != nil {
  210. return x.Order
  211. }
  212. return nil
  213. }
  214. func (x *OrderAddUpdateReq) GetOrderExtend() *OrderExtend {
  215. if x != nil {
  216. return x.OrderExtend
  217. }
  218. return nil
  219. }
  220. func (x *OrderAddUpdateReq) GetOrderCommodity() []*OrderCommodity {
  221. if x != nil {
  222. return x.OrderCommodity
  223. }
  224. return nil
  225. }
  226. func (x *OrderAddUpdateReq) GetOrderBusiness() *OrderBusiness {
  227. if x != nil {
  228. return x.OrderBusiness
  229. }
  230. return nil
  231. }
  232. type OrderStatusUpdateReq struct {
  233. state protoimpl.MessageState
  234. sizeCache protoimpl.SizeCache
  235. unknownFields protoimpl.UnknownFields
  236. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  237. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  238. DataType int64 `protobuf:"varint,3,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
  239. OrderStatus int64 `protobuf:"varint,4,opt,name=order_status,json=orderStatus,proto3" json:"order_status,omitempty"`
  240. }
  241. func (x *OrderStatusUpdateReq) Reset() {
  242. *x = OrderStatusUpdateReq{}
  243. if protoimpl.UnsafeEnabled {
  244. mi := &file_orderCenter_proto_msgTypes[4]
  245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  246. ms.StoreMessageInfo(mi)
  247. }
  248. }
  249. func (x *OrderStatusUpdateReq) String() string {
  250. return protoimpl.X.MessageStringOf(x)
  251. }
  252. func (*OrderStatusUpdateReq) ProtoMessage() {}
  253. func (x *OrderStatusUpdateReq) ProtoReflect() protoreflect.Message {
  254. mi := &file_orderCenter_proto_msgTypes[4]
  255. if protoimpl.UnsafeEnabled && x != nil {
  256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  257. if ms.LoadMessageInfo() == nil {
  258. ms.StoreMessageInfo(mi)
  259. }
  260. return ms
  261. }
  262. return mi.MessageOf(x)
  263. }
  264. // Deprecated: Use OrderStatusUpdateReq.ProtoReflect.Descriptor instead.
  265. func (*OrderStatusUpdateReq) Descriptor() ([]byte, []int) {
  266. return file_orderCenter_proto_rawDescGZIP(), []int{4}
  267. }
  268. func (x *OrderStatusUpdateReq) GetAppid() string {
  269. if x != nil {
  270. return x.Appid
  271. }
  272. return ""
  273. }
  274. func (x *OrderStatusUpdateReq) GetOrderCode() string {
  275. if x != nil {
  276. return x.OrderCode
  277. }
  278. return ""
  279. }
  280. func (x *OrderStatusUpdateReq) GetDataType() int64 {
  281. if x != nil {
  282. return x.DataType
  283. }
  284. return 0
  285. }
  286. func (x *OrderStatusUpdateReq) GetOrderStatus() int64 {
  287. if x != nil {
  288. return x.OrderStatus
  289. }
  290. return 0
  291. }
  292. type Order struct {
  293. state protoimpl.MessageState
  294. sizeCache protoimpl.SizeCache
  295. unknownFields protoimpl.UnknownFields
  296. OrderMoney int64 `protobuf:"varint,1,opt,name=order_money,json=orderMoney,proto3" json:"order_money,omitempty"`
  297. OriginalPrice int64 `protobuf:"varint,2,opt,name=original_price,json=originalPrice,proto3" json:"original_price,omitempty"`
  298. CreateTime string `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  299. OrderStatus int64 `protobuf:"varint,4,opt,name=order_status,json=orderStatus,proto3" json:"order_status,omitempty"`
  300. UserId int64 `protobuf:"varint,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  301. EntId int64 `protobuf:"varint,6,opt,name=ent_id,json=entId,proto3" json:"ent_id,omitempty"`
  302. }
  303. func (x *Order) Reset() {
  304. *x = Order{}
  305. if protoimpl.UnsafeEnabled {
  306. mi := &file_orderCenter_proto_msgTypes[5]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. }
  311. func (x *Order) String() string {
  312. return protoimpl.X.MessageStringOf(x)
  313. }
  314. func (*Order) ProtoMessage() {}
  315. func (x *Order) ProtoReflect() protoreflect.Message {
  316. mi := &file_orderCenter_proto_msgTypes[5]
  317. if protoimpl.UnsafeEnabled && x != nil {
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. if ms.LoadMessageInfo() == nil {
  320. ms.StoreMessageInfo(mi)
  321. }
  322. return ms
  323. }
  324. return mi.MessageOf(x)
  325. }
  326. // Deprecated: Use Order.ProtoReflect.Descriptor instead.
  327. func (*Order) Descriptor() ([]byte, []int) {
  328. return file_orderCenter_proto_rawDescGZIP(), []int{5}
  329. }
  330. func (x *Order) GetOrderMoney() int64 {
  331. if x != nil {
  332. return x.OrderMoney
  333. }
  334. return 0
  335. }
  336. func (x *Order) GetOriginalPrice() int64 {
  337. if x != nil {
  338. return x.OriginalPrice
  339. }
  340. return 0
  341. }
  342. func (x *Order) GetCreateTime() string {
  343. if x != nil {
  344. return x.CreateTime
  345. }
  346. return ""
  347. }
  348. func (x *Order) GetOrderStatus() int64 {
  349. if x != nil {
  350. return x.OrderStatus
  351. }
  352. return 0
  353. }
  354. func (x *Order) GetUserId() int64 {
  355. if x != nil {
  356. return x.UserId
  357. }
  358. return 0
  359. }
  360. func (x *Order) GetEntId() int64 {
  361. if x != nil {
  362. return x.EntId
  363. }
  364. return 0
  365. }
  366. type OrderExtend struct {
  367. state protoimpl.MessageState
  368. sizeCache protoimpl.SizeCache
  369. unknownFields protoimpl.UnknownFields
  370. PayType int64 `protobuf:"varint,1,opt,name=pay_type,json=payType,proto3" json:"pay_type,omitempty"`
  371. Source int64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"`
  372. DisWord string `protobuf:"bytes,3,opt,name=dis_word,json=disWord,proto3" json:"dis_word,omitempty"`
  373. IscanInvoice int64 `protobuf:"varint,4,opt,name=iscan_invoice,json=iscanInvoice,proto3" json:"iscan_invoice,omitempty"`
  374. IscanEvaluate int64 `protobuf:"varint,5,opt,name=iscan_evaluate,json=iscanEvaluate,proto3" json:"iscan_evaluate,omitempty"`
  375. RemindStatus int64 `protobuf:"varint,6,opt,name=remind_status,json=remindStatus,proto3" json:"remind_status,omitempty"`
  376. }
  377. func (x *OrderExtend) Reset() {
  378. *x = OrderExtend{}
  379. if protoimpl.UnsafeEnabled {
  380. mi := &file_orderCenter_proto_msgTypes[6]
  381. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  382. ms.StoreMessageInfo(mi)
  383. }
  384. }
  385. func (x *OrderExtend) String() string {
  386. return protoimpl.X.MessageStringOf(x)
  387. }
  388. func (*OrderExtend) ProtoMessage() {}
  389. func (x *OrderExtend) ProtoReflect() protoreflect.Message {
  390. mi := &file_orderCenter_proto_msgTypes[6]
  391. if protoimpl.UnsafeEnabled && x != nil {
  392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  393. if ms.LoadMessageInfo() == nil {
  394. ms.StoreMessageInfo(mi)
  395. }
  396. return ms
  397. }
  398. return mi.MessageOf(x)
  399. }
  400. // Deprecated: Use OrderExtend.ProtoReflect.Descriptor instead.
  401. func (*OrderExtend) Descriptor() ([]byte, []int) {
  402. return file_orderCenter_proto_rawDescGZIP(), []int{6}
  403. }
  404. func (x *OrderExtend) GetPayType() int64 {
  405. if x != nil {
  406. return x.PayType
  407. }
  408. return 0
  409. }
  410. func (x *OrderExtend) GetSource() int64 {
  411. if x != nil {
  412. return x.Source
  413. }
  414. return 0
  415. }
  416. func (x *OrderExtend) GetDisWord() string {
  417. if x != nil {
  418. return x.DisWord
  419. }
  420. return ""
  421. }
  422. func (x *OrderExtend) GetIscanInvoice() int64 {
  423. if x != nil {
  424. return x.IscanInvoice
  425. }
  426. return 0
  427. }
  428. func (x *OrderExtend) GetIscanEvaluate() int64 {
  429. if x != nil {
  430. return x.IscanEvaluate
  431. }
  432. return 0
  433. }
  434. func (x *OrderExtend) GetRemindStatus() int64 {
  435. if x != nil {
  436. return x.RemindStatus
  437. }
  438. return 0
  439. }
  440. type OrderCommodity struct {
  441. state protoimpl.MessageState
  442. sizeCache protoimpl.SizeCache
  443. unknownFields protoimpl.UnknownFields
  444. GoodsCode string `protobuf:"bytes,1,opt,name=goods_code,json=goodsCode,proto3" json:"goods_code,omitempty"`
  445. GoodsSpecId int64 `protobuf:"varint,2,opt,name=goods_spec_id,json=goodsSpecId,proto3" json:"goods_spec_id,omitempty"`
  446. Num int64 `protobuf:"varint,3,opt,name=num,proto3" json:"num,omitempty"`
  447. Price int64 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
  448. Total int64 `protobuf:"varint,5,opt,name=total,proto3" json:"total,omitempty"`
  449. Isgift int64 `protobuf:"varint,6,opt,name=isgift,proto3" json:"isgift,omitempty"`
  450. }
  451. func (x *OrderCommodity) Reset() {
  452. *x = OrderCommodity{}
  453. if protoimpl.UnsafeEnabled {
  454. mi := &file_orderCenter_proto_msgTypes[7]
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. ms.StoreMessageInfo(mi)
  457. }
  458. }
  459. func (x *OrderCommodity) String() string {
  460. return protoimpl.X.MessageStringOf(x)
  461. }
  462. func (*OrderCommodity) ProtoMessage() {}
  463. func (x *OrderCommodity) ProtoReflect() protoreflect.Message {
  464. mi := &file_orderCenter_proto_msgTypes[7]
  465. if protoimpl.UnsafeEnabled && x != nil {
  466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  467. if ms.LoadMessageInfo() == nil {
  468. ms.StoreMessageInfo(mi)
  469. }
  470. return ms
  471. }
  472. return mi.MessageOf(x)
  473. }
  474. // Deprecated: Use OrderCommodity.ProtoReflect.Descriptor instead.
  475. func (*OrderCommodity) Descriptor() ([]byte, []int) {
  476. return file_orderCenter_proto_rawDescGZIP(), []int{7}
  477. }
  478. func (x *OrderCommodity) GetGoodsCode() string {
  479. if x != nil {
  480. return x.GoodsCode
  481. }
  482. return ""
  483. }
  484. func (x *OrderCommodity) GetGoodsSpecId() int64 {
  485. if x != nil {
  486. return x.GoodsSpecId
  487. }
  488. return 0
  489. }
  490. func (x *OrderCommodity) GetNum() int64 {
  491. if x != nil {
  492. return x.Num
  493. }
  494. return 0
  495. }
  496. func (x *OrderCommodity) GetPrice() int64 {
  497. if x != nil {
  498. return x.Price
  499. }
  500. return 0
  501. }
  502. func (x *OrderCommodity) GetTotal() int64 {
  503. if x != nil {
  504. return x.Total
  505. }
  506. return 0
  507. }
  508. func (x *OrderCommodity) GetIsgift() int64 {
  509. if x != nil {
  510. return x.Isgift
  511. }
  512. return 0
  513. }
  514. type OrderBusiness struct {
  515. state protoimpl.MessageState
  516. sizeCache protoimpl.SizeCache
  517. unknownFields protoimpl.UnknownFields
  518. ServiceStatus int64 `protobuf:"varint,1,opt,name=service_status,json=serviceStatus,proto3" json:"service_status,omitempty"`
  519. Filter string `protobuf:"bytes,2,opt,name=filter,proto3" json:"filter,omitempty"`
  520. FilterKeys string `protobuf:"bytes,3,opt,name=filter_keys,json=filterKeys,proto3" json:"filter_keys,omitempty"`
  521. FilterPublishtime string `protobuf:"bytes,4,opt,name=filter_publishtime,json=filterPublishtime,proto3" json:"filter_publishtime,omitempty"`
  522. ServiceTime string `protobuf:"bytes,5,opt,name=service_time,json=serviceTime,proto3" json:"service_time,omitempty"`
  523. DataCount int64 `protobuf:"varint,6,opt,name=data_count,json=dataCount,proto3" json:"data_count,omitempty"`
  524. FilterId string `protobuf:"bytes,7,opt,name=filter_id,json=filterId,proto3" json:"filter_id,omitempty"`
  525. DownloadUrl string `protobuf:"bytes,8,opt,name=download_url,json=downloadUrl,proto3" json:"download_url,omitempty"`
  526. GoodsCode string `protobuf:"bytes,9,opt,name=goods_code,json=goodsCode,proto3" json:"goods_code,omitempty"`
  527. GoodsSpecId int64 `protobuf:"varint,10,opt,name=goods_spec_id,json=goodsSpecId,proto3" json:"goods_spec_id,omitempty"`
  528. UserPhone string `protobuf:"bytes,11,opt,name=user_phone,json=userPhone,proto3" json:"user_phone,omitempty"`
  529. UserMail string `protobuf:"bytes,12,opt,name=user_mail,json=userMail,proto3" json:"user_mail,omitempty"`
  530. }
  531. func (x *OrderBusiness) Reset() {
  532. *x = OrderBusiness{}
  533. if protoimpl.UnsafeEnabled {
  534. mi := &file_orderCenter_proto_msgTypes[8]
  535. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  536. ms.StoreMessageInfo(mi)
  537. }
  538. }
  539. func (x *OrderBusiness) String() string {
  540. return protoimpl.X.MessageStringOf(x)
  541. }
  542. func (*OrderBusiness) ProtoMessage() {}
  543. func (x *OrderBusiness) ProtoReflect() protoreflect.Message {
  544. mi := &file_orderCenter_proto_msgTypes[8]
  545. if protoimpl.UnsafeEnabled && x != nil {
  546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  547. if ms.LoadMessageInfo() == nil {
  548. ms.StoreMessageInfo(mi)
  549. }
  550. return ms
  551. }
  552. return mi.MessageOf(x)
  553. }
  554. // Deprecated: Use OrderBusiness.ProtoReflect.Descriptor instead.
  555. func (*OrderBusiness) Descriptor() ([]byte, []int) {
  556. return file_orderCenter_proto_rawDescGZIP(), []int{8}
  557. }
  558. func (x *OrderBusiness) GetServiceStatus() int64 {
  559. if x != nil {
  560. return x.ServiceStatus
  561. }
  562. return 0
  563. }
  564. func (x *OrderBusiness) GetFilter() string {
  565. if x != nil {
  566. return x.Filter
  567. }
  568. return ""
  569. }
  570. func (x *OrderBusiness) GetFilterKeys() string {
  571. if x != nil {
  572. return x.FilterKeys
  573. }
  574. return ""
  575. }
  576. func (x *OrderBusiness) GetFilterPublishtime() string {
  577. if x != nil {
  578. return x.FilterPublishtime
  579. }
  580. return ""
  581. }
  582. func (x *OrderBusiness) GetServiceTime() string {
  583. if x != nil {
  584. return x.ServiceTime
  585. }
  586. return ""
  587. }
  588. func (x *OrderBusiness) GetDataCount() int64 {
  589. if x != nil {
  590. return x.DataCount
  591. }
  592. return 0
  593. }
  594. func (x *OrderBusiness) GetFilterId() string {
  595. if x != nil {
  596. return x.FilterId
  597. }
  598. return ""
  599. }
  600. func (x *OrderBusiness) GetDownloadUrl() string {
  601. if x != nil {
  602. return x.DownloadUrl
  603. }
  604. return ""
  605. }
  606. func (x *OrderBusiness) GetGoodsCode() string {
  607. if x != nil {
  608. return x.GoodsCode
  609. }
  610. return ""
  611. }
  612. func (x *OrderBusiness) GetGoodsSpecId() int64 {
  613. if x != nil {
  614. return x.GoodsSpecId
  615. }
  616. return 0
  617. }
  618. func (x *OrderBusiness) GetUserPhone() string {
  619. if x != nil {
  620. return x.UserPhone
  621. }
  622. return ""
  623. }
  624. func (x *OrderBusiness) GetUserMail() string {
  625. if x != nil {
  626. return x.UserMail
  627. }
  628. return ""
  629. }
  630. type OrderDelReq struct {
  631. state protoimpl.MessageState
  632. sizeCache protoimpl.SizeCache
  633. unknownFields protoimpl.UnknownFields
  634. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  635. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  636. }
  637. func (x *OrderDelReq) Reset() {
  638. *x = OrderDelReq{}
  639. if protoimpl.UnsafeEnabled {
  640. mi := &file_orderCenter_proto_msgTypes[9]
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. ms.StoreMessageInfo(mi)
  643. }
  644. }
  645. func (x *OrderDelReq) String() string {
  646. return protoimpl.X.MessageStringOf(x)
  647. }
  648. func (*OrderDelReq) ProtoMessage() {}
  649. func (x *OrderDelReq) ProtoReflect() protoreflect.Message {
  650. mi := &file_orderCenter_proto_msgTypes[9]
  651. if protoimpl.UnsafeEnabled && x != nil {
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. if ms.LoadMessageInfo() == nil {
  654. ms.StoreMessageInfo(mi)
  655. }
  656. return ms
  657. }
  658. return mi.MessageOf(x)
  659. }
  660. // Deprecated: Use OrderDelReq.ProtoReflect.Descriptor instead.
  661. func (*OrderDelReq) Descriptor() ([]byte, []int) {
  662. return file_orderCenter_proto_rawDescGZIP(), []int{9}
  663. }
  664. func (x *OrderDelReq) GetAppid() string {
  665. if x != nil {
  666. return x.Appid
  667. }
  668. return ""
  669. }
  670. func (x *OrderDelReq) GetOrderCode() string {
  671. if x != nil {
  672. return x.OrderCode
  673. }
  674. return ""
  675. }
  676. type OrderAddUpdateResp struct {
  677. state protoimpl.MessageState
  678. sizeCache protoimpl.SizeCache
  679. unknownFields protoimpl.UnknownFields
  680. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  681. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  682. Data *DataStatus `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  683. }
  684. func (x *OrderAddUpdateResp) Reset() {
  685. *x = OrderAddUpdateResp{}
  686. if protoimpl.UnsafeEnabled {
  687. mi := &file_orderCenter_proto_msgTypes[10]
  688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  689. ms.StoreMessageInfo(mi)
  690. }
  691. }
  692. func (x *OrderAddUpdateResp) String() string {
  693. return protoimpl.X.MessageStringOf(x)
  694. }
  695. func (*OrderAddUpdateResp) ProtoMessage() {}
  696. func (x *OrderAddUpdateResp) ProtoReflect() protoreflect.Message {
  697. mi := &file_orderCenter_proto_msgTypes[10]
  698. if protoimpl.UnsafeEnabled && x != nil {
  699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  700. if ms.LoadMessageInfo() == nil {
  701. ms.StoreMessageInfo(mi)
  702. }
  703. return ms
  704. }
  705. return mi.MessageOf(x)
  706. }
  707. // Deprecated: Use OrderAddUpdateResp.ProtoReflect.Descriptor instead.
  708. func (*OrderAddUpdateResp) Descriptor() ([]byte, []int) {
  709. return file_orderCenter_proto_rawDescGZIP(), []int{10}
  710. }
  711. func (x *OrderAddUpdateResp) GetErrorCode() int64 {
  712. if x != nil {
  713. return x.ErrorCode
  714. }
  715. return 0
  716. }
  717. func (x *OrderAddUpdateResp) GetErrorMsg() string {
  718. if x != nil {
  719. return x.ErrorMsg
  720. }
  721. return ""
  722. }
  723. func (x *OrderAddUpdateResp) GetData() *DataStatus {
  724. if x != nil {
  725. return x.Data
  726. }
  727. return nil
  728. }
  729. type DataStatus struct {
  730. state protoimpl.MessageState
  731. sizeCache protoimpl.SizeCache
  732. unknownFields protoimpl.UnknownFields
  733. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  734. }
  735. func (x *DataStatus) Reset() {
  736. *x = DataStatus{}
  737. if protoimpl.UnsafeEnabled {
  738. mi := &file_orderCenter_proto_msgTypes[11]
  739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  740. ms.StoreMessageInfo(mi)
  741. }
  742. }
  743. func (x *DataStatus) String() string {
  744. return protoimpl.X.MessageStringOf(x)
  745. }
  746. func (*DataStatus) ProtoMessage() {}
  747. func (x *DataStatus) ProtoReflect() protoreflect.Message {
  748. mi := &file_orderCenter_proto_msgTypes[11]
  749. if protoimpl.UnsafeEnabled && x != nil {
  750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  751. if ms.LoadMessageInfo() == nil {
  752. ms.StoreMessageInfo(mi)
  753. }
  754. return ms
  755. }
  756. return mi.MessageOf(x)
  757. }
  758. // Deprecated: Use DataStatus.ProtoReflect.Descriptor instead.
  759. func (*DataStatus) Descriptor() ([]byte, []int) {
  760. return file_orderCenter_proto_rawDescGZIP(), []int{11}
  761. }
  762. func (x *DataStatus) GetStatus() int64 {
  763. if x != nil {
  764. return x.Status
  765. }
  766. return 0
  767. }
  768. type OrderListReq struct {
  769. state protoimpl.MessageState
  770. sizeCache protoimpl.SizeCache
  771. unknownFields protoimpl.UnknownFields
  772. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  773. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  774. NewUserId int64 `protobuf:"varint,3,opt,name=new_user_id,json=newUserId,proto3" json:"new_user_id,omitempty"`
  775. NewUserIds string `protobuf:"bytes,4,opt,name=new_user_ids,json=newUserIds,proto3" json:"new_user_ids,omitempty"`
  776. PageNum int64 `protobuf:"varint,5,opt,name=page_num,json=pageNum,proto3" json:"page_num,omitempty"`
  777. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  778. }
  779. func (x *OrderListReq) Reset() {
  780. *x = OrderListReq{}
  781. if protoimpl.UnsafeEnabled {
  782. mi := &file_orderCenter_proto_msgTypes[12]
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. ms.StoreMessageInfo(mi)
  785. }
  786. }
  787. func (x *OrderListReq) String() string {
  788. return protoimpl.X.MessageStringOf(x)
  789. }
  790. func (*OrderListReq) ProtoMessage() {}
  791. func (x *OrderListReq) ProtoReflect() protoreflect.Message {
  792. mi := &file_orderCenter_proto_msgTypes[12]
  793. if protoimpl.UnsafeEnabled && x != nil {
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. if ms.LoadMessageInfo() == nil {
  796. ms.StoreMessageInfo(mi)
  797. }
  798. return ms
  799. }
  800. return mi.MessageOf(x)
  801. }
  802. // Deprecated: Use OrderListReq.ProtoReflect.Descriptor instead.
  803. func (*OrderListReq) Descriptor() ([]byte, []int) {
  804. return file_orderCenter_proto_rawDescGZIP(), []int{12}
  805. }
  806. func (x *OrderListReq) GetAppid() string {
  807. if x != nil {
  808. return x.Appid
  809. }
  810. return ""
  811. }
  812. func (x *OrderListReq) GetUserId() string {
  813. if x != nil {
  814. return x.UserId
  815. }
  816. return ""
  817. }
  818. func (x *OrderListReq) GetNewUserId() int64 {
  819. if x != nil {
  820. return x.NewUserId
  821. }
  822. return 0
  823. }
  824. func (x *OrderListReq) GetNewUserIds() string {
  825. if x != nil {
  826. return x.NewUserIds
  827. }
  828. return ""
  829. }
  830. func (x *OrderListReq) GetPageNum() int64 {
  831. if x != nil {
  832. return x.PageNum
  833. }
  834. return 0
  835. }
  836. func (x *OrderListReq) GetPageSize() int64 {
  837. if x != nil {
  838. return x.PageSize
  839. }
  840. return 0
  841. }
  842. type OrderListResp struct {
  843. state protoimpl.MessageState
  844. sizeCache protoimpl.SizeCache
  845. unknownFields protoimpl.UnknownFields
  846. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  847. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  848. Data *OrderList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  849. }
  850. func (x *OrderListResp) Reset() {
  851. *x = OrderListResp{}
  852. if protoimpl.UnsafeEnabled {
  853. mi := &file_orderCenter_proto_msgTypes[13]
  854. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  855. ms.StoreMessageInfo(mi)
  856. }
  857. }
  858. func (x *OrderListResp) String() string {
  859. return protoimpl.X.MessageStringOf(x)
  860. }
  861. func (*OrderListResp) ProtoMessage() {}
  862. func (x *OrderListResp) ProtoReflect() protoreflect.Message {
  863. mi := &file_orderCenter_proto_msgTypes[13]
  864. if protoimpl.UnsafeEnabled && x != nil {
  865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  866. if ms.LoadMessageInfo() == nil {
  867. ms.StoreMessageInfo(mi)
  868. }
  869. return ms
  870. }
  871. return mi.MessageOf(x)
  872. }
  873. // Deprecated: Use OrderListResp.ProtoReflect.Descriptor instead.
  874. func (*OrderListResp) Descriptor() ([]byte, []int) {
  875. return file_orderCenter_proto_rawDescGZIP(), []int{13}
  876. }
  877. func (x *OrderListResp) GetErrorCode() int64 {
  878. if x != nil {
  879. return x.ErrorCode
  880. }
  881. return 0
  882. }
  883. func (x *OrderListResp) GetErrorMsg() string {
  884. if x != nil {
  885. return x.ErrorMsg
  886. }
  887. return ""
  888. }
  889. func (x *OrderListResp) GetData() *OrderList {
  890. if x != nil {
  891. return x.Data
  892. }
  893. return nil
  894. }
  895. type OrderLists struct {
  896. state protoimpl.MessageState
  897. sizeCache protoimpl.SizeCache
  898. unknownFields protoimpl.UnknownFields
  899. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  900. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  901. DataType int64 `protobuf:"varint,3,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
  902. Order *Order `protobuf:"bytes,4,opt,name=order,proto3" json:"order,omitempty"`
  903. OrderExtend *OrderExtend `protobuf:"bytes,5,opt,name=order_extend,json=orderExtend,proto3" json:"order_extend,omitempty"`
  904. OrderCommodity []*OrderCommodity `protobuf:"bytes,6,rep,name=order_commodity,json=orderCommodity,proto3" json:"order_commodity,omitempty"`
  905. OrderBusiness *OrderBusiness `protobuf:"bytes,7,opt,name=order_business,json=orderBusiness,proto3" json:"order_business,omitempty"`
  906. }
  907. func (x *OrderLists) Reset() {
  908. *x = OrderLists{}
  909. if protoimpl.UnsafeEnabled {
  910. mi := &file_orderCenter_proto_msgTypes[14]
  911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  912. ms.StoreMessageInfo(mi)
  913. }
  914. }
  915. func (x *OrderLists) String() string {
  916. return protoimpl.X.MessageStringOf(x)
  917. }
  918. func (*OrderLists) ProtoMessage() {}
  919. func (x *OrderLists) ProtoReflect() protoreflect.Message {
  920. mi := &file_orderCenter_proto_msgTypes[14]
  921. if protoimpl.UnsafeEnabled && x != nil {
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. if ms.LoadMessageInfo() == nil {
  924. ms.StoreMessageInfo(mi)
  925. }
  926. return ms
  927. }
  928. return mi.MessageOf(x)
  929. }
  930. // Deprecated: Use OrderLists.ProtoReflect.Descriptor instead.
  931. func (*OrderLists) Descriptor() ([]byte, []int) {
  932. return file_orderCenter_proto_rawDescGZIP(), []int{14}
  933. }
  934. func (x *OrderLists) GetAppid() string {
  935. if x != nil {
  936. return x.Appid
  937. }
  938. return ""
  939. }
  940. func (x *OrderLists) GetOrderCode() string {
  941. if x != nil {
  942. return x.OrderCode
  943. }
  944. return ""
  945. }
  946. func (x *OrderLists) GetDataType() int64 {
  947. if x != nil {
  948. return x.DataType
  949. }
  950. return 0
  951. }
  952. func (x *OrderLists) GetOrder() *Order {
  953. if x != nil {
  954. return x.Order
  955. }
  956. return nil
  957. }
  958. func (x *OrderLists) GetOrderExtend() *OrderExtend {
  959. if x != nil {
  960. return x.OrderExtend
  961. }
  962. return nil
  963. }
  964. func (x *OrderLists) GetOrderCommodity() []*OrderCommodity {
  965. if x != nil {
  966. return x.OrderCommodity
  967. }
  968. return nil
  969. }
  970. func (x *OrderLists) GetOrderBusiness() *OrderBusiness {
  971. if x != nil {
  972. return x.OrderBusiness
  973. }
  974. return nil
  975. }
  976. type OrderList struct {
  977. state protoimpl.MessageState
  978. sizeCache protoimpl.SizeCache
  979. unknownFields protoimpl.UnknownFields
  980. OrderList []*OrderLists `protobuf:"bytes,1,rep,name=order_list,json=orderList,proto3" json:"order_list,omitempty"`
  981. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  982. }
  983. func (x *OrderList) Reset() {
  984. *x = OrderList{}
  985. if protoimpl.UnsafeEnabled {
  986. mi := &file_orderCenter_proto_msgTypes[15]
  987. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  988. ms.StoreMessageInfo(mi)
  989. }
  990. }
  991. func (x *OrderList) String() string {
  992. return protoimpl.X.MessageStringOf(x)
  993. }
  994. func (*OrderList) ProtoMessage() {}
  995. func (x *OrderList) ProtoReflect() protoreflect.Message {
  996. mi := &file_orderCenter_proto_msgTypes[15]
  997. if protoimpl.UnsafeEnabled && x != nil {
  998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  999. if ms.LoadMessageInfo() == nil {
  1000. ms.StoreMessageInfo(mi)
  1001. }
  1002. return ms
  1003. }
  1004. return mi.MessageOf(x)
  1005. }
  1006. // Deprecated: Use OrderList.ProtoReflect.Descriptor instead.
  1007. func (*OrderList) Descriptor() ([]byte, []int) {
  1008. return file_orderCenter_proto_rawDescGZIP(), []int{15}
  1009. }
  1010. func (x *OrderList) GetOrderList() []*OrderLists {
  1011. if x != nil {
  1012. return x.OrderList
  1013. }
  1014. return nil
  1015. }
  1016. func (x *OrderList) GetCount() int64 {
  1017. if x != nil {
  1018. return x.Count
  1019. }
  1020. return 0
  1021. }
  1022. type OrderInfoReq struct {
  1023. state protoimpl.MessageState
  1024. sizeCache protoimpl.SizeCache
  1025. unknownFields protoimpl.UnknownFields
  1026. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1027. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1028. DataType int64 `protobuf:"varint,3,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
  1029. }
  1030. func (x *OrderInfoReq) Reset() {
  1031. *x = OrderInfoReq{}
  1032. if protoimpl.UnsafeEnabled {
  1033. mi := &file_orderCenter_proto_msgTypes[16]
  1034. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1035. ms.StoreMessageInfo(mi)
  1036. }
  1037. }
  1038. func (x *OrderInfoReq) String() string {
  1039. return protoimpl.X.MessageStringOf(x)
  1040. }
  1041. func (*OrderInfoReq) ProtoMessage() {}
  1042. func (x *OrderInfoReq) ProtoReflect() protoreflect.Message {
  1043. mi := &file_orderCenter_proto_msgTypes[16]
  1044. if protoimpl.UnsafeEnabled && x != nil {
  1045. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1046. if ms.LoadMessageInfo() == nil {
  1047. ms.StoreMessageInfo(mi)
  1048. }
  1049. return ms
  1050. }
  1051. return mi.MessageOf(x)
  1052. }
  1053. // Deprecated: Use OrderInfoReq.ProtoReflect.Descriptor instead.
  1054. func (*OrderInfoReq) Descriptor() ([]byte, []int) {
  1055. return file_orderCenter_proto_rawDescGZIP(), []int{16}
  1056. }
  1057. func (x *OrderInfoReq) GetAppid() string {
  1058. if x != nil {
  1059. return x.Appid
  1060. }
  1061. return ""
  1062. }
  1063. func (x *OrderInfoReq) GetOrderCode() string {
  1064. if x != nil {
  1065. return x.OrderCode
  1066. }
  1067. return ""
  1068. }
  1069. func (x *OrderInfoReq) GetDataType() int64 {
  1070. if x != nil {
  1071. return x.DataType
  1072. }
  1073. return 0
  1074. }
  1075. type OrderInfoResp struct {
  1076. state protoimpl.MessageState
  1077. sizeCache protoimpl.SizeCache
  1078. unknownFields protoimpl.UnknownFields
  1079. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1080. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1081. Data *OrderInfo `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1082. }
  1083. func (x *OrderInfoResp) Reset() {
  1084. *x = OrderInfoResp{}
  1085. if protoimpl.UnsafeEnabled {
  1086. mi := &file_orderCenter_proto_msgTypes[17]
  1087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1088. ms.StoreMessageInfo(mi)
  1089. }
  1090. }
  1091. func (x *OrderInfoResp) String() string {
  1092. return protoimpl.X.MessageStringOf(x)
  1093. }
  1094. func (*OrderInfoResp) ProtoMessage() {}
  1095. func (x *OrderInfoResp) ProtoReflect() protoreflect.Message {
  1096. mi := &file_orderCenter_proto_msgTypes[17]
  1097. if protoimpl.UnsafeEnabled && x != nil {
  1098. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1099. if ms.LoadMessageInfo() == nil {
  1100. ms.StoreMessageInfo(mi)
  1101. }
  1102. return ms
  1103. }
  1104. return mi.MessageOf(x)
  1105. }
  1106. // Deprecated: Use OrderInfoResp.ProtoReflect.Descriptor instead.
  1107. func (*OrderInfoResp) Descriptor() ([]byte, []int) {
  1108. return file_orderCenter_proto_rawDescGZIP(), []int{17}
  1109. }
  1110. func (x *OrderInfoResp) GetErrorCode() int64 {
  1111. if x != nil {
  1112. return x.ErrorCode
  1113. }
  1114. return 0
  1115. }
  1116. func (x *OrderInfoResp) GetErrorMsg() string {
  1117. if x != nil {
  1118. return x.ErrorMsg
  1119. }
  1120. return ""
  1121. }
  1122. func (x *OrderInfoResp) GetData() *OrderInfo {
  1123. if x != nil {
  1124. return x.Data
  1125. }
  1126. return nil
  1127. }
  1128. type OrderInfo struct {
  1129. state protoimpl.MessageState
  1130. sizeCache protoimpl.SizeCache
  1131. unknownFields protoimpl.UnknownFields
  1132. OrderInfo *OrderAddUpdateReq `protobuf:"bytes,1,opt,name=order_info,json=orderInfo,proto3" json:"order_info,omitempty"`
  1133. }
  1134. func (x *OrderInfo) Reset() {
  1135. *x = OrderInfo{}
  1136. if protoimpl.UnsafeEnabled {
  1137. mi := &file_orderCenter_proto_msgTypes[18]
  1138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1139. ms.StoreMessageInfo(mi)
  1140. }
  1141. }
  1142. func (x *OrderInfo) String() string {
  1143. return protoimpl.X.MessageStringOf(x)
  1144. }
  1145. func (*OrderInfo) ProtoMessage() {}
  1146. func (x *OrderInfo) ProtoReflect() protoreflect.Message {
  1147. mi := &file_orderCenter_proto_msgTypes[18]
  1148. if protoimpl.UnsafeEnabled && x != nil {
  1149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1150. if ms.LoadMessageInfo() == nil {
  1151. ms.StoreMessageInfo(mi)
  1152. }
  1153. return ms
  1154. }
  1155. return mi.MessageOf(x)
  1156. }
  1157. // Deprecated: Use OrderInfo.ProtoReflect.Descriptor instead.
  1158. func (*OrderInfo) Descriptor() ([]byte, []int) {
  1159. return file_orderCenter_proto_rawDescGZIP(), []int{18}
  1160. }
  1161. func (x *OrderInfo) GetOrderInfo() *OrderAddUpdateReq {
  1162. if x != nil {
  1163. return x.OrderInfo
  1164. }
  1165. return nil
  1166. }
  1167. type PayAddReq struct {
  1168. state protoimpl.MessageState
  1169. sizeCache protoimpl.SizeCache
  1170. unknownFields protoimpl.UnknownFields
  1171. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1172. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1173. Pay *Pay `protobuf:"bytes,3,opt,name=pay,proto3" json:"pay,omitempty"`
  1174. }
  1175. func (x *PayAddReq) Reset() {
  1176. *x = PayAddReq{}
  1177. if protoimpl.UnsafeEnabled {
  1178. mi := &file_orderCenter_proto_msgTypes[19]
  1179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1180. ms.StoreMessageInfo(mi)
  1181. }
  1182. }
  1183. func (x *PayAddReq) String() string {
  1184. return protoimpl.X.MessageStringOf(x)
  1185. }
  1186. func (*PayAddReq) ProtoMessage() {}
  1187. func (x *PayAddReq) ProtoReflect() protoreflect.Message {
  1188. mi := &file_orderCenter_proto_msgTypes[19]
  1189. if protoimpl.UnsafeEnabled && x != nil {
  1190. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1191. if ms.LoadMessageInfo() == nil {
  1192. ms.StoreMessageInfo(mi)
  1193. }
  1194. return ms
  1195. }
  1196. return mi.MessageOf(x)
  1197. }
  1198. // Deprecated: Use PayAddReq.ProtoReflect.Descriptor instead.
  1199. func (*PayAddReq) Descriptor() ([]byte, []int) {
  1200. return file_orderCenter_proto_rawDescGZIP(), []int{19}
  1201. }
  1202. func (x *PayAddReq) GetAppid() string {
  1203. if x != nil {
  1204. return x.Appid
  1205. }
  1206. return ""
  1207. }
  1208. func (x *PayAddReq) GetOrderCode() string {
  1209. if x != nil {
  1210. return x.OrderCode
  1211. }
  1212. return ""
  1213. }
  1214. func (x *PayAddReq) GetPay() *Pay {
  1215. if x != nil {
  1216. return x.Pay
  1217. }
  1218. return nil
  1219. }
  1220. type Pay struct {
  1221. state protoimpl.MessageState
  1222. sizeCache protoimpl.SizeCache
  1223. unknownFields protoimpl.UnknownFields
  1224. PayWay string `protobuf:"bytes,1,opt,name=pay_way,json=payWay,proto3" json:"pay_way,omitempty"`
  1225. PayMoney int64 `protobuf:"varint,2,opt,name=pay_money,json=payMoney,proto3" json:"pay_money,omitempty"`
  1226. PayCode string `protobuf:"bytes,3,opt,name=pay_code,json=payCode,proto3" json:"pay_code,omitempty"`
  1227. PayVoucherUrl string `protobuf:"bytes,4,opt,name=pay_voucher_url,json=payVoucherUrl,proto3" json:"pay_voucher_url,omitempty"`
  1228. PayAccount string `protobuf:"bytes,5,opt,name=pay_account,json=payAccount,proto3" json:"pay_account,omitempty"`
  1229. PayName string `protobuf:"bytes,6,opt,name=pay_name,json=payName,proto3" json:"pay_name,omitempty"`
  1230. CollectAccount string `protobuf:"bytes,7,opt,name=collect_account,json=collectAccount,proto3" json:"collect_account,omitempty"`
  1231. CollectName string `protobuf:"bytes,8,opt,name=collect_name,json=collectName,proto3" json:"collect_name,omitempty"`
  1232. OperatePerson string `protobuf:"bytes,9,opt,name=operate_person,json=operatePerson,proto3" json:"operate_person,omitempty"`
  1233. OperateTime string `protobuf:"bytes,10,opt,name=operate_time,json=operateTime,proto3" json:"operate_time,omitempty"`
  1234. Remark string `protobuf:"bytes,11,opt,name=remark,proto3" json:"remark,omitempty"`
  1235. PrepayTime string `protobuf:"bytes,12,opt,name=prepay_time,json=prepayTime,proto3" json:"prepay_time,omitempty"`
  1236. PrepayId string `protobuf:"bytes,13,opt,name=prepay_id,json=prepayId,proto3" json:"prepay_id,omitempty"`
  1237. OutTradeNo string `protobuf:"bytes,14,opt,name=out_trade_no,json=outTradeNo,proto3" json:"out_trade_no,omitempty"`
  1238. CodeUrl string `protobuf:"bytes,15,opt,name=code_url,json=codeUrl,proto3" json:"code_url,omitempty"`
  1239. OriginPrice int64 `protobuf:"varint,16,opt,name=origin_price,json=originPrice,proto3" json:"origin_price,omitempty"`
  1240. PointsDeductCount int64 `protobuf:"varint,17,opt,name=points_deduct_count,json=pointsDeductCount,proto3" json:"points_deduct_count,omitempty"`
  1241. PointsDeductAmount int64 `protobuf:"varint,18,opt,name=points_deduct_amount,json=pointsDeductAmount,proto3" json:"points_deduct_amount,omitempty"`
  1242. CardCount int64 `protobuf:"varint,19,opt,name=card_count,json=cardCount,proto3" json:"card_count,omitempty"`
  1243. CardAmount int64 `protobuf:"varint,20,opt,name=card_amount,json=cardAmount,proto3" json:"card_amount,omitempty"`
  1244. PayTime string `protobuf:"bytes,21,opt,name=pay_time,json=payTime,proto3" json:"pay_time,omitempty"`
  1245. }
  1246. func (x *Pay) Reset() {
  1247. *x = Pay{}
  1248. if protoimpl.UnsafeEnabled {
  1249. mi := &file_orderCenter_proto_msgTypes[20]
  1250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1251. ms.StoreMessageInfo(mi)
  1252. }
  1253. }
  1254. func (x *Pay) String() string {
  1255. return protoimpl.X.MessageStringOf(x)
  1256. }
  1257. func (*Pay) ProtoMessage() {}
  1258. func (x *Pay) ProtoReflect() protoreflect.Message {
  1259. mi := &file_orderCenter_proto_msgTypes[20]
  1260. if protoimpl.UnsafeEnabled && x != nil {
  1261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1262. if ms.LoadMessageInfo() == nil {
  1263. ms.StoreMessageInfo(mi)
  1264. }
  1265. return ms
  1266. }
  1267. return mi.MessageOf(x)
  1268. }
  1269. // Deprecated: Use Pay.ProtoReflect.Descriptor instead.
  1270. func (*Pay) Descriptor() ([]byte, []int) {
  1271. return file_orderCenter_proto_rawDescGZIP(), []int{20}
  1272. }
  1273. func (x *Pay) GetPayWay() string {
  1274. if x != nil {
  1275. return x.PayWay
  1276. }
  1277. return ""
  1278. }
  1279. func (x *Pay) GetPayMoney() int64 {
  1280. if x != nil {
  1281. return x.PayMoney
  1282. }
  1283. return 0
  1284. }
  1285. func (x *Pay) GetPayCode() string {
  1286. if x != nil {
  1287. return x.PayCode
  1288. }
  1289. return ""
  1290. }
  1291. func (x *Pay) GetPayVoucherUrl() string {
  1292. if x != nil {
  1293. return x.PayVoucherUrl
  1294. }
  1295. return ""
  1296. }
  1297. func (x *Pay) GetPayAccount() string {
  1298. if x != nil {
  1299. return x.PayAccount
  1300. }
  1301. return ""
  1302. }
  1303. func (x *Pay) GetPayName() string {
  1304. if x != nil {
  1305. return x.PayName
  1306. }
  1307. return ""
  1308. }
  1309. func (x *Pay) GetCollectAccount() string {
  1310. if x != nil {
  1311. return x.CollectAccount
  1312. }
  1313. return ""
  1314. }
  1315. func (x *Pay) GetCollectName() string {
  1316. if x != nil {
  1317. return x.CollectName
  1318. }
  1319. return ""
  1320. }
  1321. func (x *Pay) GetOperatePerson() string {
  1322. if x != nil {
  1323. return x.OperatePerson
  1324. }
  1325. return ""
  1326. }
  1327. func (x *Pay) GetOperateTime() string {
  1328. if x != nil {
  1329. return x.OperateTime
  1330. }
  1331. return ""
  1332. }
  1333. func (x *Pay) GetRemark() string {
  1334. if x != nil {
  1335. return x.Remark
  1336. }
  1337. return ""
  1338. }
  1339. func (x *Pay) GetPrepayTime() string {
  1340. if x != nil {
  1341. return x.PrepayTime
  1342. }
  1343. return ""
  1344. }
  1345. func (x *Pay) GetPrepayId() string {
  1346. if x != nil {
  1347. return x.PrepayId
  1348. }
  1349. return ""
  1350. }
  1351. func (x *Pay) GetOutTradeNo() string {
  1352. if x != nil {
  1353. return x.OutTradeNo
  1354. }
  1355. return ""
  1356. }
  1357. func (x *Pay) GetCodeUrl() string {
  1358. if x != nil {
  1359. return x.CodeUrl
  1360. }
  1361. return ""
  1362. }
  1363. func (x *Pay) GetOriginPrice() int64 {
  1364. if x != nil {
  1365. return x.OriginPrice
  1366. }
  1367. return 0
  1368. }
  1369. func (x *Pay) GetPointsDeductCount() int64 {
  1370. if x != nil {
  1371. return x.PointsDeductCount
  1372. }
  1373. return 0
  1374. }
  1375. func (x *Pay) GetPointsDeductAmount() int64 {
  1376. if x != nil {
  1377. return x.PointsDeductAmount
  1378. }
  1379. return 0
  1380. }
  1381. func (x *Pay) GetCardCount() int64 {
  1382. if x != nil {
  1383. return x.CardCount
  1384. }
  1385. return 0
  1386. }
  1387. func (x *Pay) GetCardAmount() int64 {
  1388. if x != nil {
  1389. return x.CardAmount
  1390. }
  1391. return 0
  1392. }
  1393. func (x *Pay) GetPayTime() string {
  1394. if x != nil {
  1395. return x.PayTime
  1396. }
  1397. return ""
  1398. }
  1399. type PayInfoResp struct {
  1400. state protoimpl.MessageState
  1401. sizeCache protoimpl.SizeCache
  1402. unknownFields protoimpl.UnknownFields
  1403. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1404. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1405. Data []*Pay `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1406. }
  1407. func (x *PayInfoResp) Reset() {
  1408. *x = PayInfoResp{}
  1409. if protoimpl.UnsafeEnabled {
  1410. mi := &file_orderCenter_proto_msgTypes[21]
  1411. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1412. ms.StoreMessageInfo(mi)
  1413. }
  1414. }
  1415. func (x *PayInfoResp) String() string {
  1416. return protoimpl.X.MessageStringOf(x)
  1417. }
  1418. func (*PayInfoResp) ProtoMessage() {}
  1419. func (x *PayInfoResp) ProtoReflect() protoreflect.Message {
  1420. mi := &file_orderCenter_proto_msgTypes[21]
  1421. if protoimpl.UnsafeEnabled && x != nil {
  1422. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1423. if ms.LoadMessageInfo() == nil {
  1424. ms.StoreMessageInfo(mi)
  1425. }
  1426. return ms
  1427. }
  1428. return mi.MessageOf(x)
  1429. }
  1430. // Deprecated: Use PayInfoResp.ProtoReflect.Descriptor instead.
  1431. func (*PayInfoResp) Descriptor() ([]byte, []int) {
  1432. return file_orderCenter_proto_rawDescGZIP(), []int{21}
  1433. }
  1434. func (x *PayInfoResp) GetErrorCode() int64 {
  1435. if x != nil {
  1436. return x.ErrorCode
  1437. }
  1438. return 0
  1439. }
  1440. func (x *PayInfoResp) GetErrorMsg() string {
  1441. if x != nil {
  1442. return x.ErrorMsg
  1443. }
  1444. return ""
  1445. }
  1446. func (x *PayInfoResp) GetData() []*Pay {
  1447. if x != nil {
  1448. return x.Data
  1449. }
  1450. return nil
  1451. }
  1452. type RefundAddReq struct {
  1453. state protoimpl.MessageState
  1454. sizeCache protoimpl.SizeCache
  1455. unknownFields protoimpl.UnknownFields
  1456. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1457. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1458. RefundStatus int64 `protobuf:"varint,3,opt,name=refund_status,json=refundStatus,proto3" json:"refund_status,omitempty"` //1-全额退款 2-部分退款
  1459. Refund *Refund `protobuf:"bytes,4,opt,name=refund,proto3" json:"refund,omitempty"`
  1460. }
  1461. func (x *RefundAddReq) Reset() {
  1462. *x = RefundAddReq{}
  1463. if protoimpl.UnsafeEnabled {
  1464. mi := &file_orderCenter_proto_msgTypes[22]
  1465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1466. ms.StoreMessageInfo(mi)
  1467. }
  1468. }
  1469. func (x *RefundAddReq) String() string {
  1470. return protoimpl.X.MessageStringOf(x)
  1471. }
  1472. func (*RefundAddReq) ProtoMessage() {}
  1473. func (x *RefundAddReq) ProtoReflect() protoreflect.Message {
  1474. mi := &file_orderCenter_proto_msgTypes[22]
  1475. if protoimpl.UnsafeEnabled && x != nil {
  1476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1477. if ms.LoadMessageInfo() == nil {
  1478. ms.StoreMessageInfo(mi)
  1479. }
  1480. return ms
  1481. }
  1482. return mi.MessageOf(x)
  1483. }
  1484. // Deprecated: Use RefundAddReq.ProtoReflect.Descriptor instead.
  1485. func (*RefundAddReq) Descriptor() ([]byte, []int) {
  1486. return file_orderCenter_proto_rawDescGZIP(), []int{22}
  1487. }
  1488. func (x *RefundAddReq) GetAppid() string {
  1489. if x != nil {
  1490. return x.Appid
  1491. }
  1492. return ""
  1493. }
  1494. func (x *RefundAddReq) GetOrderCode() string {
  1495. if x != nil {
  1496. return x.OrderCode
  1497. }
  1498. return ""
  1499. }
  1500. func (x *RefundAddReq) GetRefundStatus() int64 {
  1501. if x != nil {
  1502. return x.RefundStatus
  1503. }
  1504. return 0
  1505. }
  1506. func (x *RefundAddReq) GetRefund() *Refund {
  1507. if x != nil {
  1508. return x.Refund
  1509. }
  1510. return nil
  1511. }
  1512. type Refund struct {
  1513. state protoimpl.MessageState
  1514. sizeCache protoimpl.SizeCache
  1515. unknownFields protoimpl.UnknownFields
  1516. RefundMoney int64 `protobuf:"varint,1,opt,name=refund_money,json=refundMoney,proto3" json:"refund_money,omitempty"`
  1517. RefundReason string `protobuf:"bytes,2,opt,name=refund_reason,json=refundReason,proto3" json:"refund_reason,omitempty"`
  1518. OperatePerson string `protobuf:"bytes,3,opt,name=operate_person,json=operatePerson,proto3" json:"operate_person,omitempty"`
  1519. RefundChannel string `protobuf:"bytes,4,opt,name=refund_channel,json=refundChannel,proto3" json:"refund_channel,omitempty"`
  1520. }
  1521. func (x *Refund) Reset() {
  1522. *x = Refund{}
  1523. if protoimpl.UnsafeEnabled {
  1524. mi := &file_orderCenter_proto_msgTypes[23]
  1525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1526. ms.StoreMessageInfo(mi)
  1527. }
  1528. }
  1529. func (x *Refund) String() string {
  1530. return protoimpl.X.MessageStringOf(x)
  1531. }
  1532. func (*Refund) ProtoMessage() {}
  1533. func (x *Refund) ProtoReflect() protoreflect.Message {
  1534. mi := &file_orderCenter_proto_msgTypes[23]
  1535. if protoimpl.UnsafeEnabled && x != nil {
  1536. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1537. if ms.LoadMessageInfo() == nil {
  1538. ms.StoreMessageInfo(mi)
  1539. }
  1540. return ms
  1541. }
  1542. return mi.MessageOf(x)
  1543. }
  1544. // Deprecated: Use Refund.ProtoReflect.Descriptor instead.
  1545. func (*Refund) Descriptor() ([]byte, []int) {
  1546. return file_orderCenter_proto_rawDescGZIP(), []int{23}
  1547. }
  1548. func (x *Refund) GetRefundMoney() int64 {
  1549. if x != nil {
  1550. return x.RefundMoney
  1551. }
  1552. return 0
  1553. }
  1554. func (x *Refund) GetRefundReason() string {
  1555. if x != nil {
  1556. return x.RefundReason
  1557. }
  1558. return ""
  1559. }
  1560. func (x *Refund) GetOperatePerson() string {
  1561. if x != nil {
  1562. return x.OperatePerson
  1563. }
  1564. return ""
  1565. }
  1566. func (x *Refund) GetRefundChannel() string {
  1567. if x != nil {
  1568. return x.RefundChannel
  1569. }
  1570. return ""
  1571. }
  1572. type RefundInfoResp struct {
  1573. state protoimpl.MessageState
  1574. sizeCache protoimpl.SizeCache
  1575. unknownFields protoimpl.UnknownFields
  1576. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1577. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1578. Data []*Refund `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1579. }
  1580. func (x *RefundInfoResp) Reset() {
  1581. *x = RefundInfoResp{}
  1582. if protoimpl.UnsafeEnabled {
  1583. mi := &file_orderCenter_proto_msgTypes[24]
  1584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1585. ms.StoreMessageInfo(mi)
  1586. }
  1587. }
  1588. func (x *RefundInfoResp) String() string {
  1589. return protoimpl.X.MessageStringOf(x)
  1590. }
  1591. func (*RefundInfoResp) ProtoMessage() {}
  1592. func (x *RefundInfoResp) ProtoReflect() protoreflect.Message {
  1593. mi := &file_orderCenter_proto_msgTypes[24]
  1594. if protoimpl.UnsafeEnabled && x != nil {
  1595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1596. if ms.LoadMessageInfo() == nil {
  1597. ms.StoreMessageInfo(mi)
  1598. }
  1599. return ms
  1600. }
  1601. return mi.MessageOf(x)
  1602. }
  1603. // Deprecated: Use RefundInfoResp.ProtoReflect.Descriptor instead.
  1604. func (*RefundInfoResp) Descriptor() ([]byte, []int) {
  1605. return file_orderCenter_proto_rawDescGZIP(), []int{24}
  1606. }
  1607. func (x *RefundInfoResp) GetErrorCode() int64 {
  1608. if x != nil {
  1609. return x.ErrorCode
  1610. }
  1611. return 0
  1612. }
  1613. func (x *RefundInfoResp) GetErrorMsg() string {
  1614. if x != nil {
  1615. return x.ErrorMsg
  1616. }
  1617. return ""
  1618. }
  1619. func (x *RefundInfoResp) GetData() []*Refund {
  1620. if x != nil {
  1621. return x.Data
  1622. }
  1623. return nil
  1624. }
  1625. type InvoiceAddReq struct {
  1626. state protoimpl.MessageState
  1627. sizeCache protoimpl.SizeCache
  1628. unknownFields protoimpl.UnknownFields
  1629. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1630. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1631. Invoice *Invoice `protobuf:"bytes,3,opt,name=invoice,proto3" json:"invoice,omitempty"`
  1632. }
  1633. func (x *InvoiceAddReq) Reset() {
  1634. *x = InvoiceAddReq{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_orderCenter_proto_msgTypes[25]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *InvoiceAddReq) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*InvoiceAddReq) ProtoMessage() {}
  1645. func (x *InvoiceAddReq) ProtoReflect() protoreflect.Message {
  1646. mi := &file_orderCenter_proto_msgTypes[25]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use InvoiceAddReq.ProtoReflect.Descriptor instead.
  1657. func (*InvoiceAddReq) Descriptor() ([]byte, []int) {
  1658. return file_orderCenter_proto_rawDescGZIP(), []int{25}
  1659. }
  1660. func (x *InvoiceAddReq) GetAppid() string {
  1661. if x != nil {
  1662. return x.Appid
  1663. }
  1664. return ""
  1665. }
  1666. func (x *InvoiceAddReq) GetOrderCode() string {
  1667. if x != nil {
  1668. return x.OrderCode
  1669. }
  1670. return ""
  1671. }
  1672. func (x *InvoiceAddReq) GetInvoice() *Invoice {
  1673. if x != nil {
  1674. return x.Invoice
  1675. }
  1676. return nil
  1677. }
  1678. type Invoice struct {
  1679. state protoimpl.MessageState
  1680. sizeCache protoimpl.SizeCache
  1681. unknownFields protoimpl.UnknownFields
  1682. PayId int64 `protobuf:"varint,1,opt,name=pay_id,json=payId,proto3" json:"pay_id,omitempty"`
  1683. InvoiceCode string `protobuf:"bytes,2,opt,name=invoice_code,json=invoiceCode,proto3" json:"invoice_code,omitempty"`
  1684. InvoiceNumber string `protobuf:"bytes,3,opt,name=invoice_number,json=invoiceNumber,proto3" json:"invoice_number,omitempty"`
  1685. TaxpayerIdentnum string `protobuf:"bytes,4,opt,name=taxpayer_identnum,json=taxpayerIdentnum,proto3" json:"taxpayer_identnum,omitempty"`
  1686. CompanyName string `protobuf:"bytes,5,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
  1687. Phone string `protobuf:"bytes,6,opt,name=phone,proto3" json:"phone,omitempty"`
  1688. Mail string `protobuf:"bytes,7,opt,name=mail,proto3" json:"mail,omitempty"`
  1689. InvoiceType string `protobuf:"bytes,8,opt,name=invoice_type,json=invoiceType,proto3" json:"invoice_type,omitempty"`
  1690. InvoiceContent string `protobuf:"bytes,9,opt,name=invoice_content,json=invoiceContent,proto3" json:"invoice_content,omitempty"`
  1691. Url string `protobuf:"bytes,10,opt,name=url,proto3" json:"url,omitempty"`
  1692. InvoiceStatus int64 `protobuf:"varint,11,opt,name=invoice_status,json=invoiceStatus,proto3" json:"invoice_status,omitempty"` //-1-失败 0-开票中 1-成功 2-退票中 3-已冲红 4-退票失败 5-已换票
  1693. InvoiceSerialnum string `protobuf:"bytes,12,opt,name=invoice_serialnum,json=invoiceSerialnum,proto3" json:"invoice_serialnum,omitempty"`
  1694. CreateTime string `protobuf:"bytes,13,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  1695. BillingTime string `protobuf:"bytes,14,opt,name=billing_time,json=billingTime,proto3" json:"billing_time,omitempty"`
  1696. UserId string `protobuf:"bytes,15,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1697. Operator string `protobuf:"bytes,16,opt,name=operator,proto3" json:"operator,omitempty"`
  1698. OperableTime string `protobuf:"bytes,17,opt,name=operable_time,json=operableTime,proto3" json:"operable_time,omitempty"`
  1699. Red string `protobuf:"bytes,18,opt,name=red,proto3" json:"red,omitempty"`
  1700. }
  1701. func (x *Invoice) Reset() {
  1702. *x = Invoice{}
  1703. if protoimpl.UnsafeEnabled {
  1704. mi := &file_orderCenter_proto_msgTypes[26]
  1705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1706. ms.StoreMessageInfo(mi)
  1707. }
  1708. }
  1709. func (x *Invoice) String() string {
  1710. return protoimpl.X.MessageStringOf(x)
  1711. }
  1712. func (*Invoice) ProtoMessage() {}
  1713. func (x *Invoice) ProtoReflect() protoreflect.Message {
  1714. mi := &file_orderCenter_proto_msgTypes[26]
  1715. if protoimpl.UnsafeEnabled && x != nil {
  1716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1717. if ms.LoadMessageInfo() == nil {
  1718. ms.StoreMessageInfo(mi)
  1719. }
  1720. return ms
  1721. }
  1722. return mi.MessageOf(x)
  1723. }
  1724. // Deprecated: Use Invoice.ProtoReflect.Descriptor instead.
  1725. func (*Invoice) Descriptor() ([]byte, []int) {
  1726. return file_orderCenter_proto_rawDescGZIP(), []int{26}
  1727. }
  1728. func (x *Invoice) GetPayId() int64 {
  1729. if x != nil {
  1730. return x.PayId
  1731. }
  1732. return 0
  1733. }
  1734. func (x *Invoice) GetInvoiceCode() string {
  1735. if x != nil {
  1736. return x.InvoiceCode
  1737. }
  1738. return ""
  1739. }
  1740. func (x *Invoice) GetInvoiceNumber() string {
  1741. if x != nil {
  1742. return x.InvoiceNumber
  1743. }
  1744. return ""
  1745. }
  1746. func (x *Invoice) GetTaxpayerIdentnum() string {
  1747. if x != nil {
  1748. return x.TaxpayerIdentnum
  1749. }
  1750. return ""
  1751. }
  1752. func (x *Invoice) GetCompanyName() string {
  1753. if x != nil {
  1754. return x.CompanyName
  1755. }
  1756. return ""
  1757. }
  1758. func (x *Invoice) GetPhone() string {
  1759. if x != nil {
  1760. return x.Phone
  1761. }
  1762. return ""
  1763. }
  1764. func (x *Invoice) GetMail() string {
  1765. if x != nil {
  1766. return x.Mail
  1767. }
  1768. return ""
  1769. }
  1770. func (x *Invoice) GetInvoiceType() string {
  1771. if x != nil {
  1772. return x.InvoiceType
  1773. }
  1774. return ""
  1775. }
  1776. func (x *Invoice) GetInvoiceContent() string {
  1777. if x != nil {
  1778. return x.InvoiceContent
  1779. }
  1780. return ""
  1781. }
  1782. func (x *Invoice) GetUrl() string {
  1783. if x != nil {
  1784. return x.Url
  1785. }
  1786. return ""
  1787. }
  1788. func (x *Invoice) GetInvoiceStatus() int64 {
  1789. if x != nil {
  1790. return x.InvoiceStatus
  1791. }
  1792. return 0
  1793. }
  1794. func (x *Invoice) GetInvoiceSerialnum() string {
  1795. if x != nil {
  1796. return x.InvoiceSerialnum
  1797. }
  1798. return ""
  1799. }
  1800. func (x *Invoice) GetCreateTime() string {
  1801. if x != nil {
  1802. return x.CreateTime
  1803. }
  1804. return ""
  1805. }
  1806. func (x *Invoice) GetBillingTime() string {
  1807. if x != nil {
  1808. return x.BillingTime
  1809. }
  1810. return ""
  1811. }
  1812. func (x *Invoice) GetUserId() string {
  1813. if x != nil {
  1814. return x.UserId
  1815. }
  1816. return ""
  1817. }
  1818. func (x *Invoice) GetOperator() string {
  1819. if x != nil {
  1820. return x.Operator
  1821. }
  1822. return ""
  1823. }
  1824. func (x *Invoice) GetOperableTime() string {
  1825. if x != nil {
  1826. return x.OperableTime
  1827. }
  1828. return ""
  1829. }
  1830. func (x *Invoice) GetRed() string {
  1831. if x != nil {
  1832. return x.Red
  1833. }
  1834. return ""
  1835. }
  1836. type InvoiceInfoResp struct {
  1837. state protoimpl.MessageState
  1838. sizeCache protoimpl.SizeCache
  1839. unknownFields protoimpl.UnknownFields
  1840. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1841. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1842. Data *Invoice `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1843. }
  1844. func (x *InvoiceInfoResp) Reset() {
  1845. *x = InvoiceInfoResp{}
  1846. if protoimpl.UnsafeEnabled {
  1847. mi := &file_orderCenter_proto_msgTypes[27]
  1848. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1849. ms.StoreMessageInfo(mi)
  1850. }
  1851. }
  1852. func (x *InvoiceInfoResp) String() string {
  1853. return protoimpl.X.MessageStringOf(x)
  1854. }
  1855. func (*InvoiceInfoResp) ProtoMessage() {}
  1856. func (x *InvoiceInfoResp) ProtoReflect() protoreflect.Message {
  1857. mi := &file_orderCenter_proto_msgTypes[27]
  1858. if protoimpl.UnsafeEnabled && x != nil {
  1859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1860. if ms.LoadMessageInfo() == nil {
  1861. ms.StoreMessageInfo(mi)
  1862. }
  1863. return ms
  1864. }
  1865. return mi.MessageOf(x)
  1866. }
  1867. // Deprecated: Use InvoiceInfoResp.ProtoReflect.Descriptor instead.
  1868. func (*InvoiceInfoResp) Descriptor() ([]byte, []int) {
  1869. return file_orderCenter_proto_rawDescGZIP(), []int{27}
  1870. }
  1871. func (x *InvoiceInfoResp) GetErrorCode() int64 {
  1872. if x != nil {
  1873. return x.ErrorCode
  1874. }
  1875. return 0
  1876. }
  1877. func (x *InvoiceInfoResp) GetErrorMsg() string {
  1878. if x != nil {
  1879. return x.ErrorMsg
  1880. }
  1881. return ""
  1882. }
  1883. func (x *InvoiceInfoResp) GetData() *Invoice {
  1884. if x != nil {
  1885. return x.Data
  1886. }
  1887. return nil
  1888. }
  1889. type InvoiceInfoReq struct {
  1890. state protoimpl.MessageState
  1891. sizeCache protoimpl.SizeCache
  1892. unknownFields protoimpl.UnknownFields
  1893. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1894. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1895. PayId string `protobuf:"bytes,3,opt,name=pay_id,json=payId,proto3" json:"pay_id,omitempty"`
  1896. }
  1897. func (x *InvoiceInfoReq) Reset() {
  1898. *x = InvoiceInfoReq{}
  1899. if protoimpl.UnsafeEnabled {
  1900. mi := &file_orderCenter_proto_msgTypes[28]
  1901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1902. ms.StoreMessageInfo(mi)
  1903. }
  1904. }
  1905. func (x *InvoiceInfoReq) String() string {
  1906. return protoimpl.X.MessageStringOf(x)
  1907. }
  1908. func (*InvoiceInfoReq) ProtoMessage() {}
  1909. func (x *InvoiceInfoReq) ProtoReflect() protoreflect.Message {
  1910. mi := &file_orderCenter_proto_msgTypes[28]
  1911. if protoimpl.UnsafeEnabled && x != nil {
  1912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1913. if ms.LoadMessageInfo() == nil {
  1914. ms.StoreMessageInfo(mi)
  1915. }
  1916. return ms
  1917. }
  1918. return mi.MessageOf(x)
  1919. }
  1920. // Deprecated: Use InvoiceInfoReq.ProtoReflect.Descriptor instead.
  1921. func (*InvoiceInfoReq) Descriptor() ([]byte, []int) {
  1922. return file_orderCenter_proto_rawDescGZIP(), []int{28}
  1923. }
  1924. func (x *InvoiceInfoReq) GetAppid() string {
  1925. if x != nil {
  1926. return x.Appid
  1927. }
  1928. return ""
  1929. }
  1930. func (x *InvoiceInfoReq) GetOrderCode() string {
  1931. if x != nil {
  1932. return x.OrderCode
  1933. }
  1934. return ""
  1935. }
  1936. func (x *InvoiceInfoReq) GetPayId() string {
  1937. if x != nil {
  1938. return x.PayId
  1939. }
  1940. return ""
  1941. }
  1942. var File_orderCenter_proto protoreflect.FileDescriptor
  1943. var file_orderCenter_proto_rawDesc = []byte{
  1944. 0x0a, 0x11, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72,
  1945. 0x6f, 0x74, 0x6f, 0x22, 0x27, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43,
  1946. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18,
  1947. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x6e, 0x0a, 0x10,
  1948. 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  1949. 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  1950. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  1951. 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  1952. 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04,
  1953. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x4f, 0x72, 0x64,
  1954. 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2a, 0x0a, 0x09,
  1955. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64,
  1956. 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  1957. 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x88, 0x02, 0x0a, 0x11, 0x4f, 0x72, 0x64,
  1958. 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14,
  1959. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  1960. 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f,
  1961. 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43,
  1962. 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  1963. 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65,
  1964. 0x72, 0x12, 0x2f, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  1965. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45,
  1966. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65,
  1967. 0x6e, 0x64, 0x12, 0x38, 0x0a, 0x0f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6d, 0x6d,
  1968. 0x6f, 0x64, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x4f, 0x72,
  1969. 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x52, 0x0e, 0x6f, 0x72,
  1970. 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x12, 0x35, 0x0a, 0x0e,
  1971. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x06,
  1972. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69,
  1973. 0x6e, 0x65, 0x73, 0x73, 0x52, 0x0d, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69, 0x6e,
  1974. 0x65, 0x73, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61,
  1975. 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05,
  1976. 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  1977. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1978. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64,
  1979. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
  1980. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x21,
  1981. 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04,
  1982. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
  1983. 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6f,
  1984. 0x72, 0x64, 0x65, 0x72, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1985. 0x52, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x0e,
  1986. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02,
  1987. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x50, 0x72,
  1988. 0x69, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69,
  1989. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1990. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74,
  1991. 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65,
  1992. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
  1993. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1994. 0x12, 0x15, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  1995. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0xcc, 0x01, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65,
  1996. 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x74,
  1997. 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x79,
  1998. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
  1999. 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x69,
  2000. 0x73, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x69,
  2001. 0x73, 0x57, 0x6f, 0x72, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x69,
  2002. 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x69, 0x73,
  2003. 0x63, 0x61, 0x6e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x73,
  2004. 0x63, 0x61, 0x6e, 0x5f, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01,
  2005. 0x28, 0x03, 0x52, 0x0d, 0x69, 0x73, 0x63, 0x61, 0x6e, 0x45, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74,
  2006. 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74,
  2007. 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  2008. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2009. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x6f, 0x6f,
  2010. 0x64, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67,
  2011. 0x6f, 0x6f, 0x64, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6f, 0x6f, 0x64,
  2012. 0x73, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2013. 0x0b, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x53, 0x70, 0x65, 0x63, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  2014. 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14,
  2015. 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70,
  2016. 0x72, 0x69, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20,
  2017. 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  2018. 0x67, 0x69, 0x66, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x67, 0x69,
  2019. 0x66, 0x74, 0x22, 0x9f, 0x03, 0x0a, 0x0d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69,
  2020. 0x6e, 0x65, 0x73, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f,
  2021. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x73, 0x65,
  2022. 0x72, 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x66,
  2023. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c,
  2024. 0x74, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x6b, 0x65,
  2025. 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  2026. 0x4b, 0x65, 0x79, 0x73, 0x12, 0x2d, 0x0a, 0x12, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70,
  2027. 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2028. 0x52, 0x11, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x74,
  2029. 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74,
  2030. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69,
  2031. 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63,
  2032. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61,
  2033. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f,
  2034. 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  2035. 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x75,
  2036. 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
  2037. 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x63,
  2038. 0x6f, 0x64, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x6f, 0x6f, 0x64, 0x73,
  2039. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x70,
  2040. 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x67, 0x6f, 0x6f,
  2041. 0x64, 0x73, 0x53, 0x70, 0x65, 0x63, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
  2042. 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x73,
  2043. 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f,
  2044. 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
  2045. 0x4d, 0x61, 0x69, 0x6c, 0x22, 0x42, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x6c,
  2046. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2047. 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64,
  2048. 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  2049. 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x71, 0x0a, 0x12, 0x4f, 0x72, 0x64, 0x65,
  2050. 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d,
  2051. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2052. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  2053. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2054. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61,
  2055. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53,
  2056. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x24, 0x0a, 0x0a, 0x44,
  2057. 0x61, 0x74, 0x61, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  2058. 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  2059. 0x73, 0x22, 0xb7, 0x01, 0x0a, 0x0c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2060. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2061. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
  2062. 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2063. 0x64, 0x12, 0x1e, 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
  2064. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
  2065. 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x6e, 0x65, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
  2066. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72,
  2067. 0x49, 0x64, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x18,
  2068. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1b,
  2069. 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  2070. 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x6b, 0x0a, 0x0d, 0x4f,
  2071. 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  2072. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2073. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  2074. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2075. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2076. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  2077. 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x9e, 0x02, 0x0a, 0x0a, 0x4f, 0x72, 0x64,
  2078. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  2079. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a,
  2080. 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2081. 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  2082. 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2083. 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x6f, 0x72, 0x64,
  2084. 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2085. 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72,
  2086. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e,
  2087. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x52, 0x0b, 0x6f, 0x72, 0x64,
  2088. 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x12, 0x38, 0x0a, 0x0f, 0x6f, 0x72, 0x64, 0x65,
  2089. 0x72, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28,
  2090. 0x0b, 0x32, 0x0f, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69,
  2091. 0x74, 0x79, 0x52, 0x0e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69,
  2092. 0x74, 0x79, 0x12, 0x35, 0x0a, 0x0e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x75, 0x73, 0x69,
  2093. 0x6e, 0x65, 0x73, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x4f, 0x72, 0x64,
  2094. 0x65, 0x72, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x0d, 0x6f, 0x72, 0x64, 0x65,
  2095. 0x72, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x22, 0x4d, 0x0a, 0x09, 0x4f, 0x72, 0x64,
  2096. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
  2097. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x4f, 0x72, 0x64,
  2098. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  2099. 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  2100. 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x60, 0x0a, 0x0c, 0x4f, 0x72, 0x64, 0x65,
  2101. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69,
  2102. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d,
  2103. 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
  2104. 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  2105. 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2106. 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x22, 0x6b, 0x0a, 0x0d, 0x4f, 0x72,
  2107. 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  2108. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2109. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  2110. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  2111. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2112. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66,
  2113. 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3e, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2114. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x31, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e,
  2115. 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2116. 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x52, 0x09, 0x6f, 0x72,
  2117. 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x58, 0x0a, 0x09, 0x50, 0x61, 0x79, 0x41, 0x64,
  2118. 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20,
  2119. 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72,
  2120. 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2121. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x03, 0x70, 0x61, 0x79,
  2122. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x04, 0x2e, 0x50, 0x61, 0x79, 0x52, 0x03, 0x70, 0x61,
  2123. 0x79, 0x22, 0xc3, 0x05, 0x0a, 0x03, 0x50, 0x61, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x61, 0x79,
  2124. 0x5f, 0x77, 0x61, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x79, 0x57,
  2125. 0x61, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  2126. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x79, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12,
  2127. 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2128. 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x61,
  2129. 0x79, 0x5f, 0x76, 0x6f, 0x75, 0x63, 0x68, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20,
  2130. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x70, 0x61, 0x79, 0x56, 0x6f, 0x75, 0x63, 0x68, 0x65, 0x72, 0x55,
  2131. 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  2132. 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x79, 0x41, 0x63, 0x63, 0x6f,
  2133. 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2134. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27,
  2135. 0x0a, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  2136. 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  2137. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  2138. 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63,
  2139. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70,
  2140. 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01,
  2141. 0x28, 0x09, 0x52, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2142. 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  2143. 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65,
  2144. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b,
  2145. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1f, 0x0a, 0x0b,
  2146. 0x70, 0x72, 0x65, 0x70, 0x61, 0x79, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
  2147. 0x09, 0x52, 0x0a, 0x70, 0x72, 0x65, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a,
  2148. 0x09, 0x70, 0x72, 0x65, 0x70, 0x61, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  2149. 0x52, 0x08, 0x70, 0x72, 0x65, 0x70, 0x61, 0x79, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x6f, 0x75,
  2150. 0x74, 0x5f, 0x74, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x6e, 0x6f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09,
  2151. 0x52, 0x0a, 0x6f, 0x75, 0x74, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x12, 0x19, 0x0a, 0x08,
  2152. 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2153. 0x63, 0x6f, 0x64, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x72, 0x69, 0x67, 0x69,
  2154. 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f,
  2155. 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x6f,
  2156. 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x64, 0x65, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e,
  2157. 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x44,
  2158. 0x65, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x6f,
  2159. 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x64, 0x65, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75,
  2160. 0x6e, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
  2161. 0x44, 0x65, 0x64, 0x75, 0x63, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a,
  2162. 0x63, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03,
  2163. 0x52, 0x09, 0x63, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63,
  2164. 0x61, 0x72, 0x64, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03,
  2165. 0x52, 0x0a, 0x63, 0x61, 0x72, 0x64, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08,
  2166. 0x70, 0x61, 0x79, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2167. 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x63, 0x0a, 0x0b, 0x50, 0x61, 0x79, 0x49, 0x6e,
  2168. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
  2169. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f,
  2170. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d,
  2171. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d,
  2172. 0x73, 0x67, 0x12, 0x18, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
  2173. 0x32, 0x04, 0x2e, 0x50, 0x61, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x89, 0x01, 0x0a,
  2174. 0x0c, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
  2175. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
  2176. 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  2177. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f,
  2178. 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61,
  2179. 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x66, 0x75, 0x6e,
  2180. 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x0a, 0x06, 0x72, 0x65, 0x66, 0x75, 0x6e,
  2181. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64,
  2182. 0x52, 0x06, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x22, 0x9e, 0x01, 0x0a, 0x06, 0x52, 0x65, 0x66,
  2183. 0x75, 0x6e, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x6d, 0x6f,
  2184. 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x66, 0x75, 0x6e,
  2185. 0x64, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64,
  2186. 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72,
  2187. 0x65, 0x66, 0x75, 0x6e, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x6f,
  2188. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x03, 0x20,
  2189. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
  2190. 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x63, 0x68, 0x61,
  2191. 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x66, 0x75,
  2192. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x22, 0x69, 0x0a, 0x0e, 0x52, 0x65, 0x66,
  2193. 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  2194. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2195. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  2196. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  2197. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2198. 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x52, 0x04,
  2199. 0x64, 0x61, 0x74, 0x61, 0x22, 0x68, 0x0a, 0x0d, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41,
  2200. 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01,
  2201. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f,
  2202. 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2203. 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x69, 0x6e,
  2204. 0x76, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x49, 0x6e,
  2205. 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x07, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x22, 0xc6,
  2206. 0x04, 0x0a, 0x07, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x61,
  2207. 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x61, 0x79, 0x49,
  2208. 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64,
  2209. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
  2210. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f,
  2211. 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e,
  2212. 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2b, 0x0a, 0x11, 0x74,
  2213. 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x6e, 0x75, 0x6d,
  2214. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x74, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72,
  2215. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x6e, 0x75, 0x6d, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70,
  2216. 0x61, 0x6e, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2217. 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70,
  2218. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  2219. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  2220. 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
  2221. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76,
  2222. 0x6f, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x76, 0x6f,
  2223. 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28,
  2224. 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  2225. 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2226. 0x75, 0x72, 0x6c, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x73,
  2227. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x69, 0x6e, 0x76,
  2228. 0x6f, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e,
  2229. 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x6e, 0x75, 0x6d, 0x18,
  2230. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x53, 0x65,
  2231. 0x72, 0x69, 0x61, 0x6c, 0x6e, 0x75, 0x6d, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74,
  2232. 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72,
  2233. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x69, 0x6c, 0x6c,
  2234. 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2235. 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75,
  2236. 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
  2237. 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  2238. 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  2239. 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  2240. 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x62, 0x6c,
  2241. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x64, 0x18, 0x12, 0x20, 0x01,
  2242. 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x64, 0x22, 0x6b, 0x0a, 0x0f, 0x49, 0x6e, 0x76, 0x6f, 0x69,
  2243. 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  2244. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2245. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  2246. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  2247. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  2248. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x04,
  2249. 0x64, 0x61, 0x74, 0x61, 0x22, 0x5c, 0x0a, 0x0e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49,
  2250. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18,
  2251. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a,
  2252. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2253. 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70,
  2254. 0x61, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x61, 0x79,
  2255. 0x49, 0x64, 0x32, 0xeb, 0x05, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74,
  2256. 0x65, 0x72, 0x12, 0x33, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f,
  2257. 0x64, 0x65, 0x12, 0x10, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64,
  2258. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43,
  2259. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2260. 0x41, 0x64, 0x64, 0x12, 0x12, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70,
  2261. 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41,
  2262. 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x0b,
  2263. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x12, 0x2e, 0x4f, 0x72,
  2264. 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a,
  2265. 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2266. 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61,
  2267. 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x15, 0x2e, 0x4f, 0x72, 0x64, 0x65,
  2268. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
  2269. 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74,
  2270. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65,
  2271. 0x6c, 0x12, 0x0c, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x1a,
  2272. 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2273. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2a, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73,
  2274. 0x74, 0x12, 0x0d, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2275. 0x1a, 0x0e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
  2276. 0x12, 0x2a, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0d, 0x2e,
  2277. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x4f,
  2278. 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x06,
  2279. 0x50, 0x61, 0x79, 0x41, 0x64, 0x64, 0x12, 0x0a, 0x2e, 0x50, 0x61, 0x79, 0x41, 0x64, 0x64, 0x52,
  2280. 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64,
  2281. 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x26, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e,
  2282. 0x66, 0x6f, 0x12, 0x0d, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  2283. 0x71, 0x1a, 0x0c, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12,
  2284. 0x2f, 0x0a, 0x09, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x12, 0x0d, 0x2e, 0x52,
  2285. 0x65, 0x66, 0x75, 0x6e, 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72,
  2286. 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
  2287. 0x12, 0x2c, 0x0a, 0x0a, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0d,
  2288. 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e,
  2289. 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x31,
  2290. 0x0a, 0x0a, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0e, 0x2e, 0x49,
  2291. 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f,
  2292. 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,
  2293. 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2294. 0x12, 0x0f, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  2295. 0x71, 0x1a, 0x10, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  2296. 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x06, 0x52, 0x65, 0x64, 0x41, 0x64, 0x64, 0x12, 0x0e, 0x2e,
  2297. 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e,
  2298. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
  2299. 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x07, 0x52, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0f, 0x2e,
  2300. 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x10,
  2301. 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
  2302. 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2303. }
  2304. var (
  2305. file_orderCenter_proto_rawDescOnce sync.Once
  2306. file_orderCenter_proto_rawDescData = file_orderCenter_proto_rawDesc
  2307. )
  2308. func file_orderCenter_proto_rawDescGZIP() []byte {
  2309. file_orderCenter_proto_rawDescOnce.Do(func() {
  2310. file_orderCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_orderCenter_proto_rawDescData)
  2311. })
  2312. return file_orderCenter_proto_rawDescData
  2313. }
  2314. var file_orderCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 29)
  2315. var file_orderCenter_proto_goTypes = []interface{}{
  2316. (*GetOrderCodeReq)(nil), // 0: GetOrderCodeReq
  2317. (*GetOrderCodeResp)(nil), // 1: GetOrderCodeResp
  2318. (*OrderCode)(nil), // 2: OrderCode
  2319. (*OrderAddUpdateReq)(nil), // 3: OrderAddUpdateReq
  2320. (*OrderStatusUpdateReq)(nil), // 4: OrderStatusUpdateReq
  2321. (*Order)(nil), // 5: Order
  2322. (*OrderExtend)(nil), // 6: OrderExtend
  2323. (*OrderCommodity)(nil), // 7: OrderCommodity
  2324. (*OrderBusiness)(nil), // 8: OrderBusiness
  2325. (*OrderDelReq)(nil), // 9: OrderDelReq
  2326. (*OrderAddUpdateResp)(nil), // 10: OrderAddUpdateResp
  2327. (*DataStatus)(nil), // 11: DataStatus
  2328. (*OrderListReq)(nil), // 12: OrderListReq
  2329. (*OrderListResp)(nil), // 13: OrderListResp
  2330. (*OrderLists)(nil), // 14: OrderLists
  2331. (*OrderList)(nil), // 15: OrderList
  2332. (*OrderInfoReq)(nil), // 16: OrderInfoReq
  2333. (*OrderInfoResp)(nil), // 17: OrderInfoResp
  2334. (*OrderInfo)(nil), // 18: OrderInfo
  2335. (*PayAddReq)(nil), // 19: PayAddReq
  2336. (*Pay)(nil), // 20: Pay
  2337. (*PayInfoResp)(nil), // 21: PayInfoResp
  2338. (*RefundAddReq)(nil), // 22: RefundAddReq
  2339. (*Refund)(nil), // 23: Refund
  2340. (*RefundInfoResp)(nil), // 24: RefundInfoResp
  2341. (*InvoiceAddReq)(nil), // 25: InvoiceAddReq
  2342. (*Invoice)(nil), // 26: Invoice
  2343. (*InvoiceInfoResp)(nil), // 27: InvoiceInfoResp
  2344. (*InvoiceInfoReq)(nil), // 28: InvoiceInfoReq
  2345. }
  2346. var file_orderCenter_proto_depIdxs = []int32{
  2347. 2, // 0: GetOrderCodeResp.data:type_name -> OrderCode
  2348. 5, // 1: OrderAddUpdateReq.order:type_name -> Order
  2349. 6, // 2: OrderAddUpdateReq.order_extend:type_name -> OrderExtend
  2350. 7, // 3: OrderAddUpdateReq.order_commodity:type_name -> OrderCommodity
  2351. 8, // 4: OrderAddUpdateReq.order_business:type_name -> OrderBusiness
  2352. 11, // 5: OrderAddUpdateResp.data:type_name -> DataStatus
  2353. 15, // 6: OrderListResp.data:type_name -> OrderList
  2354. 5, // 7: OrderLists.order:type_name -> Order
  2355. 6, // 8: OrderLists.order_extend:type_name -> OrderExtend
  2356. 7, // 9: OrderLists.order_commodity:type_name -> OrderCommodity
  2357. 8, // 10: OrderLists.order_business:type_name -> OrderBusiness
  2358. 14, // 11: OrderList.order_list:type_name -> OrderLists
  2359. 18, // 12: OrderInfoResp.data:type_name -> OrderInfo
  2360. 3, // 13: OrderInfo.order_info:type_name -> OrderAddUpdateReq
  2361. 20, // 14: PayAddReq.pay:type_name -> Pay
  2362. 20, // 15: PayInfoResp.data:type_name -> Pay
  2363. 23, // 16: RefundAddReq.refund:type_name -> Refund
  2364. 23, // 17: RefundInfoResp.data:type_name -> Refund
  2365. 26, // 18: InvoiceAddReq.invoice:type_name -> Invoice
  2366. 26, // 19: InvoiceInfoResp.data:type_name -> Invoice
  2367. 0, // 20: OrderCenter.GetOrderCode:input_type -> GetOrderCodeReq
  2368. 3, // 21: OrderCenter.OrderAdd:input_type -> OrderAddUpdateReq
  2369. 3, // 22: OrderCenter.OrderUpdate:input_type -> OrderAddUpdateReq
  2370. 4, // 23: OrderCenter.OrderStatusUpdate:input_type -> OrderStatusUpdateReq
  2371. 9, // 24: OrderCenter.OrderDel:input_type -> OrderDelReq
  2372. 12, // 25: OrderCenter.OrderList:input_type -> OrderListReq
  2373. 16, // 26: OrderCenter.OrderInfo:input_type -> OrderInfoReq
  2374. 19, // 27: OrderCenter.PayAdd:input_type -> PayAddReq
  2375. 16, // 28: OrderCenter.PayInfo:input_type -> OrderInfoReq
  2376. 22, // 29: OrderCenter.RefundAdd:input_type -> RefundAddReq
  2377. 16, // 30: OrderCenter.RefundInfo:input_type -> OrderInfoReq
  2378. 25, // 31: OrderCenter.InvoiceAdd:input_type -> InvoiceAddReq
  2379. 28, // 32: OrderCenter.InvoiceInfo:input_type -> InvoiceInfoReq
  2380. 25, // 33: OrderCenter.RedAdd:input_type -> InvoiceAddReq
  2381. 28, // 34: OrderCenter.RedInfo:input_type -> InvoiceInfoReq
  2382. 1, // 35: OrderCenter.GetOrderCode:output_type -> GetOrderCodeResp
  2383. 10, // 36: OrderCenter.OrderAdd:output_type -> OrderAddUpdateResp
  2384. 10, // 37: OrderCenter.OrderUpdate:output_type -> OrderAddUpdateResp
  2385. 10, // 38: OrderCenter.OrderStatusUpdate:output_type -> OrderAddUpdateResp
  2386. 10, // 39: OrderCenter.OrderDel:output_type -> OrderAddUpdateResp
  2387. 13, // 40: OrderCenter.OrderList:output_type -> OrderListResp
  2388. 17, // 41: OrderCenter.OrderInfo:output_type -> OrderInfoResp
  2389. 10, // 42: OrderCenter.PayAdd:output_type -> OrderAddUpdateResp
  2390. 21, // 43: OrderCenter.PayInfo:output_type -> PayInfoResp
  2391. 10, // 44: OrderCenter.RefundAdd:output_type -> OrderAddUpdateResp
  2392. 24, // 45: OrderCenter.RefundInfo:output_type -> RefundInfoResp
  2393. 10, // 46: OrderCenter.InvoiceAdd:output_type -> OrderAddUpdateResp
  2394. 27, // 47: OrderCenter.InvoiceInfo:output_type -> InvoiceInfoResp
  2395. 10, // 48: OrderCenter.RedAdd:output_type -> OrderAddUpdateResp
  2396. 27, // 49: OrderCenter.RedInfo:output_type -> InvoiceInfoResp
  2397. 35, // [35:50] is the sub-list for method output_type
  2398. 20, // [20:35] is the sub-list for method input_type
  2399. 20, // [20:20] is the sub-list for extension type_name
  2400. 20, // [20:20] is the sub-list for extension extendee
  2401. 0, // [0:20] is the sub-list for field type_name
  2402. }
  2403. func init() { file_orderCenter_proto_init() }
  2404. func file_orderCenter_proto_init() {
  2405. if File_orderCenter_proto != nil {
  2406. return
  2407. }
  2408. if !protoimpl.UnsafeEnabled {
  2409. file_orderCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2410. switch v := v.(*GetOrderCodeReq); i {
  2411. case 0:
  2412. return &v.state
  2413. case 1:
  2414. return &v.sizeCache
  2415. case 2:
  2416. return &v.unknownFields
  2417. default:
  2418. return nil
  2419. }
  2420. }
  2421. file_orderCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2422. switch v := v.(*GetOrderCodeResp); i {
  2423. case 0:
  2424. return &v.state
  2425. case 1:
  2426. return &v.sizeCache
  2427. case 2:
  2428. return &v.unknownFields
  2429. default:
  2430. return nil
  2431. }
  2432. }
  2433. file_orderCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2434. switch v := v.(*OrderCode); i {
  2435. case 0:
  2436. return &v.state
  2437. case 1:
  2438. return &v.sizeCache
  2439. case 2:
  2440. return &v.unknownFields
  2441. default:
  2442. return nil
  2443. }
  2444. }
  2445. file_orderCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2446. switch v := v.(*OrderAddUpdateReq); i {
  2447. case 0:
  2448. return &v.state
  2449. case 1:
  2450. return &v.sizeCache
  2451. case 2:
  2452. return &v.unknownFields
  2453. default:
  2454. return nil
  2455. }
  2456. }
  2457. file_orderCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2458. switch v := v.(*OrderStatusUpdateReq); i {
  2459. case 0:
  2460. return &v.state
  2461. case 1:
  2462. return &v.sizeCache
  2463. case 2:
  2464. return &v.unknownFields
  2465. default:
  2466. return nil
  2467. }
  2468. }
  2469. file_orderCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2470. switch v := v.(*Order); i {
  2471. case 0:
  2472. return &v.state
  2473. case 1:
  2474. return &v.sizeCache
  2475. case 2:
  2476. return &v.unknownFields
  2477. default:
  2478. return nil
  2479. }
  2480. }
  2481. file_orderCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2482. switch v := v.(*OrderExtend); i {
  2483. case 0:
  2484. return &v.state
  2485. case 1:
  2486. return &v.sizeCache
  2487. case 2:
  2488. return &v.unknownFields
  2489. default:
  2490. return nil
  2491. }
  2492. }
  2493. file_orderCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2494. switch v := v.(*OrderCommodity); i {
  2495. case 0:
  2496. return &v.state
  2497. case 1:
  2498. return &v.sizeCache
  2499. case 2:
  2500. return &v.unknownFields
  2501. default:
  2502. return nil
  2503. }
  2504. }
  2505. file_orderCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2506. switch v := v.(*OrderBusiness); i {
  2507. case 0:
  2508. return &v.state
  2509. case 1:
  2510. return &v.sizeCache
  2511. case 2:
  2512. return &v.unknownFields
  2513. default:
  2514. return nil
  2515. }
  2516. }
  2517. file_orderCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2518. switch v := v.(*OrderDelReq); i {
  2519. case 0:
  2520. return &v.state
  2521. case 1:
  2522. return &v.sizeCache
  2523. case 2:
  2524. return &v.unknownFields
  2525. default:
  2526. return nil
  2527. }
  2528. }
  2529. file_orderCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2530. switch v := v.(*OrderAddUpdateResp); i {
  2531. case 0:
  2532. return &v.state
  2533. case 1:
  2534. return &v.sizeCache
  2535. case 2:
  2536. return &v.unknownFields
  2537. default:
  2538. return nil
  2539. }
  2540. }
  2541. file_orderCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2542. switch v := v.(*DataStatus); i {
  2543. case 0:
  2544. return &v.state
  2545. case 1:
  2546. return &v.sizeCache
  2547. case 2:
  2548. return &v.unknownFields
  2549. default:
  2550. return nil
  2551. }
  2552. }
  2553. file_orderCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2554. switch v := v.(*OrderListReq); i {
  2555. case 0:
  2556. return &v.state
  2557. case 1:
  2558. return &v.sizeCache
  2559. case 2:
  2560. return &v.unknownFields
  2561. default:
  2562. return nil
  2563. }
  2564. }
  2565. file_orderCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2566. switch v := v.(*OrderListResp); i {
  2567. case 0:
  2568. return &v.state
  2569. case 1:
  2570. return &v.sizeCache
  2571. case 2:
  2572. return &v.unknownFields
  2573. default:
  2574. return nil
  2575. }
  2576. }
  2577. file_orderCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2578. switch v := v.(*OrderLists); i {
  2579. case 0:
  2580. return &v.state
  2581. case 1:
  2582. return &v.sizeCache
  2583. case 2:
  2584. return &v.unknownFields
  2585. default:
  2586. return nil
  2587. }
  2588. }
  2589. file_orderCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2590. switch v := v.(*OrderList); i {
  2591. case 0:
  2592. return &v.state
  2593. case 1:
  2594. return &v.sizeCache
  2595. case 2:
  2596. return &v.unknownFields
  2597. default:
  2598. return nil
  2599. }
  2600. }
  2601. file_orderCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2602. switch v := v.(*OrderInfoReq); i {
  2603. case 0:
  2604. return &v.state
  2605. case 1:
  2606. return &v.sizeCache
  2607. case 2:
  2608. return &v.unknownFields
  2609. default:
  2610. return nil
  2611. }
  2612. }
  2613. file_orderCenter_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2614. switch v := v.(*OrderInfoResp); i {
  2615. case 0:
  2616. return &v.state
  2617. case 1:
  2618. return &v.sizeCache
  2619. case 2:
  2620. return &v.unknownFields
  2621. default:
  2622. return nil
  2623. }
  2624. }
  2625. file_orderCenter_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2626. switch v := v.(*OrderInfo); i {
  2627. case 0:
  2628. return &v.state
  2629. case 1:
  2630. return &v.sizeCache
  2631. case 2:
  2632. return &v.unknownFields
  2633. default:
  2634. return nil
  2635. }
  2636. }
  2637. file_orderCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2638. switch v := v.(*PayAddReq); i {
  2639. case 0:
  2640. return &v.state
  2641. case 1:
  2642. return &v.sizeCache
  2643. case 2:
  2644. return &v.unknownFields
  2645. default:
  2646. return nil
  2647. }
  2648. }
  2649. file_orderCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2650. switch v := v.(*Pay); i {
  2651. case 0:
  2652. return &v.state
  2653. case 1:
  2654. return &v.sizeCache
  2655. case 2:
  2656. return &v.unknownFields
  2657. default:
  2658. return nil
  2659. }
  2660. }
  2661. file_orderCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2662. switch v := v.(*PayInfoResp); i {
  2663. case 0:
  2664. return &v.state
  2665. case 1:
  2666. return &v.sizeCache
  2667. case 2:
  2668. return &v.unknownFields
  2669. default:
  2670. return nil
  2671. }
  2672. }
  2673. file_orderCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2674. switch v := v.(*RefundAddReq); i {
  2675. case 0:
  2676. return &v.state
  2677. case 1:
  2678. return &v.sizeCache
  2679. case 2:
  2680. return &v.unknownFields
  2681. default:
  2682. return nil
  2683. }
  2684. }
  2685. file_orderCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2686. switch v := v.(*Refund); i {
  2687. case 0:
  2688. return &v.state
  2689. case 1:
  2690. return &v.sizeCache
  2691. case 2:
  2692. return &v.unknownFields
  2693. default:
  2694. return nil
  2695. }
  2696. }
  2697. file_orderCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2698. switch v := v.(*RefundInfoResp); i {
  2699. case 0:
  2700. return &v.state
  2701. case 1:
  2702. return &v.sizeCache
  2703. case 2:
  2704. return &v.unknownFields
  2705. default:
  2706. return nil
  2707. }
  2708. }
  2709. file_orderCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2710. switch v := v.(*InvoiceAddReq); i {
  2711. case 0:
  2712. return &v.state
  2713. case 1:
  2714. return &v.sizeCache
  2715. case 2:
  2716. return &v.unknownFields
  2717. default:
  2718. return nil
  2719. }
  2720. }
  2721. file_orderCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2722. switch v := v.(*Invoice); i {
  2723. case 0:
  2724. return &v.state
  2725. case 1:
  2726. return &v.sizeCache
  2727. case 2:
  2728. return &v.unknownFields
  2729. default:
  2730. return nil
  2731. }
  2732. }
  2733. file_orderCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2734. switch v := v.(*InvoiceInfoResp); i {
  2735. case 0:
  2736. return &v.state
  2737. case 1:
  2738. return &v.sizeCache
  2739. case 2:
  2740. return &v.unknownFields
  2741. default:
  2742. return nil
  2743. }
  2744. }
  2745. file_orderCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2746. switch v := v.(*InvoiceInfoReq); i {
  2747. case 0:
  2748. return &v.state
  2749. case 1:
  2750. return &v.sizeCache
  2751. case 2:
  2752. return &v.unknownFields
  2753. default:
  2754. return nil
  2755. }
  2756. }
  2757. }
  2758. type x struct{}
  2759. out := protoimpl.TypeBuilder{
  2760. File: protoimpl.DescBuilder{
  2761. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2762. RawDescriptor: file_orderCenter_proto_rawDesc,
  2763. NumEnums: 0,
  2764. NumMessages: 29,
  2765. NumExtensions: 0,
  2766. NumServices: 1,
  2767. },
  2768. GoTypes: file_orderCenter_proto_goTypes,
  2769. DependencyIndexes: file_orderCenter_proto_depIdxs,
  2770. MessageInfos: file_orderCenter_proto_msgTypes,
  2771. }.Build()
  2772. File_orderCenter_proto = out.File
  2773. file_orderCenter_proto_rawDesc = nil
  2774. file_orderCenter_proto_goTypes = nil
  2775. file_orderCenter_proto_depIdxs = nil
  2776. }
  2777. // Reference imports to suppress errors if they are not otherwise used.
  2778. var _ context.Context
  2779. var _ grpc.ClientConnInterface
  2780. // This is a compile-time assertion to ensure that this generated file
  2781. // is compatible with the grpc package it is being compiled against.
  2782. const _ = grpc.SupportPackageIsVersion6
  2783. // OrderCenterClient is the client API for OrderCenter service.
  2784. //
  2785. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  2786. type OrderCenterClient interface {
  2787. //分布式ID生成器
  2788. GetOrderCode(ctx context.Context, in *GetOrderCodeReq, opts ...grpc.CallOption) (*GetOrderCodeResp, error)
  2789. //订单增加
  2790. OrderAdd(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2791. //订单修改
  2792. OrderUpdate(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2793. //订单修改状态
  2794. OrderStatusUpdate(ctx context.Context, in *OrderStatusUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2795. //订单删除
  2796. OrderDel(ctx context.Context, in *OrderDelReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2797. //订单列表
  2798. OrderList(ctx context.Context, in *OrderListReq, opts ...grpc.CallOption) (*OrderListResp, error)
  2799. //订单查看
  2800. OrderInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*OrderInfoResp, error)
  2801. //订单支付
  2802. PayAdd(ctx context.Context, in *PayAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2803. //订单支付信息
  2804. PayInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*PayInfoResp, error)
  2805. //订单退款
  2806. RefundAdd(ctx context.Context, in *RefundAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2807. //订单退款信息
  2808. RefundInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*RefundInfoResp, error)
  2809. //订单开票
  2810. InvoiceAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2811. //订单发票信息
  2812. InvoiceInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error)
  2813. //订单发票冲红
  2814. RedAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2815. //订单红票信息
  2816. RedInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error)
  2817. }
  2818. type orderCenterClient struct {
  2819. cc grpc.ClientConnInterface
  2820. }
  2821. func NewOrderCenterClient(cc grpc.ClientConnInterface) OrderCenterClient {
  2822. return &orderCenterClient{cc}
  2823. }
  2824. func (c *orderCenterClient) GetOrderCode(ctx context.Context, in *GetOrderCodeReq, opts ...grpc.CallOption) (*GetOrderCodeResp, error) {
  2825. out := new(GetOrderCodeResp)
  2826. err := c.cc.Invoke(ctx, "/OrderCenter/GetOrderCode", in, out, opts...)
  2827. if err != nil {
  2828. return nil, err
  2829. }
  2830. return out, nil
  2831. }
  2832. func (c *orderCenterClient) OrderAdd(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2833. out := new(OrderAddUpdateResp)
  2834. err := c.cc.Invoke(ctx, "/OrderCenter/OrderAdd", in, out, opts...)
  2835. if err != nil {
  2836. return nil, err
  2837. }
  2838. return out, nil
  2839. }
  2840. func (c *orderCenterClient) OrderUpdate(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2841. out := new(OrderAddUpdateResp)
  2842. err := c.cc.Invoke(ctx, "/OrderCenter/OrderUpdate", in, out, opts...)
  2843. if err != nil {
  2844. return nil, err
  2845. }
  2846. return out, nil
  2847. }
  2848. func (c *orderCenterClient) OrderStatusUpdate(ctx context.Context, in *OrderStatusUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2849. out := new(OrderAddUpdateResp)
  2850. err := c.cc.Invoke(ctx, "/OrderCenter/OrderStatusUpdate", in, out, opts...)
  2851. if err != nil {
  2852. return nil, err
  2853. }
  2854. return out, nil
  2855. }
  2856. func (c *orderCenterClient) OrderDel(ctx context.Context, in *OrderDelReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2857. out := new(OrderAddUpdateResp)
  2858. err := c.cc.Invoke(ctx, "/OrderCenter/OrderDel", in, out, opts...)
  2859. if err != nil {
  2860. return nil, err
  2861. }
  2862. return out, nil
  2863. }
  2864. func (c *orderCenterClient) OrderList(ctx context.Context, in *OrderListReq, opts ...grpc.CallOption) (*OrderListResp, error) {
  2865. out := new(OrderListResp)
  2866. err := c.cc.Invoke(ctx, "/OrderCenter/OrderList", in, out, opts...)
  2867. if err != nil {
  2868. return nil, err
  2869. }
  2870. return out, nil
  2871. }
  2872. func (c *orderCenterClient) OrderInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*OrderInfoResp, error) {
  2873. out := new(OrderInfoResp)
  2874. err := c.cc.Invoke(ctx, "/OrderCenter/OrderInfo", in, out, opts...)
  2875. if err != nil {
  2876. return nil, err
  2877. }
  2878. return out, nil
  2879. }
  2880. func (c *orderCenterClient) PayAdd(ctx context.Context, in *PayAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2881. out := new(OrderAddUpdateResp)
  2882. err := c.cc.Invoke(ctx, "/OrderCenter/PayAdd", in, out, opts...)
  2883. if err != nil {
  2884. return nil, err
  2885. }
  2886. return out, nil
  2887. }
  2888. func (c *orderCenterClient) PayInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*PayInfoResp, error) {
  2889. out := new(PayInfoResp)
  2890. err := c.cc.Invoke(ctx, "/OrderCenter/PayInfo", in, out, opts...)
  2891. if err != nil {
  2892. return nil, err
  2893. }
  2894. return out, nil
  2895. }
  2896. func (c *orderCenterClient) RefundAdd(ctx context.Context, in *RefundAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2897. out := new(OrderAddUpdateResp)
  2898. err := c.cc.Invoke(ctx, "/OrderCenter/RefundAdd", in, out, opts...)
  2899. if err != nil {
  2900. return nil, err
  2901. }
  2902. return out, nil
  2903. }
  2904. func (c *orderCenterClient) RefundInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*RefundInfoResp, error) {
  2905. out := new(RefundInfoResp)
  2906. err := c.cc.Invoke(ctx, "/OrderCenter/RefundInfo", in, out, opts...)
  2907. if err != nil {
  2908. return nil, err
  2909. }
  2910. return out, nil
  2911. }
  2912. func (c *orderCenterClient) InvoiceAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2913. out := new(OrderAddUpdateResp)
  2914. err := c.cc.Invoke(ctx, "/OrderCenter/InvoiceAdd", in, out, opts...)
  2915. if err != nil {
  2916. return nil, err
  2917. }
  2918. return out, nil
  2919. }
  2920. func (c *orderCenterClient) InvoiceInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error) {
  2921. out := new(InvoiceInfoResp)
  2922. err := c.cc.Invoke(ctx, "/OrderCenter/InvoiceInfo", in, out, opts...)
  2923. if err != nil {
  2924. return nil, err
  2925. }
  2926. return out, nil
  2927. }
  2928. func (c *orderCenterClient) RedAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2929. out := new(OrderAddUpdateResp)
  2930. err := c.cc.Invoke(ctx, "/OrderCenter/RedAdd", in, out, opts...)
  2931. if err != nil {
  2932. return nil, err
  2933. }
  2934. return out, nil
  2935. }
  2936. func (c *orderCenterClient) RedInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error) {
  2937. out := new(InvoiceInfoResp)
  2938. err := c.cc.Invoke(ctx, "/OrderCenter/RedInfo", in, out, opts...)
  2939. if err != nil {
  2940. return nil, err
  2941. }
  2942. return out, nil
  2943. }
  2944. // OrderCenterServer is the server API for OrderCenter service.
  2945. type OrderCenterServer interface {
  2946. //分布式ID生成器
  2947. GetOrderCode(context.Context, *GetOrderCodeReq) (*GetOrderCodeResp, error)
  2948. //订单增加
  2949. OrderAdd(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error)
  2950. //订单修改
  2951. OrderUpdate(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error)
  2952. //订单修改状态
  2953. OrderStatusUpdate(context.Context, *OrderStatusUpdateReq) (*OrderAddUpdateResp, error)
  2954. //订单删除
  2955. OrderDel(context.Context, *OrderDelReq) (*OrderAddUpdateResp, error)
  2956. //订单列表
  2957. OrderList(context.Context, *OrderListReq) (*OrderListResp, error)
  2958. //订单查看
  2959. OrderInfo(context.Context, *OrderInfoReq) (*OrderInfoResp, error)
  2960. //订单支付
  2961. PayAdd(context.Context, *PayAddReq) (*OrderAddUpdateResp, error)
  2962. //订单支付信息
  2963. PayInfo(context.Context, *OrderInfoReq) (*PayInfoResp, error)
  2964. //订单退款
  2965. RefundAdd(context.Context, *RefundAddReq) (*OrderAddUpdateResp, error)
  2966. //订单退款信息
  2967. RefundInfo(context.Context, *OrderInfoReq) (*RefundInfoResp, error)
  2968. //订单开票
  2969. InvoiceAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error)
  2970. //订单发票信息
  2971. InvoiceInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error)
  2972. //订单发票冲红
  2973. RedAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error)
  2974. //订单红票信息
  2975. RedInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error)
  2976. }
  2977. // UnimplementedOrderCenterServer can be embedded to have forward compatible implementations.
  2978. type UnimplementedOrderCenterServer struct {
  2979. }
  2980. func (*UnimplementedOrderCenterServer) GetOrderCode(context.Context, *GetOrderCodeReq) (*GetOrderCodeResp, error) {
  2981. return nil, status.Errorf(codes.Unimplemented, "method GetOrderCode not implemented")
  2982. }
  2983. func (*UnimplementedOrderCenterServer) OrderAdd(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error) {
  2984. return nil, status.Errorf(codes.Unimplemented, "method OrderAdd not implemented")
  2985. }
  2986. func (*UnimplementedOrderCenterServer) OrderUpdate(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error) {
  2987. return nil, status.Errorf(codes.Unimplemented, "method OrderUpdate not implemented")
  2988. }
  2989. func (*UnimplementedOrderCenterServer) OrderStatusUpdate(context.Context, *OrderStatusUpdateReq) (*OrderAddUpdateResp, error) {
  2990. return nil, status.Errorf(codes.Unimplemented, "method OrderStatusUpdate not implemented")
  2991. }
  2992. func (*UnimplementedOrderCenterServer) OrderDel(context.Context, *OrderDelReq) (*OrderAddUpdateResp, error) {
  2993. return nil, status.Errorf(codes.Unimplemented, "method OrderDel not implemented")
  2994. }
  2995. func (*UnimplementedOrderCenterServer) OrderList(context.Context, *OrderListReq) (*OrderListResp, error) {
  2996. return nil, status.Errorf(codes.Unimplemented, "method OrderList not implemented")
  2997. }
  2998. func (*UnimplementedOrderCenterServer) OrderInfo(context.Context, *OrderInfoReq) (*OrderInfoResp, error) {
  2999. return nil, status.Errorf(codes.Unimplemented, "method OrderInfo not implemented")
  3000. }
  3001. func (*UnimplementedOrderCenterServer) PayAdd(context.Context, *PayAddReq) (*OrderAddUpdateResp, error) {
  3002. return nil, status.Errorf(codes.Unimplemented, "method PayAdd not implemented")
  3003. }
  3004. func (*UnimplementedOrderCenterServer) PayInfo(context.Context, *OrderInfoReq) (*PayInfoResp, error) {
  3005. return nil, status.Errorf(codes.Unimplemented, "method PayInfo not implemented")
  3006. }
  3007. func (*UnimplementedOrderCenterServer) RefundAdd(context.Context, *RefundAddReq) (*OrderAddUpdateResp, error) {
  3008. return nil, status.Errorf(codes.Unimplemented, "method RefundAdd not implemented")
  3009. }
  3010. func (*UnimplementedOrderCenterServer) RefundInfo(context.Context, *OrderInfoReq) (*RefundInfoResp, error) {
  3011. return nil, status.Errorf(codes.Unimplemented, "method RefundInfo not implemented")
  3012. }
  3013. func (*UnimplementedOrderCenterServer) InvoiceAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error) {
  3014. return nil, status.Errorf(codes.Unimplemented, "method InvoiceAdd not implemented")
  3015. }
  3016. func (*UnimplementedOrderCenterServer) InvoiceInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error) {
  3017. return nil, status.Errorf(codes.Unimplemented, "method InvoiceInfo not implemented")
  3018. }
  3019. func (*UnimplementedOrderCenterServer) RedAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error) {
  3020. return nil, status.Errorf(codes.Unimplemented, "method RedAdd not implemented")
  3021. }
  3022. func (*UnimplementedOrderCenterServer) RedInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error) {
  3023. return nil, status.Errorf(codes.Unimplemented, "method RedInfo not implemented")
  3024. }
  3025. func RegisterOrderCenterServer(s *grpc.Server, srv OrderCenterServer) {
  3026. s.RegisterService(&_OrderCenter_serviceDesc, srv)
  3027. }
  3028. func _OrderCenter_GetOrderCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3029. in := new(GetOrderCodeReq)
  3030. if err := dec(in); err != nil {
  3031. return nil, err
  3032. }
  3033. if interceptor == nil {
  3034. return srv.(OrderCenterServer).GetOrderCode(ctx, in)
  3035. }
  3036. info := &grpc.UnaryServerInfo{
  3037. Server: srv,
  3038. FullMethod: "/OrderCenter/GetOrderCode",
  3039. }
  3040. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3041. return srv.(OrderCenterServer).GetOrderCode(ctx, req.(*GetOrderCodeReq))
  3042. }
  3043. return interceptor(ctx, in, info, handler)
  3044. }
  3045. func _OrderCenter_OrderAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3046. in := new(OrderAddUpdateReq)
  3047. if err := dec(in); err != nil {
  3048. return nil, err
  3049. }
  3050. if interceptor == nil {
  3051. return srv.(OrderCenterServer).OrderAdd(ctx, in)
  3052. }
  3053. info := &grpc.UnaryServerInfo{
  3054. Server: srv,
  3055. FullMethod: "/OrderCenter/OrderAdd",
  3056. }
  3057. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3058. return srv.(OrderCenterServer).OrderAdd(ctx, req.(*OrderAddUpdateReq))
  3059. }
  3060. return interceptor(ctx, in, info, handler)
  3061. }
  3062. func _OrderCenter_OrderUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3063. in := new(OrderAddUpdateReq)
  3064. if err := dec(in); err != nil {
  3065. return nil, err
  3066. }
  3067. if interceptor == nil {
  3068. return srv.(OrderCenterServer).OrderUpdate(ctx, in)
  3069. }
  3070. info := &grpc.UnaryServerInfo{
  3071. Server: srv,
  3072. FullMethod: "/OrderCenter/OrderUpdate",
  3073. }
  3074. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3075. return srv.(OrderCenterServer).OrderUpdate(ctx, req.(*OrderAddUpdateReq))
  3076. }
  3077. return interceptor(ctx, in, info, handler)
  3078. }
  3079. func _OrderCenter_OrderStatusUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3080. in := new(OrderStatusUpdateReq)
  3081. if err := dec(in); err != nil {
  3082. return nil, err
  3083. }
  3084. if interceptor == nil {
  3085. return srv.(OrderCenterServer).OrderStatusUpdate(ctx, in)
  3086. }
  3087. info := &grpc.UnaryServerInfo{
  3088. Server: srv,
  3089. FullMethod: "/OrderCenter/OrderStatusUpdate",
  3090. }
  3091. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3092. return srv.(OrderCenterServer).OrderStatusUpdate(ctx, req.(*OrderStatusUpdateReq))
  3093. }
  3094. return interceptor(ctx, in, info, handler)
  3095. }
  3096. func _OrderCenter_OrderDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3097. in := new(OrderDelReq)
  3098. if err := dec(in); err != nil {
  3099. return nil, err
  3100. }
  3101. if interceptor == nil {
  3102. return srv.(OrderCenterServer).OrderDel(ctx, in)
  3103. }
  3104. info := &grpc.UnaryServerInfo{
  3105. Server: srv,
  3106. FullMethod: "/OrderCenter/OrderDel",
  3107. }
  3108. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3109. return srv.(OrderCenterServer).OrderDel(ctx, req.(*OrderDelReq))
  3110. }
  3111. return interceptor(ctx, in, info, handler)
  3112. }
  3113. func _OrderCenter_OrderList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3114. in := new(OrderListReq)
  3115. if err := dec(in); err != nil {
  3116. return nil, err
  3117. }
  3118. if interceptor == nil {
  3119. return srv.(OrderCenterServer).OrderList(ctx, in)
  3120. }
  3121. info := &grpc.UnaryServerInfo{
  3122. Server: srv,
  3123. FullMethod: "/OrderCenter/OrderList",
  3124. }
  3125. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3126. return srv.(OrderCenterServer).OrderList(ctx, req.(*OrderListReq))
  3127. }
  3128. return interceptor(ctx, in, info, handler)
  3129. }
  3130. func _OrderCenter_OrderInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3131. in := new(OrderInfoReq)
  3132. if err := dec(in); err != nil {
  3133. return nil, err
  3134. }
  3135. if interceptor == nil {
  3136. return srv.(OrderCenterServer).OrderInfo(ctx, in)
  3137. }
  3138. info := &grpc.UnaryServerInfo{
  3139. Server: srv,
  3140. FullMethod: "/OrderCenter/OrderInfo",
  3141. }
  3142. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3143. return srv.(OrderCenterServer).OrderInfo(ctx, req.(*OrderInfoReq))
  3144. }
  3145. return interceptor(ctx, in, info, handler)
  3146. }
  3147. func _OrderCenter_PayAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3148. in := new(PayAddReq)
  3149. if err := dec(in); err != nil {
  3150. return nil, err
  3151. }
  3152. if interceptor == nil {
  3153. return srv.(OrderCenterServer).PayAdd(ctx, in)
  3154. }
  3155. info := &grpc.UnaryServerInfo{
  3156. Server: srv,
  3157. FullMethod: "/OrderCenter/PayAdd",
  3158. }
  3159. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3160. return srv.(OrderCenterServer).PayAdd(ctx, req.(*PayAddReq))
  3161. }
  3162. return interceptor(ctx, in, info, handler)
  3163. }
  3164. func _OrderCenter_PayInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3165. in := new(OrderInfoReq)
  3166. if err := dec(in); err != nil {
  3167. return nil, err
  3168. }
  3169. if interceptor == nil {
  3170. return srv.(OrderCenterServer).PayInfo(ctx, in)
  3171. }
  3172. info := &grpc.UnaryServerInfo{
  3173. Server: srv,
  3174. FullMethod: "/OrderCenter/PayInfo",
  3175. }
  3176. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3177. return srv.(OrderCenterServer).PayInfo(ctx, req.(*OrderInfoReq))
  3178. }
  3179. return interceptor(ctx, in, info, handler)
  3180. }
  3181. func _OrderCenter_RefundAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3182. in := new(RefundAddReq)
  3183. if err := dec(in); err != nil {
  3184. return nil, err
  3185. }
  3186. if interceptor == nil {
  3187. return srv.(OrderCenterServer).RefundAdd(ctx, in)
  3188. }
  3189. info := &grpc.UnaryServerInfo{
  3190. Server: srv,
  3191. FullMethod: "/OrderCenter/RefundAdd",
  3192. }
  3193. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3194. return srv.(OrderCenterServer).RefundAdd(ctx, req.(*RefundAddReq))
  3195. }
  3196. return interceptor(ctx, in, info, handler)
  3197. }
  3198. func _OrderCenter_RefundInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3199. in := new(OrderInfoReq)
  3200. if err := dec(in); err != nil {
  3201. return nil, err
  3202. }
  3203. if interceptor == nil {
  3204. return srv.(OrderCenterServer).RefundInfo(ctx, in)
  3205. }
  3206. info := &grpc.UnaryServerInfo{
  3207. Server: srv,
  3208. FullMethod: "/OrderCenter/RefundInfo",
  3209. }
  3210. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3211. return srv.(OrderCenterServer).RefundInfo(ctx, req.(*OrderInfoReq))
  3212. }
  3213. return interceptor(ctx, in, info, handler)
  3214. }
  3215. func _OrderCenter_InvoiceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3216. in := new(InvoiceAddReq)
  3217. if err := dec(in); err != nil {
  3218. return nil, err
  3219. }
  3220. if interceptor == nil {
  3221. return srv.(OrderCenterServer).InvoiceAdd(ctx, in)
  3222. }
  3223. info := &grpc.UnaryServerInfo{
  3224. Server: srv,
  3225. FullMethod: "/OrderCenter/InvoiceAdd",
  3226. }
  3227. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3228. return srv.(OrderCenterServer).InvoiceAdd(ctx, req.(*InvoiceAddReq))
  3229. }
  3230. return interceptor(ctx, in, info, handler)
  3231. }
  3232. func _OrderCenter_InvoiceInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3233. in := new(InvoiceInfoReq)
  3234. if err := dec(in); err != nil {
  3235. return nil, err
  3236. }
  3237. if interceptor == nil {
  3238. return srv.(OrderCenterServer).InvoiceInfo(ctx, in)
  3239. }
  3240. info := &grpc.UnaryServerInfo{
  3241. Server: srv,
  3242. FullMethod: "/OrderCenter/InvoiceInfo",
  3243. }
  3244. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3245. return srv.(OrderCenterServer).InvoiceInfo(ctx, req.(*InvoiceInfoReq))
  3246. }
  3247. return interceptor(ctx, in, info, handler)
  3248. }
  3249. func _OrderCenter_RedAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3250. in := new(InvoiceAddReq)
  3251. if err := dec(in); err != nil {
  3252. return nil, err
  3253. }
  3254. if interceptor == nil {
  3255. return srv.(OrderCenterServer).RedAdd(ctx, in)
  3256. }
  3257. info := &grpc.UnaryServerInfo{
  3258. Server: srv,
  3259. FullMethod: "/OrderCenter/RedAdd",
  3260. }
  3261. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3262. return srv.(OrderCenterServer).RedAdd(ctx, req.(*InvoiceAddReq))
  3263. }
  3264. return interceptor(ctx, in, info, handler)
  3265. }
  3266. func _OrderCenter_RedInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3267. in := new(InvoiceInfoReq)
  3268. if err := dec(in); err != nil {
  3269. return nil, err
  3270. }
  3271. if interceptor == nil {
  3272. return srv.(OrderCenterServer).RedInfo(ctx, in)
  3273. }
  3274. info := &grpc.UnaryServerInfo{
  3275. Server: srv,
  3276. FullMethod: "/OrderCenter/RedInfo",
  3277. }
  3278. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3279. return srv.(OrderCenterServer).RedInfo(ctx, req.(*InvoiceInfoReq))
  3280. }
  3281. return interceptor(ctx, in, info, handler)
  3282. }
  3283. var _OrderCenter_serviceDesc = grpc.ServiceDesc{
  3284. ServiceName: "OrderCenter",
  3285. HandlerType: (*OrderCenterServer)(nil),
  3286. Methods: []grpc.MethodDesc{
  3287. {
  3288. MethodName: "GetOrderCode",
  3289. Handler: _OrderCenter_GetOrderCode_Handler,
  3290. },
  3291. {
  3292. MethodName: "OrderAdd",
  3293. Handler: _OrderCenter_OrderAdd_Handler,
  3294. },
  3295. {
  3296. MethodName: "OrderUpdate",
  3297. Handler: _OrderCenter_OrderUpdate_Handler,
  3298. },
  3299. {
  3300. MethodName: "OrderStatusUpdate",
  3301. Handler: _OrderCenter_OrderStatusUpdate_Handler,
  3302. },
  3303. {
  3304. MethodName: "OrderDel",
  3305. Handler: _OrderCenter_OrderDel_Handler,
  3306. },
  3307. {
  3308. MethodName: "OrderList",
  3309. Handler: _OrderCenter_OrderList_Handler,
  3310. },
  3311. {
  3312. MethodName: "OrderInfo",
  3313. Handler: _OrderCenter_OrderInfo_Handler,
  3314. },
  3315. {
  3316. MethodName: "PayAdd",
  3317. Handler: _OrderCenter_PayAdd_Handler,
  3318. },
  3319. {
  3320. MethodName: "PayInfo",
  3321. Handler: _OrderCenter_PayInfo_Handler,
  3322. },
  3323. {
  3324. MethodName: "RefundAdd",
  3325. Handler: _OrderCenter_RefundAdd_Handler,
  3326. },
  3327. {
  3328. MethodName: "RefundInfo",
  3329. Handler: _OrderCenter_RefundInfo_Handler,
  3330. },
  3331. {
  3332. MethodName: "InvoiceAdd",
  3333. Handler: _OrderCenter_InvoiceAdd_Handler,
  3334. },
  3335. {
  3336. MethodName: "InvoiceInfo",
  3337. Handler: _OrderCenter_InvoiceInfo_Handler,
  3338. },
  3339. {
  3340. MethodName: "RedAdd",
  3341. Handler: _OrderCenter_RedAdd_Handler,
  3342. },
  3343. {
  3344. MethodName: "RedInfo",
  3345. Handler: _OrderCenter_RedInfo_Handler,
  3346. },
  3347. },
  3348. Streams: []grpc.StreamDesc{},
  3349. Metadata: "orderCenter.proto",
  3350. }