orderCenter.pb.go 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930
  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. DataSpec string `protobuf:"bytes,13,opt,name=data_spec,json=dataSpec,proto3" json:"data_spec,omitempty"`
  531. }
  532. func (x *OrderBusiness) Reset() {
  533. *x = OrderBusiness{}
  534. if protoimpl.UnsafeEnabled {
  535. mi := &file_orderCenter_proto_msgTypes[8]
  536. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  537. ms.StoreMessageInfo(mi)
  538. }
  539. }
  540. func (x *OrderBusiness) String() string {
  541. return protoimpl.X.MessageStringOf(x)
  542. }
  543. func (*OrderBusiness) ProtoMessage() {}
  544. func (x *OrderBusiness) ProtoReflect() protoreflect.Message {
  545. mi := &file_orderCenter_proto_msgTypes[8]
  546. if protoimpl.UnsafeEnabled && x != nil {
  547. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  548. if ms.LoadMessageInfo() == nil {
  549. ms.StoreMessageInfo(mi)
  550. }
  551. return ms
  552. }
  553. return mi.MessageOf(x)
  554. }
  555. // Deprecated: Use OrderBusiness.ProtoReflect.Descriptor instead.
  556. func (*OrderBusiness) Descriptor() ([]byte, []int) {
  557. return file_orderCenter_proto_rawDescGZIP(), []int{8}
  558. }
  559. func (x *OrderBusiness) GetServiceStatus() int64 {
  560. if x != nil {
  561. return x.ServiceStatus
  562. }
  563. return 0
  564. }
  565. func (x *OrderBusiness) GetFilter() string {
  566. if x != nil {
  567. return x.Filter
  568. }
  569. return ""
  570. }
  571. func (x *OrderBusiness) GetFilterKeys() string {
  572. if x != nil {
  573. return x.FilterKeys
  574. }
  575. return ""
  576. }
  577. func (x *OrderBusiness) GetFilterPublishtime() string {
  578. if x != nil {
  579. return x.FilterPublishtime
  580. }
  581. return ""
  582. }
  583. func (x *OrderBusiness) GetServiceTime() string {
  584. if x != nil {
  585. return x.ServiceTime
  586. }
  587. return ""
  588. }
  589. func (x *OrderBusiness) GetDataCount() int64 {
  590. if x != nil {
  591. return x.DataCount
  592. }
  593. return 0
  594. }
  595. func (x *OrderBusiness) GetFilterId() string {
  596. if x != nil {
  597. return x.FilterId
  598. }
  599. return ""
  600. }
  601. func (x *OrderBusiness) GetDownloadUrl() string {
  602. if x != nil {
  603. return x.DownloadUrl
  604. }
  605. return ""
  606. }
  607. func (x *OrderBusiness) GetGoodsCode() string {
  608. if x != nil {
  609. return x.GoodsCode
  610. }
  611. return ""
  612. }
  613. func (x *OrderBusiness) GetGoodsSpecId() int64 {
  614. if x != nil {
  615. return x.GoodsSpecId
  616. }
  617. return 0
  618. }
  619. func (x *OrderBusiness) GetUserPhone() string {
  620. if x != nil {
  621. return x.UserPhone
  622. }
  623. return ""
  624. }
  625. func (x *OrderBusiness) GetUserMail() string {
  626. if x != nil {
  627. return x.UserMail
  628. }
  629. return ""
  630. }
  631. func (x *OrderBusiness) GetDataSpec() string {
  632. if x != nil {
  633. return x.DataSpec
  634. }
  635. return ""
  636. }
  637. type OrderDelReq struct {
  638. state protoimpl.MessageState
  639. sizeCache protoimpl.SizeCache
  640. unknownFields protoimpl.UnknownFields
  641. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  642. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  643. }
  644. func (x *OrderDelReq) Reset() {
  645. *x = OrderDelReq{}
  646. if protoimpl.UnsafeEnabled {
  647. mi := &file_orderCenter_proto_msgTypes[9]
  648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  649. ms.StoreMessageInfo(mi)
  650. }
  651. }
  652. func (x *OrderDelReq) String() string {
  653. return protoimpl.X.MessageStringOf(x)
  654. }
  655. func (*OrderDelReq) ProtoMessage() {}
  656. func (x *OrderDelReq) ProtoReflect() protoreflect.Message {
  657. mi := &file_orderCenter_proto_msgTypes[9]
  658. if protoimpl.UnsafeEnabled && x != nil {
  659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  660. if ms.LoadMessageInfo() == nil {
  661. ms.StoreMessageInfo(mi)
  662. }
  663. return ms
  664. }
  665. return mi.MessageOf(x)
  666. }
  667. // Deprecated: Use OrderDelReq.ProtoReflect.Descriptor instead.
  668. func (*OrderDelReq) Descriptor() ([]byte, []int) {
  669. return file_orderCenter_proto_rawDescGZIP(), []int{9}
  670. }
  671. func (x *OrderDelReq) GetAppid() string {
  672. if x != nil {
  673. return x.Appid
  674. }
  675. return ""
  676. }
  677. func (x *OrderDelReq) GetOrderCode() string {
  678. if x != nil {
  679. return x.OrderCode
  680. }
  681. return ""
  682. }
  683. type OrderAddUpdateResp struct {
  684. state protoimpl.MessageState
  685. sizeCache protoimpl.SizeCache
  686. unknownFields protoimpl.UnknownFields
  687. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  688. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  689. Data *DataStatus `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  690. }
  691. func (x *OrderAddUpdateResp) Reset() {
  692. *x = OrderAddUpdateResp{}
  693. if protoimpl.UnsafeEnabled {
  694. mi := &file_orderCenter_proto_msgTypes[10]
  695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  696. ms.StoreMessageInfo(mi)
  697. }
  698. }
  699. func (x *OrderAddUpdateResp) String() string {
  700. return protoimpl.X.MessageStringOf(x)
  701. }
  702. func (*OrderAddUpdateResp) ProtoMessage() {}
  703. func (x *OrderAddUpdateResp) ProtoReflect() protoreflect.Message {
  704. mi := &file_orderCenter_proto_msgTypes[10]
  705. if protoimpl.UnsafeEnabled && x != nil {
  706. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  707. if ms.LoadMessageInfo() == nil {
  708. ms.StoreMessageInfo(mi)
  709. }
  710. return ms
  711. }
  712. return mi.MessageOf(x)
  713. }
  714. // Deprecated: Use OrderAddUpdateResp.ProtoReflect.Descriptor instead.
  715. func (*OrderAddUpdateResp) Descriptor() ([]byte, []int) {
  716. return file_orderCenter_proto_rawDescGZIP(), []int{10}
  717. }
  718. func (x *OrderAddUpdateResp) GetErrorCode() int64 {
  719. if x != nil {
  720. return x.ErrorCode
  721. }
  722. return 0
  723. }
  724. func (x *OrderAddUpdateResp) GetErrorMsg() string {
  725. if x != nil {
  726. return x.ErrorMsg
  727. }
  728. return ""
  729. }
  730. func (x *OrderAddUpdateResp) GetData() *DataStatus {
  731. if x != nil {
  732. return x.Data
  733. }
  734. return nil
  735. }
  736. type DataStatus struct {
  737. state protoimpl.MessageState
  738. sizeCache protoimpl.SizeCache
  739. unknownFields protoimpl.UnknownFields
  740. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  741. }
  742. func (x *DataStatus) Reset() {
  743. *x = DataStatus{}
  744. if protoimpl.UnsafeEnabled {
  745. mi := &file_orderCenter_proto_msgTypes[11]
  746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  747. ms.StoreMessageInfo(mi)
  748. }
  749. }
  750. func (x *DataStatus) String() string {
  751. return protoimpl.X.MessageStringOf(x)
  752. }
  753. func (*DataStatus) ProtoMessage() {}
  754. func (x *DataStatus) ProtoReflect() protoreflect.Message {
  755. mi := &file_orderCenter_proto_msgTypes[11]
  756. if protoimpl.UnsafeEnabled && x != nil {
  757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  758. if ms.LoadMessageInfo() == nil {
  759. ms.StoreMessageInfo(mi)
  760. }
  761. return ms
  762. }
  763. return mi.MessageOf(x)
  764. }
  765. // Deprecated: Use DataStatus.ProtoReflect.Descriptor instead.
  766. func (*DataStatus) Descriptor() ([]byte, []int) {
  767. return file_orderCenter_proto_rawDescGZIP(), []int{11}
  768. }
  769. func (x *DataStatus) GetStatus() int64 {
  770. if x != nil {
  771. return x.Status
  772. }
  773. return 0
  774. }
  775. type OrderListReq struct {
  776. state protoimpl.MessageState
  777. sizeCache protoimpl.SizeCache
  778. unknownFields protoimpl.UnknownFields
  779. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  780. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  781. NewUserId int64 `protobuf:"varint,3,opt,name=new_user_id,json=newUserId,proto3" json:"new_user_id,omitempty"`
  782. NewUserIds string `protobuf:"bytes,4,opt,name=new_user_ids,json=newUserIds,proto3" json:"new_user_ids,omitempty"`
  783. PageNum int64 `protobuf:"varint,5,opt,name=page_num,json=pageNum,proto3" json:"page_num,omitempty"`
  784. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  785. }
  786. func (x *OrderListReq) Reset() {
  787. *x = OrderListReq{}
  788. if protoimpl.UnsafeEnabled {
  789. mi := &file_orderCenter_proto_msgTypes[12]
  790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  791. ms.StoreMessageInfo(mi)
  792. }
  793. }
  794. func (x *OrderListReq) String() string {
  795. return protoimpl.X.MessageStringOf(x)
  796. }
  797. func (*OrderListReq) ProtoMessage() {}
  798. func (x *OrderListReq) ProtoReflect() protoreflect.Message {
  799. mi := &file_orderCenter_proto_msgTypes[12]
  800. if protoimpl.UnsafeEnabled && x != nil {
  801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  802. if ms.LoadMessageInfo() == nil {
  803. ms.StoreMessageInfo(mi)
  804. }
  805. return ms
  806. }
  807. return mi.MessageOf(x)
  808. }
  809. // Deprecated: Use OrderListReq.ProtoReflect.Descriptor instead.
  810. func (*OrderListReq) Descriptor() ([]byte, []int) {
  811. return file_orderCenter_proto_rawDescGZIP(), []int{12}
  812. }
  813. func (x *OrderListReq) GetAppid() string {
  814. if x != nil {
  815. return x.Appid
  816. }
  817. return ""
  818. }
  819. func (x *OrderListReq) GetUserId() string {
  820. if x != nil {
  821. return x.UserId
  822. }
  823. return ""
  824. }
  825. func (x *OrderListReq) GetNewUserId() int64 {
  826. if x != nil {
  827. return x.NewUserId
  828. }
  829. return 0
  830. }
  831. func (x *OrderListReq) GetNewUserIds() string {
  832. if x != nil {
  833. return x.NewUserIds
  834. }
  835. return ""
  836. }
  837. func (x *OrderListReq) GetPageNum() int64 {
  838. if x != nil {
  839. return x.PageNum
  840. }
  841. return 0
  842. }
  843. func (x *OrderListReq) GetPageSize() int64 {
  844. if x != nil {
  845. return x.PageSize
  846. }
  847. return 0
  848. }
  849. type OrderListResp struct {
  850. state protoimpl.MessageState
  851. sizeCache protoimpl.SizeCache
  852. unknownFields protoimpl.UnknownFields
  853. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  854. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  855. Data *OrderList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  856. }
  857. func (x *OrderListResp) Reset() {
  858. *x = OrderListResp{}
  859. if protoimpl.UnsafeEnabled {
  860. mi := &file_orderCenter_proto_msgTypes[13]
  861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  862. ms.StoreMessageInfo(mi)
  863. }
  864. }
  865. func (x *OrderListResp) String() string {
  866. return protoimpl.X.MessageStringOf(x)
  867. }
  868. func (*OrderListResp) ProtoMessage() {}
  869. func (x *OrderListResp) ProtoReflect() protoreflect.Message {
  870. mi := &file_orderCenter_proto_msgTypes[13]
  871. if protoimpl.UnsafeEnabled && x != nil {
  872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  873. if ms.LoadMessageInfo() == nil {
  874. ms.StoreMessageInfo(mi)
  875. }
  876. return ms
  877. }
  878. return mi.MessageOf(x)
  879. }
  880. // Deprecated: Use OrderListResp.ProtoReflect.Descriptor instead.
  881. func (*OrderListResp) Descriptor() ([]byte, []int) {
  882. return file_orderCenter_proto_rawDescGZIP(), []int{13}
  883. }
  884. func (x *OrderListResp) GetErrorCode() int64 {
  885. if x != nil {
  886. return x.ErrorCode
  887. }
  888. return 0
  889. }
  890. func (x *OrderListResp) GetErrorMsg() string {
  891. if x != nil {
  892. return x.ErrorMsg
  893. }
  894. return ""
  895. }
  896. func (x *OrderListResp) GetData() *OrderList {
  897. if x != nil {
  898. return x.Data
  899. }
  900. return nil
  901. }
  902. type OrderLists struct {
  903. state protoimpl.MessageState
  904. sizeCache protoimpl.SizeCache
  905. unknownFields protoimpl.UnknownFields
  906. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  907. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  908. DataType int64 `protobuf:"varint,3,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
  909. Order *Order `protobuf:"bytes,4,opt,name=order,proto3" json:"order,omitempty"`
  910. OrderExtend *OrderExtend `protobuf:"bytes,5,opt,name=order_extend,json=orderExtend,proto3" json:"order_extend,omitempty"`
  911. OrderCommodity []*OrderCommodity `protobuf:"bytes,6,rep,name=order_commodity,json=orderCommodity,proto3" json:"order_commodity,omitempty"`
  912. OrderBusiness *OrderBusiness `protobuf:"bytes,7,opt,name=order_business,json=orderBusiness,proto3" json:"order_business,omitempty"`
  913. ProductType string `protobuf:"bytes,8,opt,name=product_type,json=productType,proto3" json:"product_type,omitempty"`
  914. StartTime string `protobuf:"bytes,9,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  915. EntTime string `protobuf:"bytes,10,opt,name=ent_time,json=entTime,proto3" json:"ent_time,omitempty"`
  916. }
  917. func (x *OrderLists) Reset() {
  918. *x = OrderLists{}
  919. if protoimpl.UnsafeEnabled {
  920. mi := &file_orderCenter_proto_msgTypes[14]
  921. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  922. ms.StoreMessageInfo(mi)
  923. }
  924. }
  925. func (x *OrderLists) String() string {
  926. return protoimpl.X.MessageStringOf(x)
  927. }
  928. func (*OrderLists) ProtoMessage() {}
  929. func (x *OrderLists) ProtoReflect() protoreflect.Message {
  930. mi := &file_orderCenter_proto_msgTypes[14]
  931. if protoimpl.UnsafeEnabled && x != nil {
  932. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  933. if ms.LoadMessageInfo() == nil {
  934. ms.StoreMessageInfo(mi)
  935. }
  936. return ms
  937. }
  938. return mi.MessageOf(x)
  939. }
  940. // Deprecated: Use OrderLists.ProtoReflect.Descriptor instead.
  941. func (*OrderLists) Descriptor() ([]byte, []int) {
  942. return file_orderCenter_proto_rawDescGZIP(), []int{14}
  943. }
  944. func (x *OrderLists) GetAppid() string {
  945. if x != nil {
  946. return x.Appid
  947. }
  948. return ""
  949. }
  950. func (x *OrderLists) GetOrderCode() string {
  951. if x != nil {
  952. return x.OrderCode
  953. }
  954. return ""
  955. }
  956. func (x *OrderLists) GetDataType() int64 {
  957. if x != nil {
  958. return x.DataType
  959. }
  960. return 0
  961. }
  962. func (x *OrderLists) GetOrder() *Order {
  963. if x != nil {
  964. return x.Order
  965. }
  966. return nil
  967. }
  968. func (x *OrderLists) GetOrderExtend() *OrderExtend {
  969. if x != nil {
  970. return x.OrderExtend
  971. }
  972. return nil
  973. }
  974. func (x *OrderLists) GetOrderCommodity() []*OrderCommodity {
  975. if x != nil {
  976. return x.OrderCommodity
  977. }
  978. return nil
  979. }
  980. func (x *OrderLists) GetOrderBusiness() *OrderBusiness {
  981. if x != nil {
  982. return x.OrderBusiness
  983. }
  984. return nil
  985. }
  986. func (x *OrderLists) GetProductType() string {
  987. if x != nil {
  988. return x.ProductType
  989. }
  990. return ""
  991. }
  992. func (x *OrderLists) GetStartTime() string {
  993. if x != nil {
  994. return x.StartTime
  995. }
  996. return ""
  997. }
  998. func (x *OrderLists) GetEntTime() string {
  999. if x != nil {
  1000. return x.EntTime
  1001. }
  1002. return ""
  1003. }
  1004. type OrderList struct {
  1005. state protoimpl.MessageState
  1006. sizeCache protoimpl.SizeCache
  1007. unknownFields protoimpl.UnknownFields
  1008. OrderList []*OrderLists `protobuf:"bytes,1,rep,name=order_list,json=orderList,proto3" json:"order_list,omitempty"`
  1009. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  1010. }
  1011. func (x *OrderList) Reset() {
  1012. *x = OrderList{}
  1013. if protoimpl.UnsafeEnabled {
  1014. mi := &file_orderCenter_proto_msgTypes[15]
  1015. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1016. ms.StoreMessageInfo(mi)
  1017. }
  1018. }
  1019. func (x *OrderList) String() string {
  1020. return protoimpl.X.MessageStringOf(x)
  1021. }
  1022. func (*OrderList) ProtoMessage() {}
  1023. func (x *OrderList) ProtoReflect() protoreflect.Message {
  1024. mi := &file_orderCenter_proto_msgTypes[15]
  1025. if protoimpl.UnsafeEnabled && x != nil {
  1026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1027. if ms.LoadMessageInfo() == nil {
  1028. ms.StoreMessageInfo(mi)
  1029. }
  1030. return ms
  1031. }
  1032. return mi.MessageOf(x)
  1033. }
  1034. // Deprecated: Use OrderList.ProtoReflect.Descriptor instead.
  1035. func (*OrderList) Descriptor() ([]byte, []int) {
  1036. return file_orderCenter_proto_rawDescGZIP(), []int{15}
  1037. }
  1038. func (x *OrderList) GetOrderList() []*OrderLists {
  1039. if x != nil {
  1040. return x.OrderList
  1041. }
  1042. return nil
  1043. }
  1044. func (x *OrderList) GetCount() int64 {
  1045. if x != nil {
  1046. return x.Count
  1047. }
  1048. return 0
  1049. }
  1050. type OrderInfoReq struct {
  1051. state protoimpl.MessageState
  1052. sizeCache protoimpl.SizeCache
  1053. unknownFields protoimpl.UnknownFields
  1054. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1055. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1056. DataType int64 `protobuf:"varint,3,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"`
  1057. }
  1058. func (x *OrderInfoReq) Reset() {
  1059. *x = OrderInfoReq{}
  1060. if protoimpl.UnsafeEnabled {
  1061. mi := &file_orderCenter_proto_msgTypes[16]
  1062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. }
  1066. func (x *OrderInfoReq) String() string {
  1067. return protoimpl.X.MessageStringOf(x)
  1068. }
  1069. func (*OrderInfoReq) ProtoMessage() {}
  1070. func (x *OrderInfoReq) ProtoReflect() protoreflect.Message {
  1071. mi := &file_orderCenter_proto_msgTypes[16]
  1072. if protoimpl.UnsafeEnabled && x != nil {
  1073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1074. if ms.LoadMessageInfo() == nil {
  1075. ms.StoreMessageInfo(mi)
  1076. }
  1077. return ms
  1078. }
  1079. return mi.MessageOf(x)
  1080. }
  1081. // Deprecated: Use OrderInfoReq.ProtoReflect.Descriptor instead.
  1082. func (*OrderInfoReq) Descriptor() ([]byte, []int) {
  1083. return file_orderCenter_proto_rawDescGZIP(), []int{16}
  1084. }
  1085. func (x *OrderInfoReq) GetAppid() string {
  1086. if x != nil {
  1087. return x.Appid
  1088. }
  1089. return ""
  1090. }
  1091. func (x *OrderInfoReq) GetOrderCode() string {
  1092. if x != nil {
  1093. return x.OrderCode
  1094. }
  1095. return ""
  1096. }
  1097. func (x *OrderInfoReq) GetDataType() int64 {
  1098. if x != nil {
  1099. return x.DataType
  1100. }
  1101. return 0
  1102. }
  1103. type OrderInfoResp struct {
  1104. state protoimpl.MessageState
  1105. sizeCache protoimpl.SizeCache
  1106. unknownFields protoimpl.UnknownFields
  1107. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1108. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1109. Data *OrderInfo `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1110. }
  1111. func (x *OrderInfoResp) Reset() {
  1112. *x = OrderInfoResp{}
  1113. if protoimpl.UnsafeEnabled {
  1114. mi := &file_orderCenter_proto_msgTypes[17]
  1115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1116. ms.StoreMessageInfo(mi)
  1117. }
  1118. }
  1119. func (x *OrderInfoResp) String() string {
  1120. return protoimpl.X.MessageStringOf(x)
  1121. }
  1122. func (*OrderInfoResp) ProtoMessage() {}
  1123. func (x *OrderInfoResp) ProtoReflect() protoreflect.Message {
  1124. mi := &file_orderCenter_proto_msgTypes[17]
  1125. if protoimpl.UnsafeEnabled && x != nil {
  1126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1127. if ms.LoadMessageInfo() == nil {
  1128. ms.StoreMessageInfo(mi)
  1129. }
  1130. return ms
  1131. }
  1132. return mi.MessageOf(x)
  1133. }
  1134. // Deprecated: Use OrderInfoResp.ProtoReflect.Descriptor instead.
  1135. func (*OrderInfoResp) Descriptor() ([]byte, []int) {
  1136. return file_orderCenter_proto_rawDescGZIP(), []int{17}
  1137. }
  1138. func (x *OrderInfoResp) GetErrorCode() int64 {
  1139. if x != nil {
  1140. return x.ErrorCode
  1141. }
  1142. return 0
  1143. }
  1144. func (x *OrderInfoResp) GetErrorMsg() string {
  1145. if x != nil {
  1146. return x.ErrorMsg
  1147. }
  1148. return ""
  1149. }
  1150. func (x *OrderInfoResp) GetData() *OrderInfo {
  1151. if x != nil {
  1152. return x.Data
  1153. }
  1154. return nil
  1155. }
  1156. type OrderInfo struct {
  1157. state protoimpl.MessageState
  1158. sizeCache protoimpl.SizeCache
  1159. unknownFields protoimpl.UnknownFields
  1160. OrderInfo *OrderAddUpdateReq `protobuf:"bytes,1,opt,name=order_info,json=orderInfo,proto3" json:"order_info,omitempty"`
  1161. }
  1162. func (x *OrderInfo) Reset() {
  1163. *x = OrderInfo{}
  1164. if protoimpl.UnsafeEnabled {
  1165. mi := &file_orderCenter_proto_msgTypes[18]
  1166. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1167. ms.StoreMessageInfo(mi)
  1168. }
  1169. }
  1170. func (x *OrderInfo) String() string {
  1171. return protoimpl.X.MessageStringOf(x)
  1172. }
  1173. func (*OrderInfo) ProtoMessage() {}
  1174. func (x *OrderInfo) ProtoReflect() protoreflect.Message {
  1175. mi := &file_orderCenter_proto_msgTypes[18]
  1176. if protoimpl.UnsafeEnabled && x != nil {
  1177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1178. if ms.LoadMessageInfo() == nil {
  1179. ms.StoreMessageInfo(mi)
  1180. }
  1181. return ms
  1182. }
  1183. return mi.MessageOf(x)
  1184. }
  1185. // Deprecated: Use OrderInfo.ProtoReflect.Descriptor instead.
  1186. func (*OrderInfo) Descriptor() ([]byte, []int) {
  1187. return file_orderCenter_proto_rawDescGZIP(), []int{18}
  1188. }
  1189. func (x *OrderInfo) GetOrderInfo() *OrderAddUpdateReq {
  1190. if x != nil {
  1191. return x.OrderInfo
  1192. }
  1193. return nil
  1194. }
  1195. type PayAddReq struct {
  1196. state protoimpl.MessageState
  1197. sizeCache protoimpl.SizeCache
  1198. unknownFields protoimpl.UnknownFields
  1199. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1200. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1201. Pay *Pay `protobuf:"bytes,3,opt,name=pay,proto3" json:"pay,omitempty"`
  1202. }
  1203. func (x *PayAddReq) Reset() {
  1204. *x = PayAddReq{}
  1205. if protoimpl.UnsafeEnabled {
  1206. mi := &file_orderCenter_proto_msgTypes[19]
  1207. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1208. ms.StoreMessageInfo(mi)
  1209. }
  1210. }
  1211. func (x *PayAddReq) String() string {
  1212. return protoimpl.X.MessageStringOf(x)
  1213. }
  1214. func (*PayAddReq) ProtoMessage() {}
  1215. func (x *PayAddReq) ProtoReflect() protoreflect.Message {
  1216. mi := &file_orderCenter_proto_msgTypes[19]
  1217. if protoimpl.UnsafeEnabled && x != nil {
  1218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1219. if ms.LoadMessageInfo() == nil {
  1220. ms.StoreMessageInfo(mi)
  1221. }
  1222. return ms
  1223. }
  1224. return mi.MessageOf(x)
  1225. }
  1226. // Deprecated: Use PayAddReq.ProtoReflect.Descriptor instead.
  1227. func (*PayAddReq) Descriptor() ([]byte, []int) {
  1228. return file_orderCenter_proto_rawDescGZIP(), []int{19}
  1229. }
  1230. func (x *PayAddReq) GetAppid() string {
  1231. if x != nil {
  1232. return x.Appid
  1233. }
  1234. return ""
  1235. }
  1236. func (x *PayAddReq) GetOrderCode() string {
  1237. if x != nil {
  1238. return x.OrderCode
  1239. }
  1240. return ""
  1241. }
  1242. func (x *PayAddReq) GetPay() *Pay {
  1243. if x != nil {
  1244. return x.Pay
  1245. }
  1246. return nil
  1247. }
  1248. type Pay struct {
  1249. state protoimpl.MessageState
  1250. sizeCache protoimpl.SizeCache
  1251. unknownFields protoimpl.UnknownFields
  1252. PayWay string `protobuf:"bytes,1,opt,name=pay_way,json=payWay,proto3" json:"pay_way,omitempty"`
  1253. PayMoney int64 `protobuf:"varint,2,opt,name=pay_money,json=payMoney,proto3" json:"pay_money,omitempty"`
  1254. PayCode string `protobuf:"bytes,3,opt,name=pay_code,json=payCode,proto3" json:"pay_code,omitempty"`
  1255. PayVoucherUrl string `protobuf:"bytes,4,opt,name=pay_voucher_url,json=payVoucherUrl,proto3" json:"pay_voucher_url,omitempty"`
  1256. PayAccount string `protobuf:"bytes,5,opt,name=pay_account,json=payAccount,proto3" json:"pay_account,omitempty"`
  1257. PayName string `protobuf:"bytes,6,opt,name=pay_name,json=payName,proto3" json:"pay_name,omitempty"`
  1258. CollectAccount string `protobuf:"bytes,7,opt,name=collect_account,json=collectAccount,proto3" json:"collect_account,omitempty"`
  1259. CollectName string `protobuf:"bytes,8,opt,name=collect_name,json=collectName,proto3" json:"collect_name,omitempty"`
  1260. OperatePerson string `protobuf:"bytes,9,opt,name=operate_person,json=operatePerson,proto3" json:"operate_person,omitempty"`
  1261. OperateTime string `protobuf:"bytes,10,opt,name=operate_time,json=operateTime,proto3" json:"operate_time,omitempty"`
  1262. Remark string `protobuf:"bytes,11,opt,name=remark,proto3" json:"remark,omitempty"`
  1263. PrepayTime string `protobuf:"bytes,12,opt,name=prepay_time,json=prepayTime,proto3" json:"prepay_time,omitempty"`
  1264. PrepayId string `protobuf:"bytes,13,opt,name=prepay_id,json=prepayId,proto3" json:"prepay_id,omitempty"`
  1265. OutTradeNo string `protobuf:"bytes,14,opt,name=out_trade_no,json=outTradeNo,proto3" json:"out_trade_no,omitempty"`
  1266. CodeUrl string `protobuf:"bytes,15,opt,name=code_url,json=codeUrl,proto3" json:"code_url,omitempty"`
  1267. OriginPrice int64 `protobuf:"varint,16,opt,name=origin_price,json=originPrice,proto3" json:"origin_price,omitempty"`
  1268. PointsDeductCount int64 `protobuf:"varint,17,opt,name=points_deduct_count,json=pointsDeductCount,proto3" json:"points_deduct_count,omitempty"`
  1269. PointsDeductAmount int64 `protobuf:"varint,18,opt,name=points_deduct_amount,json=pointsDeductAmount,proto3" json:"points_deduct_amount,omitempty"`
  1270. CardCount int64 `protobuf:"varint,19,opt,name=card_count,json=cardCount,proto3" json:"card_count,omitempty"`
  1271. CardAmount int64 `protobuf:"varint,20,opt,name=card_amount,json=cardAmount,proto3" json:"card_amount,omitempty"`
  1272. PayTime string `protobuf:"bytes,21,opt,name=pay_time,json=payTime,proto3" json:"pay_time,omitempty"`
  1273. }
  1274. func (x *Pay) Reset() {
  1275. *x = Pay{}
  1276. if protoimpl.UnsafeEnabled {
  1277. mi := &file_orderCenter_proto_msgTypes[20]
  1278. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1279. ms.StoreMessageInfo(mi)
  1280. }
  1281. }
  1282. func (x *Pay) String() string {
  1283. return protoimpl.X.MessageStringOf(x)
  1284. }
  1285. func (*Pay) ProtoMessage() {}
  1286. func (x *Pay) ProtoReflect() protoreflect.Message {
  1287. mi := &file_orderCenter_proto_msgTypes[20]
  1288. if protoimpl.UnsafeEnabled && x != nil {
  1289. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1290. if ms.LoadMessageInfo() == nil {
  1291. ms.StoreMessageInfo(mi)
  1292. }
  1293. return ms
  1294. }
  1295. return mi.MessageOf(x)
  1296. }
  1297. // Deprecated: Use Pay.ProtoReflect.Descriptor instead.
  1298. func (*Pay) Descriptor() ([]byte, []int) {
  1299. return file_orderCenter_proto_rawDescGZIP(), []int{20}
  1300. }
  1301. func (x *Pay) GetPayWay() string {
  1302. if x != nil {
  1303. return x.PayWay
  1304. }
  1305. return ""
  1306. }
  1307. func (x *Pay) GetPayMoney() int64 {
  1308. if x != nil {
  1309. return x.PayMoney
  1310. }
  1311. return 0
  1312. }
  1313. func (x *Pay) GetPayCode() string {
  1314. if x != nil {
  1315. return x.PayCode
  1316. }
  1317. return ""
  1318. }
  1319. func (x *Pay) GetPayVoucherUrl() string {
  1320. if x != nil {
  1321. return x.PayVoucherUrl
  1322. }
  1323. return ""
  1324. }
  1325. func (x *Pay) GetPayAccount() string {
  1326. if x != nil {
  1327. return x.PayAccount
  1328. }
  1329. return ""
  1330. }
  1331. func (x *Pay) GetPayName() string {
  1332. if x != nil {
  1333. return x.PayName
  1334. }
  1335. return ""
  1336. }
  1337. func (x *Pay) GetCollectAccount() string {
  1338. if x != nil {
  1339. return x.CollectAccount
  1340. }
  1341. return ""
  1342. }
  1343. func (x *Pay) GetCollectName() string {
  1344. if x != nil {
  1345. return x.CollectName
  1346. }
  1347. return ""
  1348. }
  1349. func (x *Pay) GetOperatePerson() string {
  1350. if x != nil {
  1351. return x.OperatePerson
  1352. }
  1353. return ""
  1354. }
  1355. func (x *Pay) GetOperateTime() string {
  1356. if x != nil {
  1357. return x.OperateTime
  1358. }
  1359. return ""
  1360. }
  1361. func (x *Pay) GetRemark() string {
  1362. if x != nil {
  1363. return x.Remark
  1364. }
  1365. return ""
  1366. }
  1367. func (x *Pay) GetPrepayTime() string {
  1368. if x != nil {
  1369. return x.PrepayTime
  1370. }
  1371. return ""
  1372. }
  1373. func (x *Pay) GetPrepayId() string {
  1374. if x != nil {
  1375. return x.PrepayId
  1376. }
  1377. return ""
  1378. }
  1379. func (x *Pay) GetOutTradeNo() string {
  1380. if x != nil {
  1381. return x.OutTradeNo
  1382. }
  1383. return ""
  1384. }
  1385. func (x *Pay) GetCodeUrl() string {
  1386. if x != nil {
  1387. return x.CodeUrl
  1388. }
  1389. return ""
  1390. }
  1391. func (x *Pay) GetOriginPrice() int64 {
  1392. if x != nil {
  1393. return x.OriginPrice
  1394. }
  1395. return 0
  1396. }
  1397. func (x *Pay) GetPointsDeductCount() int64 {
  1398. if x != nil {
  1399. return x.PointsDeductCount
  1400. }
  1401. return 0
  1402. }
  1403. func (x *Pay) GetPointsDeductAmount() int64 {
  1404. if x != nil {
  1405. return x.PointsDeductAmount
  1406. }
  1407. return 0
  1408. }
  1409. func (x *Pay) GetCardCount() int64 {
  1410. if x != nil {
  1411. return x.CardCount
  1412. }
  1413. return 0
  1414. }
  1415. func (x *Pay) GetCardAmount() int64 {
  1416. if x != nil {
  1417. return x.CardAmount
  1418. }
  1419. return 0
  1420. }
  1421. func (x *Pay) GetPayTime() string {
  1422. if x != nil {
  1423. return x.PayTime
  1424. }
  1425. return ""
  1426. }
  1427. type PayInfoResp struct {
  1428. state protoimpl.MessageState
  1429. sizeCache protoimpl.SizeCache
  1430. unknownFields protoimpl.UnknownFields
  1431. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1432. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1433. Data []*Pay `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1434. }
  1435. func (x *PayInfoResp) Reset() {
  1436. *x = PayInfoResp{}
  1437. if protoimpl.UnsafeEnabled {
  1438. mi := &file_orderCenter_proto_msgTypes[21]
  1439. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1440. ms.StoreMessageInfo(mi)
  1441. }
  1442. }
  1443. func (x *PayInfoResp) String() string {
  1444. return protoimpl.X.MessageStringOf(x)
  1445. }
  1446. func (*PayInfoResp) ProtoMessage() {}
  1447. func (x *PayInfoResp) ProtoReflect() protoreflect.Message {
  1448. mi := &file_orderCenter_proto_msgTypes[21]
  1449. if protoimpl.UnsafeEnabled && x != nil {
  1450. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1451. if ms.LoadMessageInfo() == nil {
  1452. ms.StoreMessageInfo(mi)
  1453. }
  1454. return ms
  1455. }
  1456. return mi.MessageOf(x)
  1457. }
  1458. // Deprecated: Use PayInfoResp.ProtoReflect.Descriptor instead.
  1459. func (*PayInfoResp) Descriptor() ([]byte, []int) {
  1460. return file_orderCenter_proto_rawDescGZIP(), []int{21}
  1461. }
  1462. func (x *PayInfoResp) GetErrorCode() int64 {
  1463. if x != nil {
  1464. return x.ErrorCode
  1465. }
  1466. return 0
  1467. }
  1468. func (x *PayInfoResp) GetErrorMsg() string {
  1469. if x != nil {
  1470. return x.ErrorMsg
  1471. }
  1472. return ""
  1473. }
  1474. func (x *PayInfoResp) GetData() []*Pay {
  1475. if x != nil {
  1476. return x.Data
  1477. }
  1478. return nil
  1479. }
  1480. type RefundAddReq struct {
  1481. state protoimpl.MessageState
  1482. sizeCache protoimpl.SizeCache
  1483. unknownFields protoimpl.UnknownFields
  1484. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1485. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1486. RefundStatus int64 `protobuf:"varint,3,opt,name=refund_status,json=refundStatus,proto3" json:"refund_status,omitempty"` //1-全额退款 2-部分退款
  1487. Refund *Refund `protobuf:"bytes,4,opt,name=refund,proto3" json:"refund,omitempty"`
  1488. }
  1489. func (x *RefundAddReq) Reset() {
  1490. *x = RefundAddReq{}
  1491. if protoimpl.UnsafeEnabled {
  1492. mi := &file_orderCenter_proto_msgTypes[22]
  1493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1494. ms.StoreMessageInfo(mi)
  1495. }
  1496. }
  1497. func (x *RefundAddReq) String() string {
  1498. return protoimpl.X.MessageStringOf(x)
  1499. }
  1500. func (*RefundAddReq) ProtoMessage() {}
  1501. func (x *RefundAddReq) ProtoReflect() protoreflect.Message {
  1502. mi := &file_orderCenter_proto_msgTypes[22]
  1503. if protoimpl.UnsafeEnabled && x != nil {
  1504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1505. if ms.LoadMessageInfo() == nil {
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. return ms
  1509. }
  1510. return mi.MessageOf(x)
  1511. }
  1512. // Deprecated: Use RefundAddReq.ProtoReflect.Descriptor instead.
  1513. func (*RefundAddReq) Descriptor() ([]byte, []int) {
  1514. return file_orderCenter_proto_rawDescGZIP(), []int{22}
  1515. }
  1516. func (x *RefundAddReq) GetAppid() string {
  1517. if x != nil {
  1518. return x.Appid
  1519. }
  1520. return ""
  1521. }
  1522. func (x *RefundAddReq) GetOrderCode() string {
  1523. if x != nil {
  1524. return x.OrderCode
  1525. }
  1526. return ""
  1527. }
  1528. func (x *RefundAddReq) GetRefundStatus() int64 {
  1529. if x != nil {
  1530. return x.RefundStatus
  1531. }
  1532. return 0
  1533. }
  1534. func (x *RefundAddReq) GetRefund() *Refund {
  1535. if x != nil {
  1536. return x.Refund
  1537. }
  1538. return nil
  1539. }
  1540. type Refund struct {
  1541. state protoimpl.MessageState
  1542. sizeCache protoimpl.SizeCache
  1543. unknownFields protoimpl.UnknownFields
  1544. RefundMoney int64 `protobuf:"varint,1,opt,name=refund_money,json=refundMoney,proto3" json:"refund_money,omitempty"`
  1545. RefundReason string `protobuf:"bytes,2,opt,name=refund_reason,json=refundReason,proto3" json:"refund_reason,omitempty"`
  1546. OperatePerson string `protobuf:"bytes,3,opt,name=operate_person,json=operatePerson,proto3" json:"operate_person,omitempty"`
  1547. RefundChannel string `protobuf:"bytes,4,opt,name=refund_channel,json=refundChannel,proto3" json:"refund_channel,omitempty"`
  1548. }
  1549. func (x *Refund) Reset() {
  1550. *x = Refund{}
  1551. if protoimpl.UnsafeEnabled {
  1552. mi := &file_orderCenter_proto_msgTypes[23]
  1553. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1554. ms.StoreMessageInfo(mi)
  1555. }
  1556. }
  1557. func (x *Refund) String() string {
  1558. return protoimpl.X.MessageStringOf(x)
  1559. }
  1560. func (*Refund) ProtoMessage() {}
  1561. func (x *Refund) ProtoReflect() protoreflect.Message {
  1562. mi := &file_orderCenter_proto_msgTypes[23]
  1563. if protoimpl.UnsafeEnabled && x != nil {
  1564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1565. if ms.LoadMessageInfo() == nil {
  1566. ms.StoreMessageInfo(mi)
  1567. }
  1568. return ms
  1569. }
  1570. return mi.MessageOf(x)
  1571. }
  1572. // Deprecated: Use Refund.ProtoReflect.Descriptor instead.
  1573. func (*Refund) Descriptor() ([]byte, []int) {
  1574. return file_orderCenter_proto_rawDescGZIP(), []int{23}
  1575. }
  1576. func (x *Refund) GetRefundMoney() int64 {
  1577. if x != nil {
  1578. return x.RefundMoney
  1579. }
  1580. return 0
  1581. }
  1582. func (x *Refund) GetRefundReason() string {
  1583. if x != nil {
  1584. return x.RefundReason
  1585. }
  1586. return ""
  1587. }
  1588. func (x *Refund) GetOperatePerson() string {
  1589. if x != nil {
  1590. return x.OperatePerson
  1591. }
  1592. return ""
  1593. }
  1594. func (x *Refund) GetRefundChannel() string {
  1595. if x != nil {
  1596. return x.RefundChannel
  1597. }
  1598. return ""
  1599. }
  1600. type RefundInfoResp struct {
  1601. state protoimpl.MessageState
  1602. sizeCache protoimpl.SizeCache
  1603. unknownFields protoimpl.UnknownFields
  1604. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1605. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1606. Data []*Refund `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1607. }
  1608. func (x *RefundInfoResp) Reset() {
  1609. *x = RefundInfoResp{}
  1610. if protoimpl.UnsafeEnabled {
  1611. mi := &file_orderCenter_proto_msgTypes[24]
  1612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1613. ms.StoreMessageInfo(mi)
  1614. }
  1615. }
  1616. func (x *RefundInfoResp) String() string {
  1617. return protoimpl.X.MessageStringOf(x)
  1618. }
  1619. func (*RefundInfoResp) ProtoMessage() {}
  1620. func (x *RefundInfoResp) ProtoReflect() protoreflect.Message {
  1621. mi := &file_orderCenter_proto_msgTypes[24]
  1622. if protoimpl.UnsafeEnabled && x != nil {
  1623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1624. if ms.LoadMessageInfo() == nil {
  1625. ms.StoreMessageInfo(mi)
  1626. }
  1627. return ms
  1628. }
  1629. return mi.MessageOf(x)
  1630. }
  1631. // Deprecated: Use RefundInfoResp.ProtoReflect.Descriptor instead.
  1632. func (*RefundInfoResp) Descriptor() ([]byte, []int) {
  1633. return file_orderCenter_proto_rawDescGZIP(), []int{24}
  1634. }
  1635. func (x *RefundInfoResp) GetErrorCode() int64 {
  1636. if x != nil {
  1637. return x.ErrorCode
  1638. }
  1639. return 0
  1640. }
  1641. func (x *RefundInfoResp) GetErrorMsg() string {
  1642. if x != nil {
  1643. return x.ErrorMsg
  1644. }
  1645. return ""
  1646. }
  1647. func (x *RefundInfoResp) GetData() []*Refund {
  1648. if x != nil {
  1649. return x.Data
  1650. }
  1651. return nil
  1652. }
  1653. type InvoiceAddReq struct {
  1654. state protoimpl.MessageState
  1655. sizeCache protoimpl.SizeCache
  1656. unknownFields protoimpl.UnknownFields
  1657. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1658. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1659. Invoice *Invoice `protobuf:"bytes,3,opt,name=invoice,proto3" json:"invoice,omitempty"`
  1660. }
  1661. func (x *InvoiceAddReq) Reset() {
  1662. *x = InvoiceAddReq{}
  1663. if protoimpl.UnsafeEnabled {
  1664. mi := &file_orderCenter_proto_msgTypes[25]
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. ms.StoreMessageInfo(mi)
  1667. }
  1668. }
  1669. func (x *InvoiceAddReq) String() string {
  1670. return protoimpl.X.MessageStringOf(x)
  1671. }
  1672. func (*InvoiceAddReq) ProtoMessage() {}
  1673. func (x *InvoiceAddReq) ProtoReflect() protoreflect.Message {
  1674. mi := &file_orderCenter_proto_msgTypes[25]
  1675. if protoimpl.UnsafeEnabled && x != nil {
  1676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1677. if ms.LoadMessageInfo() == nil {
  1678. ms.StoreMessageInfo(mi)
  1679. }
  1680. return ms
  1681. }
  1682. return mi.MessageOf(x)
  1683. }
  1684. // Deprecated: Use InvoiceAddReq.ProtoReflect.Descriptor instead.
  1685. func (*InvoiceAddReq) Descriptor() ([]byte, []int) {
  1686. return file_orderCenter_proto_rawDescGZIP(), []int{25}
  1687. }
  1688. func (x *InvoiceAddReq) GetAppid() string {
  1689. if x != nil {
  1690. return x.Appid
  1691. }
  1692. return ""
  1693. }
  1694. func (x *InvoiceAddReq) GetOrderCode() string {
  1695. if x != nil {
  1696. return x.OrderCode
  1697. }
  1698. return ""
  1699. }
  1700. func (x *InvoiceAddReq) GetInvoice() *Invoice {
  1701. if x != nil {
  1702. return x.Invoice
  1703. }
  1704. return nil
  1705. }
  1706. type Invoice struct {
  1707. state protoimpl.MessageState
  1708. sizeCache protoimpl.SizeCache
  1709. unknownFields protoimpl.UnknownFields
  1710. PayId int64 `protobuf:"varint,1,opt,name=pay_id,json=payId,proto3" json:"pay_id,omitempty"`
  1711. InvoiceCode string `protobuf:"bytes,2,opt,name=invoice_code,json=invoiceCode,proto3" json:"invoice_code,omitempty"`
  1712. InvoiceNumber string `protobuf:"bytes,3,opt,name=invoice_number,json=invoiceNumber,proto3" json:"invoice_number,omitempty"`
  1713. TaxpayerIdentnum string `protobuf:"bytes,4,opt,name=taxpayer_identnum,json=taxpayerIdentnum,proto3" json:"taxpayer_identnum,omitempty"`
  1714. CompanyName string `protobuf:"bytes,5,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
  1715. Phone string `protobuf:"bytes,6,opt,name=phone,proto3" json:"phone,omitempty"`
  1716. Mail string `protobuf:"bytes,7,opt,name=mail,proto3" json:"mail,omitempty"`
  1717. InvoiceType string `protobuf:"bytes,8,opt,name=invoice_type,json=invoiceType,proto3" json:"invoice_type,omitempty"`
  1718. InvoiceContent string `protobuf:"bytes,9,opt,name=invoice_content,json=invoiceContent,proto3" json:"invoice_content,omitempty"`
  1719. Url string `protobuf:"bytes,10,opt,name=url,proto3" json:"url,omitempty"`
  1720. InvoiceStatus int64 `protobuf:"varint,11,opt,name=invoice_status,json=invoiceStatus,proto3" json:"invoice_status,omitempty"` //-1-失败 0-开票中 1-成功 2-退票中 3-已冲红 4-退票失败 5-已换票
  1721. InvoiceSerialnum string `protobuf:"bytes,12,opt,name=invoice_serialnum,json=invoiceSerialnum,proto3" json:"invoice_serialnum,omitempty"`
  1722. CreateTime string `protobuf:"bytes,13,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  1723. BillingTime string `protobuf:"bytes,14,opt,name=billing_time,json=billingTime,proto3" json:"billing_time,omitempty"`
  1724. UserId string `protobuf:"bytes,15,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1725. Operator string `protobuf:"bytes,16,opt,name=operator,proto3" json:"operator,omitempty"`
  1726. OperableTime string `protobuf:"bytes,17,opt,name=operable_time,json=operableTime,proto3" json:"operable_time,omitempty"`
  1727. Red string `protobuf:"bytes,18,opt,name=red,proto3" json:"red,omitempty"`
  1728. }
  1729. func (x *Invoice) Reset() {
  1730. *x = Invoice{}
  1731. if protoimpl.UnsafeEnabled {
  1732. mi := &file_orderCenter_proto_msgTypes[26]
  1733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1734. ms.StoreMessageInfo(mi)
  1735. }
  1736. }
  1737. func (x *Invoice) String() string {
  1738. return protoimpl.X.MessageStringOf(x)
  1739. }
  1740. func (*Invoice) ProtoMessage() {}
  1741. func (x *Invoice) ProtoReflect() protoreflect.Message {
  1742. mi := &file_orderCenter_proto_msgTypes[26]
  1743. if protoimpl.UnsafeEnabled && x != nil {
  1744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1745. if ms.LoadMessageInfo() == nil {
  1746. ms.StoreMessageInfo(mi)
  1747. }
  1748. return ms
  1749. }
  1750. return mi.MessageOf(x)
  1751. }
  1752. // Deprecated: Use Invoice.ProtoReflect.Descriptor instead.
  1753. func (*Invoice) Descriptor() ([]byte, []int) {
  1754. return file_orderCenter_proto_rawDescGZIP(), []int{26}
  1755. }
  1756. func (x *Invoice) GetPayId() int64 {
  1757. if x != nil {
  1758. return x.PayId
  1759. }
  1760. return 0
  1761. }
  1762. func (x *Invoice) GetInvoiceCode() string {
  1763. if x != nil {
  1764. return x.InvoiceCode
  1765. }
  1766. return ""
  1767. }
  1768. func (x *Invoice) GetInvoiceNumber() string {
  1769. if x != nil {
  1770. return x.InvoiceNumber
  1771. }
  1772. return ""
  1773. }
  1774. func (x *Invoice) GetTaxpayerIdentnum() string {
  1775. if x != nil {
  1776. return x.TaxpayerIdentnum
  1777. }
  1778. return ""
  1779. }
  1780. func (x *Invoice) GetCompanyName() string {
  1781. if x != nil {
  1782. return x.CompanyName
  1783. }
  1784. return ""
  1785. }
  1786. func (x *Invoice) GetPhone() string {
  1787. if x != nil {
  1788. return x.Phone
  1789. }
  1790. return ""
  1791. }
  1792. func (x *Invoice) GetMail() string {
  1793. if x != nil {
  1794. return x.Mail
  1795. }
  1796. return ""
  1797. }
  1798. func (x *Invoice) GetInvoiceType() string {
  1799. if x != nil {
  1800. return x.InvoiceType
  1801. }
  1802. return ""
  1803. }
  1804. func (x *Invoice) GetInvoiceContent() string {
  1805. if x != nil {
  1806. return x.InvoiceContent
  1807. }
  1808. return ""
  1809. }
  1810. func (x *Invoice) GetUrl() string {
  1811. if x != nil {
  1812. return x.Url
  1813. }
  1814. return ""
  1815. }
  1816. func (x *Invoice) GetInvoiceStatus() int64 {
  1817. if x != nil {
  1818. return x.InvoiceStatus
  1819. }
  1820. return 0
  1821. }
  1822. func (x *Invoice) GetInvoiceSerialnum() string {
  1823. if x != nil {
  1824. return x.InvoiceSerialnum
  1825. }
  1826. return ""
  1827. }
  1828. func (x *Invoice) GetCreateTime() string {
  1829. if x != nil {
  1830. return x.CreateTime
  1831. }
  1832. return ""
  1833. }
  1834. func (x *Invoice) GetBillingTime() string {
  1835. if x != nil {
  1836. return x.BillingTime
  1837. }
  1838. return ""
  1839. }
  1840. func (x *Invoice) GetUserId() string {
  1841. if x != nil {
  1842. return x.UserId
  1843. }
  1844. return ""
  1845. }
  1846. func (x *Invoice) GetOperator() string {
  1847. if x != nil {
  1848. return x.Operator
  1849. }
  1850. return ""
  1851. }
  1852. func (x *Invoice) GetOperableTime() string {
  1853. if x != nil {
  1854. return x.OperableTime
  1855. }
  1856. return ""
  1857. }
  1858. func (x *Invoice) GetRed() string {
  1859. if x != nil {
  1860. return x.Red
  1861. }
  1862. return ""
  1863. }
  1864. type InvoiceInfoResp struct {
  1865. state protoimpl.MessageState
  1866. sizeCache protoimpl.SizeCache
  1867. unknownFields protoimpl.UnknownFields
  1868. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1869. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1870. Data *Invoice `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1871. }
  1872. func (x *InvoiceInfoResp) Reset() {
  1873. *x = InvoiceInfoResp{}
  1874. if protoimpl.UnsafeEnabled {
  1875. mi := &file_orderCenter_proto_msgTypes[27]
  1876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1877. ms.StoreMessageInfo(mi)
  1878. }
  1879. }
  1880. func (x *InvoiceInfoResp) String() string {
  1881. return protoimpl.X.MessageStringOf(x)
  1882. }
  1883. func (*InvoiceInfoResp) ProtoMessage() {}
  1884. func (x *InvoiceInfoResp) ProtoReflect() protoreflect.Message {
  1885. mi := &file_orderCenter_proto_msgTypes[27]
  1886. if protoimpl.UnsafeEnabled && x != nil {
  1887. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1888. if ms.LoadMessageInfo() == nil {
  1889. ms.StoreMessageInfo(mi)
  1890. }
  1891. return ms
  1892. }
  1893. return mi.MessageOf(x)
  1894. }
  1895. // Deprecated: Use InvoiceInfoResp.ProtoReflect.Descriptor instead.
  1896. func (*InvoiceInfoResp) Descriptor() ([]byte, []int) {
  1897. return file_orderCenter_proto_rawDescGZIP(), []int{27}
  1898. }
  1899. func (x *InvoiceInfoResp) GetErrorCode() int64 {
  1900. if x != nil {
  1901. return x.ErrorCode
  1902. }
  1903. return 0
  1904. }
  1905. func (x *InvoiceInfoResp) GetErrorMsg() string {
  1906. if x != nil {
  1907. return x.ErrorMsg
  1908. }
  1909. return ""
  1910. }
  1911. func (x *InvoiceInfoResp) GetData() *Invoice {
  1912. if x != nil {
  1913. return x.Data
  1914. }
  1915. return nil
  1916. }
  1917. type InvoiceInfoReq struct {
  1918. state protoimpl.MessageState
  1919. sizeCache protoimpl.SizeCache
  1920. unknownFields protoimpl.UnknownFields
  1921. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1922. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1923. PayId string `protobuf:"bytes,3,opt,name=pay_id,json=payId,proto3" json:"pay_id,omitempty"`
  1924. }
  1925. func (x *InvoiceInfoReq) Reset() {
  1926. *x = InvoiceInfoReq{}
  1927. if protoimpl.UnsafeEnabled {
  1928. mi := &file_orderCenter_proto_msgTypes[28]
  1929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1930. ms.StoreMessageInfo(mi)
  1931. }
  1932. }
  1933. func (x *InvoiceInfoReq) String() string {
  1934. return protoimpl.X.MessageStringOf(x)
  1935. }
  1936. func (*InvoiceInfoReq) ProtoMessage() {}
  1937. func (x *InvoiceInfoReq) ProtoReflect() protoreflect.Message {
  1938. mi := &file_orderCenter_proto_msgTypes[28]
  1939. if protoimpl.UnsafeEnabled && x != nil {
  1940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1941. if ms.LoadMessageInfo() == nil {
  1942. ms.StoreMessageInfo(mi)
  1943. }
  1944. return ms
  1945. }
  1946. return mi.MessageOf(x)
  1947. }
  1948. // Deprecated: Use InvoiceInfoReq.ProtoReflect.Descriptor instead.
  1949. func (*InvoiceInfoReq) Descriptor() ([]byte, []int) {
  1950. return file_orderCenter_proto_rawDescGZIP(), []int{28}
  1951. }
  1952. func (x *InvoiceInfoReq) GetAppid() string {
  1953. if x != nil {
  1954. return x.Appid
  1955. }
  1956. return ""
  1957. }
  1958. func (x *InvoiceInfoReq) GetOrderCode() string {
  1959. if x != nil {
  1960. return x.OrderCode
  1961. }
  1962. return ""
  1963. }
  1964. func (x *InvoiceInfoReq) GetPayId() string {
  1965. if x != nil {
  1966. return x.PayId
  1967. }
  1968. return ""
  1969. }
  1970. type OrderExamineReq struct {
  1971. state protoimpl.MessageState
  1972. sizeCache protoimpl.SizeCache
  1973. unknownFields protoimpl.UnknownFields
  1974. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  1975. OrderCode string `protobuf:"bytes,2,opt,name=order_code,json=orderCode,proto3" json:"order_code,omitempty"`
  1976. AuditStatus int64 `protobuf:"varint,3,opt,name=audit_status,json=auditStatus,proto3" json:"audit_status,omitempty"` //审核状态;0:待提交 1:待审核 2:审核中 3:审核通过(默认值,前台应用) 4:审核不通过
  1977. AuditPerson string `protobuf:"bytes,4,opt,name=audit_person,json=auditPerson,proto3" json:"audit_person,omitempty"`
  1978. Remark string `protobuf:"bytes,5,opt,name=remark,proto3" json:"remark,omitempty"`
  1979. }
  1980. func (x *OrderExamineReq) Reset() {
  1981. *x = OrderExamineReq{}
  1982. if protoimpl.UnsafeEnabled {
  1983. mi := &file_orderCenter_proto_msgTypes[29]
  1984. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1985. ms.StoreMessageInfo(mi)
  1986. }
  1987. }
  1988. func (x *OrderExamineReq) String() string {
  1989. return protoimpl.X.MessageStringOf(x)
  1990. }
  1991. func (*OrderExamineReq) ProtoMessage() {}
  1992. func (x *OrderExamineReq) ProtoReflect() protoreflect.Message {
  1993. mi := &file_orderCenter_proto_msgTypes[29]
  1994. if protoimpl.UnsafeEnabled && x != nil {
  1995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1996. if ms.LoadMessageInfo() == nil {
  1997. ms.StoreMessageInfo(mi)
  1998. }
  1999. return ms
  2000. }
  2001. return mi.MessageOf(x)
  2002. }
  2003. // Deprecated: Use OrderExamineReq.ProtoReflect.Descriptor instead.
  2004. func (*OrderExamineReq) Descriptor() ([]byte, []int) {
  2005. return file_orderCenter_proto_rawDescGZIP(), []int{29}
  2006. }
  2007. func (x *OrderExamineReq) GetAppid() string {
  2008. if x != nil {
  2009. return x.Appid
  2010. }
  2011. return ""
  2012. }
  2013. func (x *OrderExamineReq) GetOrderCode() string {
  2014. if x != nil {
  2015. return x.OrderCode
  2016. }
  2017. return ""
  2018. }
  2019. func (x *OrderExamineReq) GetAuditStatus() int64 {
  2020. if x != nil {
  2021. return x.AuditStatus
  2022. }
  2023. return 0
  2024. }
  2025. func (x *OrderExamineReq) GetAuditPerson() string {
  2026. if x != nil {
  2027. return x.AuditPerson
  2028. }
  2029. return ""
  2030. }
  2031. func (x *OrderExamineReq) GetRemark() string {
  2032. if x != nil {
  2033. return x.Remark
  2034. }
  2035. return ""
  2036. }
  2037. var File_orderCenter_proto protoreflect.FileDescriptor
  2038. var file_orderCenter_proto_rawDesc = []byte{
  2039. 0x0a, 0x11, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72,
  2040. 0x6f, 0x74, 0x6f, 0x22, 0x27, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43,
  2041. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18,
  2042. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x6e, 0x0a, 0x10,
  2043. 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  2044. 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2045. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2046. 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  2047. 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04,
  2048. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x4f, 0x72, 0x64,
  2049. 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2a, 0x0a, 0x09,
  2050. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64,
  2051. 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  2052. 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x88, 0x02, 0x0a, 0x11, 0x4f, 0x72, 0x64,
  2053. 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14,
  2054. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  2055. 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f,
  2056. 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43,
  2057. 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  2058. 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65,
  2059. 0x72, 0x12, 0x2f, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2060. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45,
  2061. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65,
  2062. 0x6e, 0x64, 0x12, 0x38, 0x0a, 0x0f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6d, 0x6d,
  2063. 0x6f, 0x64, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x4f, 0x72,
  2064. 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x52, 0x0e, 0x6f, 0x72,
  2065. 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x12, 0x35, 0x0a, 0x0e,
  2066. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x18, 0x06,
  2067. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69,
  2068. 0x6e, 0x65, 0x73, 0x73, 0x52, 0x0d, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69, 0x6e,
  2069. 0x65, 0x73, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61,
  2070. 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05,
  2071. 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
  2072. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  2073. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64,
  2074. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
  2075. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x21,
  2076. 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04,
  2077. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75,
  2078. 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x05, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6f,
  2079. 0x72, 0x64, 0x65, 0x72, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2080. 0x52, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x0e,
  2081. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02,
  2082. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x50, 0x72,
  2083. 0x69, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69,
  2084. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  2085. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74,
  2086. 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65,
  2087. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
  2088. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2089. 0x12, 0x15, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  2090. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0xcc, 0x01, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65,
  2091. 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x74,
  2092. 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x79,
  2093. 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
  2094. 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x69,
  2095. 0x73, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x69,
  2096. 0x73, 0x57, 0x6f, 0x72, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x69,
  2097. 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x69, 0x73,
  2098. 0x63, 0x61, 0x6e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x73,
  2099. 0x63, 0x61, 0x6e, 0x5f, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01,
  2100. 0x28, 0x03, 0x52, 0x0d, 0x69, 0x73, 0x63, 0x61, 0x6e, 0x45, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74,
  2101. 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74,
  2102. 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  2103. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2104. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x6f, 0x6f,
  2105. 0x64, 0x73, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67,
  2106. 0x6f, 0x6f, 0x64, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6f, 0x6f, 0x64,
  2107. 0x73, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2108. 0x0b, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x53, 0x70, 0x65, 0x63, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03,
  2109. 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14,
  2110. 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70,
  2111. 0x72, 0x69, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20,
  2112. 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  2113. 0x67, 0x69, 0x66, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x67, 0x69,
  2114. 0x66, 0x74, 0x22, 0xbc, 0x03, 0x0a, 0x0d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75, 0x73, 0x69,
  2115. 0x6e, 0x65, 0x73, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f,
  2116. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x73, 0x65,
  2117. 0x72, 0x76, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x66,
  2118. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c,
  2119. 0x74, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x6b, 0x65,
  2120. 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  2121. 0x4b, 0x65, 0x79, 0x73, 0x12, 0x2d, 0x0a, 0x12, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70,
  2122. 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2123. 0x52, 0x11, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x74,
  2124. 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74,
  2125. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69,
  2126. 0x63, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x63,
  2127. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61,
  2128. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f,
  2129. 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  2130. 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x75,
  2131. 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
  2132. 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x63,
  2133. 0x6f, 0x64, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x6f, 0x6f, 0x64, 0x73,
  2134. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x70,
  2135. 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x67, 0x6f, 0x6f,
  2136. 0x64, 0x73, 0x53, 0x70, 0x65, 0x63, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
  2137. 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x75, 0x73,
  2138. 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f,
  2139. 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
  2140. 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x70, 0x65,
  2141. 0x63, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x53, 0x70, 0x65,
  2142. 0x63, 0x22, 0x42, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71,
  2143. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2144. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
  2145. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65,
  2146. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x71, 0x0a, 0x12, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64,
  2147. 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  2148. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2149. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  2150. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  2151. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2152. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53, 0x74, 0x61, 0x74,
  2153. 0x75, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x24, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  2154. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2155. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb7,
  2156. 0x01, 0x0a, 0x0c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  2157. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2158. 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
  2159. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e,
  2160. 0x0a, 0x0b, 0x6e, 0x65, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
  2161. 0x01, 0x28, 0x03, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20,
  2162. 0x0a, 0x0c, 0x6e, 0x65, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x04,
  2163. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73,
  2164. 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01,
  2165. 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1b, 0x0a, 0x09, 0x70,
  2166. 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  2167. 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x6b, 0x0a, 0x0d, 0x4f, 0x72, 0x64, 0x65,
  2168. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  2169. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  2170. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  2171. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  2172. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  2173. 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2174. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xfb, 0x02, 0x0a, 0x0a, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  2175. 0x69, 0x73, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20,
  2176. 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72,
  2177. 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2178. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74,
  2179. 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61,
  2180. 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18,
  2181. 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f,
  2182. 0x72, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x65, 0x78,
  2183. 0x74, 0x65, 0x6e, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4f, 0x72, 0x64,
  2184. 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x45,
  2185. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x12, 0x38, 0x0a, 0x0f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63,
  2186. 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f,
  2187. 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x52,
  2188. 0x0e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x64, 0x69, 0x74, 0x79, 0x12,
  2189. 0x35, 0x0a, 0x0e, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  2190. 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x42,
  2191. 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x0d, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x75,
  2192. 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2193. 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72,
  2194. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61,
  2195. 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  2196. 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x74, 0x5f,
  2197. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x74, 0x54,
  2198. 0x69, 0x6d, 0x65, 0x22, 0x4d, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2199. 0x12, 0x2a, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  2200. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2201. 0x73, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05,
  2202. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75,
  2203. 0x6e, 0x74, 0x22, 0x60, 0x0a, 0x0c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  2204. 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2205. 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65,
  2206. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72,
  2207. 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f,
  2208. 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61,
  2209. 0x54, 0x79, 0x70, 0x65, 0x22, 0x6b, 0x0a, 0x0d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66,
  2210. 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  2211. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2212. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  2213. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  2214. 0x67, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2215. 0x0a, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74,
  2216. 0x61, 0x22, 0x3e, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x31,
  2217. 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01,
  2218. 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64,
  2219. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66,
  2220. 0x6f, 0x22, 0x58, 0x0a, 0x09, 0x50, 0x61, 0x79, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14,
  2221. 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
  2222. 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f,
  2223. 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43,
  2224. 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x03, 0x70, 0x61, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  2225. 0x32, 0x04, 0x2e, 0x50, 0x61, 0x79, 0x52, 0x03, 0x70, 0x61, 0x79, 0x22, 0xc3, 0x05, 0x0a, 0x03,
  2226. 0x50, 0x61, 0x79, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x5f, 0x77, 0x61, 0x79, 0x18, 0x01,
  2227. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x61, 0x79, 0x57, 0x61, 0x79, 0x12, 0x1b, 0x0a, 0x09,
  2228. 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2229. 0x08, 0x70, 0x61, 0x79, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79,
  2230. 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79,
  2231. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x61, 0x79, 0x5f, 0x76, 0x6f, 0x75, 0x63,
  2232. 0x68, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x70,
  2233. 0x61, 0x79, 0x56, 0x6f, 0x75, 0x63, 0x68, 0x65, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x0b,
  2234. 0x70, 0x61, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28,
  2235. 0x09, 0x52, 0x0a, 0x70, 0x61, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a,
  2236. 0x08, 0x70, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  2237. 0x07, 0x70, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x63, 0x6f, 0x6c, 0x6c,
  2238. 0x65, 0x63, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28,
  2239. 0x09, 0x52, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  2240. 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
  2241. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  2242. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f,
  2243. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6f, 0x70,
  2244. 0x65, 0x72, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x6f,
  2245. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2246. 0x09, 0x52, 0x0b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16,
  2247. 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2248. 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x72, 0x65, 0x70, 0x61, 0x79,
  2249. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x72, 0x65,
  2250. 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x72, 0x65, 0x70, 0x61,
  2251. 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x65, 0x70,
  2252. 0x61, 0x79, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f, 0x74, 0x72, 0x61, 0x64,
  2253. 0x65, 0x5f, 0x6e, 0x6f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x75, 0x74, 0x54,
  2254. 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x75,
  2255. 0x72, 0x6c, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x55, 0x72,
  2256. 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x63,
  2257. 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50,
  2258. 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x64,
  2259. 0x65, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28,
  2260. 0x03, 0x52, 0x11, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x44, 0x65, 0x64, 0x75, 0x63, 0x74, 0x43,
  2261. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x5f, 0x64,
  2262. 0x65, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x12, 0x20, 0x01,
  2263. 0x28, 0x03, 0x52, 0x12, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x44, 0x65, 0x64, 0x75, 0x63, 0x74,
  2264. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x63,
  2265. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x61, 0x72, 0x64,
  2266. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x6d,
  2267. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x61, 0x72, 0x64,
  2268. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x70, 0x61, 0x79, 0x5f, 0x74, 0x69,
  2269. 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d,
  2270. 0x65, 0x22, 0x63, 0x0a, 0x0b, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
  2271. 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2272. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2273. 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  2274. 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x18, 0x0a, 0x04,
  2275. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x04, 0x2e, 0x50, 0x61, 0x79,
  2276. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x89, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x66, 0x75, 0x6e,
  2277. 0x64, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
  2278. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a,
  2279. 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2280. 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d,
  2281. 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20,
  2282. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75,
  2283. 0x73, 0x12, 0x1f, 0x0a, 0x06, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  2284. 0x0b, 0x32, 0x07, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x52, 0x06, 0x72, 0x65, 0x66, 0x75,
  2285. 0x6e, 0x64, 0x22, 0x9e, 0x01, 0x0a, 0x06, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x12, 0x21, 0x0a,
  2286. 0x0c, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20,
  2287. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x4d, 0x6f, 0x6e, 0x65, 0x79,
  2288. 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f,
  2289. 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x52,
  2290. 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65,
  2291. 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6f,
  2292. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e,
  2293. 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x04,
  2294. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x6e,
  2295. 0x6e, 0x65, 0x6c, 0x22, 0x69, 0x0a, 0x0e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66,
  2296. 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  2297. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2298. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  2299. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  2300. 0x67, 0x12, 0x1b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2301. 0x07, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x68,
  2302. 0x0a, 0x0d, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12,
  2303. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2304. 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x63,
  2305. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72,
  2306. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x18,
  2307. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52,
  2308. 0x07, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x22, 0xc6, 0x04, 0x0a, 0x07, 0x49, 0x6e, 0x76,
  2309. 0x6f, 0x69, 0x63, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x61, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01,
  2310. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x61, 0x79, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x69,
  2311. 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2312. 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x25,
  2313. 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2314. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e,
  2315. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65,
  2316. 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x6e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2317. 0x52, 0x10, 0x74, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x6e,
  2318. 0x75, 0x6d, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x5f, 0x6e, 0x61,
  2319. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  2320. 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06,
  2321. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d,
  2322. 0x61, 0x69, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12,
  2323. 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  2324. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x54, 0x79,
  2325. 0x70, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f,
  2326. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x76,
  2327. 0x6f, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75,
  2328. 0x72, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x25, 0x0a,
  2329. 0x0e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  2330. 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x53, 0x74,
  2331. 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f,
  2332. 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x6e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  2333. 0x10, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x6e, 0x75,
  2334. 0x6d, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2335. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  2336. 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x69,
  2337. 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e,
  2338. 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
  2339. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a,
  2340. 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09,
  2341. 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70,
  2342. 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28,
  2343. 0x09, 0x52, 0x0c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2344. 0x10, 0x0a, 0x03, 0x72, 0x65, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65,
  2345. 0x64, 0x22, 0x6b, 0x0a, 0x0f, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2346. 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f,
  2347. 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43,
  2348. 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67,
  2349. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67,
  2350. 0x12, 0x1c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08,
  2351. 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x5c,
  2352. 0x0a, 0x0e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
  2353. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2354. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
  2355. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65,
  2356. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x70, 0x61, 0x79, 0x5f, 0x69, 0x64, 0x18,
  2357. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x61, 0x79, 0x49, 0x64, 0x22, 0xa4, 0x01, 0x0a,
  2358. 0x0f, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71,
  2359. 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2360. 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
  2361. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65,
  2362. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x73,
  2363. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x61, 0x75, 0x64,
  2364. 0x69, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x75, 0x64, 0x69,
  2365. 0x74, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2366. 0x61, 0x75, 0x64, 0x69, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x72,
  2367. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x6d,
  2368. 0x61, 0x72, 0x6b, 0x32, 0xa2, 0x06, 0x0a, 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x65, 0x6e,
  2369. 0x74, 0x65, 0x72, 0x12, 0x33, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43,
  2370. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x6f,
  2371. 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2372. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65,
  2373. 0x72, 0x41, 0x64, 0x64, 0x12, 0x12, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55,
  2374. 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2375. 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a,
  2376. 0x0b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x12, 0x2e, 0x4f,
  2377. 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
  2378. 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74,
  2379. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3f, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74,
  2380. 0x61, 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x15, 0x2e, 0x4f, 0x72, 0x64,
  2381. 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65,
  2382. 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61,
  2383. 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44,
  2384. 0x65, 0x6c, 0x12, 0x0c, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71,
  2385. 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74,
  2386. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2a, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  2387. 0x73, 0x74, 0x12, 0x0d, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2388. 0x71, 0x1a, 0x0e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
  2389. 0x70, 0x12, 0x2a, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0d,
  2390. 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e,
  2391. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a,
  2392. 0x0c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x10, 0x2e,
  2393. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a,
  2394. 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2395. 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x06, 0x50, 0x61, 0x79, 0x41, 0x64, 0x64, 0x12, 0x0a,
  2396. 0x2e, 0x50, 0x61, 0x79, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64,
  2397. 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  2398. 0x26, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0d, 0x2e, 0x4f, 0x72, 0x64,
  2399. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x50, 0x61, 0x79, 0x49,
  2400. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x09, 0x52, 0x65, 0x66, 0x75, 0x6e,
  2401. 0x64, 0x41, 0x64, 0x64, 0x12, 0x0d, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x41, 0x64, 0x64,
  2402. 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55, 0x70,
  2403. 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x0a, 0x52, 0x65, 0x66, 0x75,
  2404. 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0d, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e,
  2405. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x49, 0x6e,
  2406. 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x31, 0x0a, 0x0a, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
  2407. 0x65, 0x41, 0x64, 0x64, 0x12, 0x0e, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64,
  2408. 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x55,
  2409. 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x49, 0x6e, 0x76,
  2410. 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0f, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69,
  2411. 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x49, 0x6e, 0x76, 0x6f,
  2412. 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x06, 0x52,
  2413. 0x65, 0x64, 0x41, 0x64, 0x64, 0x12, 0x0e, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41,
  2414. 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64,
  2415. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x07, 0x52, 0x65,
  2416. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0f, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49,
  2417. 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
  2418. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62,
  2419. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2420. }
  2421. var (
  2422. file_orderCenter_proto_rawDescOnce sync.Once
  2423. file_orderCenter_proto_rawDescData = file_orderCenter_proto_rawDesc
  2424. )
  2425. func file_orderCenter_proto_rawDescGZIP() []byte {
  2426. file_orderCenter_proto_rawDescOnce.Do(func() {
  2427. file_orderCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_orderCenter_proto_rawDescData)
  2428. })
  2429. return file_orderCenter_proto_rawDescData
  2430. }
  2431. var file_orderCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
  2432. var file_orderCenter_proto_goTypes = []interface{}{
  2433. (*GetOrderCodeReq)(nil), // 0: GetOrderCodeReq
  2434. (*GetOrderCodeResp)(nil), // 1: GetOrderCodeResp
  2435. (*OrderCode)(nil), // 2: OrderCode
  2436. (*OrderAddUpdateReq)(nil), // 3: OrderAddUpdateReq
  2437. (*OrderStatusUpdateReq)(nil), // 4: OrderStatusUpdateReq
  2438. (*Order)(nil), // 5: Order
  2439. (*OrderExtend)(nil), // 6: OrderExtend
  2440. (*OrderCommodity)(nil), // 7: OrderCommodity
  2441. (*OrderBusiness)(nil), // 8: OrderBusiness
  2442. (*OrderDelReq)(nil), // 9: OrderDelReq
  2443. (*OrderAddUpdateResp)(nil), // 10: OrderAddUpdateResp
  2444. (*DataStatus)(nil), // 11: DataStatus
  2445. (*OrderListReq)(nil), // 12: OrderListReq
  2446. (*OrderListResp)(nil), // 13: OrderListResp
  2447. (*OrderLists)(nil), // 14: OrderLists
  2448. (*OrderList)(nil), // 15: OrderList
  2449. (*OrderInfoReq)(nil), // 16: OrderInfoReq
  2450. (*OrderInfoResp)(nil), // 17: OrderInfoResp
  2451. (*OrderInfo)(nil), // 18: OrderInfo
  2452. (*PayAddReq)(nil), // 19: PayAddReq
  2453. (*Pay)(nil), // 20: Pay
  2454. (*PayInfoResp)(nil), // 21: PayInfoResp
  2455. (*RefundAddReq)(nil), // 22: RefundAddReq
  2456. (*Refund)(nil), // 23: Refund
  2457. (*RefundInfoResp)(nil), // 24: RefundInfoResp
  2458. (*InvoiceAddReq)(nil), // 25: InvoiceAddReq
  2459. (*Invoice)(nil), // 26: Invoice
  2460. (*InvoiceInfoResp)(nil), // 27: InvoiceInfoResp
  2461. (*InvoiceInfoReq)(nil), // 28: InvoiceInfoReq
  2462. (*OrderExamineReq)(nil), // 29: OrderExamineReq
  2463. }
  2464. var file_orderCenter_proto_depIdxs = []int32{
  2465. 2, // 0: GetOrderCodeResp.data:type_name -> OrderCode
  2466. 5, // 1: OrderAddUpdateReq.order:type_name -> Order
  2467. 6, // 2: OrderAddUpdateReq.order_extend:type_name -> OrderExtend
  2468. 7, // 3: OrderAddUpdateReq.order_commodity:type_name -> OrderCommodity
  2469. 8, // 4: OrderAddUpdateReq.order_business:type_name -> OrderBusiness
  2470. 11, // 5: OrderAddUpdateResp.data:type_name -> DataStatus
  2471. 15, // 6: OrderListResp.data:type_name -> OrderList
  2472. 5, // 7: OrderLists.order:type_name -> Order
  2473. 6, // 8: OrderLists.order_extend:type_name -> OrderExtend
  2474. 7, // 9: OrderLists.order_commodity:type_name -> OrderCommodity
  2475. 8, // 10: OrderLists.order_business:type_name -> OrderBusiness
  2476. 14, // 11: OrderList.order_list:type_name -> OrderLists
  2477. 18, // 12: OrderInfoResp.data:type_name -> OrderInfo
  2478. 3, // 13: OrderInfo.order_info:type_name -> OrderAddUpdateReq
  2479. 20, // 14: PayAddReq.pay:type_name -> Pay
  2480. 20, // 15: PayInfoResp.data:type_name -> Pay
  2481. 23, // 16: RefundAddReq.refund:type_name -> Refund
  2482. 23, // 17: RefundInfoResp.data:type_name -> Refund
  2483. 26, // 18: InvoiceAddReq.invoice:type_name -> Invoice
  2484. 26, // 19: InvoiceInfoResp.data:type_name -> Invoice
  2485. 0, // 20: OrderCenter.GetOrderCode:input_type -> GetOrderCodeReq
  2486. 3, // 21: OrderCenter.OrderAdd:input_type -> OrderAddUpdateReq
  2487. 3, // 22: OrderCenter.OrderUpdate:input_type -> OrderAddUpdateReq
  2488. 4, // 23: OrderCenter.OrderStatusUpdate:input_type -> OrderStatusUpdateReq
  2489. 9, // 24: OrderCenter.OrderDel:input_type -> OrderDelReq
  2490. 12, // 25: OrderCenter.OrderList:input_type -> OrderListReq
  2491. 16, // 26: OrderCenter.OrderInfo:input_type -> OrderInfoReq
  2492. 29, // 27: OrderCenter.OrderExamine:input_type -> OrderExamineReq
  2493. 19, // 28: OrderCenter.PayAdd:input_type -> PayAddReq
  2494. 16, // 29: OrderCenter.PayInfo:input_type -> OrderInfoReq
  2495. 22, // 30: OrderCenter.RefundAdd:input_type -> RefundAddReq
  2496. 16, // 31: OrderCenter.RefundInfo:input_type -> OrderInfoReq
  2497. 25, // 32: OrderCenter.InvoiceAdd:input_type -> InvoiceAddReq
  2498. 28, // 33: OrderCenter.InvoiceInfo:input_type -> InvoiceInfoReq
  2499. 25, // 34: OrderCenter.RedAdd:input_type -> InvoiceAddReq
  2500. 28, // 35: OrderCenter.RedInfo:input_type -> InvoiceInfoReq
  2501. 1, // 36: OrderCenter.GetOrderCode:output_type -> GetOrderCodeResp
  2502. 10, // 37: OrderCenter.OrderAdd:output_type -> OrderAddUpdateResp
  2503. 10, // 38: OrderCenter.OrderUpdate:output_type -> OrderAddUpdateResp
  2504. 10, // 39: OrderCenter.OrderStatusUpdate:output_type -> OrderAddUpdateResp
  2505. 10, // 40: OrderCenter.OrderDel:output_type -> OrderAddUpdateResp
  2506. 13, // 41: OrderCenter.OrderList:output_type -> OrderListResp
  2507. 17, // 42: OrderCenter.OrderInfo:output_type -> OrderInfoResp
  2508. 10, // 43: OrderCenter.OrderExamine:output_type -> OrderAddUpdateResp
  2509. 10, // 44: OrderCenter.PayAdd:output_type -> OrderAddUpdateResp
  2510. 21, // 45: OrderCenter.PayInfo:output_type -> PayInfoResp
  2511. 10, // 46: OrderCenter.RefundAdd:output_type -> OrderAddUpdateResp
  2512. 24, // 47: OrderCenter.RefundInfo:output_type -> RefundInfoResp
  2513. 10, // 48: OrderCenter.InvoiceAdd:output_type -> OrderAddUpdateResp
  2514. 27, // 49: OrderCenter.InvoiceInfo:output_type -> InvoiceInfoResp
  2515. 10, // 50: OrderCenter.RedAdd:output_type -> OrderAddUpdateResp
  2516. 27, // 51: OrderCenter.RedInfo:output_type -> InvoiceInfoResp
  2517. 36, // [36:52] is the sub-list for method output_type
  2518. 20, // [20:36] is the sub-list for method input_type
  2519. 20, // [20:20] is the sub-list for extension type_name
  2520. 20, // [20:20] is the sub-list for extension extendee
  2521. 0, // [0:20] is the sub-list for field type_name
  2522. }
  2523. func init() { file_orderCenter_proto_init() }
  2524. func file_orderCenter_proto_init() {
  2525. if File_orderCenter_proto != nil {
  2526. return
  2527. }
  2528. if !protoimpl.UnsafeEnabled {
  2529. file_orderCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2530. switch v := v.(*GetOrderCodeReq); 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[1].Exporter = func(v interface{}, i int) interface{} {
  2542. switch v := v.(*GetOrderCodeResp); 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[2].Exporter = func(v interface{}, i int) interface{} {
  2554. switch v := v.(*OrderCode); 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[3].Exporter = func(v interface{}, i int) interface{} {
  2566. switch v := v.(*OrderAddUpdateReq); 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[4].Exporter = func(v interface{}, i int) interface{} {
  2578. switch v := v.(*OrderStatusUpdateReq); 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[5].Exporter = func(v interface{}, i int) interface{} {
  2590. switch v := v.(*Order); 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[6].Exporter = func(v interface{}, i int) interface{} {
  2602. switch v := v.(*OrderExtend); 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[7].Exporter = func(v interface{}, i int) interface{} {
  2614. switch v := v.(*OrderCommodity); 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[8].Exporter = func(v interface{}, i int) interface{} {
  2626. switch v := v.(*OrderBusiness); 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[9].Exporter = func(v interface{}, i int) interface{} {
  2638. switch v := v.(*OrderDelReq); 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[10].Exporter = func(v interface{}, i int) interface{} {
  2650. switch v := v.(*OrderAddUpdateResp); 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[11].Exporter = func(v interface{}, i int) interface{} {
  2662. switch v := v.(*DataStatus); 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[12].Exporter = func(v interface{}, i int) interface{} {
  2674. switch v := v.(*OrderListReq); 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[13].Exporter = func(v interface{}, i int) interface{} {
  2686. switch v := v.(*OrderListResp); 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[14].Exporter = func(v interface{}, i int) interface{} {
  2698. switch v := v.(*OrderLists); 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[15].Exporter = func(v interface{}, i int) interface{} {
  2710. switch v := v.(*OrderList); 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[16].Exporter = func(v interface{}, i int) interface{} {
  2722. switch v := v.(*OrderInfoReq); 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[17].Exporter = func(v interface{}, i int) interface{} {
  2734. switch v := v.(*OrderInfoResp); 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[18].Exporter = func(v interface{}, i int) interface{} {
  2746. switch v := v.(*OrderInfo); 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. file_orderCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2758. switch v := v.(*PayAddReq); i {
  2759. case 0:
  2760. return &v.state
  2761. case 1:
  2762. return &v.sizeCache
  2763. case 2:
  2764. return &v.unknownFields
  2765. default:
  2766. return nil
  2767. }
  2768. }
  2769. file_orderCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2770. switch v := v.(*Pay); i {
  2771. case 0:
  2772. return &v.state
  2773. case 1:
  2774. return &v.sizeCache
  2775. case 2:
  2776. return &v.unknownFields
  2777. default:
  2778. return nil
  2779. }
  2780. }
  2781. file_orderCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2782. switch v := v.(*PayInfoResp); i {
  2783. case 0:
  2784. return &v.state
  2785. case 1:
  2786. return &v.sizeCache
  2787. case 2:
  2788. return &v.unknownFields
  2789. default:
  2790. return nil
  2791. }
  2792. }
  2793. file_orderCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2794. switch v := v.(*RefundAddReq); i {
  2795. case 0:
  2796. return &v.state
  2797. case 1:
  2798. return &v.sizeCache
  2799. case 2:
  2800. return &v.unknownFields
  2801. default:
  2802. return nil
  2803. }
  2804. }
  2805. file_orderCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2806. switch v := v.(*Refund); i {
  2807. case 0:
  2808. return &v.state
  2809. case 1:
  2810. return &v.sizeCache
  2811. case 2:
  2812. return &v.unknownFields
  2813. default:
  2814. return nil
  2815. }
  2816. }
  2817. file_orderCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2818. switch v := v.(*RefundInfoResp); i {
  2819. case 0:
  2820. return &v.state
  2821. case 1:
  2822. return &v.sizeCache
  2823. case 2:
  2824. return &v.unknownFields
  2825. default:
  2826. return nil
  2827. }
  2828. }
  2829. file_orderCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2830. switch v := v.(*InvoiceAddReq); i {
  2831. case 0:
  2832. return &v.state
  2833. case 1:
  2834. return &v.sizeCache
  2835. case 2:
  2836. return &v.unknownFields
  2837. default:
  2838. return nil
  2839. }
  2840. }
  2841. file_orderCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2842. switch v := v.(*Invoice); i {
  2843. case 0:
  2844. return &v.state
  2845. case 1:
  2846. return &v.sizeCache
  2847. case 2:
  2848. return &v.unknownFields
  2849. default:
  2850. return nil
  2851. }
  2852. }
  2853. file_orderCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2854. switch v := v.(*InvoiceInfoResp); i {
  2855. case 0:
  2856. return &v.state
  2857. case 1:
  2858. return &v.sizeCache
  2859. case 2:
  2860. return &v.unknownFields
  2861. default:
  2862. return nil
  2863. }
  2864. }
  2865. file_orderCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2866. switch v := v.(*InvoiceInfoReq); i {
  2867. case 0:
  2868. return &v.state
  2869. case 1:
  2870. return &v.sizeCache
  2871. case 2:
  2872. return &v.unknownFields
  2873. default:
  2874. return nil
  2875. }
  2876. }
  2877. file_orderCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2878. switch v := v.(*OrderExamineReq); i {
  2879. case 0:
  2880. return &v.state
  2881. case 1:
  2882. return &v.sizeCache
  2883. case 2:
  2884. return &v.unknownFields
  2885. default:
  2886. return nil
  2887. }
  2888. }
  2889. }
  2890. type x struct{}
  2891. out := protoimpl.TypeBuilder{
  2892. File: protoimpl.DescBuilder{
  2893. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2894. RawDescriptor: file_orderCenter_proto_rawDesc,
  2895. NumEnums: 0,
  2896. NumMessages: 30,
  2897. NumExtensions: 0,
  2898. NumServices: 1,
  2899. },
  2900. GoTypes: file_orderCenter_proto_goTypes,
  2901. DependencyIndexes: file_orderCenter_proto_depIdxs,
  2902. MessageInfos: file_orderCenter_proto_msgTypes,
  2903. }.Build()
  2904. File_orderCenter_proto = out.File
  2905. file_orderCenter_proto_rawDesc = nil
  2906. file_orderCenter_proto_goTypes = nil
  2907. file_orderCenter_proto_depIdxs = nil
  2908. }
  2909. // Reference imports to suppress errors if they are not otherwise used.
  2910. var _ context.Context
  2911. var _ grpc.ClientConnInterface
  2912. // This is a compile-time assertion to ensure that this generated file
  2913. // is compatible with the grpc package it is being compiled against.
  2914. const _ = grpc.SupportPackageIsVersion6
  2915. // OrderCenterClient is the client API for OrderCenter service.
  2916. //
  2917. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  2918. type OrderCenterClient interface {
  2919. //分布式ID生成器
  2920. GetOrderCode(ctx context.Context, in *GetOrderCodeReq, opts ...grpc.CallOption) (*GetOrderCodeResp, error)
  2921. //订单增加
  2922. OrderAdd(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2923. //订单修改
  2924. OrderUpdate(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2925. //订单修改状态
  2926. OrderStatusUpdate(ctx context.Context, in *OrderStatusUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2927. //订单删除
  2928. OrderDel(ctx context.Context, in *OrderDelReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2929. //订单列表
  2930. OrderList(ctx context.Context, in *OrderListReq, opts ...grpc.CallOption) (*OrderListResp, error)
  2931. //订单查看
  2932. OrderInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*OrderInfoResp, error)
  2933. //订单审核
  2934. OrderExamine(ctx context.Context, in *OrderExamineReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2935. //订单支付
  2936. PayAdd(ctx context.Context, in *PayAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2937. //订单支付信息
  2938. PayInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*PayInfoResp, error)
  2939. //订单退款
  2940. RefundAdd(ctx context.Context, in *RefundAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2941. //订单退款信息
  2942. RefundInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*RefundInfoResp, error)
  2943. //订单开票
  2944. InvoiceAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2945. //订单发票信息
  2946. InvoiceInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error)
  2947. //订单发票冲红
  2948. RedAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error)
  2949. //订单红票信息
  2950. RedInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error)
  2951. }
  2952. type orderCenterClient struct {
  2953. cc grpc.ClientConnInterface
  2954. }
  2955. func NewOrderCenterClient(cc grpc.ClientConnInterface) OrderCenterClient {
  2956. return &orderCenterClient{cc}
  2957. }
  2958. func (c *orderCenterClient) GetOrderCode(ctx context.Context, in *GetOrderCodeReq, opts ...grpc.CallOption) (*GetOrderCodeResp, error) {
  2959. out := new(GetOrderCodeResp)
  2960. err := c.cc.Invoke(ctx, "/OrderCenter/GetOrderCode", in, out, opts...)
  2961. if err != nil {
  2962. return nil, err
  2963. }
  2964. return out, nil
  2965. }
  2966. func (c *orderCenterClient) OrderAdd(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2967. out := new(OrderAddUpdateResp)
  2968. err := c.cc.Invoke(ctx, "/OrderCenter/OrderAdd", in, out, opts...)
  2969. if err != nil {
  2970. return nil, err
  2971. }
  2972. return out, nil
  2973. }
  2974. func (c *orderCenterClient) OrderUpdate(ctx context.Context, in *OrderAddUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2975. out := new(OrderAddUpdateResp)
  2976. err := c.cc.Invoke(ctx, "/OrderCenter/OrderUpdate", in, out, opts...)
  2977. if err != nil {
  2978. return nil, err
  2979. }
  2980. return out, nil
  2981. }
  2982. func (c *orderCenterClient) OrderStatusUpdate(ctx context.Context, in *OrderStatusUpdateReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2983. out := new(OrderAddUpdateResp)
  2984. err := c.cc.Invoke(ctx, "/OrderCenter/OrderStatusUpdate", in, out, opts...)
  2985. if err != nil {
  2986. return nil, err
  2987. }
  2988. return out, nil
  2989. }
  2990. func (c *orderCenterClient) OrderDel(ctx context.Context, in *OrderDelReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  2991. out := new(OrderAddUpdateResp)
  2992. err := c.cc.Invoke(ctx, "/OrderCenter/OrderDel", in, out, opts...)
  2993. if err != nil {
  2994. return nil, err
  2995. }
  2996. return out, nil
  2997. }
  2998. func (c *orderCenterClient) OrderList(ctx context.Context, in *OrderListReq, opts ...grpc.CallOption) (*OrderListResp, error) {
  2999. out := new(OrderListResp)
  3000. err := c.cc.Invoke(ctx, "/OrderCenter/OrderList", in, out, opts...)
  3001. if err != nil {
  3002. return nil, err
  3003. }
  3004. return out, nil
  3005. }
  3006. func (c *orderCenterClient) OrderInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*OrderInfoResp, error) {
  3007. out := new(OrderInfoResp)
  3008. err := c.cc.Invoke(ctx, "/OrderCenter/OrderInfo", in, out, opts...)
  3009. if err != nil {
  3010. return nil, err
  3011. }
  3012. return out, nil
  3013. }
  3014. func (c *orderCenterClient) OrderExamine(ctx context.Context, in *OrderExamineReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  3015. out := new(OrderAddUpdateResp)
  3016. err := c.cc.Invoke(ctx, "/OrderCenter/OrderExamine", in, out, opts...)
  3017. if err != nil {
  3018. return nil, err
  3019. }
  3020. return out, nil
  3021. }
  3022. func (c *orderCenterClient) PayAdd(ctx context.Context, in *PayAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  3023. out := new(OrderAddUpdateResp)
  3024. err := c.cc.Invoke(ctx, "/OrderCenter/PayAdd", in, out, opts...)
  3025. if err != nil {
  3026. return nil, err
  3027. }
  3028. return out, nil
  3029. }
  3030. func (c *orderCenterClient) PayInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*PayInfoResp, error) {
  3031. out := new(PayInfoResp)
  3032. err := c.cc.Invoke(ctx, "/OrderCenter/PayInfo", in, out, opts...)
  3033. if err != nil {
  3034. return nil, err
  3035. }
  3036. return out, nil
  3037. }
  3038. func (c *orderCenterClient) RefundAdd(ctx context.Context, in *RefundAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  3039. out := new(OrderAddUpdateResp)
  3040. err := c.cc.Invoke(ctx, "/OrderCenter/RefundAdd", in, out, opts...)
  3041. if err != nil {
  3042. return nil, err
  3043. }
  3044. return out, nil
  3045. }
  3046. func (c *orderCenterClient) RefundInfo(ctx context.Context, in *OrderInfoReq, opts ...grpc.CallOption) (*RefundInfoResp, error) {
  3047. out := new(RefundInfoResp)
  3048. err := c.cc.Invoke(ctx, "/OrderCenter/RefundInfo", in, out, opts...)
  3049. if err != nil {
  3050. return nil, err
  3051. }
  3052. return out, nil
  3053. }
  3054. func (c *orderCenterClient) InvoiceAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  3055. out := new(OrderAddUpdateResp)
  3056. err := c.cc.Invoke(ctx, "/OrderCenter/InvoiceAdd", in, out, opts...)
  3057. if err != nil {
  3058. return nil, err
  3059. }
  3060. return out, nil
  3061. }
  3062. func (c *orderCenterClient) InvoiceInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error) {
  3063. out := new(InvoiceInfoResp)
  3064. err := c.cc.Invoke(ctx, "/OrderCenter/InvoiceInfo", in, out, opts...)
  3065. if err != nil {
  3066. return nil, err
  3067. }
  3068. return out, nil
  3069. }
  3070. func (c *orderCenterClient) RedAdd(ctx context.Context, in *InvoiceAddReq, opts ...grpc.CallOption) (*OrderAddUpdateResp, error) {
  3071. out := new(OrderAddUpdateResp)
  3072. err := c.cc.Invoke(ctx, "/OrderCenter/RedAdd", in, out, opts...)
  3073. if err != nil {
  3074. return nil, err
  3075. }
  3076. return out, nil
  3077. }
  3078. func (c *orderCenterClient) RedInfo(ctx context.Context, in *InvoiceInfoReq, opts ...grpc.CallOption) (*InvoiceInfoResp, error) {
  3079. out := new(InvoiceInfoResp)
  3080. err := c.cc.Invoke(ctx, "/OrderCenter/RedInfo", in, out, opts...)
  3081. if err != nil {
  3082. return nil, err
  3083. }
  3084. return out, nil
  3085. }
  3086. // OrderCenterServer is the server API for OrderCenter service.
  3087. type OrderCenterServer interface {
  3088. //分布式ID生成器
  3089. GetOrderCode(context.Context, *GetOrderCodeReq) (*GetOrderCodeResp, error)
  3090. //订单增加
  3091. OrderAdd(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error)
  3092. //订单修改
  3093. OrderUpdate(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error)
  3094. //订单修改状态
  3095. OrderStatusUpdate(context.Context, *OrderStatusUpdateReq) (*OrderAddUpdateResp, error)
  3096. //订单删除
  3097. OrderDel(context.Context, *OrderDelReq) (*OrderAddUpdateResp, error)
  3098. //订单列表
  3099. OrderList(context.Context, *OrderListReq) (*OrderListResp, error)
  3100. //订单查看
  3101. OrderInfo(context.Context, *OrderInfoReq) (*OrderInfoResp, error)
  3102. //订单审核
  3103. OrderExamine(context.Context, *OrderExamineReq) (*OrderAddUpdateResp, error)
  3104. //订单支付
  3105. PayAdd(context.Context, *PayAddReq) (*OrderAddUpdateResp, error)
  3106. //订单支付信息
  3107. PayInfo(context.Context, *OrderInfoReq) (*PayInfoResp, error)
  3108. //订单退款
  3109. RefundAdd(context.Context, *RefundAddReq) (*OrderAddUpdateResp, error)
  3110. //订单退款信息
  3111. RefundInfo(context.Context, *OrderInfoReq) (*RefundInfoResp, error)
  3112. //订单开票
  3113. InvoiceAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error)
  3114. //订单发票信息
  3115. InvoiceInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error)
  3116. //订单发票冲红
  3117. RedAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error)
  3118. //订单红票信息
  3119. RedInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error)
  3120. }
  3121. // UnimplementedOrderCenterServer can be embedded to have forward compatible implementations.
  3122. type UnimplementedOrderCenterServer struct {
  3123. }
  3124. func (*UnimplementedOrderCenterServer) GetOrderCode(context.Context, *GetOrderCodeReq) (*GetOrderCodeResp, error) {
  3125. return nil, status.Errorf(codes.Unimplemented, "method GetOrderCode not implemented")
  3126. }
  3127. func (*UnimplementedOrderCenterServer) OrderAdd(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error) {
  3128. return nil, status.Errorf(codes.Unimplemented, "method OrderAdd not implemented")
  3129. }
  3130. func (*UnimplementedOrderCenterServer) OrderUpdate(context.Context, *OrderAddUpdateReq) (*OrderAddUpdateResp, error) {
  3131. return nil, status.Errorf(codes.Unimplemented, "method OrderUpdate not implemented")
  3132. }
  3133. func (*UnimplementedOrderCenterServer) OrderStatusUpdate(context.Context, *OrderStatusUpdateReq) (*OrderAddUpdateResp, error) {
  3134. return nil, status.Errorf(codes.Unimplemented, "method OrderStatusUpdate not implemented")
  3135. }
  3136. func (*UnimplementedOrderCenterServer) OrderDel(context.Context, *OrderDelReq) (*OrderAddUpdateResp, error) {
  3137. return nil, status.Errorf(codes.Unimplemented, "method OrderDel not implemented")
  3138. }
  3139. func (*UnimplementedOrderCenterServer) OrderList(context.Context, *OrderListReq) (*OrderListResp, error) {
  3140. return nil, status.Errorf(codes.Unimplemented, "method OrderList not implemented")
  3141. }
  3142. func (*UnimplementedOrderCenterServer) OrderInfo(context.Context, *OrderInfoReq) (*OrderInfoResp, error) {
  3143. return nil, status.Errorf(codes.Unimplemented, "method OrderInfo not implemented")
  3144. }
  3145. func (*UnimplementedOrderCenterServer) OrderExamine(context.Context, *OrderExamineReq) (*OrderAddUpdateResp, error) {
  3146. return nil, status.Errorf(codes.Unimplemented, "method OrderExamine not implemented")
  3147. }
  3148. func (*UnimplementedOrderCenterServer) PayAdd(context.Context, *PayAddReq) (*OrderAddUpdateResp, error) {
  3149. return nil, status.Errorf(codes.Unimplemented, "method PayAdd not implemented")
  3150. }
  3151. func (*UnimplementedOrderCenterServer) PayInfo(context.Context, *OrderInfoReq) (*PayInfoResp, error) {
  3152. return nil, status.Errorf(codes.Unimplemented, "method PayInfo not implemented")
  3153. }
  3154. func (*UnimplementedOrderCenterServer) RefundAdd(context.Context, *RefundAddReq) (*OrderAddUpdateResp, error) {
  3155. return nil, status.Errorf(codes.Unimplemented, "method RefundAdd not implemented")
  3156. }
  3157. func (*UnimplementedOrderCenterServer) RefundInfo(context.Context, *OrderInfoReq) (*RefundInfoResp, error) {
  3158. return nil, status.Errorf(codes.Unimplemented, "method RefundInfo not implemented")
  3159. }
  3160. func (*UnimplementedOrderCenterServer) InvoiceAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error) {
  3161. return nil, status.Errorf(codes.Unimplemented, "method InvoiceAdd not implemented")
  3162. }
  3163. func (*UnimplementedOrderCenterServer) InvoiceInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error) {
  3164. return nil, status.Errorf(codes.Unimplemented, "method InvoiceInfo not implemented")
  3165. }
  3166. func (*UnimplementedOrderCenterServer) RedAdd(context.Context, *InvoiceAddReq) (*OrderAddUpdateResp, error) {
  3167. return nil, status.Errorf(codes.Unimplemented, "method RedAdd not implemented")
  3168. }
  3169. func (*UnimplementedOrderCenterServer) RedInfo(context.Context, *InvoiceInfoReq) (*InvoiceInfoResp, error) {
  3170. return nil, status.Errorf(codes.Unimplemented, "method RedInfo not implemented")
  3171. }
  3172. func RegisterOrderCenterServer(s *grpc.Server, srv OrderCenterServer) {
  3173. s.RegisterService(&_OrderCenter_serviceDesc, srv)
  3174. }
  3175. func _OrderCenter_GetOrderCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3176. in := new(GetOrderCodeReq)
  3177. if err := dec(in); err != nil {
  3178. return nil, err
  3179. }
  3180. if interceptor == nil {
  3181. return srv.(OrderCenterServer).GetOrderCode(ctx, in)
  3182. }
  3183. info := &grpc.UnaryServerInfo{
  3184. Server: srv,
  3185. FullMethod: "/OrderCenter/GetOrderCode",
  3186. }
  3187. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3188. return srv.(OrderCenterServer).GetOrderCode(ctx, req.(*GetOrderCodeReq))
  3189. }
  3190. return interceptor(ctx, in, info, handler)
  3191. }
  3192. func _OrderCenter_OrderAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3193. in := new(OrderAddUpdateReq)
  3194. if err := dec(in); err != nil {
  3195. return nil, err
  3196. }
  3197. if interceptor == nil {
  3198. return srv.(OrderCenterServer).OrderAdd(ctx, in)
  3199. }
  3200. info := &grpc.UnaryServerInfo{
  3201. Server: srv,
  3202. FullMethod: "/OrderCenter/OrderAdd",
  3203. }
  3204. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3205. return srv.(OrderCenterServer).OrderAdd(ctx, req.(*OrderAddUpdateReq))
  3206. }
  3207. return interceptor(ctx, in, info, handler)
  3208. }
  3209. func _OrderCenter_OrderUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3210. in := new(OrderAddUpdateReq)
  3211. if err := dec(in); err != nil {
  3212. return nil, err
  3213. }
  3214. if interceptor == nil {
  3215. return srv.(OrderCenterServer).OrderUpdate(ctx, in)
  3216. }
  3217. info := &grpc.UnaryServerInfo{
  3218. Server: srv,
  3219. FullMethod: "/OrderCenter/OrderUpdate",
  3220. }
  3221. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3222. return srv.(OrderCenterServer).OrderUpdate(ctx, req.(*OrderAddUpdateReq))
  3223. }
  3224. return interceptor(ctx, in, info, handler)
  3225. }
  3226. func _OrderCenter_OrderStatusUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3227. in := new(OrderStatusUpdateReq)
  3228. if err := dec(in); err != nil {
  3229. return nil, err
  3230. }
  3231. if interceptor == nil {
  3232. return srv.(OrderCenterServer).OrderStatusUpdate(ctx, in)
  3233. }
  3234. info := &grpc.UnaryServerInfo{
  3235. Server: srv,
  3236. FullMethod: "/OrderCenter/OrderStatusUpdate",
  3237. }
  3238. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3239. return srv.(OrderCenterServer).OrderStatusUpdate(ctx, req.(*OrderStatusUpdateReq))
  3240. }
  3241. return interceptor(ctx, in, info, handler)
  3242. }
  3243. func _OrderCenter_OrderDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3244. in := new(OrderDelReq)
  3245. if err := dec(in); err != nil {
  3246. return nil, err
  3247. }
  3248. if interceptor == nil {
  3249. return srv.(OrderCenterServer).OrderDel(ctx, in)
  3250. }
  3251. info := &grpc.UnaryServerInfo{
  3252. Server: srv,
  3253. FullMethod: "/OrderCenter/OrderDel",
  3254. }
  3255. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3256. return srv.(OrderCenterServer).OrderDel(ctx, req.(*OrderDelReq))
  3257. }
  3258. return interceptor(ctx, in, info, handler)
  3259. }
  3260. func _OrderCenter_OrderList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3261. in := new(OrderListReq)
  3262. if err := dec(in); err != nil {
  3263. return nil, err
  3264. }
  3265. if interceptor == nil {
  3266. return srv.(OrderCenterServer).OrderList(ctx, in)
  3267. }
  3268. info := &grpc.UnaryServerInfo{
  3269. Server: srv,
  3270. FullMethod: "/OrderCenter/OrderList",
  3271. }
  3272. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3273. return srv.(OrderCenterServer).OrderList(ctx, req.(*OrderListReq))
  3274. }
  3275. return interceptor(ctx, in, info, handler)
  3276. }
  3277. func _OrderCenter_OrderInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3278. in := new(OrderInfoReq)
  3279. if err := dec(in); err != nil {
  3280. return nil, err
  3281. }
  3282. if interceptor == nil {
  3283. return srv.(OrderCenterServer).OrderInfo(ctx, in)
  3284. }
  3285. info := &grpc.UnaryServerInfo{
  3286. Server: srv,
  3287. FullMethod: "/OrderCenter/OrderInfo",
  3288. }
  3289. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3290. return srv.(OrderCenterServer).OrderInfo(ctx, req.(*OrderInfoReq))
  3291. }
  3292. return interceptor(ctx, in, info, handler)
  3293. }
  3294. func _OrderCenter_OrderExamine_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3295. in := new(OrderExamineReq)
  3296. if err := dec(in); err != nil {
  3297. return nil, err
  3298. }
  3299. if interceptor == nil {
  3300. return srv.(OrderCenterServer).OrderExamine(ctx, in)
  3301. }
  3302. info := &grpc.UnaryServerInfo{
  3303. Server: srv,
  3304. FullMethod: "/OrderCenter/OrderExamine",
  3305. }
  3306. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3307. return srv.(OrderCenterServer).OrderExamine(ctx, req.(*OrderExamineReq))
  3308. }
  3309. return interceptor(ctx, in, info, handler)
  3310. }
  3311. func _OrderCenter_PayAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3312. in := new(PayAddReq)
  3313. if err := dec(in); err != nil {
  3314. return nil, err
  3315. }
  3316. if interceptor == nil {
  3317. return srv.(OrderCenterServer).PayAdd(ctx, in)
  3318. }
  3319. info := &grpc.UnaryServerInfo{
  3320. Server: srv,
  3321. FullMethod: "/OrderCenter/PayAdd",
  3322. }
  3323. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3324. return srv.(OrderCenterServer).PayAdd(ctx, req.(*PayAddReq))
  3325. }
  3326. return interceptor(ctx, in, info, handler)
  3327. }
  3328. func _OrderCenter_PayInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3329. in := new(OrderInfoReq)
  3330. if err := dec(in); err != nil {
  3331. return nil, err
  3332. }
  3333. if interceptor == nil {
  3334. return srv.(OrderCenterServer).PayInfo(ctx, in)
  3335. }
  3336. info := &grpc.UnaryServerInfo{
  3337. Server: srv,
  3338. FullMethod: "/OrderCenter/PayInfo",
  3339. }
  3340. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3341. return srv.(OrderCenterServer).PayInfo(ctx, req.(*OrderInfoReq))
  3342. }
  3343. return interceptor(ctx, in, info, handler)
  3344. }
  3345. func _OrderCenter_RefundAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3346. in := new(RefundAddReq)
  3347. if err := dec(in); err != nil {
  3348. return nil, err
  3349. }
  3350. if interceptor == nil {
  3351. return srv.(OrderCenterServer).RefundAdd(ctx, in)
  3352. }
  3353. info := &grpc.UnaryServerInfo{
  3354. Server: srv,
  3355. FullMethod: "/OrderCenter/RefundAdd",
  3356. }
  3357. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3358. return srv.(OrderCenterServer).RefundAdd(ctx, req.(*RefundAddReq))
  3359. }
  3360. return interceptor(ctx, in, info, handler)
  3361. }
  3362. func _OrderCenter_RefundInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3363. in := new(OrderInfoReq)
  3364. if err := dec(in); err != nil {
  3365. return nil, err
  3366. }
  3367. if interceptor == nil {
  3368. return srv.(OrderCenterServer).RefundInfo(ctx, in)
  3369. }
  3370. info := &grpc.UnaryServerInfo{
  3371. Server: srv,
  3372. FullMethod: "/OrderCenter/RefundInfo",
  3373. }
  3374. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3375. return srv.(OrderCenterServer).RefundInfo(ctx, req.(*OrderInfoReq))
  3376. }
  3377. return interceptor(ctx, in, info, handler)
  3378. }
  3379. func _OrderCenter_InvoiceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3380. in := new(InvoiceAddReq)
  3381. if err := dec(in); err != nil {
  3382. return nil, err
  3383. }
  3384. if interceptor == nil {
  3385. return srv.(OrderCenterServer).InvoiceAdd(ctx, in)
  3386. }
  3387. info := &grpc.UnaryServerInfo{
  3388. Server: srv,
  3389. FullMethod: "/OrderCenter/InvoiceAdd",
  3390. }
  3391. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3392. return srv.(OrderCenterServer).InvoiceAdd(ctx, req.(*InvoiceAddReq))
  3393. }
  3394. return interceptor(ctx, in, info, handler)
  3395. }
  3396. func _OrderCenter_InvoiceInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3397. in := new(InvoiceInfoReq)
  3398. if err := dec(in); err != nil {
  3399. return nil, err
  3400. }
  3401. if interceptor == nil {
  3402. return srv.(OrderCenterServer).InvoiceInfo(ctx, in)
  3403. }
  3404. info := &grpc.UnaryServerInfo{
  3405. Server: srv,
  3406. FullMethod: "/OrderCenter/InvoiceInfo",
  3407. }
  3408. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3409. return srv.(OrderCenterServer).InvoiceInfo(ctx, req.(*InvoiceInfoReq))
  3410. }
  3411. return interceptor(ctx, in, info, handler)
  3412. }
  3413. func _OrderCenter_RedAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3414. in := new(InvoiceAddReq)
  3415. if err := dec(in); err != nil {
  3416. return nil, err
  3417. }
  3418. if interceptor == nil {
  3419. return srv.(OrderCenterServer).RedAdd(ctx, in)
  3420. }
  3421. info := &grpc.UnaryServerInfo{
  3422. Server: srv,
  3423. FullMethod: "/OrderCenter/RedAdd",
  3424. }
  3425. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3426. return srv.(OrderCenterServer).RedAdd(ctx, req.(*InvoiceAddReq))
  3427. }
  3428. return interceptor(ctx, in, info, handler)
  3429. }
  3430. func _OrderCenter_RedInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3431. in := new(InvoiceInfoReq)
  3432. if err := dec(in); err != nil {
  3433. return nil, err
  3434. }
  3435. if interceptor == nil {
  3436. return srv.(OrderCenterServer).RedInfo(ctx, in)
  3437. }
  3438. info := &grpc.UnaryServerInfo{
  3439. Server: srv,
  3440. FullMethod: "/OrderCenter/RedInfo",
  3441. }
  3442. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3443. return srv.(OrderCenterServer).RedInfo(ctx, req.(*InvoiceInfoReq))
  3444. }
  3445. return interceptor(ctx, in, info, handler)
  3446. }
  3447. var _OrderCenter_serviceDesc = grpc.ServiceDesc{
  3448. ServiceName: "OrderCenter",
  3449. HandlerType: (*OrderCenterServer)(nil),
  3450. Methods: []grpc.MethodDesc{
  3451. {
  3452. MethodName: "GetOrderCode",
  3453. Handler: _OrderCenter_GetOrderCode_Handler,
  3454. },
  3455. {
  3456. MethodName: "OrderAdd",
  3457. Handler: _OrderCenter_OrderAdd_Handler,
  3458. },
  3459. {
  3460. MethodName: "OrderUpdate",
  3461. Handler: _OrderCenter_OrderUpdate_Handler,
  3462. },
  3463. {
  3464. MethodName: "OrderStatusUpdate",
  3465. Handler: _OrderCenter_OrderStatusUpdate_Handler,
  3466. },
  3467. {
  3468. MethodName: "OrderDel",
  3469. Handler: _OrderCenter_OrderDel_Handler,
  3470. },
  3471. {
  3472. MethodName: "OrderList",
  3473. Handler: _OrderCenter_OrderList_Handler,
  3474. },
  3475. {
  3476. MethodName: "OrderInfo",
  3477. Handler: _OrderCenter_OrderInfo_Handler,
  3478. },
  3479. {
  3480. MethodName: "OrderExamine",
  3481. Handler: _OrderCenter_OrderExamine_Handler,
  3482. },
  3483. {
  3484. MethodName: "PayAdd",
  3485. Handler: _OrderCenter_PayAdd_Handler,
  3486. },
  3487. {
  3488. MethodName: "PayInfo",
  3489. Handler: _OrderCenter_PayInfo_Handler,
  3490. },
  3491. {
  3492. MethodName: "RefundAdd",
  3493. Handler: _OrderCenter_RefundAdd_Handler,
  3494. },
  3495. {
  3496. MethodName: "RefundInfo",
  3497. Handler: _OrderCenter_RefundInfo_Handler,
  3498. },
  3499. {
  3500. MethodName: "InvoiceAdd",
  3501. Handler: _OrderCenter_InvoiceAdd_Handler,
  3502. },
  3503. {
  3504. MethodName: "InvoiceInfo",
  3505. Handler: _OrderCenter_InvoiceInfo_Handler,
  3506. },
  3507. {
  3508. MethodName: "RedAdd",
  3509. Handler: _OrderCenter_RedAdd_Handler,
  3510. },
  3511. {
  3512. MethodName: "RedInfo",
  3513. Handler: _OrderCenter_RedInfo_Handler,
  3514. },
  3515. },
  3516. Streams: []grpc.StreamDesc{},
  3517. Metadata: "orderCenter.proto",
  3518. }