gorpc_grpc.pb.go 712 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597155981559915600156011560215603156041560515606156071560815609156101561115612156131561415615156161561715618156191562015621156221562315624156251562615627156281562915630156311563215633156341563515636156371563815639156401564115642156431564415645156461564715648156491565015651156521565315654156551565615657156581565915660156611566215663156641566515666156671566815669156701567115672156731567415675156761567715678156791568015681156821568315684156851568615687156881568915690156911569215693156941569515696156971569815699157001570115702157031570415705157061570715708157091571015711157121571315714157151571615717157181571915720157211572215723157241572515726157271572815729157301573115732157331573415735157361573715738157391574015741157421574315744157451574615747157481574915750157511575215753157541575515756157571575815759157601576115762157631576415765157661576715768157691577015771157721577315774157751577615777157781577915780157811578215783157841578515786157871578815789157901579115792157931579415795157961579715798157991580015801158021580315804158051580615807158081580915810158111581215813158141581515816158171581815819158201582115822158231582415825158261582715828158291583015831158321583315834158351583615837158381583915840158411584215843158441584515846158471584815849158501585115852158531585415855158561585715858158591586015861158621586315864158651586615867158681586915870158711587215873158741587515876158771587815879158801588115882158831588415885158861588715888158891589015891158921589315894158951589615897158981589915900159011590215903159041590515906159071590815909159101591115912159131591415915159161591715918159191592015921159221592315924159251592615927159281592915930159311593215933159341593515936159371593815939159401594115942159431594415945159461594715948159491595015951159521595315954159551595615957159581595915960159611596215963159641596515966159671596815969159701597115972159731597415975159761597715978159791598015981159821598315984159851598615987159881598915990159911599215993159941599515996159971599815999160001600116002160031600416005160061600716008160091601016011160121601316014160151601616017160181601916020160211602216023160241602516026160271602816029160301603116032160331603416035160361603716038160391604016041160421604316044160451604616047160481604916050160511605216053160541605516056160571605816059160601606116062160631606416065160661606716068160691607016071160721607316074160751607616077160781607916080160811608216083160841608516086160871608816089160901609116092160931609416095160961609716098160991610016101161021610316104161051610616107161081610916110161111611216113161141611516116161171611816119161201612116122161231612416125161261612716128161291613016131161321613316134161351613616137161381613916140161411614216143161441614516146161471614816149161501615116152161531615416155161561615716158161591616016161161621616316164161651616616167161681616916170161711617216173161741617516176161771617816179161801618116182161831618416185161861618716188161891619016191161921619316194161951619616197161981619916200162011620216203162041620516206162071620816209162101621116212162131621416215162161621716218162191622016221162221622316224162251622616227162281622916230162311623216233162341623516236162371623816239162401624116242162431624416245162461624716248162491625016251162521625316254162551625616257162581625916260162611626216263162641626516266162671626816269162701627116272162731627416275162761627716278162791628016281162821628316284162851628616287162881628916290162911629216293162941629516296162971629816299163001630116302163031630416305163061630716308163091631016311163121631316314163151631616317163181631916320163211632216323163241632516326163271632816329163301633116332163331633416335163361633716338163391634016341163421634316344163451634616347163481634916350163511635216353163541635516356163571635816359163601636116362163631636416365163661636716368163691637016371163721637316374163751637616377163781637916380163811638216383163841638516386163871638816389163901639116392163931639416395163961639716398163991640016401164021640316404164051640616407164081640916410164111641216413164141641516416164171641816419164201642116422164231642416425164261642716428164291643016431164321643316434164351643616437164381643916440164411644216443164441644516446164471644816449164501645116452164531645416455164561645716458164591646016461164621646316464164651646616467164681646916470164711647216473164741647516476164771647816479164801648116482164831648416485164861648716488164891649016491164921649316494164951649616497164981649916500165011650216503165041650516506165071650816509165101651116512165131651416515165161651716518165191652016521165221652316524165251652616527165281652916530165311653216533165341653516536165371653816539165401654116542165431654416545165461654716548165491655016551165521655316554165551655616557165581655916560165611656216563165641656516566165671656816569165701657116572165731657416575165761657716578165791658016581165821658316584165851658616587165881658916590165911659216593165941659516596165971659816599166001660116602166031660416605166061660716608166091661016611166121661316614166151661616617166181661916620166211662216623166241662516626166271662816629166301663116632166331663416635166361663716638166391664016641166421664316644166451664616647166481664916650166511665216653166541665516656166571665816659166601666116662166631666416665166661666716668166691667016671166721667316674166751667616677166781667916680166811668216683166841668516686166871668816689
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. // versions:
  3. // - protoc-gen-go-grpc v1.5.1
  4. // - protoc v6.33.0
  5. // source: gorpc.proto
  6. package pb
  7. import (
  8. context "context"
  9. grpc "google.golang.org/grpc"
  10. codes "google.golang.org/grpc/codes"
  11. status "google.golang.org/grpc/status"
  12. )
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the grpc package it is being compiled against.
  15. // Requires gRPC-Go v1.64.0 or later.
  16. const _ = grpc.SupportPackageIsVersion9
  17. const (
  18. GoGameClient_GameAdd_FullMethodName = "/gorpc.GoGameClient/GameAdd"
  19. GoGameClient_GameUpdate_FullMethodName = "/gorpc.GoGameClient/GameUpdate"
  20. GoGameClient_GameDel_FullMethodName = "/gorpc.GoGameClient/GameDel"
  21. GoGameClient_GameGet_FullMethodName = "/gorpc.GoGameClient/GameGet"
  22. GoGameClient_GameList_FullMethodName = "/gorpc.GoGameClient/GameList"
  23. GoGameClient_GameAll_FullMethodName = "/gorpc.GoGameClient/GameAll"
  24. GoGameClient_GameRedisHScanByName_FullMethodName = "/gorpc.GoGameClient/GameRedisHScanByName"
  25. GoGameClient_RelGameRankAdd_FullMethodName = "/gorpc.GoGameClient/RelGameRankAdd"
  26. GoGameClient_RelGameRankUpdate_FullMethodName = "/gorpc.GoGameClient/RelGameRankUpdate"
  27. GoGameClient_RelGameRankDel_FullMethodName = "/gorpc.GoGameClient/RelGameRankDel"
  28. GoGameClient_RelGameRankGet_FullMethodName = "/gorpc.GoGameClient/RelGameRankGet"
  29. GoGameClient_RelGameRankList_FullMethodName = "/gorpc.GoGameClient/RelGameRankList"
  30. GoGameClient_RelGameVpnGroupAdd_FullMethodName = "/gorpc.GoGameClient/RelGameVpnGroupAdd"
  31. GoGameClient_RelGameVpnGroupUpdate_FullMethodName = "/gorpc.GoGameClient/RelGameVpnGroupUpdate"
  32. GoGameClient_RelGameVpnGroupDel_FullMethodName = "/gorpc.GoGameClient/RelGameVpnGroupDel"
  33. GoGameClient_RelGameVpnGroupGet_FullMethodName = "/gorpc.GoGameClient/RelGameVpnGroupGet"
  34. GoGameClient_RelGameVpnGroupList_FullMethodName = "/gorpc.GoGameClient/RelGameVpnGroupList"
  35. GoGameClient_GameCustomerList_FullMethodName = "/gorpc.GoGameClient/GameCustomerList"
  36. GoGameClient_GameCustomerAdd_FullMethodName = "/gorpc.GoGameClient/GameCustomerAdd"
  37. GoGameClient_GameCustomerDel_FullMethodName = "/gorpc.GoGameClient/GameCustomerDel"
  38. GoGameClient_GameCategoryAdd_FullMethodName = "/gorpc.GoGameClient/GameCategoryAdd"
  39. GoGameClient_GameCategoryUpdate_FullMethodName = "/gorpc.GoGameClient/GameCategoryUpdate"
  40. GoGameClient_GameCategoryDel_FullMethodName = "/gorpc.GoGameClient/GameCategoryDel"
  41. GoGameClient_GameCategoryGet_FullMethodName = "/gorpc.GoGameClient/GameCategoryGet"
  42. GoGameClient_GameCategoryList_FullMethodName = "/gorpc.GoGameClient/GameCategoryList"
  43. GoGameClient_GameCategoryAll_FullMethodName = "/gorpc.GoGameClient/GameCategoryAll"
  44. )
  45. // GoGameClientClient is the client API for GoGameClient service.
  46. //
  47. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  48. type GoGameClientClient interface {
  49. // 加速器游戏管理
  50. GameAdd(ctx context.Context, in *GameVo, opts ...grpc.CallOption) (*GameVo, error)
  51. GameUpdate(ctx context.Context, in *GameVo, opts ...grpc.CallOption) (*Empty, error)
  52. GameDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  53. GameGet(ctx context.Context, in *GameReq, opts ...grpc.CallOption) (*GameVo, error)
  54. GameList(ctx context.Context, in *GameListReq, opts ...grpc.CallOption) (*GameListRes, error)
  55. GameAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*GameListRes, error)
  56. GameRedisHScanByName(ctx context.Context, in *GameRedisHScanByNameReq, opts ...grpc.CallOption) (*GameRedisHScanByNameResp, error)
  57. // 游戏榜单关联关系
  58. RelGameRankAdd(ctx context.Context, in *RelGameRankVo, opts ...grpc.CallOption) (*RelGameRankVo, error)
  59. RelGameRankUpdate(ctx context.Context, in *RelGameRankVo, opts ...grpc.CallOption) (*Empty, error)
  60. RelGameRankDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  61. RelGameRankGet(ctx context.Context, in *RelGameRankReq, opts ...grpc.CallOption) (*RelGameRankVo, error)
  62. RelGameRankList(ctx context.Context, in *RelGameRankListReq, opts ...grpc.CallOption) (*RelGameRankListRes, error)
  63. // 游戏地域关联关系
  64. RelGameVpnGroupAdd(ctx context.Context, in *RelGameVpnGroupVo, opts ...grpc.CallOption) (*RelGameVpnGroupVo, error)
  65. RelGameVpnGroupUpdate(ctx context.Context, in *RelGameVpnGroupVo, opts ...grpc.CallOption) (*Empty, error)
  66. RelGameVpnGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  67. RelGameVpnGroupGet(ctx context.Context, in *RelGameVpnGroupReq, opts ...grpc.CallOption) (*RelGameVpnGroupVo, error)
  68. RelGameVpnGroupList(ctx context.Context, in *RelGameVpnGroupListReq, opts ...grpc.CallOption) (*RelGameVpnGroupListRes, error)
  69. // 用户提交游戏
  70. GameCustomerList(ctx context.Context, in *GameCustomerListReq, opts ...grpc.CallOption) (*GameCustomerListRes, error)
  71. GameCustomerAdd(ctx context.Context, in *GameCustomerVo, opts ...grpc.CallOption) (*GameCustomerAddResp, error)
  72. GameCustomerDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  73. GameCategoryAdd(ctx context.Context, in *GameCategoryVo, opts ...grpc.CallOption) (*GameCategoryVo, error)
  74. GameCategoryUpdate(ctx context.Context, in *GameCategoryVo, opts ...grpc.CallOption) (*Empty, error)
  75. GameCategoryDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  76. GameCategoryGet(ctx context.Context, in *GameCategoryReq, opts ...grpc.CallOption) (*GameCategoryVo, error)
  77. GameCategoryList(ctx context.Context, in *GameCategoryListReq, opts ...grpc.CallOption) (*GameCategoryListRes, error)
  78. GameCategoryAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*GameCategoryListRes, error)
  79. }
  80. type goGameClientClient struct {
  81. cc grpc.ClientConnInterface
  82. }
  83. func NewGoGameClientClient(cc grpc.ClientConnInterface) GoGameClientClient {
  84. return &goGameClientClient{cc}
  85. }
  86. func (c *goGameClientClient) GameAdd(ctx context.Context, in *GameVo, opts ...grpc.CallOption) (*GameVo, error) {
  87. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  88. out := new(GameVo)
  89. err := c.cc.Invoke(ctx, GoGameClient_GameAdd_FullMethodName, in, out, cOpts...)
  90. if err != nil {
  91. return nil, err
  92. }
  93. return out, nil
  94. }
  95. func (c *goGameClientClient) GameUpdate(ctx context.Context, in *GameVo, opts ...grpc.CallOption) (*Empty, error) {
  96. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  97. out := new(Empty)
  98. err := c.cc.Invoke(ctx, GoGameClient_GameUpdate_FullMethodName, in, out, cOpts...)
  99. if err != nil {
  100. return nil, err
  101. }
  102. return out, nil
  103. }
  104. func (c *goGameClientClient) GameDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  105. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  106. out := new(Empty)
  107. err := c.cc.Invoke(ctx, GoGameClient_GameDel_FullMethodName, in, out, cOpts...)
  108. if err != nil {
  109. return nil, err
  110. }
  111. return out, nil
  112. }
  113. func (c *goGameClientClient) GameGet(ctx context.Context, in *GameReq, opts ...grpc.CallOption) (*GameVo, error) {
  114. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  115. out := new(GameVo)
  116. err := c.cc.Invoke(ctx, GoGameClient_GameGet_FullMethodName, in, out, cOpts...)
  117. if err != nil {
  118. return nil, err
  119. }
  120. return out, nil
  121. }
  122. func (c *goGameClientClient) GameList(ctx context.Context, in *GameListReq, opts ...grpc.CallOption) (*GameListRes, error) {
  123. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  124. out := new(GameListRes)
  125. err := c.cc.Invoke(ctx, GoGameClient_GameList_FullMethodName, in, out, cOpts...)
  126. if err != nil {
  127. return nil, err
  128. }
  129. return out, nil
  130. }
  131. func (c *goGameClientClient) GameAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*GameListRes, error) {
  132. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  133. out := new(GameListRes)
  134. err := c.cc.Invoke(ctx, GoGameClient_GameAll_FullMethodName, in, out, cOpts...)
  135. if err != nil {
  136. return nil, err
  137. }
  138. return out, nil
  139. }
  140. func (c *goGameClientClient) GameRedisHScanByName(ctx context.Context, in *GameRedisHScanByNameReq, opts ...grpc.CallOption) (*GameRedisHScanByNameResp, error) {
  141. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  142. out := new(GameRedisHScanByNameResp)
  143. err := c.cc.Invoke(ctx, GoGameClient_GameRedisHScanByName_FullMethodName, in, out, cOpts...)
  144. if err != nil {
  145. return nil, err
  146. }
  147. return out, nil
  148. }
  149. func (c *goGameClientClient) RelGameRankAdd(ctx context.Context, in *RelGameRankVo, opts ...grpc.CallOption) (*RelGameRankVo, error) {
  150. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  151. out := new(RelGameRankVo)
  152. err := c.cc.Invoke(ctx, GoGameClient_RelGameRankAdd_FullMethodName, in, out, cOpts...)
  153. if err != nil {
  154. return nil, err
  155. }
  156. return out, nil
  157. }
  158. func (c *goGameClientClient) RelGameRankUpdate(ctx context.Context, in *RelGameRankVo, opts ...grpc.CallOption) (*Empty, error) {
  159. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  160. out := new(Empty)
  161. err := c.cc.Invoke(ctx, GoGameClient_RelGameRankUpdate_FullMethodName, in, out, cOpts...)
  162. if err != nil {
  163. return nil, err
  164. }
  165. return out, nil
  166. }
  167. func (c *goGameClientClient) RelGameRankDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  168. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  169. out := new(Empty)
  170. err := c.cc.Invoke(ctx, GoGameClient_RelGameRankDel_FullMethodName, in, out, cOpts...)
  171. if err != nil {
  172. return nil, err
  173. }
  174. return out, nil
  175. }
  176. func (c *goGameClientClient) RelGameRankGet(ctx context.Context, in *RelGameRankReq, opts ...grpc.CallOption) (*RelGameRankVo, error) {
  177. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  178. out := new(RelGameRankVo)
  179. err := c.cc.Invoke(ctx, GoGameClient_RelGameRankGet_FullMethodName, in, out, cOpts...)
  180. if err != nil {
  181. return nil, err
  182. }
  183. return out, nil
  184. }
  185. func (c *goGameClientClient) RelGameRankList(ctx context.Context, in *RelGameRankListReq, opts ...grpc.CallOption) (*RelGameRankListRes, error) {
  186. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  187. out := new(RelGameRankListRes)
  188. err := c.cc.Invoke(ctx, GoGameClient_RelGameRankList_FullMethodName, in, out, cOpts...)
  189. if err != nil {
  190. return nil, err
  191. }
  192. return out, nil
  193. }
  194. func (c *goGameClientClient) RelGameVpnGroupAdd(ctx context.Context, in *RelGameVpnGroupVo, opts ...grpc.CallOption) (*RelGameVpnGroupVo, error) {
  195. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  196. out := new(RelGameVpnGroupVo)
  197. err := c.cc.Invoke(ctx, GoGameClient_RelGameVpnGroupAdd_FullMethodName, in, out, cOpts...)
  198. if err != nil {
  199. return nil, err
  200. }
  201. return out, nil
  202. }
  203. func (c *goGameClientClient) RelGameVpnGroupUpdate(ctx context.Context, in *RelGameVpnGroupVo, opts ...grpc.CallOption) (*Empty, error) {
  204. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  205. out := new(Empty)
  206. err := c.cc.Invoke(ctx, GoGameClient_RelGameVpnGroupUpdate_FullMethodName, in, out, cOpts...)
  207. if err != nil {
  208. return nil, err
  209. }
  210. return out, nil
  211. }
  212. func (c *goGameClientClient) RelGameVpnGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  213. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  214. out := new(Empty)
  215. err := c.cc.Invoke(ctx, GoGameClient_RelGameVpnGroupDel_FullMethodName, in, out, cOpts...)
  216. if err != nil {
  217. return nil, err
  218. }
  219. return out, nil
  220. }
  221. func (c *goGameClientClient) RelGameVpnGroupGet(ctx context.Context, in *RelGameVpnGroupReq, opts ...grpc.CallOption) (*RelGameVpnGroupVo, error) {
  222. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  223. out := new(RelGameVpnGroupVo)
  224. err := c.cc.Invoke(ctx, GoGameClient_RelGameVpnGroupGet_FullMethodName, in, out, cOpts...)
  225. if err != nil {
  226. return nil, err
  227. }
  228. return out, nil
  229. }
  230. func (c *goGameClientClient) RelGameVpnGroupList(ctx context.Context, in *RelGameVpnGroupListReq, opts ...grpc.CallOption) (*RelGameVpnGroupListRes, error) {
  231. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  232. out := new(RelGameVpnGroupListRes)
  233. err := c.cc.Invoke(ctx, GoGameClient_RelGameVpnGroupList_FullMethodName, in, out, cOpts...)
  234. if err != nil {
  235. return nil, err
  236. }
  237. return out, nil
  238. }
  239. func (c *goGameClientClient) GameCustomerList(ctx context.Context, in *GameCustomerListReq, opts ...grpc.CallOption) (*GameCustomerListRes, error) {
  240. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  241. out := new(GameCustomerListRes)
  242. err := c.cc.Invoke(ctx, GoGameClient_GameCustomerList_FullMethodName, in, out, cOpts...)
  243. if err != nil {
  244. return nil, err
  245. }
  246. return out, nil
  247. }
  248. func (c *goGameClientClient) GameCustomerAdd(ctx context.Context, in *GameCustomerVo, opts ...grpc.CallOption) (*GameCustomerAddResp, error) {
  249. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  250. out := new(GameCustomerAddResp)
  251. err := c.cc.Invoke(ctx, GoGameClient_GameCustomerAdd_FullMethodName, in, out, cOpts...)
  252. if err != nil {
  253. return nil, err
  254. }
  255. return out, nil
  256. }
  257. func (c *goGameClientClient) GameCustomerDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  258. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  259. out := new(Empty)
  260. err := c.cc.Invoke(ctx, GoGameClient_GameCustomerDel_FullMethodName, in, out, cOpts...)
  261. if err != nil {
  262. return nil, err
  263. }
  264. return out, nil
  265. }
  266. func (c *goGameClientClient) GameCategoryAdd(ctx context.Context, in *GameCategoryVo, opts ...grpc.CallOption) (*GameCategoryVo, error) {
  267. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  268. out := new(GameCategoryVo)
  269. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryAdd_FullMethodName, in, out, cOpts...)
  270. if err != nil {
  271. return nil, err
  272. }
  273. return out, nil
  274. }
  275. func (c *goGameClientClient) GameCategoryUpdate(ctx context.Context, in *GameCategoryVo, opts ...grpc.CallOption) (*Empty, error) {
  276. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  277. out := new(Empty)
  278. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryUpdate_FullMethodName, in, out, cOpts...)
  279. if err != nil {
  280. return nil, err
  281. }
  282. return out, nil
  283. }
  284. func (c *goGameClientClient) GameCategoryDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  285. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  286. out := new(Empty)
  287. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryDel_FullMethodName, in, out, cOpts...)
  288. if err != nil {
  289. return nil, err
  290. }
  291. return out, nil
  292. }
  293. func (c *goGameClientClient) GameCategoryGet(ctx context.Context, in *GameCategoryReq, opts ...grpc.CallOption) (*GameCategoryVo, error) {
  294. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  295. out := new(GameCategoryVo)
  296. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryGet_FullMethodName, in, out, cOpts...)
  297. if err != nil {
  298. return nil, err
  299. }
  300. return out, nil
  301. }
  302. func (c *goGameClientClient) GameCategoryList(ctx context.Context, in *GameCategoryListReq, opts ...grpc.CallOption) (*GameCategoryListRes, error) {
  303. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  304. out := new(GameCategoryListRes)
  305. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryList_FullMethodName, in, out, cOpts...)
  306. if err != nil {
  307. return nil, err
  308. }
  309. return out, nil
  310. }
  311. func (c *goGameClientClient) GameCategoryAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*GameCategoryListRes, error) {
  312. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  313. out := new(GameCategoryListRes)
  314. err := c.cc.Invoke(ctx, GoGameClient_GameCategoryAll_FullMethodName, in, out, cOpts...)
  315. if err != nil {
  316. return nil, err
  317. }
  318. return out, nil
  319. }
  320. // GoGameClientServer is the server API for GoGameClient service.
  321. // All implementations must embed UnimplementedGoGameClientServer
  322. // for forward compatibility.
  323. type GoGameClientServer interface {
  324. // 加速器游戏管理
  325. GameAdd(context.Context, *GameVo) (*GameVo, error)
  326. GameUpdate(context.Context, *GameVo) (*Empty, error)
  327. GameDel(context.Context, *Ids) (*Empty, error)
  328. GameGet(context.Context, *GameReq) (*GameVo, error)
  329. GameList(context.Context, *GameListReq) (*GameListRes, error)
  330. GameAll(context.Context, *Request) (*GameListRes, error)
  331. GameRedisHScanByName(context.Context, *GameRedisHScanByNameReq) (*GameRedisHScanByNameResp, error)
  332. // 游戏榜单关联关系
  333. RelGameRankAdd(context.Context, *RelGameRankVo) (*RelGameRankVo, error)
  334. RelGameRankUpdate(context.Context, *RelGameRankVo) (*Empty, error)
  335. RelGameRankDel(context.Context, *Ids) (*Empty, error)
  336. RelGameRankGet(context.Context, *RelGameRankReq) (*RelGameRankVo, error)
  337. RelGameRankList(context.Context, *RelGameRankListReq) (*RelGameRankListRes, error)
  338. // 游戏地域关联关系
  339. RelGameVpnGroupAdd(context.Context, *RelGameVpnGroupVo) (*RelGameVpnGroupVo, error)
  340. RelGameVpnGroupUpdate(context.Context, *RelGameVpnGroupVo) (*Empty, error)
  341. RelGameVpnGroupDel(context.Context, *Ids) (*Empty, error)
  342. RelGameVpnGroupGet(context.Context, *RelGameVpnGroupReq) (*RelGameVpnGroupVo, error)
  343. RelGameVpnGroupList(context.Context, *RelGameVpnGroupListReq) (*RelGameVpnGroupListRes, error)
  344. // 用户提交游戏
  345. GameCustomerList(context.Context, *GameCustomerListReq) (*GameCustomerListRes, error)
  346. GameCustomerAdd(context.Context, *GameCustomerVo) (*GameCustomerAddResp, error)
  347. GameCustomerDel(context.Context, *Ids) (*Empty, error)
  348. GameCategoryAdd(context.Context, *GameCategoryVo) (*GameCategoryVo, error)
  349. GameCategoryUpdate(context.Context, *GameCategoryVo) (*Empty, error)
  350. GameCategoryDel(context.Context, *Ids) (*Empty, error)
  351. GameCategoryGet(context.Context, *GameCategoryReq) (*GameCategoryVo, error)
  352. GameCategoryList(context.Context, *GameCategoryListReq) (*GameCategoryListRes, error)
  353. GameCategoryAll(context.Context, *Request) (*GameCategoryListRes, error)
  354. mustEmbedUnimplementedGoGameClientServer()
  355. }
  356. // UnimplementedGoGameClientServer must be embedded to have
  357. // forward compatible implementations.
  358. //
  359. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  360. // pointer dereference when methods are called.
  361. type UnimplementedGoGameClientServer struct{}
  362. func (UnimplementedGoGameClientServer) GameAdd(context.Context, *GameVo) (*GameVo, error) {
  363. return nil, status.Errorf(codes.Unimplemented, "method GameAdd not implemented")
  364. }
  365. func (UnimplementedGoGameClientServer) GameUpdate(context.Context, *GameVo) (*Empty, error) {
  366. return nil, status.Errorf(codes.Unimplemented, "method GameUpdate not implemented")
  367. }
  368. func (UnimplementedGoGameClientServer) GameDel(context.Context, *Ids) (*Empty, error) {
  369. return nil, status.Errorf(codes.Unimplemented, "method GameDel not implemented")
  370. }
  371. func (UnimplementedGoGameClientServer) GameGet(context.Context, *GameReq) (*GameVo, error) {
  372. return nil, status.Errorf(codes.Unimplemented, "method GameGet not implemented")
  373. }
  374. func (UnimplementedGoGameClientServer) GameList(context.Context, *GameListReq) (*GameListRes, error) {
  375. return nil, status.Errorf(codes.Unimplemented, "method GameList not implemented")
  376. }
  377. func (UnimplementedGoGameClientServer) GameAll(context.Context, *Request) (*GameListRes, error) {
  378. return nil, status.Errorf(codes.Unimplemented, "method GameAll not implemented")
  379. }
  380. func (UnimplementedGoGameClientServer) GameRedisHScanByName(context.Context, *GameRedisHScanByNameReq) (*GameRedisHScanByNameResp, error) {
  381. return nil, status.Errorf(codes.Unimplemented, "method GameRedisHScanByName not implemented")
  382. }
  383. func (UnimplementedGoGameClientServer) RelGameRankAdd(context.Context, *RelGameRankVo) (*RelGameRankVo, error) {
  384. return nil, status.Errorf(codes.Unimplemented, "method RelGameRankAdd not implemented")
  385. }
  386. func (UnimplementedGoGameClientServer) RelGameRankUpdate(context.Context, *RelGameRankVo) (*Empty, error) {
  387. return nil, status.Errorf(codes.Unimplemented, "method RelGameRankUpdate not implemented")
  388. }
  389. func (UnimplementedGoGameClientServer) RelGameRankDel(context.Context, *Ids) (*Empty, error) {
  390. return nil, status.Errorf(codes.Unimplemented, "method RelGameRankDel not implemented")
  391. }
  392. func (UnimplementedGoGameClientServer) RelGameRankGet(context.Context, *RelGameRankReq) (*RelGameRankVo, error) {
  393. return nil, status.Errorf(codes.Unimplemented, "method RelGameRankGet not implemented")
  394. }
  395. func (UnimplementedGoGameClientServer) RelGameRankList(context.Context, *RelGameRankListReq) (*RelGameRankListRes, error) {
  396. return nil, status.Errorf(codes.Unimplemented, "method RelGameRankList not implemented")
  397. }
  398. func (UnimplementedGoGameClientServer) RelGameVpnGroupAdd(context.Context, *RelGameVpnGroupVo) (*RelGameVpnGroupVo, error) {
  399. return nil, status.Errorf(codes.Unimplemented, "method RelGameVpnGroupAdd not implemented")
  400. }
  401. func (UnimplementedGoGameClientServer) RelGameVpnGroupUpdate(context.Context, *RelGameVpnGroupVo) (*Empty, error) {
  402. return nil, status.Errorf(codes.Unimplemented, "method RelGameVpnGroupUpdate not implemented")
  403. }
  404. func (UnimplementedGoGameClientServer) RelGameVpnGroupDel(context.Context, *Ids) (*Empty, error) {
  405. return nil, status.Errorf(codes.Unimplemented, "method RelGameVpnGroupDel not implemented")
  406. }
  407. func (UnimplementedGoGameClientServer) RelGameVpnGroupGet(context.Context, *RelGameVpnGroupReq) (*RelGameVpnGroupVo, error) {
  408. return nil, status.Errorf(codes.Unimplemented, "method RelGameVpnGroupGet not implemented")
  409. }
  410. func (UnimplementedGoGameClientServer) RelGameVpnGroupList(context.Context, *RelGameVpnGroupListReq) (*RelGameVpnGroupListRes, error) {
  411. return nil, status.Errorf(codes.Unimplemented, "method RelGameVpnGroupList not implemented")
  412. }
  413. func (UnimplementedGoGameClientServer) GameCustomerList(context.Context, *GameCustomerListReq) (*GameCustomerListRes, error) {
  414. return nil, status.Errorf(codes.Unimplemented, "method GameCustomerList not implemented")
  415. }
  416. func (UnimplementedGoGameClientServer) GameCustomerAdd(context.Context, *GameCustomerVo) (*GameCustomerAddResp, error) {
  417. return nil, status.Errorf(codes.Unimplemented, "method GameCustomerAdd not implemented")
  418. }
  419. func (UnimplementedGoGameClientServer) GameCustomerDel(context.Context, *Ids) (*Empty, error) {
  420. return nil, status.Errorf(codes.Unimplemented, "method GameCustomerDel not implemented")
  421. }
  422. func (UnimplementedGoGameClientServer) GameCategoryAdd(context.Context, *GameCategoryVo) (*GameCategoryVo, error) {
  423. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryAdd not implemented")
  424. }
  425. func (UnimplementedGoGameClientServer) GameCategoryUpdate(context.Context, *GameCategoryVo) (*Empty, error) {
  426. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryUpdate not implemented")
  427. }
  428. func (UnimplementedGoGameClientServer) GameCategoryDel(context.Context, *Ids) (*Empty, error) {
  429. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryDel not implemented")
  430. }
  431. func (UnimplementedGoGameClientServer) GameCategoryGet(context.Context, *GameCategoryReq) (*GameCategoryVo, error) {
  432. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryGet not implemented")
  433. }
  434. func (UnimplementedGoGameClientServer) GameCategoryList(context.Context, *GameCategoryListReq) (*GameCategoryListRes, error) {
  435. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryList not implemented")
  436. }
  437. func (UnimplementedGoGameClientServer) GameCategoryAll(context.Context, *Request) (*GameCategoryListRes, error) {
  438. return nil, status.Errorf(codes.Unimplemented, "method GameCategoryAll not implemented")
  439. }
  440. func (UnimplementedGoGameClientServer) mustEmbedUnimplementedGoGameClientServer() {}
  441. func (UnimplementedGoGameClientServer) testEmbeddedByValue() {}
  442. // UnsafeGoGameClientServer may be embedded to opt out of forward compatibility for this service.
  443. // Use of this interface is not recommended, as added methods to GoGameClientServer will
  444. // result in compilation errors.
  445. type UnsafeGoGameClientServer interface {
  446. mustEmbedUnimplementedGoGameClientServer()
  447. }
  448. func RegisterGoGameClientServer(s grpc.ServiceRegistrar, srv GoGameClientServer) {
  449. // If the following call pancis, it indicates UnimplementedGoGameClientServer was
  450. // embedded by pointer and is nil. This will cause panics if an
  451. // unimplemented method is ever invoked, so we test this at initialization
  452. // time to prevent it from happening at runtime later due to I/O.
  453. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  454. t.testEmbeddedByValue()
  455. }
  456. s.RegisterService(&GoGameClient_ServiceDesc, srv)
  457. }
  458. func _GoGameClient_GameAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  459. in := new(GameVo)
  460. if err := dec(in); err != nil {
  461. return nil, err
  462. }
  463. if interceptor == nil {
  464. return srv.(GoGameClientServer).GameAdd(ctx, in)
  465. }
  466. info := &grpc.UnaryServerInfo{
  467. Server: srv,
  468. FullMethod: GoGameClient_GameAdd_FullMethodName,
  469. }
  470. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  471. return srv.(GoGameClientServer).GameAdd(ctx, req.(*GameVo))
  472. }
  473. return interceptor(ctx, in, info, handler)
  474. }
  475. func _GoGameClient_GameUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  476. in := new(GameVo)
  477. if err := dec(in); err != nil {
  478. return nil, err
  479. }
  480. if interceptor == nil {
  481. return srv.(GoGameClientServer).GameUpdate(ctx, in)
  482. }
  483. info := &grpc.UnaryServerInfo{
  484. Server: srv,
  485. FullMethod: GoGameClient_GameUpdate_FullMethodName,
  486. }
  487. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  488. return srv.(GoGameClientServer).GameUpdate(ctx, req.(*GameVo))
  489. }
  490. return interceptor(ctx, in, info, handler)
  491. }
  492. func _GoGameClient_GameDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  493. in := new(Ids)
  494. if err := dec(in); err != nil {
  495. return nil, err
  496. }
  497. if interceptor == nil {
  498. return srv.(GoGameClientServer).GameDel(ctx, in)
  499. }
  500. info := &grpc.UnaryServerInfo{
  501. Server: srv,
  502. FullMethod: GoGameClient_GameDel_FullMethodName,
  503. }
  504. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  505. return srv.(GoGameClientServer).GameDel(ctx, req.(*Ids))
  506. }
  507. return interceptor(ctx, in, info, handler)
  508. }
  509. func _GoGameClient_GameGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  510. in := new(GameReq)
  511. if err := dec(in); err != nil {
  512. return nil, err
  513. }
  514. if interceptor == nil {
  515. return srv.(GoGameClientServer).GameGet(ctx, in)
  516. }
  517. info := &grpc.UnaryServerInfo{
  518. Server: srv,
  519. FullMethod: GoGameClient_GameGet_FullMethodName,
  520. }
  521. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  522. return srv.(GoGameClientServer).GameGet(ctx, req.(*GameReq))
  523. }
  524. return interceptor(ctx, in, info, handler)
  525. }
  526. func _GoGameClient_GameList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  527. in := new(GameListReq)
  528. if err := dec(in); err != nil {
  529. return nil, err
  530. }
  531. if interceptor == nil {
  532. return srv.(GoGameClientServer).GameList(ctx, in)
  533. }
  534. info := &grpc.UnaryServerInfo{
  535. Server: srv,
  536. FullMethod: GoGameClient_GameList_FullMethodName,
  537. }
  538. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  539. return srv.(GoGameClientServer).GameList(ctx, req.(*GameListReq))
  540. }
  541. return interceptor(ctx, in, info, handler)
  542. }
  543. func _GoGameClient_GameAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  544. in := new(Request)
  545. if err := dec(in); err != nil {
  546. return nil, err
  547. }
  548. if interceptor == nil {
  549. return srv.(GoGameClientServer).GameAll(ctx, in)
  550. }
  551. info := &grpc.UnaryServerInfo{
  552. Server: srv,
  553. FullMethod: GoGameClient_GameAll_FullMethodName,
  554. }
  555. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  556. return srv.(GoGameClientServer).GameAll(ctx, req.(*Request))
  557. }
  558. return interceptor(ctx, in, info, handler)
  559. }
  560. func _GoGameClient_GameRedisHScanByName_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  561. in := new(GameRedisHScanByNameReq)
  562. if err := dec(in); err != nil {
  563. return nil, err
  564. }
  565. if interceptor == nil {
  566. return srv.(GoGameClientServer).GameRedisHScanByName(ctx, in)
  567. }
  568. info := &grpc.UnaryServerInfo{
  569. Server: srv,
  570. FullMethod: GoGameClient_GameRedisHScanByName_FullMethodName,
  571. }
  572. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  573. return srv.(GoGameClientServer).GameRedisHScanByName(ctx, req.(*GameRedisHScanByNameReq))
  574. }
  575. return interceptor(ctx, in, info, handler)
  576. }
  577. func _GoGameClient_RelGameRankAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  578. in := new(RelGameRankVo)
  579. if err := dec(in); err != nil {
  580. return nil, err
  581. }
  582. if interceptor == nil {
  583. return srv.(GoGameClientServer).RelGameRankAdd(ctx, in)
  584. }
  585. info := &grpc.UnaryServerInfo{
  586. Server: srv,
  587. FullMethod: GoGameClient_RelGameRankAdd_FullMethodName,
  588. }
  589. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  590. return srv.(GoGameClientServer).RelGameRankAdd(ctx, req.(*RelGameRankVo))
  591. }
  592. return interceptor(ctx, in, info, handler)
  593. }
  594. func _GoGameClient_RelGameRankUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  595. in := new(RelGameRankVo)
  596. if err := dec(in); err != nil {
  597. return nil, err
  598. }
  599. if interceptor == nil {
  600. return srv.(GoGameClientServer).RelGameRankUpdate(ctx, in)
  601. }
  602. info := &grpc.UnaryServerInfo{
  603. Server: srv,
  604. FullMethod: GoGameClient_RelGameRankUpdate_FullMethodName,
  605. }
  606. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  607. return srv.(GoGameClientServer).RelGameRankUpdate(ctx, req.(*RelGameRankVo))
  608. }
  609. return interceptor(ctx, in, info, handler)
  610. }
  611. func _GoGameClient_RelGameRankDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  612. in := new(Ids)
  613. if err := dec(in); err != nil {
  614. return nil, err
  615. }
  616. if interceptor == nil {
  617. return srv.(GoGameClientServer).RelGameRankDel(ctx, in)
  618. }
  619. info := &grpc.UnaryServerInfo{
  620. Server: srv,
  621. FullMethod: GoGameClient_RelGameRankDel_FullMethodName,
  622. }
  623. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  624. return srv.(GoGameClientServer).RelGameRankDel(ctx, req.(*Ids))
  625. }
  626. return interceptor(ctx, in, info, handler)
  627. }
  628. func _GoGameClient_RelGameRankGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  629. in := new(RelGameRankReq)
  630. if err := dec(in); err != nil {
  631. return nil, err
  632. }
  633. if interceptor == nil {
  634. return srv.(GoGameClientServer).RelGameRankGet(ctx, in)
  635. }
  636. info := &grpc.UnaryServerInfo{
  637. Server: srv,
  638. FullMethod: GoGameClient_RelGameRankGet_FullMethodName,
  639. }
  640. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  641. return srv.(GoGameClientServer).RelGameRankGet(ctx, req.(*RelGameRankReq))
  642. }
  643. return interceptor(ctx, in, info, handler)
  644. }
  645. func _GoGameClient_RelGameRankList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  646. in := new(RelGameRankListReq)
  647. if err := dec(in); err != nil {
  648. return nil, err
  649. }
  650. if interceptor == nil {
  651. return srv.(GoGameClientServer).RelGameRankList(ctx, in)
  652. }
  653. info := &grpc.UnaryServerInfo{
  654. Server: srv,
  655. FullMethod: GoGameClient_RelGameRankList_FullMethodName,
  656. }
  657. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  658. return srv.(GoGameClientServer).RelGameRankList(ctx, req.(*RelGameRankListReq))
  659. }
  660. return interceptor(ctx, in, info, handler)
  661. }
  662. func _GoGameClient_RelGameVpnGroupAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  663. in := new(RelGameVpnGroupVo)
  664. if err := dec(in); err != nil {
  665. return nil, err
  666. }
  667. if interceptor == nil {
  668. return srv.(GoGameClientServer).RelGameVpnGroupAdd(ctx, in)
  669. }
  670. info := &grpc.UnaryServerInfo{
  671. Server: srv,
  672. FullMethod: GoGameClient_RelGameVpnGroupAdd_FullMethodName,
  673. }
  674. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  675. return srv.(GoGameClientServer).RelGameVpnGroupAdd(ctx, req.(*RelGameVpnGroupVo))
  676. }
  677. return interceptor(ctx, in, info, handler)
  678. }
  679. func _GoGameClient_RelGameVpnGroupUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  680. in := new(RelGameVpnGroupVo)
  681. if err := dec(in); err != nil {
  682. return nil, err
  683. }
  684. if interceptor == nil {
  685. return srv.(GoGameClientServer).RelGameVpnGroupUpdate(ctx, in)
  686. }
  687. info := &grpc.UnaryServerInfo{
  688. Server: srv,
  689. FullMethod: GoGameClient_RelGameVpnGroupUpdate_FullMethodName,
  690. }
  691. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  692. return srv.(GoGameClientServer).RelGameVpnGroupUpdate(ctx, req.(*RelGameVpnGroupVo))
  693. }
  694. return interceptor(ctx, in, info, handler)
  695. }
  696. func _GoGameClient_RelGameVpnGroupDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  697. in := new(Ids)
  698. if err := dec(in); err != nil {
  699. return nil, err
  700. }
  701. if interceptor == nil {
  702. return srv.(GoGameClientServer).RelGameVpnGroupDel(ctx, in)
  703. }
  704. info := &grpc.UnaryServerInfo{
  705. Server: srv,
  706. FullMethod: GoGameClient_RelGameVpnGroupDel_FullMethodName,
  707. }
  708. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  709. return srv.(GoGameClientServer).RelGameVpnGroupDel(ctx, req.(*Ids))
  710. }
  711. return interceptor(ctx, in, info, handler)
  712. }
  713. func _GoGameClient_RelGameVpnGroupGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  714. in := new(RelGameVpnGroupReq)
  715. if err := dec(in); err != nil {
  716. return nil, err
  717. }
  718. if interceptor == nil {
  719. return srv.(GoGameClientServer).RelGameVpnGroupGet(ctx, in)
  720. }
  721. info := &grpc.UnaryServerInfo{
  722. Server: srv,
  723. FullMethod: GoGameClient_RelGameVpnGroupGet_FullMethodName,
  724. }
  725. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  726. return srv.(GoGameClientServer).RelGameVpnGroupGet(ctx, req.(*RelGameVpnGroupReq))
  727. }
  728. return interceptor(ctx, in, info, handler)
  729. }
  730. func _GoGameClient_RelGameVpnGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  731. in := new(RelGameVpnGroupListReq)
  732. if err := dec(in); err != nil {
  733. return nil, err
  734. }
  735. if interceptor == nil {
  736. return srv.(GoGameClientServer).RelGameVpnGroupList(ctx, in)
  737. }
  738. info := &grpc.UnaryServerInfo{
  739. Server: srv,
  740. FullMethod: GoGameClient_RelGameVpnGroupList_FullMethodName,
  741. }
  742. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  743. return srv.(GoGameClientServer).RelGameVpnGroupList(ctx, req.(*RelGameVpnGroupListReq))
  744. }
  745. return interceptor(ctx, in, info, handler)
  746. }
  747. func _GoGameClient_GameCustomerList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  748. in := new(GameCustomerListReq)
  749. if err := dec(in); err != nil {
  750. return nil, err
  751. }
  752. if interceptor == nil {
  753. return srv.(GoGameClientServer).GameCustomerList(ctx, in)
  754. }
  755. info := &grpc.UnaryServerInfo{
  756. Server: srv,
  757. FullMethod: GoGameClient_GameCustomerList_FullMethodName,
  758. }
  759. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  760. return srv.(GoGameClientServer).GameCustomerList(ctx, req.(*GameCustomerListReq))
  761. }
  762. return interceptor(ctx, in, info, handler)
  763. }
  764. func _GoGameClient_GameCustomerAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  765. in := new(GameCustomerVo)
  766. if err := dec(in); err != nil {
  767. return nil, err
  768. }
  769. if interceptor == nil {
  770. return srv.(GoGameClientServer).GameCustomerAdd(ctx, in)
  771. }
  772. info := &grpc.UnaryServerInfo{
  773. Server: srv,
  774. FullMethod: GoGameClient_GameCustomerAdd_FullMethodName,
  775. }
  776. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  777. return srv.(GoGameClientServer).GameCustomerAdd(ctx, req.(*GameCustomerVo))
  778. }
  779. return interceptor(ctx, in, info, handler)
  780. }
  781. func _GoGameClient_GameCustomerDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  782. in := new(Ids)
  783. if err := dec(in); err != nil {
  784. return nil, err
  785. }
  786. if interceptor == nil {
  787. return srv.(GoGameClientServer).GameCustomerDel(ctx, in)
  788. }
  789. info := &grpc.UnaryServerInfo{
  790. Server: srv,
  791. FullMethod: GoGameClient_GameCustomerDel_FullMethodName,
  792. }
  793. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  794. return srv.(GoGameClientServer).GameCustomerDel(ctx, req.(*Ids))
  795. }
  796. return interceptor(ctx, in, info, handler)
  797. }
  798. func _GoGameClient_GameCategoryAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  799. in := new(GameCategoryVo)
  800. if err := dec(in); err != nil {
  801. return nil, err
  802. }
  803. if interceptor == nil {
  804. return srv.(GoGameClientServer).GameCategoryAdd(ctx, in)
  805. }
  806. info := &grpc.UnaryServerInfo{
  807. Server: srv,
  808. FullMethod: GoGameClient_GameCategoryAdd_FullMethodName,
  809. }
  810. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  811. return srv.(GoGameClientServer).GameCategoryAdd(ctx, req.(*GameCategoryVo))
  812. }
  813. return interceptor(ctx, in, info, handler)
  814. }
  815. func _GoGameClient_GameCategoryUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  816. in := new(GameCategoryVo)
  817. if err := dec(in); err != nil {
  818. return nil, err
  819. }
  820. if interceptor == nil {
  821. return srv.(GoGameClientServer).GameCategoryUpdate(ctx, in)
  822. }
  823. info := &grpc.UnaryServerInfo{
  824. Server: srv,
  825. FullMethod: GoGameClient_GameCategoryUpdate_FullMethodName,
  826. }
  827. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  828. return srv.(GoGameClientServer).GameCategoryUpdate(ctx, req.(*GameCategoryVo))
  829. }
  830. return interceptor(ctx, in, info, handler)
  831. }
  832. func _GoGameClient_GameCategoryDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  833. in := new(Ids)
  834. if err := dec(in); err != nil {
  835. return nil, err
  836. }
  837. if interceptor == nil {
  838. return srv.(GoGameClientServer).GameCategoryDel(ctx, in)
  839. }
  840. info := &grpc.UnaryServerInfo{
  841. Server: srv,
  842. FullMethod: GoGameClient_GameCategoryDel_FullMethodName,
  843. }
  844. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  845. return srv.(GoGameClientServer).GameCategoryDel(ctx, req.(*Ids))
  846. }
  847. return interceptor(ctx, in, info, handler)
  848. }
  849. func _GoGameClient_GameCategoryGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  850. in := new(GameCategoryReq)
  851. if err := dec(in); err != nil {
  852. return nil, err
  853. }
  854. if interceptor == nil {
  855. return srv.(GoGameClientServer).GameCategoryGet(ctx, in)
  856. }
  857. info := &grpc.UnaryServerInfo{
  858. Server: srv,
  859. FullMethod: GoGameClient_GameCategoryGet_FullMethodName,
  860. }
  861. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  862. return srv.(GoGameClientServer).GameCategoryGet(ctx, req.(*GameCategoryReq))
  863. }
  864. return interceptor(ctx, in, info, handler)
  865. }
  866. func _GoGameClient_GameCategoryList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  867. in := new(GameCategoryListReq)
  868. if err := dec(in); err != nil {
  869. return nil, err
  870. }
  871. if interceptor == nil {
  872. return srv.(GoGameClientServer).GameCategoryList(ctx, in)
  873. }
  874. info := &grpc.UnaryServerInfo{
  875. Server: srv,
  876. FullMethod: GoGameClient_GameCategoryList_FullMethodName,
  877. }
  878. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  879. return srv.(GoGameClientServer).GameCategoryList(ctx, req.(*GameCategoryListReq))
  880. }
  881. return interceptor(ctx, in, info, handler)
  882. }
  883. func _GoGameClient_GameCategoryAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  884. in := new(Request)
  885. if err := dec(in); err != nil {
  886. return nil, err
  887. }
  888. if interceptor == nil {
  889. return srv.(GoGameClientServer).GameCategoryAll(ctx, in)
  890. }
  891. info := &grpc.UnaryServerInfo{
  892. Server: srv,
  893. FullMethod: GoGameClient_GameCategoryAll_FullMethodName,
  894. }
  895. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  896. return srv.(GoGameClientServer).GameCategoryAll(ctx, req.(*Request))
  897. }
  898. return interceptor(ctx, in, info, handler)
  899. }
  900. // GoGameClient_ServiceDesc is the grpc.ServiceDesc for GoGameClient service.
  901. // It's only intended for direct use with grpc.RegisterService,
  902. // and not to be introspected or modified (even as a copy)
  903. var GoGameClient_ServiceDesc = grpc.ServiceDesc{
  904. ServiceName: "gorpc.GoGameClient",
  905. HandlerType: (*GoGameClientServer)(nil),
  906. Methods: []grpc.MethodDesc{
  907. {
  908. MethodName: "GameAdd",
  909. Handler: _GoGameClient_GameAdd_Handler,
  910. },
  911. {
  912. MethodName: "GameUpdate",
  913. Handler: _GoGameClient_GameUpdate_Handler,
  914. },
  915. {
  916. MethodName: "GameDel",
  917. Handler: _GoGameClient_GameDel_Handler,
  918. },
  919. {
  920. MethodName: "GameGet",
  921. Handler: _GoGameClient_GameGet_Handler,
  922. },
  923. {
  924. MethodName: "GameList",
  925. Handler: _GoGameClient_GameList_Handler,
  926. },
  927. {
  928. MethodName: "GameAll",
  929. Handler: _GoGameClient_GameAll_Handler,
  930. },
  931. {
  932. MethodName: "GameRedisHScanByName",
  933. Handler: _GoGameClient_GameRedisHScanByName_Handler,
  934. },
  935. {
  936. MethodName: "RelGameRankAdd",
  937. Handler: _GoGameClient_RelGameRankAdd_Handler,
  938. },
  939. {
  940. MethodName: "RelGameRankUpdate",
  941. Handler: _GoGameClient_RelGameRankUpdate_Handler,
  942. },
  943. {
  944. MethodName: "RelGameRankDel",
  945. Handler: _GoGameClient_RelGameRankDel_Handler,
  946. },
  947. {
  948. MethodName: "RelGameRankGet",
  949. Handler: _GoGameClient_RelGameRankGet_Handler,
  950. },
  951. {
  952. MethodName: "RelGameRankList",
  953. Handler: _GoGameClient_RelGameRankList_Handler,
  954. },
  955. {
  956. MethodName: "RelGameVpnGroupAdd",
  957. Handler: _GoGameClient_RelGameVpnGroupAdd_Handler,
  958. },
  959. {
  960. MethodName: "RelGameVpnGroupUpdate",
  961. Handler: _GoGameClient_RelGameVpnGroupUpdate_Handler,
  962. },
  963. {
  964. MethodName: "RelGameVpnGroupDel",
  965. Handler: _GoGameClient_RelGameVpnGroupDel_Handler,
  966. },
  967. {
  968. MethodName: "RelGameVpnGroupGet",
  969. Handler: _GoGameClient_RelGameVpnGroupGet_Handler,
  970. },
  971. {
  972. MethodName: "RelGameVpnGroupList",
  973. Handler: _GoGameClient_RelGameVpnGroupList_Handler,
  974. },
  975. {
  976. MethodName: "GameCustomerList",
  977. Handler: _GoGameClient_GameCustomerList_Handler,
  978. },
  979. {
  980. MethodName: "GameCustomerAdd",
  981. Handler: _GoGameClient_GameCustomerAdd_Handler,
  982. },
  983. {
  984. MethodName: "GameCustomerDel",
  985. Handler: _GoGameClient_GameCustomerDel_Handler,
  986. },
  987. {
  988. MethodName: "GameCategoryAdd",
  989. Handler: _GoGameClient_GameCategoryAdd_Handler,
  990. },
  991. {
  992. MethodName: "GameCategoryUpdate",
  993. Handler: _GoGameClient_GameCategoryUpdate_Handler,
  994. },
  995. {
  996. MethodName: "GameCategoryDel",
  997. Handler: _GoGameClient_GameCategoryDel_Handler,
  998. },
  999. {
  1000. MethodName: "GameCategoryGet",
  1001. Handler: _GoGameClient_GameCategoryGet_Handler,
  1002. },
  1003. {
  1004. MethodName: "GameCategoryList",
  1005. Handler: _GoGameClient_GameCategoryList_Handler,
  1006. },
  1007. {
  1008. MethodName: "GameCategoryAll",
  1009. Handler: _GoGameClient_GameCategoryAll_Handler,
  1010. },
  1011. },
  1012. Streams: []grpc.StreamDesc{},
  1013. Metadata: "gorpc.proto",
  1014. }
  1015. const (
  1016. GoPlanClient_ServiceTypesAdd_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesAdd"
  1017. GoPlanClient_ServiceTypesUpdate_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesUpdate"
  1018. GoPlanClient_ServiceTypesDel_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesDel"
  1019. GoPlanClient_ServiceTypesGet_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesGet"
  1020. GoPlanClient_ServiceTypesGetWithValue_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesGetWithValue"
  1021. GoPlanClient_ServiceTypesList_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesList"
  1022. GoPlanClient_ServiceTypesListWithValue_FullMethodName = "/gorpc.GoPlanClient/ServiceTypesListWithValue"
  1023. GoPlanClient_ServiceBoxAdd_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxAdd"
  1024. GoPlanClient_ServiceBoxAddWithDetails_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxAddWithDetails"
  1025. GoPlanClient_ServiceBoxUpdate_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxUpdate"
  1026. GoPlanClient_ServiceBoxUpdateWithDetails_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxUpdateWithDetails"
  1027. GoPlanClient_ServiceBoxDel_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxDel"
  1028. GoPlanClient_ServiceBoxGet_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxGet"
  1029. GoPlanClient_ServiceBoxGetWithDetails_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxGetWithDetails"
  1030. GoPlanClient_ServiceBoxList_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxList"
  1031. GoPlanClient_ServiceBoxListWithDetails_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxListWithDetails"
  1032. GoPlanClient_ServiceBoxTypesAdd_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxTypesAdd"
  1033. GoPlanClient_ServiceBoxTypesUpdate_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxTypesUpdate"
  1034. GoPlanClient_ServiceBoxTypesDel_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxTypesDel"
  1035. GoPlanClient_ServiceBoxTypesGet_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxTypesGet"
  1036. GoPlanClient_ServiceBoxTypesList_FullMethodName = "/gorpc.GoPlanClient/ServiceBoxTypesList"
  1037. GoPlanClient_ServicePlanAdd_FullMethodName = "/gorpc.GoPlanClient/ServicePlanAdd"
  1038. GoPlanClient_ServicePlanAddWithBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanAddWithBoxes"
  1039. GoPlanClient_ServicePlanAddWithBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanAddWithBoxesAndDetails"
  1040. GoPlanClient_ServicePlanUpdate_FullMethodName = "/gorpc.GoPlanClient/ServicePlanUpdate"
  1041. GoPlanClient_ServicePlanUpdateWithBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanUpdateWithBoxes"
  1042. GoPlanClient_ServicePlanUpdateWithBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanUpdateWithBoxesAndDetails"
  1043. GoPlanClient_ServicePlanDel_FullMethodName = "/gorpc.GoPlanClient/ServicePlanDel"
  1044. GoPlanClient_ServicePlanGet_FullMethodName = "/gorpc.GoPlanClient/ServicePlanGet"
  1045. GoPlanClient_ServicePlanGetWithBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanGetWithBoxes"
  1046. GoPlanClient_ServicePlanGetWithBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanGetWithBoxesAndDetails"
  1047. GoPlanClient_ServicePlanList_FullMethodName = "/gorpc.GoPlanClient/ServicePlanList"
  1048. GoPlanClient_ServicePlanListWithBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanListWithBoxes"
  1049. GoPlanClient_ServicePlanListWithBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanListWithBoxesAndDetails"
  1050. GoPlanClient_ServicePlanBoxesAdd_FullMethodName = "/gorpc.GoPlanClient/ServicePlanBoxesAdd"
  1051. GoPlanClient_ServicePlanBoxesUpdate_FullMethodName = "/gorpc.GoPlanClient/ServicePlanBoxesUpdate"
  1052. GoPlanClient_ServicePlanBoxesDel_FullMethodName = "/gorpc.GoPlanClient/ServicePlanBoxesDel"
  1053. GoPlanClient_ServicePlanBoxesGet_FullMethodName = "/gorpc.GoPlanClient/ServicePlanBoxesGet"
  1054. GoPlanClient_ServicePlanBoxesList_FullMethodName = "/gorpc.GoPlanClient/ServicePlanBoxesList"
  1055. GoPlanClient_ServicePlanChannelAdd_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelAdd"
  1056. GoPlanClient_ServicePlanChannelUpdate_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelUpdate"
  1057. GoPlanClient_ServicePlanChannelDel_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelDel"
  1058. GoPlanClient_ServicePlanChannelGet_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelGet"
  1059. GoPlanClient_ServicePlanChannelGetWithPlan_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelGetWithPlan"
  1060. GoPlanClient_ServicePlanChannelGetWithPlanAndBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelGetWithPlanAndBoxes"
  1061. GoPlanClient_ServicePlanChannelGetWithPlanAndBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelGetWithPlanAndBoxesAndDetails"
  1062. GoPlanClient_ServicePlanChannelList_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelList"
  1063. GoPlanClient_ServicePlanChannelListWithPlan_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelListWithPlan"
  1064. GoPlanClient_ServicePlanChannelListWithPlanAndBoxes_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelListWithPlanAndBoxes"
  1065. GoPlanClient_ServicePlanChannelListWithPlanAndBoxesAndDetails_FullMethodName = "/gorpc.GoPlanClient/ServicePlanChannelListWithPlanAndBoxesAndDetails"
  1066. )
  1067. // GoPlanClientClient is the client API for GoPlanClient service.
  1068. //
  1069. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  1070. type GoPlanClientClient interface {
  1071. // ServiceTypesAdd
  1072. ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesAddResp, error)
  1073. ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesUpdateResp, error)
  1074. ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error)
  1075. ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesGetResp, error)
  1076. ServiceTypesGetWithValue(ctx context.Context, in *ServiceTypesGetWithValueReq, opts ...grpc.CallOption) (*ServiceTypesGetWithValueResp, error)
  1077. ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error)
  1078. ServiceTypesListWithValue(ctx context.Context, in *ServiceTypesListWithValueReq, opts ...grpc.CallOption) (*ServiceTypesListWithValueResp, error)
  1079. // ServiceBoxAdd
  1080. ServiceBoxAdd(ctx context.Context, in *ServiceBoxAddReq, opts ...grpc.CallOption) (*ServiceBoxAddResp, error)
  1081. ServiceBoxAddWithDetails(ctx context.Context, in *ServiceBoxAddWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxAddWithDetailsResp, error)
  1082. ServiceBoxUpdate(ctx context.Context, in *ServiceBoxUpdateReq, opts ...grpc.CallOption) (*ServiceBoxUpdateResp, error)
  1083. ServiceBoxUpdateWithDetails(ctx context.Context, in *ServiceBoxUpdateWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxUpdateWithDetailsResp, error)
  1084. ServiceBoxDel(ctx context.Context, in *ServiceBoxDelReq, opts ...grpc.CallOption) (*Empty, error)
  1085. ServiceBoxGet(ctx context.Context, in *ServiceBoxGetReq, opts ...grpc.CallOption) (*ServiceBoxGetResp, error)
  1086. ServiceBoxGetWithDetails(ctx context.Context, in *ServiceBoxGetWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxGetWithDetailsResp, error)
  1087. ServiceBoxList(ctx context.Context, in *ServiceBoxListReq, opts ...grpc.CallOption) (*ServiceBoxListResp, error)
  1088. ServiceBoxListWithDetails(ctx context.Context, in *ServiceBoxListWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxListWithDetailsResp, error)
  1089. // ServiceBoxTypesAdd
  1090. ServiceBoxTypesAdd(ctx context.Context, in *ServiceBoxTypesAddReq, opts ...grpc.CallOption) (*ServiceBoxTypesAddResp, error)
  1091. ServiceBoxTypesUpdate(ctx context.Context, in *ServiceBoxTypesUpdateReq, opts ...grpc.CallOption) (*ServiceBoxTypesUpdateResp, error)
  1092. ServiceBoxTypesDel(ctx context.Context, in *ServiceBoxTypesDelReq, opts ...grpc.CallOption) (*Empty, error)
  1093. ServiceBoxTypesGet(ctx context.Context, in *ServiceBoxTypesGetReq, opts ...grpc.CallOption) (*ServiceBoxTypesGetResp, error)
  1094. ServiceBoxTypesList(ctx context.Context, in *ServiceBoxTypesListReq, opts ...grpc.CallOption) (*ServiceBoxTypesListResp, error)
  1095. // ServicePlanAdd
  1096. ServicePlanAdd(ctx context.Context, in *ServicePlanAddReq, opts ...grpc.CallOption) (*ServicePlanAddResp, error)
  1097. ServicePlanAddWithBoxes(ctx context.Context, in *ServicePlanAddWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanAddWithBoxesResp, error)
  1098. ServicePlanAddWithBoxesAndDetails(ctx context.Context, in *ServicePlanAddWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanAddWithBoxesAndDetailsResp, error)
  1099. ServicePlanUpdate(ctx context.Context, in *ServicePlanUpdateReq, opts ...grpc.CallOption) (*ServicePlanUpdateResp, error)
  1100. ServicePlanUpdateWithBoxes(ctx context.Context, in *ServicePlanUpdateWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithBoxesResp, error)
  1101. ServicePlanUpdateWithBoxesAndDetails(ctx context.Context, in *ServicePlanUpdateWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithBoxesAndDetailsResp, error)
  1102. ServicePlanDel(ctx context.Context, in *ServicePlanDelReq, opts ...grpc.CallOption) (*Empty, error)
  1103. ServicePlanGet(ctx context.Context, in *ServicePlanGetReq, opts ...grpc.CallOption) (*ServicePlanGetResp, error)
  1104. ServicePlanGetWithBoxes(ctx context.Context, in *ServicePlanGetWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanGetWithBoxesResp, error)
  1105. ServicePlanGetWithBoxesAndDetails(ctx context.Context, in *ServicePlanGetWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanGetWithBoxesAndDetailsResp, error)
  1106. ServicePlanList(ctx context.Context, in *ServicePlanListReq, opts ...grpc.CallOption) (*ServicePlanListResp, error)
  1107. ServicePlanListWithBoxes(ctx context.Context, in *ServicePlanListWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanListWithBoxesResp, error)
  1108. ServicePlanListWithBoxesAndDetails(ctx context.Context, in *ServicePlanListWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanListWithBoxesAndDetailsResp, error)
  1109. // ServicePlanBoxesAdd
  1110. ServicePlanBoxesAdd(ctx context.Context, in *ServicePlanBoxesAddReq, opts ...grpc.CallOption) (*ServicePlanBoxesAddResp, error)
  1111. ServicePlanBoxesUpdate(ctx context.Context, in *ServicePlanBoxesUpdateReq, opts ...grpc.CallOption) (*ServicePlanBoxesUpdateResp, error)
  1112. ServicePlanBoxesDel(ctx context.Context, in *ServicePlanBoxesDelReq, opts ...grpc.CallOption) (*Empty, error)
  1113. ServicePlanBoxesGet(ctx context.Context, in *ServicePlanBoxesGetReq, opts ...grpc.CallOption) (*ServicePlanBoxesGetResp, error)
  1114. ServicePlanBoxesList(ctx context.Context, in *ServicePlanBoxesListReq, opts ...grpc.CallOption) (*ServicePlanBoxesListResp, error)
  1115. // ServicePlanChannelAdd
  1116. ServicePlanChannelAdd(ctx context.Context, in *ServicePlanChannelAddReq, opts ...grpc.CallOption) (*ServicePlanChannelAddResp, error)
  1117. ServicePlanChannelUpdate(ctx context.Context, in *ServicePlanChannelUpdateReq, opts ...grpc.CallOption) (*ServicePlanChannelUpdateResp, error)
  1118. ServicePlanChannelDel(ctx context.Context, in *ServicePlanChannelDelReq, opts ...grpc.CallOption) (*Empty, error)
  1119. ServicePlanChannelGet(ctx context.Context, in *ServicePlanChannelGetReq, opts ...grpc.CallOption) (*ServicePlanChannelGetResp, error)
  1120. ServicePlanChannelGetWithPlan(ctx context.Context, in *ServicePlanChannelGetWithPlanReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanResp, error)
  1121. ServicePlanChannelGetWithPlanAndBoxes(ctx context.Context, in *ServicePlanChannelGetWithPlanAndBoxesReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanAndBoxesResp, error)
  1122. ServicePlanChannelGetWithPlanAndBoxesAndDetails(ctx context.Context, in *ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanAndBoxesAndDetailsResp, error)
  1123. ServicePlanChannelList(ctx context.Context, in *ServicePlanChannelListReq, opts ...grpc.CallOption) (*ServicePlanChannelListResp, error)
  1124. ServicePlanChannelListWithPlan(ctx context.Context, in *ServicePlanChannelListWithPlanReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanResp, error)
  1125. ServicePlanChannelListWithPlanAndBoxes(ctx context.Context, in *ServicePlanChannelListWithPlanAndBoxesReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanAndBoxesResp, error)
  1126. ServicePlanChannelListWithPlanAndBoxesAndDetails(ctx context.Context, in *ServicePlanChannelListWithPlanAndBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanAndBoxesAndDetailsResp, error)
  1127. }
  1128. type goPlanClientClient struct {
  1129. cc grpc.ClientConnInterface
  1130. }
  1131. func NewGoPlanClientClient(cc grpc.ClientConnInterface) GoPlanClientClient {
  1132. return &goPlanClientClient{cc}
  1133. }
  1134. func (c *goPlanClientClient) ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesAddResp, error) {
  1135. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1136. out := new(ServiceTypesAddResp)
  1137. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesAdd_FullMethodName, in, out, cOpts...)
  1138. if err != nil {
  1139. return nil, err
  1140. }
  1141. return out, nil
  1142. }
  1143. func (c *goPlanClientClient) ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesUpdateResp, error) {
  1144. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1145. out := new(ServiceTypesUpdateResp)
  1146. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesUpdate_FullMethodName, in, out, cOpts...)
  1147. if err != nil {
  1148. return nil, err
  1149. }
  1150. return out, nil
  1151. }
  1152. func (c *goPlanClientClient) ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1153. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1154. out := new(Empty)
  1155. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesDel_FullMethodName, in, out, cOpts...)
  1156. if err != nil {
  1157. return nil, err
  1158. }
  1159. return out, nil
  1160. }
  1161. func (c *goPlanClientClient) ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesGetResp, error) {
  1162. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1163. out := new(ServiceTypesGetResp)
  1164. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesGet_FullMethodName, in, out, cOpts...)
  1165. if err != nil {
  1166. return nil, err
  1167. }
  1168. return out, nil
  1169. }
  1170. func (c *goPlanClientClient) ServiceTypesGetWithValue(ctx context.Context, in *ServiceTypesGetWithValueReq, opts ...grpc.CallOption) (*ServiceTypesGetWithValueResp, error) {
  1171. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1172. out := new(ServiceTypesGetWithValueResp)
  1173. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesGetWithValue_FullMethodName, in, out, cOpts...)
  1174. if err != nil {
  1175. return nil, err
  1176. }
  1177. return out, nil
  1178. }
  1179. func (c *goPlanClientClient) ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error) {
  1180. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1181. out := new(ServiceTypesListResp)
  1182. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesList_FullMethodName, in, out, cOpts...)
  1183. if err != nil {
  1184. return nil, err
  1185. }
  1186. return out, nil
  1187. }
  1188. func (c *goPlanClientClient) ServiceTypesListWithValue(ctx context.Context, in *ServiceTypesListWithValueReq, opts ...grpc.CallOption) (*ServiceTypesListWithValueResp, error) {
  1189. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1190. out := new(ServiceTypesListWithValueResp)
  1191. err := c.cc.Invoke(ctx, GoPlanClient_ServiceTypesListWithValue_FullMethodName, in, out, cOpts...)
  1192. if err != nil {
  1193. return nil, err
  1194. }
  1195. return out, nil
  1196. }
  1197. func (c *goPlanClientClient) ServiceBoxAdd(ctx context.Context, in *ServiceBoxAddReq, opts ...grpc.CallOption) (*ServiceBoxAddResp, error) {
  1198. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1199. out := new(ServiceBoxAddResp)
  1200. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxAdd_FullMethodName, in, out, cOpts...)
  1201. if err != nil {
  1202. return nil, err
  1203. }
  1204. return out, nil
  1205. }
  1206. func (c *goPlanClientClient) ServiceBoxAddWithDetails(ctx context.Context, in *ServiceBoxAddWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxAddWithDetailsResp, error) {
  1207. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1208. out := new(ServiceBoxAddWithDetailsResp)
  1209. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxAddWithDetails_FullMethodName, in, out, cOpts...)
  1210. if err != nil {
  1211. return nil, err
  1212. }
  1213. return out, nil
  1214. }
  1215. func (c *goPlanClientClient) ServiceBoxUpdate(ctx context.Context, in *ServiceBoxUpdateReq, opts ...grpc.CallOption) (*ServiceBoxUpdateResp, error) {
  1216. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1217. out := new(ServiceBoxUpdateResp)
  1218. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxUpdate_FullMethodName, in, out, cOpts...)
  1219. if err != nil {
  1220. return nil, err
  1221. }
  1222. return out, nil
  1223. }
  1224. func (c *goPlanClientClient) ServiceBoxUpdateWithDetails(ctx context.Context, in *ServiceBoxUpdateWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxUpdateWithDetailsResp, error) {
  1225. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1226. out := new(ServiceBoxUpdateWithDetailsResp)
  1227. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxUpdateWithDetails_FullMethodName, in, out, cOpts...)
  1228. if err != nil {
  1229. return nil, err
  1230. }
  1231. return out, nil
  1232. }
  1233. func (c *goPlanClientClient) ServiceBoxDel(ctx context.Context, in *ServiceBoxDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1234. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1235. out := new(Empty)
  1236. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxDel_FullMethodName, in, out, cOpts...)
  1237. if err != nil {
  1238. return nil, err
  1239. }
  1240. return out, nil
  1241. }
  1242. func (c *goPlanClientClient) ServiceBoxGet(ctx context.Context, in *ServiceBoxGetReq, opts ...grpc.CallOption) (*ServiceBoxGetResp, error) {
  1243. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1244. out := new(ServiceBoxGetResp)
  1245. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxGet_FullMethodName, in, out, cOpts...)
  1246. if err != nil {
  1247. return nil, err
  1248. }
  1249. return out, nil
  1250. }
  1251. func (c *goPlanClientClient) ServiceBoxGetWithDetails(ctx context.Context, in *ServiceBoxGetWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxGetWithDetailsResp, error) {
  1252. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1253. out := new(ServiceBoxGetWithDetailsResp)
  1254. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxGetWithDetails_FullMethodName, in, out, cOpts...)
  1255. if err != nil {
  1256. return nil, err
  1257. }
  1258. return out, nil
  1259. }
  1260. func (c *goPlanClientClient) ServiceBoxList(ctx context.Context, in *ServiceBoxListReq, opts ...grpc.CallOption) (*ServiceBoxListResp, error) {
  1261. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1262. out := new(ServiceBoxListResp)
  1263. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxList_FullMethodName, in, out, cOpts...)
  1264. if err != nil {
  1265. return nil, err
  1266. }
  1267. return out, nil
  1268. }
  1269. func (c *goPlanClientClient) ServiceBoxListWithDetails(ctx context.Context, in *ServiceBoxListWithDetailsReq, opts ...grpc.CallOption) (*ServiceBoxListWithDetailsResp, error) {
  1270. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1271. out := new(ServiceBoxListWithDetailsResp)
  1272. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxListWithDetails_FullMethodName, in, out, cOpts...)
  1273. if err != nil {
  1274. return nil, err
  1275. }
  1276. return out, nil
  1277. }
  1278. func (c *goPlanClientClient) ServiceBoxTypesAdd(ctx context.Context, in *ServiceBoxTypesAddReq, opts ...grpc.CallOption) (*ServiceBoxTypesAddResp, error) {
  1279. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1280. out := new(ServiceBoxTypesAddResp)
  1281. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxTypesAdd_FullMethodName, in, out, cOpts...)
  1282. if err != nil {
  1283. return nil, err
  1284. }
  1285. return out, nil
  1286. }
  1287. func (c *goPlanClientClient) ServiceBoxTypesUpdate(ctx context.Context, in *ServiceBoxTypesUpdateReq, opts ...grpc.CallOption) (*ServiceBoxTypesUpdateResp, error) {
  1288. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1289. out := new(ServiceBoxTypesUpdateResp)
  1290. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxTypesUpdate_FullMethodName, in, out, cOpts...)
  1291. if err != nil {
  1292. return nil, err
  1293. }
  1294. return out, nil
  1295. }
  1296. func (c *goPlanClientClient) ServiceBoxTypesDel(ctx context.Context, in *ServiceBoxTypesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1297. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1298. out := new(Empty)
  1299. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxTypesDel_FullMethodName, in, out, cOpts...)
  1300. if err != nil {
  1301. return nil, err
  1302. }
  1303. return out, nil
  1304. }
  1305. func (c *goPlanClientClient) ServiceBoxTypesGet(ctx context.Context, in *ServiceBoxTypesGetReq, opts ...grpc.CallOption) (*ServiceBoxTypesGetResp, error) {
  1306. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1307. out := new(ServiceBoxTypesGetResp)
  1308. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxTypesGet_FullMethodName, in, out, cOpts...)
  1309. if err != nil {
  1310. return nil, err
  1311. }
  1312. return out, nil
  1313. }
  1314. func (c *goPlanClientClient) ServiceBoxTypesList(ctx context.Context, in *ServiceBoxTypesListReq, opts ...grpc.CallOption) (*ServiceBoxTypesListResp, error) {
  1315. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1316. out := new(ServiceBoxTypesListResp)
  1317. err := c.cc.Invoke(ctx, GoPlanClient_ServiceBoxTypesList_FullMethodName, in, out, cOpts...)
  1318. if err != nil {
  1319. return nil, err
  1320. }
  1321. return out, nil
  1322. }
  1323. func (c *goPlanClientClient) ServicePlanAdd(ctx context.Context, in *ServicePlanAddReq, opts ...grpc.CallOption) (*ServicePlanAddResp, error) {
  1324. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1325. out := new(ServicePlanAddResp)
  1326. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanAdd_FullMethodName, in, out, cOpts...)
  1327. if err != nil {
  1328. return nil, err
  1329. }
  1330. return out, nil
  1331. }
  1332. func (c *goPlanClientClient) ServicePlanAddWithBoxes(ctx context.Context, in *ServicePlanAddWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanAddWithBoxesResp, error) {
  1333. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1334. out := new(ServicePlanAddWithBoxesResp)
  1335. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanAddWithBoxes_FullMethodName, in, out, cOpts...)
  1336. if err != nil {
  1337. return nil, err
  1338. }
  1339. return out, nil
  1340. }
  1341. func (c *goPlanClientClient) ServicePlanAddWithBoxesAndDetails(ctx context.Context, in *ServicePlanAddWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanAddWithBoxesAndDetailsResp, error) {
  1342. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1343. out := new(ServicePlanAddWithBoxesAndDetailsResp)
  1344. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanAddWithBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1345. if err != nil {
  1346. return nil, err
  1347. }
  1348. return out, nil
  1349. }
  1350. func (c *goPlanClientClient) ServicePlanUpdate(ctx context.Context, in *ServicePlanUpdateReq, opts ...grpc.CallOption) (*ServicePlanUpdateResp, error) {
  1351. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1352. out := new(ServicePlanUpdateResp)
  1353. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanUpdate_FullMethodName, in, out, cOpts...)
  1354. if err != nil {
  1355. return nil, err
  1356. }
  1357. return out, nil
  1358. }
  1359. func (c *goPlanClientClient) ServicePlanUpdateWithBoxes(ctx context.Context, in *ServicePlanUpdateWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithBoxesResp, error) {
  1360. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1361. out := new(ServicePlanUpdateWithBoxesResp)
  1362. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanUpdateWithBoxes_FullMethodName, in, out, cOpts...)
  1363. if err != nil {
  1364. return nil, err
  1365. }
  1366. return out, nil
  1367. }
  1368. func (c *goPlanClientClient) ServicePlanUpdateWithBoxesAndDetails(ctx context.Context, in *ServicePlanUpdateWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithBoxesAndDetailsResp, error) {
  1369. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1370. out := new(ServicePlanUpdateWithBoxesAndDetailsResp)
  1371. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanUpdateWithBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1372. if err != nil {
  1373. return nil, err
  1374. }
  1375. return out, nil
  1376. }
  1377. func (c *goPlanClientClient) ServicePlanDel(ctx context.Context, in *ServicePlanDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1378. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1379. out := new(Empty)
  1380. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanDel_FullMethodName, in, out, cOpts...)
  1381. if err != nil {
  1382. return nil, err
  1383. }
  1384. return out, nil
  1385. }
  1386. func (c *goPlanClientClient) ServicePlanGet(ctx context.Context, in *ServicePlanGetReq, opts ...grpc.CallOption) (*ServicePlanGetResp, error) {
  1387. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1388. out := new(ServicePlanGetResp)
  1389. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanGet_FullMethodName, in, out, cOpts...)
  1390. if err != nil {
  1391. return nil, err
  1392. }
  1393. return out, nil
  1394. }
  1395. func (c *goPlanClientClient) ServicePlanGetWithBoxes(ctx context.Context, in *ServicePlanGetWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanGetWithBoxesResp, error) {
  1396. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1397. out := new(ServicePlanGetWithBoxesResp)
  1398. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanGetWithBoxes_FullMethodName, in, out, cOpts...)
  1399. if err != nil {
  1400. return nil, err
  1401. }
  1402. return out, nil
  1403. }
  1404. func (c *goPlanClientClient) ServicePlanGetWithBoxesAndDetails(ctx context.Context, in *ServicePlanGetWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanGetWithBoxesAndDetailsResp, error) {
  1405. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1406. out := new(ServicePlanGetWithBoxesAndDetailsResp)
  1407. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanGetWithBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1408. if err != nil {
  1409. return nil, err
  1410. }
  1411. return out, nil
  1412. }
  1413. func (c *goPlanClientClient) ServicePlanList(ctx context.Context, in *ServicePlanListReq, opts ...grpc.CallOption) (*ServicePlanListResp, error) {
  1414. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1415. out := new(ServicePlanListResp)
  1416. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanList_FullMethodName, in, out, cOpts...)
  1417. if err != nil {
  1418. return nil, err
  1419. }
  1420. return out, nil
  1421. }
  1422. func (c *goPlanClientClient) ServicePlanListWithBoxes(ctx context.Context, in *ServicePlanListWithBoxesReq, opts ...grpc.CallOption) (*ServicePlanListWithBoxesResp, error) {
  1423. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1424. out := new(ServicePlanListWithBoxesResp)
  1425. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanListWithBoxes_FullMethodName, in, out, cOpts...)
  1426. if err != nil {
  1427. return nil, err
  1428. }
  1429. return out, nil
  1430. }
  1431. func (c *goPlanClientClient) ServicePlanListWithBoxesAndDetails(ctx context.Context, in *ServicePlanListWithBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanListWithBoxesAndDetailsResp, error) {
  1432. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1433. out := new(ServicePlanListWithBoxesAndDetailsResp)
  1434. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanListWithBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1435. if err != nil {
  1436. return nil, err
  1437. }
  1438. return out, nil
  1439. }
  1440. func (c *goPlanClientClient) ServicePlanBoxesAdd(ctx context.Context, in *ServicePlanBoxesAddReq, opts ...grpc.CallOption) (*ServicePlanBoxesAddResp, error) {
  1441. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1442. out := new(ServicePlanBoxesAddResp)
  1443. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanBoxesAdd_FullMethodName, in, out, cOpts...)
  1444. if err != nil {
  1445. return nil, err
  1446. }
  1447. return out, nil
  1448. }
  1449. func (c *goPlanClientClient) ServicePlanBoxesUpdate(ctx context.Context, in *ServicePlanBoxesUpdateReq, opts ...grpc.CallOption) (*ServicePlanBoxesUpdateResp, error) {
  1450. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1451. out := new(ServicePlanBoxesUpdateResp)
  1452. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanBoxesUpdate_FullMethodName, in, out, cOpts...)
  1453. if err != nil {
  1454. return nil, err
  1455. }
  1456. return out, nil
  1457. }
  1458. func (c *goPlanClientClient) ServicePlanBoxesDel(ctx context.Context, in *ServicePlanBoxesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1459. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1460. out := new(Empty)
  1461. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanBoxesDel_FullMethodName, in, out, cOpts...)
  1462. if err != nil {
  1463. return nil, err
  1464. }
  1465. return out, nil
  1466. }
  1467. func (c *goPlanClientClient) ServicePlanBoxesGet(ctx context.Context, in *ServicePlanBoxesGetReq, opts ...grpc.CallOption) (*ServicePlanBoxesGetResp, error) {
  1468. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1469. out := new(ServicePlanBoxesGetResp)
  1470. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanBoxesGet_FullMethodName, in, out, cOpts...)
  1471. if err != nil {
  1472. return nil, err
  1473. }
  1474. return out, nil
  1475. }
  1476. func (c *goPlanClientClient) ServicePlanBoxesList(ctx context.Context, in *ServicePlanBoxesListReq, opts ...grpc.CallOption) (*ServicePlanBoxesListResp, error) {
  1477. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1478. out := new(ServicePlanBoxesListResp)
  1479. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanBoxesList_FullMethodName, in, out, cOpts...)
  1480. if err != nil {
  1481. return nil, err
  1482. }
  1483. return out, nil
  1484. }
  1485. func (c *goPlanClientClient) ServicePlanChannelAdd(ctx context.Context, in *ServicePlanChannelAddReq, opts ...grpc.CallOption) (*ServicePlanChannelAddResp, error) {
  1486. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1487. out := new(ServicePlanChannelAddResp)
  1488. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelAdd_FullMethodName, in, out, cOpts...)
  1489. if err != nil {
  1490. return nil, err
  1491. }
  1492. return out, nil
  1493. }
  1494. func (c *goPlanClientClient) ServicePlanChannelUpdate(ctx context.Context, in *ServicePlanChannelUpdateReq, opts ...grpc.CallOption) (*ServicePlanChannelUpdateResp, error) {
  1495. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1496. out := new(ServicePlanChannelUpdateResp)
  1497. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelUpdate_FullMethodName, in, out, cOpts...)
  1498. if err != nil {
  1499. return nil, err
  1500. }
  1501. return out, nil
  1502. }
  1503. func (c *goPlanClientClient) ServicePlanChannelDel(ctx context.Context, in *ServicePlanChannelDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1504. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1505. out := new(Empty)
  1506. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelDel_FullMethodName, in, out, cOpts...)
  1507. if err != nil {
  1508. return nil, err
  1509. }
  1510. return out, nil
  1511. }
  1512. func (c *goPlanClientClient) ServicePlanChannelGet(ctx context.Context, in *ServicePlanChannelGetReq, opts ...grpc.CallOption) (*ServicePlanChannelGetResp, error) {
  1513. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1514. out := new(ServicePlanChannelGetResp)
  1515. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelGet_FullMethodName, in, out, cOpts...)
  1516. if err != nil {
  1517. return nil, err
  1518. }
  1519. return out, nil
  1520. }
  1521. func (c *goPlanClientClient) ServicePlanChannelGetWithPlan(ctx context.Context, in *ServicePlanChannelGetWithPlanReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanResp, error) {
  1522. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1523. out := new(ServicePlanChannelGetWithPlanResp)
  1524. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelGetWithPlan_FullMethodName, in, out, cOpts...)
  1525. if err != nil {
  1526. return nil, err
  1527. }
  1528. return out, nil
  1529. }
  1530. func (c *goPlanClientClient) ServicePlanChannelGetWithPlanAndBoxes(ctx context.Context, in *ServicePlanChannelGetWithPlanAndBoxesReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanAndBoxesResp, error) {
  1531. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1532. out := new(ServicePlanChannelGetWithPlanAndBoxesResp)
  1533. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelGetWithPlanAndBoxes_FullMethodName, in, out, cOpts...)
  1534. if err != nil {
  1535. return nil, err
  1536. }
  1537. return out, nil
  1538. }
  1539. func (c *goPlanClientClient) ServicePlanChannelGetWithPlanAndBoxesAndDetails(ctx context.Context, in *ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanChannelGetWithPlanAndBoxesAndDetailsResp, error) {
  1540. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1541. out := new(ServicePlanChannelGetWithPlanAndBoxesAndDetailsResp)
  1542. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelGetWithPlanAndBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1543. if err != nil {
  1544. return nil, err
  1545. }
  1546. return out, nil
  1547. }
  1548. func (c *goPlanClientClient) ServicePlanChannelList(ctx context.Context, in *ServicePlanChannelListReq, opts ...grpc.CallOption) (*ServicePlanChannelListResp, error) {
  1549. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1550. out := new(ServicePlanChannelListResp)
  1551. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelList_FullMethodName, in, out, cOpts...)
  1552. if err != nil {
  1553. return nil, err
  1554. }
  1555. return out, nil
  1556. }
  1557. func (c *goPlanClientClient) ServicePlanChannelListWithPlan(ctx context.Context, in *ServicePlanChannelListWithPlanReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanResp, error) {
  1558. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1559. out := new(ServicePlanChannelListWithPlanResp)
  1560. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelListWithPlan_FullMethodName, in, out, cOpts...)
  1561. if err != nil {
  1562. return nil, err
  1563. }
  1564. return out, nil
  1565. }
  1566. func (c *goPlanClientClient) ServicePlanChannelListWithPlanAndBoxes(ctx context.Context, in *ServicePlanChannelListWithPlanAndBoxesReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanAndBoxesResp, error) {
  1567. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1568. out := new(ServicePlanChannelListWithPlanAndBoxesResp)
  1569. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelListWithPlanAndBoxes_FullMethodName, in, out, cOpts...)
  1570. if err != nil {
  1571. return nil, err
  1572. }
  1573. return out, nil
  1574. }
  1575. func (c *goPlanClientClient) ServicePlanChannelListWithPlanAndBoxesAndDetails(ctx context.Context, in *ServicePlanChannelListWithPlanAndBoxesAndDetailsReq, opts ...grpc.CallOption) (*ServicePlanChannelListWithPlanAndBoxesAndDetailsResp, error) {
  1576. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  1577. out := new(ServicePlanChannelListWithPlanAndBoxesAndDetailsResp)
  1578. err := c.cc.Invoke(ctx, GoPlanClient_ServicePlanChannelListWithPlanAndBoxesAndDetails_FullMethodName, in, out, cOpts...)
  1579. if err != nil {
  1580. return nil, err
  1581. }
  1582. return out, nil
  1583. }
  1584. // GoPlanClientServer is the server API for GoPlanClient service.
  1585. // All implementations must embed UnimplementedGoPlanClientServer
  1586. // for forward compatibility.
  1587. type GoPlanClientServer interface {
  1588. // ServiceTypesAdd
  1589. ServiceTypesAdd(context.Context, *ServiceTypesAddReq) (*ServiceTypesAddResp, error)
  1590. ServiceTypesUpdate(context.Context, *ServiceTypesUpdateReq) (*ServiceTypesUpdateResp, error)
  1591. ServiceTypesDel(context.Context, *ServiceTypesDelReq) (*Empty, error)
  1592. ServiceTypesGet(context.Context, *ServiceTypesGetReq) (*ServiceTypesGetResp, error)
  1593. ServiceTypesGetWithValue(context.Context, *ServiceTypesGetWithValueReq) (*ServiceTypesGetWithValueResp, error)
  1594. ServiceTypesList(context.Context, *ServiceTypesListReq) (*ServiceTypesListResp, error)
  1595. ServiceTypesListWithValue(context.Context, *ServiceTypesListWithValueReq) (*ServiceTypesListWithValueResp, error)
  1596. // ServiceBoxAdd
  1597. ServiceBoxAdd(context.Context, *ServiceBoxAddReq) (*ServiceBoxAddResp, error)
  1598. ServiceBoxAddWithDetails(context.Context, *ServiceBoxAddWithDetailsReq) (*ServiceBoxAddWithDetailsResp, error)
  1599. ServiceBoxUpdate(context.Context, *ServiceBoxUpdateReq) (*ServiceBoxUpdateResp, error)
  1600. ServiceBoxUpdateWithDetails(context.Context, *ServiceBoxUpdateWithDetailsReq) (*ServiceBoxUpdateWithDetailsResp, error)
  1601. ServiceBoxDel(context.Context, *ServiceBoxDelReq) (*Empty, error)
  1602. ServiceBoxGet(context.Context, *ServiceBoxGetReq) (*ServiceBoxGetResp, error)
  1603. ServiceBoxGetWithDetails(context.Context, *ServiceBoxGetWithDetailsReq) (*ServiceBoxGetWithDetailsResp, error)
  1604. ServiceBoxList(context.Context, *ServiceBoxListReq) (*ServiceBoxListResp, error)
  1605. ServiceBoxListWithDetails(context.Context, *ServiceBoxListWithDetailsReq) (*ServiceBoxListWithDetailsResp, error)
  1606. // ServiceBoxTypesAdd
  1607. ServiceBoxTypesAdd(context.Context, *ServiceBoxTypesAddReq) (*ServiceBoxTypesAddResp, error)
  1608. ServiceBoxTypesUpdate(context.Context, *ServiceBoxTypesUpdateReq) (*ServiceBoxTypesUpdateResp, error)
  1609. ServiceBoxTypesDel(context.Context, *ServiceBoxTypesDelReq) (*Empty, error)
  1610. ServiceBoxTypesGet(context.Context, *ServiceBoxTypesGetReq) (*ServiceBoxTypesGetResp, error)
  1611. ServiceBoxTypesList(context.Context, *ServiceBoxTypesListReq) (*ServiceBoxTypesListResp, error)
  1612. // ServicePlanAdd
  1613. ServicePlanAdd(context.Context, *ServicePlanAddReq) (*ServicePlanAddResp, error)
  1614. ServicePlanAddWithBoxes(context.Context, *ServicePlanAddWithBoxesReq) (*ServicePlanAddWithBoxesResp, error)
  1615. ServicePlanAddWithBoxesAndDetails(context.Context, *ServicePlanAddWithBoxesAndDetailsReq) (*ServicePlanAddWithBoxesAndDetailsResp, error)
  1616. ServicePlanUpdate(context.Context, *ServicePlanUpdateReq) (*ServicePlanUpdateResp, error)
  1617. ServicePlanUpdateWithBoxes(context.Context, *ServicePlanUpdateWithBoxesReq) (*ServicePlanUpdateWithBoxesResp, error)
  1618. ServicePlanUpdateWithBoxesAndDetails(context.Context, *ServicePlanUpdateWithBoxesAndDetailsReq) (*ServicePlanUpdateWithBoxesAndDetailsResp, error)
  1619. ServicePlanDel(context.Context, *ServicePlanDelReq) (*Empty, error)
  1620. ServicePlanGet(context.Context, *ServicePlanGetReq) (*ServicePlanGetResp, error)
  1621. ServicePlanGetWithBoxes(context.Context, *ServicePlanGetWithBoxesReq) (*ServicePlanGetWithBoxesResp, error)
  1622. ServicePlanGetWithBoxesAndDetails(context.Context, *ServicePlanGetWithBoxesAndDetailsReq) (*ServicePlanGetWithBoxesAndDetailsResp, error)
  1623. ServicePlanList(context.Context, *ServicePlanListReq) (*ServicePlanListResp, error)
  1624. ServicePlanListWithBoxes(context.Context, *ServicePlanListWithBoxesReq) (*ServicePlanListWithBoxesResp, error)
  1625. ServicePlanListWithBoxesAndDetails(context.Context, *ServicePlanListWithBoxesAndDetailsReq) (*ServicePlanListWithBoxesAndDetailsResp, error)
  1626. // ServicePlanBoxesAdd
  1627. ServicePlanBoxesAdd(context.Context, *ServicePlanBoxesAddReq) (*ServicePlanBoxesAddResp, error)
  1628. ServicePlanBoxesUpdate(context.Context, *ServicePlanBoxesUpdateReq) (*ServicePlanBoxesUpdateResp, error)
  1629. ServicePlanBoxesDel(context.Context, *ServicePlanBoxesDelReq) (*Empty, error)
  1630. ServicePlanBoxesGet(context.Context, *ServicePlanBoxesGetReq) (*ServicePlanBoxesGetResp, error)
  1631. ServicePlanBoxesList(context.Context, *ServicePlanBoxesListReq) (*ServicePlanBoxesListResp, error)
  1632. // ServicePlanChannelAdd
  1633. ServicePlanChannelAdd(context.Context, *ServicePlanChannelAddReq) (*ServicePlanChannelAddResp, error)
  1634. ServicePlanChannelUpdate(context.Context, *ServicePlanChannelUpdateReq) (*ServicePlanChannelUpdateResp, error)
  1635. ServicePlanChannelDel(context.Context, *ServicePlanChannelDelReq) (*Empty, error)
  1636. ServicePlanChannelGet(context.Context, *ServicePlanChannelGetReq) (*ServicePlanChannelGetResp, error)
  1637. ServicePlanChannelGetWithPlan(context.Context, *ServicePlanChannelGetWithPlanReq) (*ServicePlanChannelGetWithPlanResp, error)
  1638. ServicePlanChannelGetWithPlanAndBoxes(context.Context, *ServicePlanChannelGetWithPlanAndBoxesReq) (*ServicePlanChannelGetWithPlanAndBoxesResp, error)
  1639. ServicePlanChannelGetWithPlanAndBoxesAndDetails(context.Context, *ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq) (*ServicePlanChannelGetWithPlanAndBoxesAndDetailsResp, error)
  1640. ServicePlanChannelList(context.Context, *ServicePlanChannelListReq) (*ServicePlanChannelListResp, error)
  1641. ServicePlanChannelListWithPlan(context.Context, *ServicePlanChannelListWithPlanReq) (*ServicePlanChannelListWithPlanResp, error)
  1642. ServicePlanChannelListWithPlanAndBoxes(context.Context, *ServicePlanChannelListWithPlanAndBoxesReq) (*ServicePlanChannelListWithPlanAndBoxesResp, error)
  1643. ServicePlanChannelListWithPlanAndBoxesAndDetails(context.Context, *ServicePlanChannelListWithPlanAndBoxesAndDetailsReq) (*ServicePlanChannelListWithPlanAndBoxesAndDetailsResp, error)
  1644. mustEmbedUnimplementedGoPlanClientServer()
  1645. }
  1646. // UnimplementedGoPlanClientServer must be embedded to have
  1647. // forward compatible implementations.
  1648. //
  1649. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  1650. // pointer dereference when methods are called.
  1651. type UnimplementedGoPlanClientServer struct{}
  1652. func (UnimplementedGoPlanClientServer) ServiceTypesAdd(context.Context, *ServiceTypesAddReq) (*ServiceTypesAddResp, error) {
  1653. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesAdd not implemented")
  1654. }
  1655. func (UnimplementedGoPlanClientServer) ServiceTypesUpdate(context.Context, *ServiceTypesUpdateReq) (*ServiceTypesUpdateResp, error) {
  1656. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesUpdate not implemented")
  1657. }
  1658. func (UnimplementedGoPlanClientServer) ServiceTypesDel(context.Context, *ServiceTypesDelReq) (*Empty, error) {
  1659. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesDel not implemented")
  1660. }
  1661. func (UnimplementedGoPlanClientServer) ServiceTypesGet(context.Context, *ServiceTypesGetReq) (*ServiceTypesGetResp, error) {
  1662. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesGet not implemented")
  1663. }
  1664. func (UnimplementedGoPlanClientServer) ServiceTypesGetWithValue(context.Context, *ServiceTypesGetWithValueReq) (*ServiceTypesGetWithValueResp, error) {
  1665. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesGetWithValue not implemented")
  1666. }
  1667. func (UnimplementedGoPlanClientServer) ServiceTypesList(context.Context, *ServiceTypesListReq) (*ServiceTypesListResp, error) {
  1668. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesList not implemented")
  1669. }
  1670. func (UnimplementedGoPlanClientServer) ServiceTypesListWithValue(context.Context, *ServiceTypesListWithValueReq) (*ServiceTypesListWithValueResp, error) {
  1671. return nil, status.Errorf(codes.Unimplemented, "method ServiceTypesListWithValue not implemented")
  1672. }
  1673. func (UnimplementedGoPlanClientServer) ServiceBoxAdd(context.Context, *ServiceBoxAddReq) (*ServiceBoxAddResp, error) {
  1674. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxAdd not implemented")
  1675. }
  1676. func (UnimplementedGoPlanClientServer) ServiceBoxAddWithDetails(context.Context, *ServiceBoxAddWithDetailsReq) (*ServiceBoxAddWithDetailsResp, error) {
  1677. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxAddWithDetails not implemented")
  1678. }
  1679. func (UnimplementedGoPlanClientServer) ServiceBoxUpdate(context.Context, *ServiceBoxUpdateReq) (*ServiceBoxUpdateResp, error) {
  1680. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxUpdate not implemented")
  1681. }
  1682. func (UnimplementedGoPlanClientServer) ServiceBoxUpdateWithDetails(context.Context, *ServiceBoxUpdateWithDetailsReq) (*ServiceBoxUpdateWithDetailsResp, error) {
  1683. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxUpdateWithDetails not implemented")
  1684. }
  1685. func (UnimplementedGoPlanClientServer) ServiceBoxDel(context.Context, *ServiceBoxDelReq) (*Empty, error) {
  1686. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxDel not implemented")
  1687. }
  1688. func (UnimplementedGoPlanClientServer) ServiceBoxGet(context.Context, *ServiceBoxGetReq) (*ServiceBoxGetResp, error) {
  1689. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxGet not implemented")
  1690. }
  1691. func (UnimplementedGoPlanClientServer) ServiceBoxGetWithDetails(context.Context, *ServiceBoxGetWithDetailsReq) (*ServiceBoxGetWithDetailsResp, error) {
  1692. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxGetWithDetails not implemented")
  1693. }
  1694. func (UnimplementedGoPlanClientServer) ServiceBoxList(context.Context, *ServiceBoxListReq) (*ServiceBoxListResp, error) {
  1695. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxList not implemented")
  1696. }
  1697. func (UnimplementedGoPlanClientServer) ServiceBoxListWithDetails(context.Context, *ServiceBoxListWithDetailsReq) (*ServiceBoxListWithDetailsResp, error) {
  1698. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxListWithDetails not implemented")
  1699. }
  1700. func (UnimplementedGoPlanClientServer) ServiceBoxTypesAdd(context.Context, *ServiceBoxTypesAddReq) (*ServiceBoxTypesAddResp, error) {
  1701. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxTypesAdd not implemented")
  1702. }
  1703. func (UnimplementedGoPlanClientServer) ServiceBoxTypesUpdate(context.Context, *ServiceBoxTypesUpdateReq) (*ServiceBoxTypesUpdateResp, error) {
  1704. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxTypesUpdate not implemented")
  1705. }
  1706. func (UnimplementedGoPlanClientServer) ServiceBoxTypesDel(context.Context, *ServiceBoxTypesDelReq) (*Empty, error) {
  1707. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxTypesDel not implemented")
  1708. }
  1709. func (UnimplementedGoPlanClientServer) ServiceBoxTypesGet(context.Context, *ServiceBoxTypesGetReq) (*ServiceBoxTypesGetResp, error) {
  1710. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxTypesGet not implemented")
  1711. }
  1712. func (UnimplementedGoPlanClientServer) ServiceBoxTypesList(context.Context, *ServiceBoxTypesListReq) (*ServiceBoxTypesListResp, error) {
  1713. return nil, status.Errorf(codes.Unimplemented, "method ServiceBoxTypesList not implemented")
  1714. }
  1715. func (UnimplementedGoPlanClientServer) ServicePlanAdd(context.Context, *ServicePlanAddReq) (*ServicePlanAddResp, error) {
  1716. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanAdd not implemented")
  1717. }
  1718. func (UnimplementedGoPlanClientServer) ServicePlanAddWithBoxes(context.Context, *ServicePlanAddWithBoxesReq) (*ServicePlanAddWithBoxesResp, error) {
  1719. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanAddWithBoxes not implemented")
  1720. }
  1721. func (UnimplementedGoPlanClientServer) ServicePlanAddWithBoxesAndDetails(context.Context, *ServicePlanAddWithBoxesAndDetailsReq) (*ServicePlanAddWithBoxesAndDetailsResp, error) {
  1722. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanAddWithBoxesAndDetails not implemented")
  1723. }
  1724. func (UnimplementedGoPlanClientServer) ServicePlanUpdate(context.Context, *ServicePlanUpdateReq) (*ServicePlanUpdateResp, error) {
  1725. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanUpdate not implemented")
  1726. }
  1727. func (UnimplementedGoPlanClientServer) ServicePlanUpdateWithBoxes(context.Context, *ServicePlanUpdateWithBoxesReq) (*ServicePlanUpdateWithBoxesResp, error) {
  1728. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanUpdateWithBoxes not implemented")
  1729. }
  1730. func (UnimplementedGoPlanClientServer) ServicePlanUpdateWithBoxesAndDetails(context.Context, *ServicePlanUpdateWithBoxesAndDetailsReq) (*ServicePlanUpdateWithBoxesAndDetailsResp, error) {
  1731. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanUpdateWithBoxesAndDetails not implemented")
  1732. }
  1733. func (UnimplementedGoPlanClientServer) ServicePlanDel(context.Context, *ServicePlanDelReq) (*Empty, error) {
  1734. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanDel not implemented")
  1735. }
  1736. func (UnimplementedGoPlanClientServer) ServicePlanGet(context.Context, *ServicePlanGetReq) (*ServicePlanGetResp, error) {
  1737. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanGet not implemented")
  1738. }
  1739. func (UnimplementedGoPlanClientServer) ServicePlanGetWithBoxes(context.Context, *ServicePlanGetWithBoxesReq) (*ServicePlanGetWithBoxesResp, error) {
  1740. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanGetWithBoxes not implemented")
  1741. }
  1742. func (UnimplementedGoPlanClientServer) ServicePlanGetWithBoxesAndDetails(context.Context, *ServicePlanGetWithBoxesAndDetailsReq) (*ServicePlanGetWithBoxesAndDetailsResp, error) {
  1743. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanGetWithBoxesAndDetails not implemented")
  1744. }
  1745. func (UnimplementedGoPlanClientServer) ServicePlanList(context.Context, *ServicePlanListReq) (*ServicePlanListResp, error) {
  1746. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanList not implemented")
  1747. }
  1748. func (UnimplementedGoPlanClientServer) ServicePlanListWithBoxes(context.Context, *ServicePlanListWithBoxesReq) (*ServicePlanListWithBoxesResp, error) {
  1749. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanListWithBoxes not implemented")
  1750. }
  1751. func (UnimplementedGoPlanClientServer) ServicePlanListWithBoxesAndDetails(context.Context, *ServicePlanListWithBoxesAndDetailsReq) (*ServicePlanListWithBoxesAndDetailsResp, error) {
  1752. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanListWithBoxesAndDetails not implemented")
  1753. }
  1754. func (UnimplementedGoPlanClientServer) ServicePlanBoxesAdd(context.Context, *ServicePlanBoxesAddReq) (*ServicePlanBoxesAddResp, error) {
  1755. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanBoxesAdd not implemented")
  1756. }
  1757. func (UnimplementedGoPlanClientServer) ServicePlanBoxesUpdate(context.Context, *ServicePlanBoxesUpdateReq) (*ServicePlanBoxesUpdateResp, error) {
  1758. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanBoxesUpdate not implemented")
  1759. }
  1760. func (UnimplementedGoPlanClientServer) ServicePlanBoxesDel(context.Context, *ServicePlanBoxesDelReq) (*Empty, error) {
  1761. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanBoxesDel not implemented")
  1762. }
  1763. func (UnimplementedGoPlanClientServer) ServicePlanBoxesGet(context.Context, *ServicePlanBoxesGetReq) (*ServicePlanBoxesGetResp, error) {
  1764. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanBoxesGet not implemented")
  1765. }
  1766. func (UnimplementedGoPlanClientServer) ServicePlanBoxesList(context.Context, *ServicePlanBoxesListReq) (*ServicePlanBoxesListResp, error) {
  1767. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanBoxesList not implemented")
  1768. }
  1769. func (UnimplementedGoPlanClientServer) ServicePlanChannelAdd(context.Context, *ServicePlanChannelAddReq) (*ServicePlanChannelAddResp, error) {
  1770. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelAdd not implemented")
  1771. }
  1772. func (UnimplementedGoPlanClientServer) ServicePlanChannelUpdate(context.Context, *ServicePlanChannelUpdateReq) (*ServicePlanChannelUpdateResp, error) {
  1773. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelUpdate not implemented")
  1774. }
  1775. func (UnimplementedGoPlanClientServer) ServicePlanChannelDel(context.Context, *ServicePlanChannelDelReq) (*Empty, error) {
  1776. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelDel not implemented")
  1777. }
  1778. func (UnimplementedGoPlanClientServer) ServicePlanChannelGet(context.Context, *ServicePlanChannelGetReq) (*ServicePlanChannelGetResp, error) {
  1779. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelGet not implemented")
  1780. }
  1781. func (UnimplementedGoPlanClientServer) ServicePlanChannelGetWithPlan(context.Context, *ServicePlanChannelGetWithPlanReq) (*ServicePlanChannelGetWithPlanResp, error) {
  1782. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelGetWithPlan not implemented")
  1783. }
  1784. func (UnimplementedGoPlanClientServer) ServicePlanChannelGetWithPlanAndBoxes(context.Context, *ServicePlanChannelGetWithPlanAndBoxesReq) (*ServicePlanChannelGetWithPlanAndBoxesResp, error) {
  1785. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelGetWithPlanAndBoxes not implemented")
  1786. }
  1787. func (UnimplementedGoPlanClientServer) ServicePlanChannelGetWithPlanAndBoxesAndDetails(context.Context, *ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq) (*ServicePlanChannelGetWithPlanAndBoxesAndDetailsResp, error) {
  1788. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelGetWithPlanAndBoxesAndDetails not implemented")
  1789. }
  1790. func (UnimplementedGoPlanClientServer) ServicePlanChannelList(context.Context, *ServicePlanChannelListReq) (*ServicePlanChannelListResp, error) {
  1791. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelList not implemented")
  1792. }
  1793. func (UnimplementedGoPlanClientServer) ServicePlanChannelListWithPlan(context.Context, *ServicePlanChannelListWithPlanReq) (*ServicePlanChannelListWithPlanResp, error) {
  1794. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelListWithPlan not implemented")
  1795. }
  1796. func (UnimplementedGoPlanClientServer) ServicePlanChannelListWithPlanAndBoxes(context.Context, *ServicePlanChannelListWithPlanAndBoxesReq) (*ServicePlanChannelListWithPlanAndBoxesResp, error) {
  1797. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelListWithPlanAndBoxes not implemented")
  1798. }
  1799. func (UnimplementedGoPlanClientServer) ServicePlanChannelListWithPlanAndBoxesAndDetails(context.Context, *ServicePlanChannelListWithPlanAndBoxesAndDetailsReq) (*ServicePlanChannelListWithPlanAndBoxesAndDetailsResp, error) {
  1800. return nil, status.Errorf(codes.Unimplemented, "method ServicePlanChannelListWithPlanAndBoxesAndDetails not implemented")
  1801. }
  1802. func (UnimplementedGoPlanClientServer) mustEmbedUnimplementedGoPlanClientServer() {}
  1803. func (UnimplementedGoPlanClientServer) testEmbeddedByValue() {}
  1804. // UnsafeGoPlanClientServer may be embedded to opt out of forward compatibility for this service.
  1805. // Use of this interface is not recommended, as added methods to GoPlanClientServer will
  1806. // result in compilation errors.
  1807. type UnsafeGoPlanClientServer interface {
  1808. mustEmbedUnimplementedGoPlanClientServer()
  1809. }
  1810. func RegisterGoPlanClientServer(s grpc.ServiceRegistrar, srv GoPlanClientServer) {
  1811. // If the following call pancis, it indicates UnimplementedGoPlanClientServer was
  1812. // embedded by pointer and is nil. This will cause panics if an
  1813. // unimplemented method is ever invoked, so we test this at initialization
  1814. // time to prevent it from happening at runtime later due to I/O.
  1815. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  1816. t.testEmbeddedByValue()
  1817. }
  1818. s.RegisterService(&GoPlanClient_ServiceDesc, srv)
  1819. }
  1820. func _GoPlanClient_ServiceTypesAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1821. in := new(ServiceTypesAddReq)
  1822. if err := dec(in); err != nil {
  1823. return nil, err
  1824. }
  1825. if interceptor == nil {
  1826. return srv.(GoPlanClientServer).ServiceTypesAdd(ctx, in)
  1827. }
  1828. info := &grpc.UnaryServerInfo{
  1829. Server: srv,
  1830. FullMethod: GoPlanClient_ServiceTypesAdd_FullMethodName,
  1831. }
  1832. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1833. return srv.(GoPlanClientServer).ServiceTypesAdd(ctx, req.(*ServiceTypesAddReq))
  1834. }
  1835. return interceptor(ctx, in, info, handler)
  1836. }
  1837. func _GoPlanClient_ServiceTypesUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1838. in := new(ServiceTypesUpdateReq)
  1839. if err := dec(in); err != nil {
  1840. return nil, err
  1841. }
  1842. if interceptor == nil {
  1843. return srv.(GoPlanClientServer).ServiceTypesUpdate(ctx, in)
  1844. }
  1845. info := &grpc.UnaryServerInfo{
  1846. Server: srv,
  1847. FullMethod: GoPlanClient_ServiceTypesUpdate_FullMethodName,
  1848. }
  1849. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1850. return srv.(GoPlanClientServer).ServiceTypesUpdate(ctx, req.(*ServiceTypesUpdateReq))
  1851. }
  1852. return interceptor(ctx, in, info, handler)
  1853. }
  1854. func _GoPlanClient_ServiceTypesDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1855. in := new(ServiceTypesDelReq)
  1856. if err := dec(in); err != nil {
  1857. return nil, err
  1858. }
  1859. if interceptor == nil {
  1860. return srv.(GoPlanClientServer).ServiceTypesDel(ctx, in)
  1861. }
  1862. info := &grpc.UnaryServerInfo{
  1863. Server: srv,
  1864. FullMethod: GoPlanClient_ServiceTypesDel_FullMethodName,
  1865. }
  1866. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1867. return srv.(GoPlanClientServer).ServiceTypesDel(ctx, req.(*ServiceTypesDelReq))
  1868. }
  1869. return interceptor(ctx, in, info, handler)
  1870. }
  1871. func _GoPlanClient_ServiceTypesGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1872. in := new(ServiceTypesGetReq)
  1873. if err := dec(in); err != nil {
  1874. return nil, err
  1875. }
  1876. if interceptor == nil {
  1877. return srv.(GoPlanClientServer).ServiceTypesGet(ctx, in)
  1878. }
  1879. info := &grpc.UnaryServerInfo{
  1880. Server: srv,
  1881. FullMethod: GoPlanClient_ServiceTypesGet_FullMethodName,
  1882. }
  1883. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1884. return srv.(GoPlanClientServer).ServiceTypesGet(ctx, req.(*ServiceTypesGetReq))
  1885. }
  1886. return interceptor(ctx, in, info, handler)
  1887. }
  1888. func _GoPlanClient_ServiceTypesGetWithValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1889. in := new(ServiceTypesGetWithValueReq)
  1890. if err := dec(in); err != nil {
  1891. return nil, err
  1892. }
  1893. if interceptor == nil {
  1894. return srv.(GoPlanClientServer).ServiceTypesGetWithValue(ctx, in)
  1895. }
  1896. info := &grpc.UnaryServerInfo{
  1897. Server: srv,
  1898. FullMethod: GoPlanClient_ServiceTypesGetWithValue_FullMethodName,
  1899. }
  1900. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1901. return srv.(GoPlanClientServer).ServiceTypesGetWithValue(ctx, req.(*ServiceTypesGetWithValueReq))
  1902. }
  1903. return interceptor(ctx, in, info, handler)
  1904. }
  1905. func _GoPlanClient_ServiceTypesList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1906. in := new(ServiceTypesListReq)
  1907. if err := dec(in); err != nil {
  1908. return nil, err
  1909. }
  1910. if interceptor == nil {
  1911. return srv.(GoPlanClientServer).ServiceTypesList(ctx, in)
  1912. }
  1913. info := &grpc.UnaryServerInfo{
  1914. Server: srv,
  1915. FullMethod: GoPlanClient_ServiceTypesList_FullMethodName,
  1916. }
  1917. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1918. return srv.(GoPlanClientServer).ServiceTypesList(ctx, req.(*ServiceTypesListReq))
  1919. }
  1920. return interceptor(ctx, in, info, handler)
  1921. }
  1922. func _GoPlanClient_ServiceTypesListWithValue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1923. in := new(ServiceTypesListWithValueReq)
  1924. if err := dec(in); err != nil {
  1925. return nil, err
  1926. }
  1927. if interceptor == nil {
  1928. return srv.(GoPlanClientServer).ServiceTypesListWithValue(ctx, in)
  1929. }
  1930. info := &grpc.UnaryServerInfo{
  1931. Server: srv,
  1932. FullMethod: GoPlanClient_ServiceTypesListWithValue_FullMethodName,
  1933. }
  1934. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1935. return srv.(GoPlanClientServer).ServiceTypesListWithValue(ctx, req.(*ServiceTypesListWithValueReq))
  1936. }
  1937. return interceptor(ctx, in, info, handler)
  1938. }
  1939. func _GoPlanClient_ServiceBoxAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1940. in := new(ServiceBoxAddReq)
  1941. if err := dec(in); err != nil {
  1942. return nil, err
  1943. }
  1944. if interceptor == nil {
  1945. return srv.(GoPlanClientServer).ServiceBoxAdd(ctx, in)
  1946. }
  1947. info := &grpc.UnaryServerInfo{
  1948. Server: srv,
  1949. FullMethod: GoPlanClient_ServiceBoxAdd_FullMethodName,
  1950. }
  1951. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1952. return srv.(GoPlanClientServer).ServiceBoxAdd(ctx, req.(*ServiceBoxAddReq))
  1953. }
  1954. return interceptor(ctx, in, info, handler)
  1955. }
  1956. func _GoPlanClient_ServiceBoxAddWithDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1957. in := new(ServiceBoxAddWithDetailsReq)
  1958. if err := dec(in); err != nil {
  1959. return nil, err
  1960. }
  1961. if interceptor == nil {
  1962. return srv.(GoPlanClientServer).ServiceBoxAddWithDetails(ctx, in)
  1963. }
  1964. info := &grpc.UnaryServerInfo{
  1965. Server: srv,
  1966. FullMethod: GoPlanClient_ServiceBoxAddWithDetails_FullMethodName,
  1967. }
  1968. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1969. return srv.(GoPlanClientServer).ServiceBoxAddWithDetails(ctx, req.(*ServiceBoxAddWithDetailsReq))
  1970. }
  1971. return interceptor(ctx, in, info, handler)
  1972. }
  1973. func _GoPlanClient_ServiceBoxUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1974. in := new(ServiceBoxUpdateReq)
  1975. if err := dec(in); err != nil {
  1976. return nil, err
  1977. }
  1978. if interceptor == nil {
  1979. return srv.(GoPlanClientServer).ServiceBoxUpdate(ctx, in)
  1980. }
  1981. info := &grpc.UnaryServerInfo{
  1982. Server: srv,
  1983. FullMethod: GoPlanClient_ServiceBoxUpdate_FullMethodName,
  1984. }
  1985. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1986. return srv.(GoPlanClientServer).ServiceBoxUpdate(ctx, req.(*ServiceBoxUpdateReq))
  1987. }
  1988. return interceptor(ctx, in, info, handler)
  1989. }
  1990. func _GoPlanClient_ServiceBoxUpdateWithDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1991. in := new(ServiceBoxUpdateWithDetailsReq)
  1992. if err := dec(in); err != nil {
  1993. return nil, err
  1994. }
  1995. if interceptor == nil {
  1996. return srv.(GoPlanClientServer).ServiceBoxUpdateWithDetails(ctx, in)
  1997. }
  1998. info := &grpc.UnaryServerInfo{
  1999. Server: srv,
  2000. FullMethod: GoPlanClient_ServiceBoxUpdateWithDetails_FullMethodName,
  2001. }
  2002. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2003. return srv.(GoPlanClientServer).ServiceBoxUpdateWithDetails(ctx, req.(*ServiceBoxUpdateWithDetailsReq))
  2004. }
  2005. return interceptor(ctx, in, info, handler)
  2006. }
  2007. func _GoPlanClient_ServiceBoxDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2008. in := new(ServiceBoxDelReq)
  2009. if err := dec(in); err != nil {
  2010. return nil, err
  2011. }
  2012. if interceptor == nil {
  2013. return srv.(GoPlanClientServer).ServiceBoxDel(ctx, in)
  2014. }
  2015. info := &grpc.UnaryServerInfo{
  2016. Server: srv,
  2017. FullMethod: GoPlanClient_ServiceBoxDel_FullMethodName,
  2018. }
  2019. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2020. return srv.(GoPlanClientServer).ServiceBoxDel(ctx, req.(*ServiceBoxDelReq))
  2021. }
  2022. return interceptor(ctx, in, info, handler)
  2023. }
  2024. func _GoPlanClient_ServiceBoxGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2025. in := new(ServiceBoxGetReq)
  2026. if err := dec(in); err != nil {
  2027. return nil, err
  2028. }
  2029. if interceptor == nil {
  2030. return srv.(GoPlanClientServer).ServiceBoxGet(ctx, in)
  2031. }
  2032. info := &grpc.UnaryServerInfo{
  2033. Server: srv,
  2034. FullMethod: GoPlanClient_ServiceBoxGet_FullMethodName,
  2035. }
  2036. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2037. return srv.(GoPlanClientServer).ServiceBoxGet(ctx, req.(*ServiceBoxGetReq))
  2038. }
  2039. return interceptor(ctx, in, info, handler)
  2040. }
  2041. func _GoPlanClient_ServiceBoxGetWithDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2042. in := new(ServiceBoxGetWithDetailsReq)
  2043. if err := dec(in); err != nil {
  2044. return nil, err
  2045. }
  2046. if interceptor == nil {
  2047. return srv.(GoPlanClientServer).ServiceBoxGetWithDetails(ctx, in)
  2048. }
  2049. info := &grpc.UnaryServerInfo{
  2050. Server: srv,
  2051. FullMethod: GoPlanClient_ServiceBoxGetWithDetails_FullMethodName,
  2052. }
  2053. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2054. return srv.(GoPlanClientServer).ServiceBoxGetWithDetails(ctx, req.(*ServiceBoxGetWithDetailsReq))
  2055. }
  2056. return interceptor(ctx, in, info, handler)
  2057. }
  2058. func _GoPlanClient_ServiceBoxList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2059. in := new(ServiceBoxListReq)
  2060. if err := dec(in); err != nil {
  2061. return nil, err
  2062. }
  2063. if interceptor == nil {
  2064. return srv.(GoPlanClientServer).ServiceBoxList(ctx, in)
  2065. }
  2066. info := &grpc.UnaryServerInfo{
  2067. Server: srv,
  2068. FullMethod: GoPlanClient_ServiceBoxList_FullMethodName,
  2069. }
  2070. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2071. return srv.(GoPlanClientServer).ServiceBoxList(ctx, req.(*ServiceBoxListReq))
  2072. }
  2073. return interceptor(ctx, in, info, handler)
  2074. }
  2075. func _GoPlanClient_ServiceBoxListWithDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2076. in := new(ServiceBoxListWithDetailsReq)
  2077. if err := dec(in); err != nil {
  2078. return nil, err
  2079. }
  2080. if interceptor == nil {
  2081. return srv.(GoPlanClientServer).ServiceBoxListWithDetails(ctx, in)
  2082. }
  2083. info := &grpc.UnaryServerInfo{
  2084. Server: srv,
  2085. FullMethod: GoPlanClient_ServiceBoxListWithDetails_FullMethodName,
  2086. }
  2087. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2088. return srv.(GoPlanClientServer).ServiceBoxListWithDetails(ctx, req.(*ServiceBoxListWithDetailsReq))
  2089. }
  2090. return interceptor(ctx, in, info, handler)
  2091. }
  2092. func _GoPlanClient_ServiceBoxTypesAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2093. in := new(ServiceBoxTypesAddReq)
  2094. if err := dec(in); err != nil {
  2095. return nil, err
  2096. }
  2097. if interceptor == nil {
  2098. return srv.(GoPlanClientServer).ServiceBoxTypesAdd(ctx, in)
  2099. }
  2100. info := &grpc.UnaryServerInfo{
  2101. Server: srv,
  2102. FullMethod: GoPlanClient_ServiceBoxTypesAdd_FullMethodName,
  2103. }
  2104. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2105. return srv.(GoPlanClientServer).ServiceBoxTypesAdd(ctx, req.(*ServiceBoxTypesAddReq))
  2106. }
  2107. return interceptor(ctx, in, info, handler)
  2108. }
  2109. func _GoPlanClient_ServiceBoxTypesUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2110. in := new(ServiceBoxTypesUpdateReq)
  2111. if err := dec(in); err != nil {
  2112. return nil, err
  2113. }
  2114. if interceptor == nil {
  2115. return srv.(GoPlanClientServer).ServiceBoxTypesUpdate(ctx, in)
  2116. }
  2117. info := &grpc.UnaryServerInfo{
  2118. Server: srv,
  2119. FullMethod: GoPlanClient_ServiceBoxTypesUpdate_FullMethodName,
  2120. }
  2121. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2122. return srv.(GoPlanClientServer).ServiceBoxTypesUpdate(ctx, req.(*ServiceBoxTypesUpdateReq))
  2123. }
  2124. return interceptor(ctx, in, info, handler)
  2125. }
  2126. func _GoPlanClient_ServiceBoxTypesDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2127. in := new(ServiceBoxTypesDelReq)
  2128. if err := dec(in); err != nil {
  2129. return nil, err
  2130. }
  2131. if interceptor == nil {
  2132. return srv.(GoPlanClientServer).ServiceBoxTypesDel(ctx, in)
  2133. }
  2134. info := &grpc.UnaryServerInfo{
  2135. Server: srv,
  2136. FullMethod: GoPlanClient_ServiceBoxTypesDel_FullMethodName,
  2137. }
  2138. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2139. return srv.(GoPlanClientServer).ServiceBoxTypesDel(ctx, req.(*ServiceBoxTypesDelReq))
  2140. }
  2141. return interceptor(ctx, in, info, handler)
  2142. }
  2143. func _GoPlanClient_ServiceBoxTypesGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2144. in := new(ServiceBoxTypesGetReq)
  2145. if err := dec(in); err != nil {
  2146. return nil, err
  2147. }
  2148. if interceptor == nil {
  2149. return srv.(GoPlanClientServer).ServiceBoxTypesGet(ctx, in)
  2150. }
  2151. info := &grpc.UnaryServerInfo{
  2152. Server: srv,
  2153. FullMethod: GoPlanClient_ServiceBoxTypesGet_FullMethodName,
  2154. }
  2155. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2156. return srv.(GoPlanClientServer).ServiceBoxTypesGet(ctx, req.(*ServiceBoxTypesGetReq))
  2157. }
  2158. return interceptor(ctx, in, info, handler)
  2159. }
  2160. func _GoPlanClient_ServiceBoxTypesList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2161. in := new(ServiceBoxTypesListReq)
  2162. if err := dec(in); err != nil {
  2163. return nil, err
  2164. }
  2165. if interceptor == nil {
  2166. return srv.(GoPlanClientServer).ServiceBoxTypesList(ctx, in)
  2167. }
  2168. info := &grpc.UnaryServerInfo{
  2169. Server: srv,
  2170. FullMethod: GoPlanClient_ServiceBoxTypesList_FullMethodName,
  2171. }
  2172. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2173. return srv.(GoPlanClientServer).ServiceBoxTypesList(ctx, req.(*ServiceBoxTypesListReq))
  2174. }
  2175. return interceptor(ctx, in, info, handler)
  2176. }
  2177. func _GoPlanClient_ServicePlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2178. in := new(ServicePlanAddReq)
  2179. if err := dec(in); err != nil {
  2180. return nil, err
  2181. }
  2182. if interceptor == nil {
  2183. return srv.(GoPlanClientServer).ServicePlanAdd(ctx, in)
  2184. }
  2185. info := &grpc.UnaryServerInfo{
  2186. Server: srv,
  2187. FullMethod: GoPlanClient_ServicePlanAdd_FullMethodName,
  2188. }
  2189. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2190. return srv.(GoPlanClientServer).ServicePlanAdd(ctx, req.(*ServicePlanAddReq))
  2191. }
  2192. return interceptor(ctx, in, info, handler)
  2193. }
  2194. func _GoPlanClient_ServicePlanAddWithBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2195. in := new(ServicePlanAddWithBoxesReq)
  2196. if err := dec(in); err != nil {
  2197. return nil, err
  2198. }
  2199. if interceptor == nil {
  2200. return srv.(GoPlanClientServer).ServicePlanAddWithBoxes(ctx, in)
  2201. }
  2202. info := &grpc.UnaryServerInfo{
  2203. Server: srv,
  2204. FullMethod: GoPlanClient_ServicePlanAddWithBoxes_FullMethodName,
  2205. }
  2206. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2207. return srv.(GoPlanClientServer).ServicePlanAddWithBoxes(ctx, req.(*ServicePlanAddWithBoxesReq))
  2208. }
  2209. return interceptor(ctx, in, info, handler)
  2210. }
  2211. func _GoPlanClient_ServicePlanAddWithBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2212. in := new(ServicePlanAddWithBoxesAndDetailsReq)
  2213. if err := dec(in); err != nil {
  2214. return nil, err
  2215. }
  2216. if interceptor == nil {
  2217. return srv.(GoPlanClientServer).ServicePlanAddWithBoxesAndDetails(ctx, in)
  2218. }
  2219. info := &grpc.UnaryServerInfo{
  2220. Server: srv,
  2221. FullMethod: GoPlanClient_ServicePlanAddWithBoxesAndDetails_FullMethodName,
  2222. }
  2223. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2224. return srv.(GoPlanClientServer).ServicePlanAddWithBoxesAndDetails(ctx, req.(*ServicePlanAddWithBoxesAndDetailsReq))
  2225. }
  2226. return interceptor(ctx, in, info, handler)
  2227. }
  2228. func _GoPlanClient_ServicePlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2229. in := new(ServicePlanUpdateReq)
  2230. if err := dec(in); err != nil {
  2231. return nil, err
  2232. }
  2233. if interceptor == nil {
  2234. return srv.(GoPlanClientServer).ServicePlanUpdate(ctx, in)
  2235. }
  2236. info := &grpc.UnaryServerInfo{
  2237. Server: srv,
  2238. FullMethod: GoPlanClient_ServicePlanUpdate_FullMethodName,
  2239. }
  2240. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2241. return srv.(GoPlanClientServer).ServicePlanUpdate(ctx, req.(*ServicePlanUpdateReq))
  2242. }
  2243. return interceptor(ctx, in, info, handler)
  2244. }
  2245. func _GoPlanClient_ServicePlanUpdateWithBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2246. in := new(ServicePlanUpdateWithBoxesReq)
  2247. if err := dec(in); err != nil {
  2248. return nil, err
  2249. }
  2250. if interceptor == nil {
  2251. return srv.(GoPlanClientServer).ServicePlanUpdateWithBoxes(ctx, in)
  2252. }
  2253. info := &grpc.UnaryServerInfo{
  2254. Server: srv,
  2255. FullMethod: GoPlanClient_ServicePlanUpdateWithBoxes_FullMethodName,
  2256. }
  2257. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2258. return srv.(GoPlanClientServer).ServicePlanUpdateWithBoxes(ctx, req.(*ServicePlanUpdateWithBoxesReq))
  2259. }
  2260. return interceptor(ctx, in, info, handler)
  2261. }
  2262. func _GoPlanClient_ServicePlanUpdateWithBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2263. in := new(ServicePlanUpdateWithBoxesAndDetailsReq)
  2264. if err := dec(in); err != nil {
  2265. return nil, err
  2266. }
  2267. if interceptor == nil {
  2268. return srv.(GoPlanClientServer).ServicePlanUpdateWithBoxesAndDetails(ctx, in)
  2269. }
  2270. info := &grpc.UnaryServerInfo{
  2271. Server: srv,
  2272. FullMethod: GoPlanClient_ServicePlanUpdateWithBoxesAndDetails_FullMethodName,
  2273. }
  2274. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2275. return srv.(GoPlanClientServer).ServicePlanUpdateWithBoxesAndDetails(ctx, req.(*ServicePlanUpdateWithBoxesAndDetailsReq))
  2276. }
  2277. return interceptor(ctx, in, info, handler)
  2278. }
  2279. func _GoPlanClient_ServicePlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2280. in := new(ServicePlanDelReq)
  2281. if err := dec(in); err != nil {
  2282. return nil, err
  2283. }
  2284. if interceptor == nil {
  2285. return srv.(GoPlanClientServer).ServicePlanDel(ctx, in)
  2286. }
  2287. info := &grpc.UnaryServerInfo{
  2288. Server: srv,
  2289. FullMethod: GoPlanClient_ServicePlanDel_FullMethodName,
  2290. }
  2291. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2292. return srv.(GoPlanClientServer).ServicePlanDel(ctx, req.(*ServicePlanDelReq))
  2293. }
  2294. return interceptor(ctx, in, info, handler)
  2295. }
  2296. func _GoPlanClient_ServicePlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2297. in := new(ServicePlanGetReq)
  2298. if err := dec(in); err != nil {
  2299. return nil, err
  2300. }
  2301. if interceptor == nil {
  2302. return srv.(GoPlanClientServer).ServicePlanGet(ctx, in)
  2303. }
  2304. info := &grpc.UnaryServerInfo{
  2305. Server: srv,
  2306. FullMethod: GoPlanClient_ServicePlanGet_FullMethodName,
  2307. }
  2308. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2309. return srv.(GoPlanClientServer).ServicePlanGet(ctx, req.(*ServicePlanGetReq))
  2310. }
  2311. return interceptor(ctx, in, info, handler)
  2312. }
  2313. func _GoPlanClient_ServicePlanGetWithBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2314. in := new(ServicePlanGetWithBoxesReq)
  2315. if err := dec(in); err != nil {
  2316. return nil, err
  2317. }
  2318. if interceptor == nil {
  2319. return srv.(GoPlanClientServer).ServicePlanGetWithBoxes(ctx, in)
  2320. }
  2321. info := &grpc.UnaryServerInfo{
  2322. Server: srv,
  2323. FullMethod: GoPlanClient_ServicePlanGetWithBoxes_FullMethodName,
  2324. }
  2325. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2326. return srv.(GoPlanClientServer).ServicePlanGetWithBoxes(ctx, req.(*ServicePlanGetWithBoxesReq))
  2327. }
  2328. return interceptor(ctx, in, info, handler)
  2329. }
  2330. func _GoPlanClient_ServicePlanGetWithBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2331. in := new(ServicePlanGetWithBoxesAndDetailsReq)
  2332. if err := dec(in); err != nil {
  2333. return nil, err
  2334. }
  2335. if interceptor == nil {
  2336. return srv.(GoPlanClientServer).ServicePlanGetWithBoxesAndDetails(ctx, in)
  2337. }
  2338. info := &grpc.UnaryServerInfo{
  2339. Server: srv,
  2340. FullMethod: GoPlanClient_ServicePlanGetWithBoxesAndDetails_FullMethodName,
  2341. }
  2342. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2343. return srv.(GoPlanClientServer).ServicePlanGetWithBoxesAndDetails(ctx, req.(*ServicePlanGetWithBoxesAndDetailsReq))
  2344. }
  2345. return interceptor(ctx, in, info, handler)
  2346. }
  2347. func _GoPlanClient_ServicePlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2348. in := new(ServicePlanListReq)
  2349. if err := dec(in); err != nil {
  2350. return nil, err
  2351. }
  2352. if interceptor == nil {
  2353. return srv.(GoPlanClientServer).ServicePlanList(ctx, in)
  2354. }
  2355. info := &grpc.UnaryServerInfo{
  2356. Server: srv,
  2357. FullMethod: GoPlanClient_ServicePlanList_FullMethodName,
  2358. }
  2359. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2360. return srv.(GoPlanClientServer).ServicePlanList(ctx, req.(*ServicePlanListReq))
  2361. }
  2362. return interceptor(ctx, in, info, handler)
  2363. }
  2364. func _GoPlanClient_ServicePlanListWithBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2365. in := new(ServicePlanListWithBoxesReq)
  2366. if err := dec(in); err != nil {
  2367. return nil, err
  2368. }
  2369. if interceptor == nil {
  2370. return srv.(GoPlanClientServer).ServicePlanListWithBoxes(ctx, in)
  2371. }
  2372. info := &grpc.UnaryServerInfo{
  2373. Server: srv,
  2374. FullMethod: GoPlanClient_ServicePlanListWithBoxes_FullMethodName,
  2375. }
  2376. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2377. return srv.(GoPlanClientServer).ServicePlanListWithBoxes(ctx, req.(*ServicePlanListWithBoxesReq))
  2378. }
  2379. return interceptor(ctx, in, info, handler)
  2380. }
  2381. func _GoPlanClient_ServicePlanListWithBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2382. in := new(ServicePlanListWithBoxesAndDetailsReq)
  2383. if err := dec(in); err != nil {
  2384. return nil, err
  2385. }
  2386. if interceptor == nil {
  2387. return srv.(GoPlanClientServer).ServicePlanListWithBoxesAndDetails(ctx, in)
  2388. }
  2389. info := &grpc.UnaryServerInfo{
  2390. Server: srv,
  2391. FullMethod: GoPlanClient_ServicePlanListWithBoxesAndDetails_FullMethodName,
  2392. }
  2393. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2394. return srv.(GoPlanClientServer).ServicePlanListWithBoxesAndDetails(ctx, req.(*ServicePlanListWithBoxesAndDetailsReq))
  2395. }
  2396. return interceptor(ctx, in, info, handler)
  2397. }
  2398. func _GoPlanClient_ServicePlanBoxesAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2399. in := new(ServicePlanBoxesAddReq)
  2400. if err := dec(in); err != nil {
  2401. return nil, err
  2402. }
  2403. if interceptor == nil {
  2404. return srv.(GoPlanClientServer).ServicePlanBoxesAdd(ctx, in)
  2405. }
  2406. info := &grpc.UnaryServerInfo{
  2407. Server: srv,
  2408. FullMethod: GoPlanClient_ServicePlanBoxesAdd_FullMethodName,
  2409. }
  2410. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2411. return srv.(GoPlanClientServer).ServicePlanBoxesAdd(ctx, req.(*ServicePlanBoxesAddReq))
  2412. }
  2413. return interceptor(ctx, in, info, handler)
  2414. }
  2415. func _GoPlanClient_ServicePlanBoxesUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2416. in := new(ServicePlanBoxesUpdateReq)
  2417. if err := dec(in); err != nil {
  2418. return nil, err
  2419. }
  2420. if interceptor == nil {
  2421. return srv.(GoPlanClientServer).ServicePlanBoxesUpdate(ctx, in)
  2422. }
  2423. info := &grpc.UnaryServerInfo{
  2424. Server: srv,
  2425. FullMethod: GoPlanClient_ServicePlanBoxesUpdate_FullMethodName,
  2426. }
  2427. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2428. return srv.(GoPlanClientServer).ServicePlanBoxesUpdate(ctx, req.(*ServicePlanBoxesUpdateReq))
  2429. }
  2430. return interceptor(ctx, in, info, handler)
  2431. }
  2432. func _GoPlanClient_ServicePlanBoxesDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2433. in := new(ServicePlanBoxesDelReq)
  2434. if err := dec(in); err != nil {
  2435. return nil, err
  2436. }
  2437. if interceptor == nil {
  2438. return srv.(GoPlanClientServer).ServicePlanBoxesDel(ctx, in)
  2439. }
  2440. info := &grpc.UnaryServerInfo{
  2441. Server: srv,
  2442. FullMethod: GoPlanClient_ServicePlanBoxesDel_FullMethodName,
  2443. }
  2444. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2445. return srv.(GoPlanClientServer).ServicePlanBoxesDel(ctx, req.(*ServicePlanBoxesDelReq))
  2446. }
  2447. return interceptor(ctx, in, info, handler)
  2448. }
  2449. func _GoPlanClient_ServicePlanBoxesGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2450. in := new(ServicePlanBoxesGetReq)
  2451. if err := dec(in); err != nil {
  2452. return nil, err
  2453. }
  2454. if interceptor == nil {
  2455. return srv.(GoPlanClientServer).ServicePlanBoxesGet(ctx, in)
  2456. }
  2457. info := &grpc.UnaryServerInfo{
  2458. Server: srv,
  2459. FullMethod: GoPlanClient_ServicePlanBoxesGet_FullMethodName,
  2460. }
  2461. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2462. return srv.(GoPlanClientServer).ServicePlanBoxesGet(ctx, req.(*ServicePlanBoxesGetReq))
  2463. }
  2464. return interceptor(ctx, in, info, handler)
  2465. }
  2466. func _GoPlanClient_ServicePlanBoxesList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2467. in := new(ServicePlanBoxesListReq)
  2468. if err := dec(in); err != nil {
  2469. return nil, err
  2470. }
  2471. if interceptor == nil {
  2472. return srv.(GoPlanClientServer).ServicePlanBoxesList(ctx, in)
  2473. }
  2474. info := &grpc.UnaryServerInfo{
  2475. Server: srv,
  2476. FullMethod: GoPlanClient_ServicePlanBoxesList_FullMethodName,
  2477. }
  2478. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2479. return srv.(GoPlanClientServer).ServicePlanBoxesList(ctx, req.(*ServicePlanBoxesListReq))
  2480. }
  2481. return interceptor(ctx, in, info, handler)
  2482. }
  2483. func _GoPlanClient_ServicePlanChannelAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2484. in := new(ServicePlanChannelAddReq)
  2485. if err := dec(in); err != nil {
  2486. return nil, err
  2487. }
  2488. if interceptor == nil {
  2489. return srv.(GoPlanClientServer).ServicePlanChannelAdd(ctx, in)
  2490. }
  2491. info := &grpc.UnaryServerInfo{
  2492. Server: srv,
  2493. FullMethod: GoPlanClient_ServicePlanChannelAdd_FullMethodName,
  2494. }
  2495. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2496. return srv.(GoPlanClientServer).ServicePlanChannelAdd(ctx, req.(*ServicePlanChannelAddReq))
  2497. }
  2498. return interceptor(ctx, in, info, handler)
  2499. }
  2500. func _GoPlanClient_ServicePlanChannelUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2501. in := new(ServicePlanChannelUpdateReq)
  2502. if err := dec(in); err != nil {
  2503. return nil, err
  2504. }
  2505. if interceptor == nil {
  2506. return srv.(GoPlanClientServer).ServicePlanChannelUpdate(ctx, in)
  2507. }
  2508. info := &grpc.UnaryServerInfo{
  2509. Server: srv,
  2510. FullMethod: GoPlanClient_ServicePlanChannelUpdate_FullMethodName,
  2511. }
  2512. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2513. return srv.(GoPlanClientServer).ServicePlanChannelUpdate(ctx, req.(*ServicePlanChannelUpdateReq))
  2514. }
  2515. return interceptor(ctx, in, info, handler)
  2516. }
  2517. func _GoPlanClient_ServicePlanChannelDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2518. in := new(ServicePlanChannelDelReq)
  2519. if err := dec(in); err != nil {
  2520. return nil, err
  2521. }
  2522. if interceptor == nil {
  2523. return srv.(GoPlanClientServer).ServicePlanChannelDel(ctx, in)
  2524. }
  2525. info := &grpc.UnaryServerInfo{
  2526. Server: srv,
  2527. FullMethod: GoPlanClient_ServicePlanChannelDel_FullMethodName,
  2528. }
  2529. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2530. return srv.(GoPlanClientServer).ServicePlanChannelDel(ctx, req.(*ServicePlanChannelDelReq))
  2531. }
  2532. return interceptor(ctx, in, info, handler)
  2533. }
  2534. func _GoPlanClient_ServicePlanChannelGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2535. in := new(ServicePlanChannelGetReq)
  2536. if err := dec(in); err != nil {
  2537. return nil, err
  2538. }
  2539. if interceptor == nil {
  2540. return srv.(GoPlanClientServer).ServicePlanChannelGet(ctx, in)
  2541. }
  2542. info := &grpc.UnaryServerInfo{
  2543. Server: srv,
  2544. FullMethod: GoPlanClient_ServicePlanChannelGet_FullMethodName,
  2545. }
  2546. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2547. return srv.(GoPlanClientServer).ServicePlanChannelGet(ctx, req.(*ServicePlanChannelGetReq))
  2548. }
  2549. return interceptor(ctx, in, info, handler)
  2550. }
  2551. func _GoPlanClient_ServicePlanChannelGetWithPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2552. in := new(ServicePlanChannelGetWithPlanReq)
  2553. if err := dec(in); err != nil {
  2554. return nil, err
  2555. }
  2556. if interceptor == nil {
  2557. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlan(ctx, in)
  2558. }
  2559. info := &grpc.UnaryServerInfo{
  2560. Server: srv,
  2561. FullMethod: GoPlanClient_ServicePlanChannelGetWithPlan_FullMethodName,
  2562. }
  2563. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2564. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlan(ctx, req.(*ServicePlanChannelGetWithPlanReq))
  2565. }
  2566. return interceptor(ctx, in, info, handler)
  2567. }
  2568. func _GoPlanClient_ServicePlanChannelGetWithPlanAndBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2569. in := new(ServicePlanChannelGetWithPlanAndBoxesReq)
  2570. if err := dec(in); err != nil {
  2571. return nil, err
  2572. }
  2573. if interceptor == nil {
  2574. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlanAndBoxes(ctx, in)
  2575. }
  2576. info := &grpc.UnaryServerInfo{
  2577. Server: srv,
  2578. FullMethod: GoPlanClient_ServicePlanChannelGetWithPlanAndBoxes_FullMethodName,
  2579. }
  2580. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2581. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlanAndBoxes(ctx, req.(*ServicePlanChannelGetWithPlanAndBoxesReq))
  2582. }
  2583. return interceptor(ctx, in, info, handler)
  2584. }
  2585. func _GoPlanClient_ServicePlanChannelGetWithPlanAndBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2586. in := new(ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq)
  2587. if err := dec(in); err != nil {
  2588. return nil, err
  2589. }
  2590. if interceptor == nil {
  2591. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlanAndBoxesAndDetails(ctx, in)
  2592. }
  2593. info := &grpc.UnaryServerInfo{
  2594. Server: srv,
  2595. FullMethod: GoPlanClient_ServicePlanChannelGetWithPlanAndBoxesAndDetails_FullMethodName,
  2596. }
  2597. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2598. return srv.(GoPlanClientServer).ServicePlanChannelGetWithPlanAndBoxesAndDetails(ctx, req.(*ServicePlanChannelGetWithPlanAndBoxesAndDetailsReq))
  2599. }
  2600. return interceptor(ctx, in, info, handler)
  2601. }
  2602. func _GoPlanClient_ServicePlanChannelList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2603. in := new(ServicePlanChannelListReq)
  2604. if err := dec(in); err != nil {
  2605. return nil, err
  2606. }
  2607. if interceptor == nil {
  2608. return srv.(GoPlanClientServer).ServicePlanChannelList(ctx, in)
  2609. }
  2610. info := &grpc.UnaryServerInfo{
  2611. Server: srv,
  2612. FullMethod: GoPlanClient_ServicePlanChannelList_FullMethodName,
  2613. }
  2614. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2615. return srv.(GoPlanClientServer).ServicePlanChannelList(ctx, req.(*ServicePlanChannelListReq))
  2616. }
  2617. return interceptor(ctx, in, info, handler)
  2618. }
  2619. func _GoPlanClient_ServicePlanChannelListWithPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2620. in := new(ServicePlanChannelListWithPlanReq)
  2621. if err := dec(in); err != nil {
  2622. return nil, err
  2623. }
  2624. if interceptor == nil {
  2625. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlan(ctx, in)
  2626. }
  2627. info := &grpc.UnaryServerInfo{
  2628. Server: srv,
  2629. FullMethod: GoPlanClient_ServicePlanChannelListWithPlan_FullMethodName,
  2630. }
  2631. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2632. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlan(ctx, req.(*ServicePlanChannelListWithPlanReq))
  2633. }
  2634. return interceptor(ctx, in, info, handler)
  2635. }
  2636. func _GoPlanClient_ServicePlanChannelListWithPlanAndBoxes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2637. in := new(ServicePlanChannelListWithPlanAndBoxesReq)
  2638. if err := dec(in); err != nil {
  2639. return nil, err
  2640. }
  2641. if interceptor == nil {
  2642. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlanAndBoxes(ctx, in)
  2643. }
  2644. info := &grpc.UnaryServerInfo{
  2645. Server: srv,
  2646. FullMethod: GoPlanClient_ServicePlanChannelListWithPlanAndBoxes_FullMethodName,
  2647. }
  2648. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2649. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlanAndBoxes(ctx, req.(*ServicePlanChannelListWithPlanAndBoxesReq))
  2650. }
  2651. return interceptor(ctx, in, info, handler)
  2652. }
  2653. func _GoPlanClient_ServicePlanChannelListWithPlanAndBoxesAndDetails_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2654. in := new(ServicePlanChannelListWithPlanAndBoxesAndDetailsReq)
  2655. if err := dec(in); err != nil {
  2656. return nil, err
  2657. }
  2658. if interceptor == nil {
  2659. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlanAndBoxesAndDetails(ctx, in)
  2660. }
  2661. info := &grpc.UnaryServerInfo{
  2662. Server: srv,
  2663. FullMethod: GoPlanClient_ServicePlanChannelListWithPlanAndBoxesAndDetails_FullMethodName,
  2664. }
  2665. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2666. return srv.(GoPlanClientServer).ServicePlanChannelListWithPlanAndBoxesAndDetails(ctx, req.(*ServicePlanChannelListWithPlanAndBoxesAndDetailsReq))
  2667. }
  2668. return interceptor(ctx, in, info, handler)
  2669. }
  2670. // GoPlanClient_ServiceDesc is the grpc.ServiceDesc for GoPlanClient service.
  2671. // It's only intended for direct use with grpc.RegisterService,
  2672. // and not to be introspected or modified (even as a copy)
  2673. var GoPlanClient_ServiceDesc = grpc.ServiceDesc{
  2674. ServiceName: "gorpc.GoPlanClient",
  2675. HandlerType: (*GoPlanClientServer)(nil),
  2676. Methods: []grpc.MethodDesc{
  2677. {
  2678. MethodName: "ServiceTypesAdd",
  2679. Handler: _GoPlanClient_ServiceTypesAdd_Handler,
  2680. },
  2681. {
  2682. MethodName: "ServiceTypesUpdate",
  2683. Handler: _GoPlanClient_ServiceTypesUpdate_Handler,
  2684. },
  2685. {
  2686. MethodName: "ServiceTypesDel",
  2687. Handler: _GoPlanClient_ServiceTypesDel_Handler,
  2688. },
  2689. {
  2690. MethodName: "ServiceTypesGet",
  2691. Handler: _GoPlanClient_ServiceTypesGet_Handler,
  2692. },
  2693. {
  2694. MethodName: "ServiceTypesGetWithValue",
  2695. Handler: _GoPlanClient_ServiceTypesGetWithValue_Handler,
  2696. },
  2697. {
  2698. MethodName: "ServiceTypesList",
  2699. Handler: _GoPlanClient_ServiceTypesList_Handler,
  2700. },
  2701. {
  2702. MethodName: "ServiceTypesListWithValue",
  2703. Handler: _GoPlanClient_ServiceTypesListWithValue_Handler,
  2704. },
  2705. {
  2706. MethodName: "ServiceBoxAdd",
  2707. Handler: _GoPlanClient_ServiceBoxAdd_Handler,
  2708. },
  2709. {
  2710. MethodName: "ServiceBoxAddWithDetails",
  2711. Handler: _GoPlanClient_ServiceBoxAddWithDetails_Handler,
  2712. },
  2713. {
  2714. MethodName: "ServiceBoxUpdate",
  2715. Handler: _GoPlanClient_ServiceBoxUpdate_Handler,
  2716. },
  2717. {
  2718. MethodName: "ServiceBoxUpdateWithDetails",
  2719. Handler: _GoPlanClient_ServiceBoxUpdateWithDetails_Handler,
  2720. },
  2721. {
  2722. MethodName: "ServiceBoxDel",
  2723. Handler: _GoPlanClient_ServiceBoxDel_Handler,
  2724. },
  2725. {
  2726. MethodName: "ServiceBoxGet",
  2727. Handler: _GoPlanClient_ServiceBoxGet_Handler,
  2728. },
  2729. {
  2730. MethodName: "ServiceBoxGetWithDetails",
  2731. Handler: _GoPlanClient_ServiceBoxGetWithDetails_Handler,
  2732. },
  2733. {
  2734. MethodName: "ServiceBoxList",
  2735. Handler: _GoPlanClient_ServiceBoxList_Handler,
  2736. },
  2737. {
  2738. MethodName: "ServiceBoxListWithDetails",
  2739. Handler: _GoPlanClient_ServiceBoxListWithDetails_Handler,
  2740. },
  2741. {
  2742. MethodName: "ServiceBoxTypesAdd",
  2743. Handler: _GoPlanClient_ServiceBoxTypesAdd_Handler,
  2744. },
  2745. {
  2746. MethodName: "ServiceBoxTypesUpdate",
  2747. Handler: _GoPlanClient_ServiceBoxTypesUpdate_Handler,
  2748. },
  2749. {
  2750. MethodName: "ServiceBoxTypesDel",
  2751. Handler: _GoPlanClient_ServiceBoxTypesDel_Handler,
  2752. },
  2753. {
  2754. MethodName: "ServiceBoxTypesGet",
  2755. Handler: _GoPlanClient_ServiceBoxTypesGet_Handler,
  2756. },
  2757. {
  2758. MethodName: "ServiceBoxTypesList",
  2759. Handler: _GoPlanClient_ServiceBoxTypesList_Handler,
  2760. },
  2761. {
  2762. MethodName: "ServicePlanAdd",
  2763. Handler: _GoPlanClient_ServicePlanAdd_Handler,
  2764. },
  2765. {
  2766. MethodName: "ServicePlanAddWithBoxes",
  2767. Handler: _GoPlanClient_ServicePlanAddWithBoxes_Handler,
  2768. },
  2769. {
  2770. MethodName: "ServicePlanAddWithBoxesAndDetails",
  2771. Handler: _GoPlanClient_ServicePlanAddWithBoxesAndDetails_Handler,
  2772. },
  2773. {
  2774. MethodName: "ServicePlanUpdate",
  2775. Handler: _GoPlanClient_ServicePlanUpdate_Handler,
  2776. },
  2777. {
  2778. MethodName: "ServicePlanUpdateWithBoxes",
  2779. Handler: _GoPlanClient_ServicePlanUpdateWithBoxes_Handler,
  2780. },
  2781. {
  2782. MethodName: "ServicePlanUpdateWithBoxesAndDetails",
  2783. Handler: _GoPlanClient_ServicePlanUpdateWithBoxesAndDetails_Handler,
  2784. },
  2785. {
  2786. MethodName: "ServicePlanDel",
  2787. Handler: _GoPlanClient_ServicePlanDel_Handler,
  2788. },
  2789. {
  2790. MethodName: "ServicePlanGet",
  2791. Handler: _GoPlanClient_ServicePlanGet_Handler,
  2792. },
  2793. {
  2794. MethodName: "ServicePlanGetWithBoxes",
  2795. Handler: _GoPlanClient_ServicePlanGetWithBoxes_Handler,
  2796. },
  2797. {
  2798. MethodName: "ServicePlanGetWithBoxesAndDetails",
  2799. Handler: _GoPlanClient_ServicePlanGetWithBoxesAndDetails_Handler,
  2800. },
  2801. {
  2802. MethodName: "ServicePlanList",
  2803. Handler: _GoPlanClient_ServicePlanList_Handler,
  2804. },
  2805. {
  2806. MethodName: "ServicePlanListWithBoxes",
  2807. Handler: _GoPlanClient_ServicePlanListWithBoxes_Handler,
  2808. },
  2809. {
  2810. MethodName: "ServicePlanListWithBoxesAndDetails",
  2811. Handler: _GoPlanClient_ServicePlanListWithBoxesAndDetails_Handler,
  2812. },
  2813. {
  2814. MethodName: "ServicePlanBoxesAdd",
  2815. Handler: _GoPlanClient_ServicePlanBoxesAdd_Handler,
  2816. },
  2817. {
  2818. MethodName: "ServicePlanBoxesUpdate",
  2819. Handler: _GoPlanClient_ServicePlanBoxesUpdate_Handler,
  2820. },
  2821. {
  2822. MethodName: "ServicePlanBoxesDel",
  2823. Handler: _GoPlanClient_ServicePlanBoxesDel_Handler,
  2824. },
  2825. {
  2826. MethodName: "ServicePlanBoxesGet",
  2827. Handler: _GoPlanClient_ServicePlanBoxesGet_Handler,
  2828. },
  2829. {
  2830. MethodName: "ServicePlanBoxesList",
  2831. Handler: _GoPlanClient_ServicePlanBoxesList_Handler,
  2832. },
  2833. {
  2834. MethodName: "ServicePlanChannelAdd",
  2835. Handler: _GoPlanClient_ServicePlanChannelAdd_Handler,
  2836. },
  2837. {
  2838. MethodName: "ServicePlanChannelUpdate",
  2839. Handler: _GoPlanClient_ServicePlanChannelUpdate_Handler,
  2840. },
  2841. {
  2842. MethodName: "ServicePlanChannelDel",
  2843. Handler: _GoPlanClient_ServicePlanChannelDel_Handler,
  2844. },
  2845. {
  2846. MethodName: "ServicePlanChannelGet",
  2847. Handler: _GoPlanClient_ServicePlanChannelGet_Handler,
  2848. },
  2849. {
  2850. MethodName: "ServicePlanChannelGetWithPlan",
  2851. Handler: _GoPlanClient_ServicePlanChannelGetWithPlan_Handler,
  2852. },
  2853. {
  2854. MethodName: "ServicePlanChannelGetWithPlanAndBoxes",
  2855. Handler: _GoPlanClient_ServicePlanChannelGetWithPlanAndBoxes_Handler,
  2856. },
  2857. {
  2858. MethodName: "ServicePlanChannelGetWithPlanAndBoxesAndDetails",
  2859. Handler: _GoPlanClient_ServicePlanChannelGetWithPlanAndBoxesAndDetails_Handler,
  2860. },
  2861. {
  2862. MethodName: "ServicePlanChannelList",
  2863. Handler: _GoPlanClient_ServicePlanChannelList_Handler,
  2864. },
  2865. {
  2866. MethodName: "ServicePlanChannelListWithPlan",
  2867. Handler: _GoPlanClient_ServicePlanChannelListWithPlan_Handler,
  2868. },
  2869. {
  2870. MethodName: "ServicePlanChannelListWithPlanAndBoxes",
  2871. Handler: _GoPlanClient_ServicePlanChannelListWithPlanAndBoxes_Handler,
  2872. },
  2873. {
  2874. MethodName: "ServicePlanChannelListWithPlanAndBoxesAndDetails",
  2875. Handler: _GoPlanClient_ServicePlanChannelListWithPlanAndBoxesAndDetails_Handler,
  2876. },
  2877. },
  2878. Streams: []grpc.StreamDesc{},
  2879. Metadata: "gorpc.proto",
  2880. }
  2881. const (
  2882. GoPmpClient_Ping_FullMethodName = "/gorpc.GoPmpClient/Ping"
  2883. GoPmpClient_GlobalParamAdd_FullMethodName = "/gorpc.GoPmpClient/GlobalParamAdd"
  2884. GoPmpClient_GlobalParamUpdate_FullMethodName = "/gorpc.GoPmpClient/GlobalParamUpdate"
  2885. GoPmpClient_GlobalParamDel_FullMethodName = "/gorpc.GoPmpClient/GlobalParamDel"
  2886. GoPmpClient_GlobalParamGet_FullMethodName = "/gorpc.GoPmpClient/GlobalParamGet"
  2887. GoPmpClient_GlobalParamGetWithLang_FullMethodName = "/gorpc.GoPmpClient/GlobalParamGetWithLang"
  2888. GoPmpClient_GlobalParamList_FullMethodName = "/gorpc.GoPmpClient/GlobalParamList"
  2889. GoPmpClient_ProductAdd_FullMethodName = "/gorpc.GoPmpClient/ProductAdd"
  2890. GoPmpClient_ProductUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductUpdate"
  2891. GoPmpClient_ProductDel_FullMethodName = "/gorpc.GoPmpClient/ProductDel"
  2892. GoPmpClient_ProductGet_FullMethodName = "/gorpc.GoPmpClient/ProductGet"
  2893. GoPmpClient_ProductList_FullMethodName = "/gorpc.GoPmpClient/ProductList"
  2894. GoPmpClient_ProductAll_FullMethodName = "/gorpc.GoPmpClient/ProductAll"
  2895. GoPmpClient_ProductParamAdd_FullMethodName = "/gorpc.GoPmpClient/ProductParamAdd"
  2896. GoPmpClient_ProductParamUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductParamUpdate"
  2897. GoPmpClient_ProductParamDel_FullMethodName = "/gorpc.GoPmpClient/ProductParamDel"
  2898. GoPmpClient_ProductParamGet_FullMethodName = "/gorpc.GoPmpClient/ProductParamGet"
  2899. GoPmpClient_ProductParamGetWithLang_FullMethodName = "/gorpc.GoPmpClient/ProductParamGetWithLang"
  2900. GoPmpClient_ProductParamList_FullMethodName = "/gorpc.GoPmpClient/ProductParamList"
  2901. GoPmpClient_ProductActionAdd_FullMethodName = "/gorpc.GoPmpClient/ProductActionAdd"
  2902. GoPmpClient_ProductActionUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductActionUpdate"
  2903. GoPmpClient_ProductActionDel_FullMethodName = "/gorpc.GoPmpClient/ProductActionDel"
  2904. GoPmpClient_ProductActionGet_FullMethodName = "/gorpc.GoPmpClient/ProductActionGet"
  2905. GoPmpClient_ProductActionList_FullMethodName = "/gorpc.GoPmpClient/ProductActionList"
  2906. GoPmpClient_ProductActionGroupAdd_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupAdd"
  2907. GoPmpClient_ProductActionGroupUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupUpdate"
  2908. GoPmpClient_ProductActionGroupDel_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupDel"
  2909. GoPmpClient_ProductActionGroupGet_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupGet"
  2910. GoPmpClient_ProductActionGroupList_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupList"
  2911. GoPmpClient_ProductActionGroupDisable_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupDisable"
  2912. GoPmpClient_ProductActionGroupEnable_FullMethodName = "/gorpc.GoPmpClient/ProductActionGroupEnable"
  2913. GoPmpClient_ProductActionPolicyGroupAdd_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupAdd"
  2914. GoPmpClient_ProductActionPolicyGroupUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupUpdate"
  2915. GoPmpClient_ProductActionPolicyGroupDel_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupDel"
  2916. GoPmpClient_ProductActionPolicyGroupGet_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupGet"
  2917. GoPmpClient_ProductActionPolicyGroupList_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupList"
  2918. GoPmpClient_ProductActionPolicyGroupDisable_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupDisable"
  2919. GoPmpClient_ProductActionPolicyGroupEnable_FullMethodName = "/gorpc.GoPmpClient/ProductActionPolicyGroupEnable"
  2920. GoPmpClient_ProductActionTypeAdd_FullMethodName = "/gorpc.GoPmpClient/ProductActionTypeAdd"
  2921. GoPmpClient_ProductActionTypeUpdate_FullMethodName = "/gorpc.GoPmpClient/ProductActionTypeUpdate"
  2922. GoPmpClient_ProductActionTypeDel_FullMethodName = "/gorpc.GoPmpClient/ProductActionTypeDel"
  2923. GoPmpClient_ProductActionTypeGet_FullMethodName = "/gorpc.GoPmpClient/ProductActionTypeGet"
  2924. GoPmpClient_ProductActionTypeList_FullMethodName = "/gorpc.GoPmpClient/ProductActionTypeList"
  2925. GoPmpClient_AreaParamAdd_FullMethodName = "/gorpc.GoPmpClient/AreaParamAdd"
  2926. GoPmpClient_AreaParamUpdate_FullMethodName = "/gorpc.GoPmpClient/AreaParamUpdate"
  2927. GoPmpClient_AreaParamDel_FullMethodName = "/gorpc.GoPmpClient/AreaParamDel"
  2928. GoPmpClient_AreaParamGet_FullMethodName = "/gorpc.GoPmpClient/AreaParamGet"
  2929. GoPmpClient_AreaParamList_FullMethodName = "/gorpc.GoPmpClient/AreaParamList"
  2930. GoPmpClient_NationalLanguageAdd_FullMethodName = "/gorpc.GoPmpClient/NationalLanguageAdd"
  2931. GoPmpClient_NationalLanguageUpdate_FullMethodName = "/gorpc.GoPmpClient/NationalLanguageUpdate"
  2932. GoPmpClient_NationalLanguageDel_FullMethodName = "/gorpc.GoPmpClient/NationalLanguageDel"
  2933. GoPmpClient_NationalLanguageGet_FullMethodName = "/gorpc.GoPmpClient/NationalLanguageGet"
  2934. GoPmpClient_NationalLanguageList_FullMethodName = "/gorpc.GoPmpClient/NationalLanguageList"
  2935. GoPmpClient_TipAdd_FullMethodName = "/gorpc.GoPmpClient/TipAdd"
  2936. GoPmpClient_TipUpdate_FullMethodName = "/gorpc.GoPmpClient/TipUpdate"
  2937. GoPmpClient_TipDel_FullMethodName = "/gorpc.GoPmpClient/TipDel"
  2938. GoPmpClient_TipGet_FullMethodName = "/gorpc.GoPmpClient/TipGet"
  2939. GoPmpClient_TipList_FullMethodName = "/gorpc.GoPmpClient/TipList"
  2940. GoPmpClient_DictAdd_FullMethodName = "/gorpc.GoPmpClient/DictAdd"
  2941. GoPmpClient_DictUpdate_FullMethodName = "/gorpc.GoPmpClient/DictUpdate"
  2942. GoPmpClient_DictDel_FullMethodName = "/gorpc.GoPmpClient/DictDel"
  2943. GoPmpClient_DictGet_FullMethodName = "/gorpc.GoPmpClient/DictGet"
  2944. GoPmpClient_DictList_FullMethodName = "/gorpc.GoPmpClient/DictList"
  2945. GoPmpClient_UpgradePkgPlanAdd_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanAdd"
  2946. GoPmpClient_UpgradePkgPlanUpdate_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanUpdate"
  2947. GoPmpClient_UpgradePkgPlanDel_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDel"
  2948. GoPmpClient_UpgradePkgPlanGet_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanGet"
  2949. GoPmpClient_UpgradePkgPlanList_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanList"
  2950. GoPmpClient_UpgradePkgPlanDetailAdd_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDetailAdd"
  2951. GoPmpClient_UpgradePkgPlanDetailUpdate_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDetailUpdate"
  2952. GoPmpClient_UpgradePkgPlanDetailDel_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDetailDel"
  2953. GoPmpClient_UpgradePkgPlanDetailGet_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDetailGet"
  2954. GoPmpClient_UpgradePkgPlanDetailList_FullMethodName = "/gorpc.GoPmpClient/UpgradePkgPlanDetailList"
  2955. GoPmpClient_UpgradeResPlanAdd_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanAdd"
  2956. GoPmpClient_UpgradeResPlanUpdate_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanUpdate"
  2957. GoPmpClient_UpgradeResPlanDel_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDel"
  2958. GoPmpClient_UpgradeResPlanGet_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanGet"
  2959. GoPmpClient_UpgradeResPlanList_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanList"
  2960. GoPmpClient_UpgradeResPlanDetailAdd_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDetailAdd"
  2961. GoPmpClient_UpgradeResPlanDetailUpdate_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDetailUpdate"
  2962. GoPmpClient_UpgradeResPlanDetailDel_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDetailDel"
  2963. GoPmpClient_UpgradeResPlanDetailGet_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDetailGet"
  2964. GoPmpClient_UpgradeResPlanDetailList_FullMethodName = "/gorpc.GoPmpClient/UpgradeResPlanDetailList"
  2965. GoPmpClient_AdPlanAdd_FullMethodName = "/gorpc.GoPmpClient/AdPlanAdd"
  2966. GoPmpClient_AdPlanUpdate_FullMethodName = "/gorpc.GoPmpClient/AdPlanUpdate"
  2967. GoPmpClient_AdPlanDel_FullMethodName = "/gorpc.GoPmpClient/AdPlanDel"
  2968. GoPmpClient_AdPlanGet_FullMethodName = "/gorpc.GoPmpClient/AdPlanGet"
  2969. GoPmpClient_AdPlanList_FullMethodName = "/gorpc.GoPmpClient/AdPlanList"
  2970. GoPmpClient_AdPlanDetailAdd_FullMethodName = "/gorpc.GoPmpClient/AdPlanDetailAdd"
  2971. GoPmpClient_AdPlanDetailUpdate_FullMethodName = "/gorpc.GoPmpClient/AdPlanDetailUpdate"
  2972. GoPmpClient_AdPlanDetailDel_FullMethodName = "/gorpc.GoPmpClient/AdPlanDetailDel"
  2973. GoPmpClient_AdPlanDetailGet_FullMethodName = "/gorpc.GoPmpClient/AdPlanDetailGet"
  2974. GoPmpClient_AdPlanDetailList_FullMethodName = "/gorpc.GoPmpClient/AdPlanDetailList"
  2975. GoPmpClient_AdGlobalConfigGet_FullMethodName = "/gorpc.GoPmpClient/AdGlobalConfigGet"
  2976. GoPmpClient_AdGlobalConfigUpdate_FullMethodName = "/gorpc.GoPmpClient/AdGlobalConfigUpdate"
  2977. GoPmpClient_JobBatchAdd_FullMethodName = "/gorpc.GoPmpClient/JobBatchAdd"
  2978. GoPmpClient_JobBatchAddWithTasks_FullMethodName = "/gorpc.GoPmpClient/JobBatchAddWithTasks"
  2979. GoPmpClient_JobBatchUpdate_FullMethodName = "/gorpc.GoPmpClient/JobBatchUpdate"
  2980. GoPmpClient_JobBatchDel_FullMethodName = "/gorpc.GoPmpClient/JobBatchDel"
  2981. GoPmpClient_JobBatchGet_FullMethodName = "/gorpc.GoPmpClient/JobBatchGet"
  2982. GoPmpClient_JobBatchGetWithTasks_FullMethodName = "/gorpc.GoPmpClient/JobBatchGetWithTasks"
  2983. GoPmpClient_JobBatchList_FullMethodName = "/gorpc.GoPmpClient/JobBatchList"
  2984. GoPmpClient_JobBatchListWithTasks_FullMethodName = "/gorpc.GoPmpClient/JobBatchListWithTasks"
  2985. GoPmpClient_JobTasksAdd_FullMethodName = "/gorpc.GoPmpClient/JobTasksAdd"
  2986. GoPmpClient_JobTasksUpdate_FullMethodName = "/gorpc.GoPmpClient/JobTasksUpdate"
  2987. GoPmpClient_JobTasksDel_FullMethodName = "/gorpc.GoPmpClient/JobTasksDel"
  2988. GoPmpClient_JobTasksGet_FullMethodName = "/gorpc.GoPmpClient/JobTasksGet"
  2989. GoPmpClient_JobTasksList_FullMethodName = "/gorpc.GoPmpClient/JobTasksList"
  2990. GoPmpClient_DeployConfigAdd_FullMethodName = "/gorpc.GoPmpClient/DeployConfigAdd"
  2991. GoPmpClient_DeployConfigUpdate_FullMethodName = "/gorpc.GoPmpClient/DeployConfigUpdate"
  2992. GoPmpClient_DeployConfigDel_FullMethodName = "/gorpc.GoPmpClient/DeployConfigDel"
  2993. GoPmpClient_DeployConfigGet_FullMethodName = "/gorpc.GoPmpClient/DeployConfigGet"
  2994. GoPmpClient_DeployConfigList_FullMethodName = "/gorpc.GoPmpClient/DeployConfigList"
  2995. GoPmpClient_OperationLogAdd_FullMethodName = "/gorpc.GoPmpClient/OperationLogAdd"
  2996. GoPmpClient_OperationLogUpdate_FullMethodName = "/gorpc.GoPmpClient/OperationLogUpdate"
  2997. GoPmpClient_OperationLogGet_FullMethodName = "/gorpc.GoPmpClient/OperationLogGet"
  2998. GoPmpClient_OperationLogList_FullMethodName = "/gorpc.GoPmpClient/OperationLogList"
  2999. GoPmpClient_AnnouncePlanAdd_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanAdd"
  3000. GoPmpClient_AnnouncePlanUpdate_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanUpdate"
  3001. GoPmpClient_AnnouncePlanDel_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDel"
  3002. GoPmpClient_AnnouncePlanGet_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanGet"
  3003. GoPmpClient_AnnouncePlanList_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanList"
  3004. GoPmpClient_AnnouncePlanDetailAdd_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDetailAdd"
  3005. GoPmpClient_AnnouncePlanDetailUpdate_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDetailUpdate"
  3006. GoPmpClient_AnnouncePlanDetailDel_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDetailDel"
  3007. GoPmpClient_AnnouncePlanDetailGet_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDetailGet"
  3008. GoPmpClient_AnnouncePlanDetailList_FullMethodName = "/gorpc.GoPmpClient/AnnouncePlanDetailList"
  3009. GoPmpClient_MessagePushAdd_FullMethodName = "/gorpc.GoPmpClient/MessagePushAdd"
  3010. GoPmpClient_MessagePushUpdate_FullMethodName = "/gorpc.GoPmpClient/MessagePushUpdate"
  3011. GoPmpClient_MessagePushList_FullMethodName = "/gorpc.GoPmpClient/MessagePushList"
  3012. )
  3013. // GoPmpClientClient is the client API for GoPmpClient service.
  3014. //
  3015. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  3016. //
  3017. // 基础服务: 产品管理,产品配置,升级配置、更新资源管理,资源版本管理,全局配置
  3018. type GoPmpClientClient interface {
  3019. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  3020. // GlobalParamVo Model
  3021. // GlobalParamAdd
  3022. GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  3023. GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  3024. GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3025. GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  3026. GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error)
  3027. GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error)
  3028. // ProductVo Model
  3029. // ProductAdd
  3030. ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  3031. ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  3032. ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3033. ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  3034. ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error)
  3035. ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error)
  3036. // ProductParamVo Model
  3037. // ProductParamAdd
  3038. ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  3039. ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  3040. ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3041. ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  3042. ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error)
  3043. ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error)
  3044. // ProductAction 产品行为配置
  3045. ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  3046. ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  3047. ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3048. ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error)
  3049. ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error)
  3050. // ProductActionGroup 产品行为分组
  3051. ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  3052. ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  3053. ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3054. ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  3055. ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error)
  3056. ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  3057. ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  3058. // ProductActionPolicyGroup 产品行为策略分组
  3059. ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  3060. ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  3061. ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3062. ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  3063. ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error)
  3064. ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  3065. ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  3066. // ProductActionType 产品行为类型
  3067. ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  3068. ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  3069. ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3070. ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  3071. ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error)
  3072. // AreaParamVo Model
  3073. // AreaParamAdd
  3074. AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  3075. AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  3076. AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3077. AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  3078. AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error)
  3079. // NationalLanguage Model
  3080. // NationalLanguageAdd
  3081. NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  3082. NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  3083. NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3084. NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  3085. NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error)
  3086. // Tip Model
  3087. // TipAdd
  3088. TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  3089. TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  3090. TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3091. TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error)
  3092. TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error)
  3093. // Dict Model
  3094. // DictAdd
  3095. DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  3096. DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  3097. DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3098. DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error)
  3099. DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error)
  3100. // UpgradePkgPlan Model
  3101. // UpgradePkgPlanAdd
  3102. UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  3103. UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  3104. UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3105. UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  3106. UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error)
  3107. // UpgradePkgPlanDetail Model
  3108. // UpgradePkgPlanDetailAdd
  3109. UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  3110. UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  3111. UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3112. UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  3113. UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error)
  3114. // UpgradeResPlan Model
  3115. // UpgradeResPlanAdd
  3116. UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  3117. UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  3118. UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3119. UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  3120. UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error)
  3121. // UpgradeResPlanDetail Model
  3122. // UpgradeResPlanDetailAdd
  3123. UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  3124. UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  3125. UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3126. UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  3127. UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error)
  3128. // AdPlan Model
  3129. // AdPlanAdd
  3130. AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  3131. AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  3132. AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3133. AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  3134. AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error)
  3135. // AdPlanDetail Model
  3136. // AdPlanDetailAdd
  3137. AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  3138. AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  3139. AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3140. AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  3141. AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error)
  3142. // AdGlobalConfig Model
  3143. // AdGlobalConfigGet
  3144. AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  3145. AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  3146. // JobBatch Model
  3147. // JobBatchAdd
  3148. JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  3149. JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  3150. JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  3151. JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3152. JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  3153. JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  3154. JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error)
  3155. JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error)
  3156. // JobTasks Model
  3157. // JobTasksAdd
  3158. JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  3159. JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  3160. JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3161. JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  3162. JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error)
  3163. // DeployConfig Model
  3164. // DeployConfigAdd
  3165. DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  3166. DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  3167. DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3168. DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  3169. DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error)
  3170. // OperationLog Model
  3171. // OperationLogAdd
  3172. OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  3173. OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  3174. OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  3175. OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error)
  3176. // AnnouncePlan Model
  3177. // AnnouncePlanAdd
  3178. AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  3179. AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  3180. AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3181. AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  3182. AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error)
  3183. // AnnouncePlanDetail Model
  3184. // AnnouncePlanDetailAdd
  3185. AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  3186. AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  3187. AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  3188. AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  3189. AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error)
  3190. // MessagePush Model
  3191. // MessagePushAdd
  3192. MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  3193. MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  3194. MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error)
  3195. }
  3196. type goPmpClientClient struct {
  3197. cc grpc.ClientConnInterface
  3198. }
  3199. func NewGoPmpClientClient(cc grpc.ClientConnInterface) GoPmpClientClient {
  3200. return &goPmpClientClient{cc}
  3201. }
  3202. func (c *goPmpClientClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  3203. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3204. out := new(Response)
  3205. err := c.cc.Invoke(ctx, GoPmpClient_Ping_FullMethodName, in, out, cOpts...)
  3206. if err != nil {
  3207. return nil, err
  3208. }
  3209. return out, nil
  3210. }
  3211. func (c *goPmpClientClient) GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  3212. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3213. out := new(GlobalParamVo)
  3214. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamAdd_FullMethodName, in, out, cOpts...)
  3215. if err != nil {
  3216. return nil, err
  3217. }
  3218. return out, nil
  3219. }
  3220. func (c *goPmpClientClient) GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  3221. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3222. out := new(GlobalParamVo)
  3223. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamUpdate_FullMethodName, in, out, cOpts...)
  3224. if err != nil {
  3225. return nil, err
  3226. }
  3227. return out, nil
  3228. }
  3229. func (c *goPmpClientClient) GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3230. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3231. out := new(Empty)
  3232. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamDel_FullMethodName, in, out, cOpts...)
  3233. if err != nil {
  3234. return nil, err
  3235. }
  3236. return out, nil
  3237. }
  3238. func (c *goPmpClientClient) GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  3239. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3240. out := new(GlobalParamVo)
  3241. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamGet_FullMethodName, in, out, cOpts...)
  3242. if err != nil {
  3243. return nil, err
  3244. }
  3245. return out, nil
  3246. }
  3247. func (c *goPmpClientClient) GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  3248. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3249. out := new(GlobalParamVo)
  3250. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamGetWithLang_FullMethodName, in, out, cOpts...)
  3251. if err != nil {
  3252. return nil, err
  3253. }
  3254. return out, nil
  3255. }
  3256. func (c *goPmpClientClient) GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error) {
  3257. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3258. out := new(GlobalParamListResp)
  3259. err := c.cc.Invoke(ctx, GoPmpClient_GlobalParamList_FullMethodName, in, out, cOpts...)
  3260. if err != nil {
  3261. return nil, err
  3262. }
  3263. return out, nil
  3264. }
  3265. func (c *goPmpClientClient) ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  3266. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3267. out := new(ProductVo)
  3268. err := c.cc.Invoke(ctx, GoPmpClient_ProductAdd_FullMethodName, in, out, cOpts...)
  3269. if err != nil {
  3270. return nil, err
  3271. }
  3272. return out, nil
  3273. }
  3274. func (c *goPmpClientClient) ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  3275. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3276. out := new(ProductVo)
  3277. err := c.cc.Invoke(ctx, GoPmpClient_ProductUpdate_FullMethodName, in, out, cOpts...)
  3278. if err != nil {
  3279. return nil, err
  3280. }
  3281. return out, nil
  3282. }
  3283. func (c *goPmpClientClient) ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3284. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3285. out := new(Empty)
  3286. err := c.cc.Invoke(ctx, GoPmpClient_ProductDel_FullMethodName, in, out, cOpts...)
  3287. if err != nil {
  3288. return nil, err
  3289. }
  3290. return out, nil
  3291. }
  3292. func (c *goPmpClientClient) ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  3293. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3294. out := new(ProductVo)
  3295. err := c.cc.Invoke(ctx, GoPmpClient_ProductGet_FullMethodName, in, out, cOpts...)
  3296. if err != nil {
  3297. return nil, err
  3298. }
  3299. return out, nil
  3300. }
  3301. func (c *goPmpClientClient) ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error) {
  3302. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3303. out := new(ProductListResp)
  3304. err := c.cc.Invoke(ctx, GoPmpClient_ProductList_FullMethodName, in, out, cOpts...)
  3305. if err != nil {
  3306. return nil, err
  3307. }
  3308. return out, nil
  3309. }
  3310. func (c *goPmpClientClient) ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error) {
  3311. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3312. out := new(ProductListResp)
  3313. err := c.cc.Invoke(ctx, GoPmpClient_ProductAll_FullMethodName, in, out, cOpts...)
  3314. if err != nil {
  3315. return nil, err
  3316. }
  3317. return out, nil
  3318. }
  3319. func (c *goPmpClientClient) ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  3320. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3321. out := new(ProductParamVo)
  3322. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamAdd_FullMethodName, in, out, cOpts...)
  3323. if err != nil {
  3324. return nil, err
  3325. }
  3326. return out, nil
  3327. }
  3328. func (c *goPmpClientClient) ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  3329. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3330. out := new(ProductParamVo)
  3331. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamUpdate_FullMethodName, in, out, cOpts...)
  3332. if err != nil {
  3333. return nil, err
  3334. }
  3335. return out, nil
  3336. }
  3337. func (c *goPmpClientClient) ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3338. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3339. out := new(Empty)
  3340. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamDel_FullMethodName, in, out, cOpts...)
  3341. if err != nil {
  3342. return nil, err
  3343. }
  3344. return out, nil
  3345. }
  3346. func (c *goPmpClientClient) ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  3347. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3348. out := new(ProductParamVo)
  3349. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamGet_FullMethodName, in, out, cOpts...)
  3350. if err != nil {
  3351. return nil, err
  3352. }
  3353. return out, nil
  3354. }
  3355. func (c *goPmpClientClient) ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error) {
  3356. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3357. out := new(ProductParamVo)
  3358. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamGetWithLang_FullMethodName, in, out, cOpts...)
  3359. if err != nil {
  3360. return nil, err
  3361. }
  3362. return out, nil
  3363. }
  3364. func (c *goPmpClientClient) ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error) {
  3365. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3366. out := new(ProductParamListResp)
  3367. err := c.cc.Invoke(ctx, GoPmpClient_ProductParamList_FullMethodName, in, out, cOpts...)
  3368. if err != nil {
  3369. return nil, err
  3370. }
  3371. return out, nil
  3372. }
  3373. func (c *goPmpClientClient) ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  3374. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3375. out := new(ProductActionVo)
  3376. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionAdd_FullMethodName, in, out, cOpts...)
  3377. if err != nil {
  3378. return nil, err
  3379. }
  3380. return out, nil
  3381. }
  3382. func (c *goPmpClientClient) ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  3383. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3384. out := new(ProductActionVo)
  3385. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionUpdate_FullMethodName, in, out, cOpts...)
  3386. if err != nil {
  3387. return nil, err
  3388. }
  3389. return out, nil
  3390. }
  3391. func (c *goPmpClientClient) ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3392. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3393. out := new(Empty)
  3394. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionDel_FullMethodName, in, out, cOpts...)
  3395. if err != nil {
  3396. return nil, err
  3397. }
  3398. return out, nil
  3399. }
  3400. func (c *goPmpClientClient) ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error) {
  3401. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3402. out := new(ProductActionVo)
  3403. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGet_FullMethodName, in, out, cOpts...)
  3404. if err != nil {
  3405. return nil, err
  3406. }
  3407. return out, nil
  3408. }
  3409. func (c *goPmpClientClient) ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error) {
  3410. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3411. out := new(ProductActionListResp)
  3412. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionList_FullMethodName, in, out, cOpts...)
  3413. if err != nil {
  3414. return nil, err
  3415. }
  3416. return out, nil
  3417. }
  3418. func (c *goPmpClientClient) ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  3419. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3420. out := new(ProductActionGroupVo)
  3421. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupAdd_FullMethodName, in, out, cOpts...)
  3422. if err != nil {
  3423. return nil, err
  3424. }
  3425. return out, nil
  3426. }
  3427. func (c *goPmpClientClient) ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  3428. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3429. out := new(ProductActionGroupVo)
  3430. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupUpdate_FullMethodName, in, out, cOpts...)
  3431. if err != nil {
  3432. return nil, err
  3433. }
  3434. return out, nil
  3435. }
  3436. func (c *goPmpClientClient) ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3437. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3438. out := new(Empty)
  3439. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupDel_FullMethodName, in, out, cOpts...)
  3440. if err != nil {
  3441. return nil, err
  3442. }
  3443. return out, nil
  3444. }
  3445. func (c *goPmpClientClient) ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  3446. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3447. out := new(ProductActionGroupVo)
  3448. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupGet_FullMethodName, in, out, cOpts...)
  3449. if err != nil {
  3450. return nil, err
  3451. }
  3452. return out, nil
  3453. }
  3454. func (c *goPmpClientClient) ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error) {
  3455. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3456. out := new(ProductActionGroupListResp)
  3457. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupList_FullMethodName, in, out, cOpts...)
  3458. if err != nil {
  3459. return nil, err
  3460. }
  3461. return out, nil
  3462. }
  3463. func (c *goPmpClientClient) ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  3464. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3465. out := new(Empty)
  3466. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupDisable_FullMethodName, in, out, cOpts...)
  3467. if err != nil {
  3468. return nil, err
  3469. }
  3470. return out, nil
  3471. }
  3472. func (c *goPmpClientClient) ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  3473. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3474. out := new(Empty)
  3475. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionGroupEnable_FullMethodName, in, out, cOpts...)
  3476. if err != nil {
  3477. return nil, err
  3478. }
  3479. return out, nil
  3480. }
  3481. func (c *goPmpClientClient) ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  3482. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3483. out := new(ProductActionPolicyGroupVo)
  3484. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupAdd_FullMethodName, in, out, cOpts...)
  3485. if err != nil {
  3486. return nil, err
  3487. }
  3488. return out, nil
  3489. }
  3490. func (c *goPmpClientClient) ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  3491. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3492. out := new(ProductActionPolicyGroupVo)
  3493. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupUpdate_FullMethodName, in, out, cOpts...)
  3494. if err != nil {
  3495. return nil, err
  3496. }
  3497. return out, nil
  3498. }
  3499. func (c *goPmpClientClient) ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3500. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3501. out := new(Empty)
  3502. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupDel_FullMethodName, in, out, cOpts...)
  3503. if err != nil {
  3504. return nil, err
  3505. }
  3506. return out, nil
  3507. }
  3508. func (c *goPmpClientClient) ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  3509. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3510. out := new(ProductActionPolicyGroupVo)
  3511. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupGet_FullMethodName, in, out, cOpts...)
  3512. if err != nil {
  3513. return nil, err
  3514. }
  3515. return out, nil
  3516. }
  3517. func (c *goPmpClientClient) ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error) {
  3518. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3519. out := new(ProductActionPolicyGroupListResp)
  3520. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupList_FullMethodName, in, out, cOpts...)
  3521. if err != nil {
  3522. return nil, err
  3523. }
  3524. return out, nil
  3525. }
  3526. func (c *goPmpClientClient) ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  3527. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3528. out := new(Empty)
  3529. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupDisable_FullMethodName, in, out, cOpts...)
  3530. if err != nil {
  3531. return nil, err
  3532. }
  3533. return out, nil
  3534. }
  3535. func (c *goPmpClientClient) ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  3536. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3537. out := new(Empty)
  3538. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionPolicyGroupEnable_FullMethodName, in, out, cOpts...)
  3539. if err != nil {
  3540. return nil, err
  3541. }
  3542. return out, nil
  3543. }
  3544. func (c *goPmpClientClient) ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  3545. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3546. out := new(ProductActionTypeVo)
  3547. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionTypeAdd_FullMethodName, in, out, cOpts...)
  3548. if err != nil {
  3549. return nil, err
  3550. }
  3551. return out, nil
  3552. }
  3553. func (c *goPmpClientClient) ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  3554. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3555. out := new(ProductActionTypeVo)
  3556. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionTypeUpdate_FullMethodName, in, out, cOpts...)
  3557. if err != nil {
  3558. return nil, err
  3559. }
  3560. return out, nil
  3561. }
  3562. func (c *goPmpClientClient) ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3563. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3564. out := new(Empty)
  3565. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionTypeDel_FullMethodName, in, out, cOpts...)
  3566. if err != nil {
  3567. return nil, err
  3568. }
  3569. return out, nil
  3570. }
  3571. func (c *goPmpClientClient) ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  3572. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3573. out := new(ProductActionTypeVo)
  3574. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionTypeGet_FullMethodName, in, out, cOpts...)
  3575. if err != nil {
  3576. return nil, err
  3577. }
  3578. return out, nil
  3579. }
  3580. func (c *goPmpClientClient) ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error) {
  3581. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3582. out := new(ProductActionTypeListResp)
  3583. err := c.cc.Invoke(ctx, GoPmpClient_ProductActionTypeList_FullMethodName, in, out, cOpts...)
  3584. if err != nil {
  3585. return nil, err
  3586. }
  3587. return out, nil
  3588. }
  3589. func (c *goPmpClientClient) AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  3590. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3591. out := new(AreaParamVo)
  3592. err := c.cc.Invoke(ctx, GoPmpClient_AreaParamAdd_FullMethodName, in, out, cOpts...)
  3593. if err != nil {
  3594. return nil, err
  3595. }
  3596. return out, nil
  3597. }
  3598. func (c *goPmpClientClient) AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  3599. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3600. out := new(AreaParamVo)
  3601. err := c.cc.Invoke(ctx, GoPmpClient_AreaParamUpdate_FullMethodName, in, out, cOpts...)
  3602. if err != nil {
  3603. return nil, err
  3604. }
  3605. return out, nil
  3606. }
  3607. func (c *goPmpClientClient) AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3608. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3609. out := new(Empty)
  3610. err := c.cc.Invoke(ctx, GoPmpClient_AreaParamDel_FullMethodName, in, out, cOpts...)
  3611. if err != nil {
  3612. return nil, err
  3613. }
  3614. return out, nil
  3615. }
  3616. func (c *goPmpClientClient) AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  3617. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3618. out := new(AreaParamVo)
  3619. err := c.cc.Invoke(ctx, GoPmpClient_AreaParamGet_FullMethodName, in, out, cOpts...)
  3620. if err != nil {
  3621. return nil, err
  3622. }
  3623. return out, nil
  3624. }
  3625. func (c *goPmpClientClient) AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error) {
  3626. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3627. out := new(AreaParamListResp)
  3628. err := c.cc.Invoke(ctx, GoPmpClient_AreaParamList_FullMethodName, in, out, cOpts...)
  3629. if err != nil {
  3630. return nil, err
  3631. }
  3632. return out, nil
  3633. }
  3634. func (c *goPmpClientClient) NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  3635. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3636. out := new(NationalLanguageVo)
  3637. err := c.cc.Invoke(ctx, GoPmpClient_NationalLanguageAdd_FullMethodName, in, out, cOpts...)
  3638. if err != nil {
  3639. return nil, err
  3640. }
  3641. return out, nil
  3642. }
  3643. func (c *goPmpClientClient) NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  3644. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3645. out := new(NationalLanguageVo)
  3646. err := c.cc.Invoke(ctx, GoPmpClient_NationalLanguageUpdate_FullMethodName, in, out, cOpts...)
  3647. if err != nil {
  3648. return nil, err
  3649. }
  3650. return out, nil
  3651. }
  3652. func (c *goPmpClientClient) NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3653. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3654. out := new(Empty)
  3655. err := c.cc.Invoke(ctx, GoPmpClient_NationalLanguageDel_FullMethodName, in, out, cOpts...)
  3656. if err != nil {
  3657. return nil, err
  3658. }
  3659. return out, nil
  3660. }
  3661. func (c *goPmpClientClient) NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  3662. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3663. out := new(NationalLanguageVo)
  3664. err := c.cc.Invoke(ctx, GoPmpClient_NationalLanguageGet_FullMethodName, in, out, cOpts...)
  3665. if err != nil {
  3666. return nil, err
  3667. }
  3668. return out, nil
  3669. }
  3670. func (c *goPmpClientClient) NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error) {
  3671. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3672. out := new(NationalLanguageListResp)
  3673. err := c.cc.Invoke(ctx, GoPmpClient_NationalLanguageList_FullMethodName, in, out, cOpts...)
  3674. if err != nil {
  3675. return nil, err
  3676. }
  3677. return out, nil
  3678. }
  3679. func (c *goPmpClientClient) TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  3680. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3681. out := new(TipVo)
  3682. err := c.cc.Invoke(ctx, GoPmpClient_TipAdd_FullMethodName, in, out, cOpts...)
  3683. if err != nil {
  3684. return nil, err
  3685. }
  3686. return out, nil
  3687. }
  3688. func (c *goPmpClientClient) TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  3689. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3690. out := new(TipVo)
  3691. err := c.cc.Invoke(ctx, GoPmpClient_TipUpdate_FullMethodName, in, out, cOpts...)
  3692. if err != nil {
  3693. return nil, err
  3694. }
  3695. return out, nil
  3696. }
  3697. func (c *goPmpClientClient) TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3698. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3699. out := new(Empty)
  3700. err := c.cc.Invoke(ctx, GoPmpClient_TipDel_FullMethodName, in, out, cOpts...)
  3701. if err != nil {
  3702. return nil, err
  3703. }
  3704. return out, nil
  3705. }
  3706. func (c *goPmpClientClient) TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error) {
  3707. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3708. out := new(TipVo)
  3709. err := c.cc.Invoke(ctx, GoPmpClient_TipGet_FullMethodName, in, out, cOpts...)
  3710. if err != nil {
  3711. return nil, err
  3712. }
  3713. return out, nil
  3714. }
  3715. func (c *goPmpClientClient) TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error) {
  3716. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3717. out := new(TipListResp)
  3718. err := c.cc.Invoke(ctx, GoPmpClient_TipList_FullMethodName, in, out, cOpts...)
  3719. if err != nil {
  3720. return nil, err
  3721. }
  3722. return out, nil
  3723. }
  3724. func (c *goPmpClientClient) DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  3725. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3726. out := new(DictVo)
  3727. err := c.cc.Invoke(ctx, GoPmpClient_DictAdd_FullMethodName, in, out, cOpts...)
  3728. if err != nil {
  3729. return nil, err
  3730. }
  3731. return out, nil
  3732. }
  3733. func (c *goPmpClientClient) DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  3734. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3735. out := new(DictVo)
  3736. err := c.cc.Invoke(ctx, GoPmpClient_DictUpdate_FullMethodName, in, out, cOpts...)
  3737. if err != nil {
  3738. return nil, err
  3739. }
  3740. return out, nil
  3741. }
  3742. func (c *goPmpClientClient) DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3743. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3744. out := new(Empty)
  3745. err := c.cc.Invoke(ctx, GoPmpClient_DictDel_FullMethodName, in, out, cOpts...)
  3746. if err != nil {
  3747. return nil, err
  3748. }
  3749. return out, nil
  3750. }
  3751. func (c *goPmpClientClient) DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error) {
  3752. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3753. out := new(DictVo)
  3754. err := c.cc.Invoke(ctx, GoPmpClient_DictGet_FullMethodName, in, out, cOpts...)
  3755. if err != nil {
  3756. return nil, err
  3757. }
  3758. return out, nil
  3759. }
  3760. func (c *goPmpClientClient) DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error) {
  3761. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3762. out := new(DictListResp)
  3763. err := c.cc.Invoke(ctx, GoPmpClient_DictList_FullMethodName, in, out, cOpts...)
  3764. if err != nil {
  3765. return nil, err
  3766. }
  3767. return out, nil
  3768. }
  3769. func (c *goPmpClientClient) UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  3770. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3771. out := new(UpgradePkgPlanVo)
  3772. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanAdd_FullMethodName, in, out, cOpts...)
  3773. if err != nil {
  3774. return nil, err
  3775. }
  3776. return out, nil
  3777. }
  3778. func (c *goPmpClientClient) UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  3779. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3780. out := new(UpgradePkgPlanVo)
  3781. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanUpdate_FullMethodName, in, out, cOpts...)
  3782. if err != nil {
  3783. return nil, err
  3784. }
  3785. return out, nil
  3786. }
  3787. func (c *goPmpClientClient) UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3788. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3789. out := new(Empty)
  3790. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDel_FullMethodName, in, out, cOpts...)
  3791. if err != nil {
  3792. return nil, err
  3793. }
  3794. return out, nil
  3795. }
  3796. func (c *goPmpClientClient) UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  3797. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3798. out := new(UpgradePkgPlanVo)
  3799. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanGet_FullMethodName, in, out, cOpts...)
  3800. if err != nil {
  3801. return nil, err
  3802. }
  3803. return out, nil
  3804. }
  3805. func (c *goPmpClientClient) UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error) {
  3806. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3807. out := new(UpgradePkgPlanListResp)
  3808. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanList_FullMethodName, in, out, cOpts...)
  3809. if err != nil {
  3810. return nil, err
  3811. }
  3812. return out, nil
  3813. }
  3814. func (c *goPmpClientClient) UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  3815. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3816. out := new(UpgradePkgPlanDetailVo)
  3817. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDetailAdd_FullMethodName, in, out, cOpts...)
  3818. if err != nil {
  3819. return nil, err
  3820. }
  3821. return out, nil
  3822. }
  3823. func (c *goPmpClientClient) UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  3824. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3825. out := new(UpgradePkgPlanDetailVo)
  3826. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDetailUpdate_FullMethodName, in, out, cOpts...)
  3827. if err != nil {
  3828. return nil, err
  3829. }
  3830. return out, nil
  3831. }
  3832. func (c *goPmpClientClient) UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3833. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3834. out := new(Empty)
  3835. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDetailDel_FullMethodName, in, out, cOpts...)
  3836. if err != nil {
  3837. return nil, err
  3838. }
  3839. return out, nil
  3840. }
  3841. func (c *goPmpClientClient) UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  3842. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3843. out := new(UpgradePkgPlanDetailVo)
  3844. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDetailGet_FullMethodName, in, out, cOpts...)
  3845. if err != nil {
  3846. return nil, err
  3847. }
  3848. return out, nil
  3849. }
  3850. func (c *goPmpClientClient) UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error) {
  3851. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3852. out := new(UpgradePkgPlanDetailListResp)
  3853. err := c.cc.Invoke(ctx, GoPmpClient_UpgradePkgPlanDetailList_FullMethodName, in, out, cOpts...)
  3854. if err != nil {
  3855. return nil, err
  3856. }
  3857. return out, nil
  3858. }
  3859. func (c *goPmpClientClient) UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  3860. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3861. out := new(UpgradeResPlanVo)
  3862. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanAdd_FullMethodName, in, out, cOpts...)
  3863. if err != nil {
  3864. return nil, err
  3865. }
  3866. return out, nil
  3867. }
  3868. func (c *goPmpClientClient) UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  3869. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3870. out := new(UpgradeResPlanVo)
  3871. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanUpdate_FullMethodName, in, out, cOpts...)
  3872. if err != nil {
  3873. return nil, err
  3874. }
  3875. return out, nil
  3876. }
  3877. func (c *goPmpClientClient) UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3878. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3879. out := new(Empty)
  3880. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDel_FullMethodName, in, out, cOpts...)
  3881. if err != nil {
  3882. return nil, err
  3883. }
  3884. return out, nil
  3885. }
  3886. func (c *goPmpClientClient) UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  3887. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3888. out := new(UpgradeResPlanVo)
  3889. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanGet_FullMethodName, in, out, cOpts...)
  3890. if err != nil {
  3891. return nil, err
  3892. }
  3893. return out, nil
  3894. }
  3895. func (c *goPmpClientClient) UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error) {
  3896. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3897. out := new(UpgradeResPlanListResp)
  3898. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanList_FullMethodName, in, out, cOpts...)
  3899. if err != nil {
  3900. return nil, err
  3901. }
  3902. return out, nil
  3903. }
  3904. func (c *goPmpClientClient) UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  3905. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3906. out := new(UpgradeResPlanDetailVo)
  3907. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDetailAdd_FullMethodName, in, out, cOpts...)
  3908. if err != nil {
  3909. return nil, err
  3910. }
  3911. return out, nil
  3912. }
  3913. func (c *goPmpClientClient) UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  3914. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3915. out := new(UpgradeResPlanDetailVo)
  3916. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDetailUpdate_FullMethodName, in, out, cOpts...)
  3917. if err != nil {
  3918. return nil, err
  3919. }
  3920. return out, nil
  3921. }
  3922. func (c *goPmpClientClient) UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3923. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3924. out := new(Empty)
  3925. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDetailDel_FullMethodName, in, out, cOpts...)
  3926. if err != nil {
  3927. return nil, err
  3928. }
  3929. return out, nil
  3930. }
  3931. func (c *goPmpClientClient) UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  3932. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3933. out := new(UpgradeResPlanDetailVo)
  3934. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDetailGet_FullMethodName, in, out, cOpts...)
  3935. if err != nil {
  3936. return nil, err
  3937. }
  3938. return out, nil
  3939. }
  3940. func (c *goPmpClientClient) UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error) {
  3941. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3942. out := new(UpgradeResPlanDetailListResp)
  3943. err := c.cc.Invoke(ctx, GoPmpClient_UpgradeResPlanDetailList_FullMethodName, in, out, cOpts...)
  3944. if err != nil {
  3945. return nil, err
  3946. }
  3947. return out, nil
  3948. }
  3949. func (c *goPmpClientClient) AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  3950. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3951. out := new(AdPlanVo)
  3952. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanAdd_FullMethodName, in, out, cOpts...)
  3953. if err != nil {
  3954. return nil, err
  3955. }
  3956. return out, nil
  3957. }
  3958. func (c *goPmpClientClient) AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  3959. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3960. out := new(AdPlanVo)
  3961. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanUpdate_FullMethodName, in, out, cOpts...)
  3962. if err != nil {
  3963. return nil, err
  3964. }
  3965. return out, nil
  3966. }
  3967. func (c *goPmpClientClient) AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  3968. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3969. out := new(Empty)
  3970. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDel_FullMethodName, in, out, cOpts...)
  3971. if err != nil {
  3972. return nil, err
  3973. }
  3974. return out, nil
  3975. }
  3976. func (c *goPmpClientClient) AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  3977. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3978. out := new(AdPlanVo)
  3979. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanGet_FullMethodName, in, out, cOpts...)
  3980. if err != nil {
  3981. return nil, err
  3982. }
  3983. return out, nil
  3984. }
  3985. func (c *goPmpClientClient) AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error) {
  3986. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3987. out := new(AdPlanListResp)
  3988. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanList_FullMethodName, in, out, cOpts...)
  3989. if err != nil {
  3990. return nil, err
  3991. }
  3992. return out, nil
  3993. }
  3994. func (c *goPmpClientClient) AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  3995. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  3996. out := new(AdPlanDetailVo)
  3997. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDetailAdd_FullMethodName, in, out, cOpts...)
  3998. if err != nil {
  3999. return nil, err
  4000. }
  4001. return out, nil
  4002. }
  4003. func (c *goPmpClientClient) AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  4004. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4005. out := new(AdPlanDetailVo)
  4006. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDetailUpdate_FullMethodName, in, out, cOpts...)
  4007. if err != nil {
  4008. return nil, err
  4009. }
  4010. return out, nil
  4011. }
  4012. func (c *goPmpClientClient) AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4013. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4014. out := new(Empty)
  4015. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDetailDel_FullMethodName, in, out, cOpts...)
  4016. if err != nil {
  4017. return nil, err
  4018. }
  4019. return out, nil
  4020. }
  4021. func (c *goPmpClientClient) AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  4022. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4023. out := new(AdPlanDetailVo)
  4024. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDetailGet_FullMethodName, in, out, cOpts...)
  4025. if err != nil {
  4026. return nil, err
  4027. }
  4028. return out, nil
  4029. }
  4030. func (c *goPmpClientClient) AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error) {
  4031. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4032. out := new(AdPlanDetailListResp)
  4033. err := c.cc.Invoke(ctx, GoPmpClient_AdPlanDetailList_FullMethodName, in, out, cOpts...)
  4034. if err != nil {
  4035. return nil, err
  4036. }
  4037. return out, nil
  4038. }
  4039. func (c *goPmpClientClient) AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  4040. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4041. out := new(AdGlobalConfigVo)
  4042. err := c.cc.Invoke(ctx, GoPmpClient_AdGlobalConfigGet_FullMethodName, in, out, cOpts...)
  4043. if err != nil {
  4044. return nil, err
  4045. }
  4046. return out, nil
  4047. }
  4048. func (c *goPmpClientClient) AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  4049. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4050. out := new(AdGlobalConfigVo)
  4051. err := c.cc.Invoke(ctx, GoPmpClient_AdGlobalConfigUpdate_FullMethodName, in, out, cOpts...)
  4052. if err != nil {
  4053. return nil, err
  4054. }
  4055. return out, nil
  4056. }
  4057. func (c *goPmpClientClient) JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  4058. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4059. out := new(JobBatchVo)
  4060. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchAdd_FullMethodName, in, out, cOpts...)
  4061. if err != nil {
  4062. return nil, err
  4063. }
  4064. return out, nil
  4065. }
  4066. func (c *goPmpClientClient) JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  4067. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4068. out := new(JobBatchWithTasksVo)
  4069. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchAddWithTasks_FullMethodName, in, out, cOpts...)
  4070. if err != nil {
  4071. return nil, err
  4072. }
  4073. return out, nil
  4074. }
  4075. func (c *goPmpClientClient) JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  4076. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4077. out := new(JobBatchVo)
  4078. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchUpdate_FullMethodName, in, out, cOpts...)
  4079. if err != nil {
  4080. return nil, err
  4081. }
  4082. return out, nil
  4083. }
  4084. func (c *goPmpClientClient) JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4085. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4086. out := new(Empty)
  4087. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchDel_FullMethodName, in, out, cOpts...)
  4088. if err != nil {
  4089. return nil, err
  4090. }
  4091. return out, nil
  4092. }
  4093. func (c *goPmpClientClient) JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  4094. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4095. out := new(JobBatchVo)
  4096. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchGet_FullMethodName, in, out, cOpts...)
  4097. if err != nil {
  4098. return nil, err
  4099. }
  4100. return out, nil
  4101. }
  4102. func (c *goPmpClientClient) JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  4103. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4104. out := new(JobBatchWithTasksVo)
  4105. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchGetWithTasks_FullMethodName, in, out, cOpts...)
  4106. if err != nil {
  4107. return nil, err
  4108. }
  4109. return out, nil
  4110. }
  4111. func (c *goPmpClientClient) JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error) {
  4112. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4113. out := new(JobBatchListResp)
  4114. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchList_FullMethodName, in, out, cOpts...)
  4115. if err != nil {
  4116. return nil, err
  4117. }
  4118. return out, nil
  4119. }
  4120. func (c *goPmpClientClient) JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error) {
  4121. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4122. out := new(JobBatchListWithTasksResp)
  4123. err := c.cc.Invoke(ctx, GoPmpClient_JobBatchListWithTasks_FullMethodName, in, out, cOpts...)
  4124. if err != nil {
  4125. return nil, err
  4126. }
  4127. return out, nil
  4128. }
  4129. func (c *goPmpClientClient) JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  4130. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4131. out := new(JobTasksVo)
  4132. err := c.cc.Invoke(ctx, GoPmpClient_JobTasksAdd_FullMethodName, in, out, cOpts...)
  4133. if err != nil {
  4134. return nil, err
  4135. }
  4136. return out, nil
  4137. }
  4138. func (c *goPmpClientClient) JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  4139. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4140. out := new(JobTasksVo)
  4141. err := c.cc.Invoke(ctx, GoPmpClient_JobTasksUpdate_FullMethodName, in, out, cOpts...)
  4142. if err != nil {
  4143. return nil, err
  4144. }
  4145. return out, nil
  4146. }
  4147. func (c *goPmpClientClient) JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4148. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4149. out := new(Empty)
  4150. err := c.cc.Invoke(ctx, GoPmpClient_JobTasksDel_FullMethodName, in, out, cOpts...)
  4151. if err != nil {
  4152. return nil, err
  4153. }
  4154. return out, nil
  4155. }
  4156. func (c *goPmpClientClient) JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  4157. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4158. out := new(JobTasksVo)
  4159. err := c.cc.Invoke(ctx, GoPmpClient_JobTasksGet_FullMethodName, in, out, cOpts...)
  4160. if err != nil {
  4161. return nil, err
  4162. }
  4163. return out, nil
  4164. }
  4165. func (c *goPmpClientClient) JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error) {
  4166. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4167. out := new(JobTasksListResp)
  4168. err := c.cc.Invoke(ctx, GoPmpClient_JobTasksList_FullMethodName, in, out, cOpts...)
  4169. if err != nil {
  4170. return nil, err
  4171. }
  4172. return out, nil
  4173. }
  4174. func (c *goPmpClientClient) DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  4175. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4176. out := new(DeployConfigVo)
  4177. err := c.cc.Invoke(ctx, GoPmpClient_DeployConfigAdd_FullMethodName, in, out, cOpts...)
  4178. if err != nil {
  4179. return nil, err
  4180. }
  4181. return out, nil
  4182. }
  4183. func (c *goPmpClientClient) DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  4184. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4185. out := new(DeployConfigVo)
  4186. err := c.cc.Invoke(ctx, GoPmpClient_DeployConfigUpdate_FullMethodName, in, out, cOpts...)
  4187. if err != nil {
  4188. return nil, err
  4189. }
  4190. return out, nil
  4191. }
  4192. func (c *goPmpClientClient) DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4193. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4194. out := new(Empty)
  4195. err := c.cc.Invoke(ctx, GoPmpClient_DeployConfigDel_FullMethodName, in, out, cOpts...)
  4196. if err != nil {
  4197. return nil, err
  4198. }
  4199. return out, nil
  4200. }
  4201. func (c *goPmpClientClient) DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  4202. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4203. out := new(DeployConfigVo)
  4204. err := c.cc.Invoke(ctx, GoPmpClient_DeployConfigGet_FullMethodName, in, out, cOpts...)
  4205. if err != nil {
  4206. return nil, err
  4207. }
  4208. return out, nil
  4209. }
  4210. func (c *goPmpClientClient) DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error) {
  4211. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4212. out := new(DeployConfigListResp)
  4213. err := c.cc.Invoke(ctx, GoPmpClient_DeployConfigList_FullMethodName, in, out, cOpts...)
  4214. if err != nil {
  4215. return nil, err
  4216. }
  4217. return out, nil
  4218. }
  4219. func (c *goPmpClientClient) OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  4220. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4221. out := new(OperationLogVo)
  4222. err := c.cc.Invoke(ctx, GoPmpClient_OperationLogAdd_FullMethodName, in, out, cOpts...)
  4223. if err != nil {
  4224. return nil, err
  4225. }
  4226. return out, nil
  4227. }
  4228. func (c *goPmpClientClient) OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  4229. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4230. out := new(OperationLogVo)
  4231. err := c.cc.Invoke(ctx, GoPmpClient_OperationLogUpdate_FullMethodName, in, out, cOpts...)
  4232. if err != nil {
  4233. return nil, err
  4234. }
  4235. return out, nil
  4236. }
  4237. func (c *goPmpClientClient) OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  4238. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4239. out := new(OperationLogVo)
  4240. err := c.cc.Invoke(ctx, GoPmpClient_OperationLogGet_FullMethodName, in, out, cOpts...)
  4241. if err != nil {
  4242. return nil, err
  4243. }
  4244. return out, nil
  4245. }
  4246. func (c *goPmpClientClient) OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error) {
  4247. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4248. out := new(OperationLogListResp)
  4249. err := c.cc.Invoke(ctx, GoPmpClient_OperationLogList_FullMethodName, in, out, cOpts...)
  4250. if err != nil {
  4251. return nil, err
  4252. }
  4253. return out, nil
  4254. }
  4255. func (c *goPmpClientClient) AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  4256. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4257. out := new(AnnouncePlanVo)
  4258. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanAdd_FullMethodName, in, out, cOpts...)
  4259. if err != nil {
  4260. return nil, err
  4261. }
  4262. return out, nil
  4263. }
  4264. func (c *goPmpClientClient) AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  4265. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4266. out := new(AnnouncePlanVo)
  4267. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanUpdate_FullMethodName, in, out, cOpts...)
  4268. if err != nil {
  4269. return nil, err
  4270. }
  4271. return out, nil
  4272. }
  4273. func (c *goPmpClientClient) AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4274. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4275. out := new(Empty)
  4276. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDel_FullMethodName, in, out, cOpts...)
  4277. if err != nil {
  4278. return nil, err
  4279. }
  4280. return out, nil
  4281. }
  4282. func (c *goPmpClientClient) AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  4283. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4284. out := new(AnnouncePlanVo)
  4285. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanGet_FullMethodName, in, out, cOpts...)
  4286. if err != nil {
  4287. return nil, err
  4288. }
  4289. return out, nil
  4290. }
  4291. func (c *goPmpClientClient) AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error) {
  4292. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4293. out := new(AnnouncePlanListResp)
  4294. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanList_FullMethodName, in, out, cOpts...)
  4295. if err != nil {
  4296. return nil, err
  4297. }
  4298. return out, nil
  4299. }
  4300. func (c *goPmpClientClient) AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  4301. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4302. out := new(AnnouncePlanDetailVo)
  4303. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDetailAdd_FullMethodName, in, out, cOpts...)
  4304. if err != nil {
  4305. return nil, err
  4306. }
  4307. return out, nil
  4308. }
  4309. func (c *goPmpClientClient) AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  4310. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4311. out := new(AnnouncePlanDetailVo)
  4312. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDetailUpdate_FullMethodName, in, out, cOpts...)
  4313. if err != nil {
  4314. return nil, err
  4315. }
  4316. return out, nil
  4317. }
  4318. func (c *goPmpClientClient) AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  4319. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4320. out := new(Empty)
  4321. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDetailDel_FullMethodName, in, out, cOpts...)
  4322. if err != nil {
  4323. return nil, err
  4324. }
  4325. return out, nil
  4326. }
  4327. func (c *goPmpClientClient) AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  4328. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4329. out := new(AnnouncePlanDetailVo)
  4330. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDetailGet_FullMethodName, in, out, cOpts...)
  4331. if err != nil {
  4332. return nil, err
  4333. }
  4334. return out, nil
  4335. }
  4336. func (c *goPmpClientClient) AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error) {
  4337. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4338. out := new(AnnouncePlanDetailListResp)
  4339. err := c.cc.Invoke(ctx, GoPmpClient_AnnouncePlanDetailList_FullMethodName, in, out, cOpts...)
  4340. if err != nil {
  4341. return nil, err
  4342. }
  4343. return out, nil
  4344. }
  4345. func (c *goPmpClientClient) MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  4346. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4347. out := new(MessagePushVo)
  4348. err := c.cc.Invoke(ctx, GoPmpClient_MessagePushAdd_FullMethodName, in, out, cOpts...)
  4349. if err != nil {
  4350. return nil, err
  4351. }
  4352. return out, nil
  4353. }
  4354. func (c *goPmpClientClient) MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  4355. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4356. out := new(MessagePushVo)
  4357. err := c.cc.Invoke(ctx, GoPmpClient_MessagePushUpdate_FullMethodName, in, out, cOpts...)
  4358. if err != nil {
  4359. return nil, err
  4360. }
  4361. return out, nil
  4362. }
  4363. func (c *goPmpClientClient) MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error) {
  4364. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  4365. out := new(MessagePushListResp)
  4366. err := c.cc.Invoke(ctx, GoPmpClient_MessagePushList_FullMethodName, in, out, cOpts...)
  4367. if err != nil {
  4368. return nil, err
  4369. }
  4370. return out, nil
  4371. }
  4372. // GoPmpClientServer is the server API for GoPmpClient service.
  4373. // All implementations must embed UnimplementedGoPmpClientServer
  4374. // for forward compatibility.
  4375. //
  4376. // 基础服务: 产品管理,产品配置,升级配置、更新资源管理,资源版本管理,全局配置
  4377. type GoPmpClientServer interface {
  4378. Ping(context.Context, *Request) (*Response, error)
  4379. // GlobalParamVo Model
  4380. // GlobalParamAdd
  4381. GlobalParamAdd(context.Context, *GlobalParamVo) (*GlobalParamVo, error)
  4382. GlobalParamUpdate(context.Context, *GlobalParamVo) (*GlobalParamVo, error)
  4383. GlobalParamDel(context.Context, *Ids) (*Empty, error)
  4384. GlobalParamGet(context.Context, *GlobalParamVo) (*GlobalParamVo, error)
  4385. GlobalParamGetWithLang(context.Context, *GlobalParamGetReq) (*GlobalParamVo, error)
  4386. GlobalParamList(context.Context, *GlobalParamListReq) (*GlobalParamListResp, error)
  4387. // ProductVo Model
  4388. // ProductAdd
  4389. ProductAdd(context.Context, *ProductVo) (*ProductVo, error)
  4390. ProductUpdate(context.Context, *ProductVo) (*ProductVo, error)
  4391. ProductDel(context.Context, *Ids) (*Empty, error)
  4392. ProductGet(context.Context, *ProductVo) (*ProductVo, error)
  4393. ProductList(context.Context, *ProductListReq) (*ProductListResp, error)
  4394. ProductAll(context.Context, *Request) (*ProductListResp, error)
  4395. // ProductParamVo Model
  4396. // ProductParamAdd
  4397. ProductParamAdd(context.Context, *ProductParamVo) (*ProductParamVo, error)
  4398. ProductParamUpdate(context.Context, *ProductParamVo) (*ProductParamVo, error)
  4399. ProductParamDel(context.Context, *Ids) (*Empty, error)
  4400. ProductParamGet(context.Context, *ProductParamVo) (*ProductParamVo, error)
  4401. ProductParamGetWithLang(context.Context, *ProductParamGetReq) (*ProductParamVo, error)
  4402. ProductParamList(context.Context, *ProductParamListReq) (*ProductParamListResp, error)
  4403. // ProductAction 产品行为配置
  4404. ProductActionAdd(context.Context, *ProductActionVo) (*ProductActionVo, error)
  4405. ProductActionUpdate(context.Context, *ProductActionVo) (*ProductActionVo, error)
  4406. ProductActionDel(context.Context, *Ids) (*Empty, error)
  4407. ProductActionGet(context.Context, *ProductActionReq) (*ProductActionVo, error)
  4408. ProductActionList(context.Context, *ProductActionListReq) (*ProductActionListResp, error)
  4409. // ProductActionGroup 产品行为分组
  4410. ProductActionGroupAdd(context.Context, *ProductActionGroupVo) (*ProductActionGroupVo, error)
  4411. ProductActionGroupUpdate(context.Context, *ProductActionGroupVo) (*ProductActionGroupVo, error)
  4412. ProductActionGroupDel(context.Context, *Ids) (*Empty, error)
  4413. ProductActionGroupGet(context.Context, *ProductActionGroupReq) (*ProductActionGroupVo, error)
  4414. ProductActionGroupList(context.Context, *ProductActionGroupListReq) (*ProductActionGroupListResp, error)
  4415. ProductActionGroupDisable(context.Context, *ProductActionGroupDisableReq) (*Empty, error)
  4416. ProductActionGroupEnable(context.Context, *ProductActionGroupEnableReq) (*Empty, error)
  4417. // ProductActionPolicyGroup 产品行为策略分组
  4418. ProductActionPolicyGroupAdd(context.Context, *ProductActionPolicyGroupVo) (*ProductActionPolicyGroupVo, error)
  4419. ProductActionPolicyGroupUpdate(context.Context, *ProductActionPolicyGroupVo) (*ProductActionPolicyGroupVo, error)
  4420. ProductActionPolicyGroupDel(context.Context, *Ids) (*Empty, error)
  4421. ProductActionPolicyGroupGet(context.Context, *ProductActionPolicyGroupReq) (*ProductActionPolicyGroupVo, error)
  4422. ProductActionPolicyGroupList(context.Context, *ProductActionPolicyGroupListReq) (*ProductActionPolicyGroupListResp, error)
  4423. ProductActionPolicyGroupDisable(context.Context, *ProductActionPolicyGroupDisableReq) (*Empty, error)
  4424. ProductActionPolicyGroupEnable(context.Context, *ProductActionPolicyGroupEnableReq) (*Empty, error)
  4425. // ProductActionType 产品行为类型
  4426. ProductActionTypeAdd(context.Context, *ProductActionTypeVo) (*ProductActionTypeVo, error)
  4427. ProductActionTypeUpdate(context.Context, *ProductActionTypeVo) (*ProductActionTypeVo, error)
  4428. ProductActionTypeDel(context.Context, *Ids) (*Empty, error)
  4429. ProductActionTypeGet(context.Context, *ProductActionTypeReq) (*ProductActionTypeVo, error)
  4430. ProductActionTypeList(context.Context, *ProductActionTypeListReq) (*ProductActionTypeListResp, error)
  4431. // AreaParamVo Model
  4432. // AreaParamAdd
  4433. AreaParamAdd(context.Context, *AreaParamVo) (*AreaParamVo, error)
  4434. AreaParamUpdate(context.Context, *AreaParamVo) (*AreaParamVo, error)
  4435. AreaParamDel(context.Context, *Ids) (*Empty, error)
  4436. AreaParamGet(context.Context, *AreaParamVo) (*AreaParamVo, error)
  4437. AreaParamList(context.Context, *AreaParamListReq) (*AreaParamListResp, error)
  4438. // NationalLanguage Model
  4439. // NationalLanguageAdd
  4440. NationalLanguageAdd(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error)
  4441. NationalLanguageUpdate(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error)
  4442. NationalLanguageDel(context.Context, *Ids) (*Empty, error)
  4443. NationalLanguageGet(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error)
  4444. NationalLanguageList(context.Context, *NationalLanguageListReq) (*NationalLanguageListResp, error)
  4445. // Tip Model
  4446. // TipAdd
  4447. TipAdd(context.Context, *TipVo) (*TipVo, error)
  4448. TipUpdate(context.Context, *TipVo) (*TipVo, error)
  4449. TipDel(context.Context, *Ids) (*Empty, error)
  4450. TipGet(context.Context, *TipGetReq) (*TipVo, error)
  4451. TipList(context.Context, *TipListReq) (*TipListResp, error)
  4452. // Dict Model
  4453. // DictAdd
  4454. DictAdd(context.Context, *DictVo) (*DictVo, error)
  4455. DictUpdate(context.Context, *DictVo) (*DictVo, error)
  4456. DictDel(context.Context, *Ids) (*Empty, error)
  4457. DictGet(context.Context, *DictGetReq) (*DictVo, error)
  4458. DictList(context.Context, *DictListReq) (*DictListResp, error)
  4459. // UpgradePkgPlan Model
  4460. // UpgradePkgPlanAdd
  4461. UpgradePkgPlanAdd(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error)
  4462. UpgradePkgPlanUpdate(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error)
  4463. UpgradePkgPlanDel(context.Context, *Ids) (*Empty, error)
  4464. UpgradePkgPlanGet(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error)
  4465. UpgradePkgPlanList(context.Context, *UpgradePkgPlanListReq) (*UpgradePkgPlanListResp, error)
  4466. // UpgradePkgPlanDetail Model
  4467. // UpgradePkgPlanDetailAdd
  4468. UpgradePkgPlanDetailAdd(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error)
  4469. UpgradePkgPlanDetailUpdate(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error)
  4470. UpgradePkgPlanDetailDel(context.Context, *Ids) (*Empty, error)
  4471. UpgradePkgPlanDetailGet(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error)
  4472. UpgradePkgPlanDetailList(context.Context, *UpgradePkgPlanDetailListReq) (*UpgradePkgPlanDetailListResp, error)
  4473. // UpgradeResPlan Model
  4474. // UpgradeResPlanAdd
  4475. UpgradeResPlanAdd(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error)
  4476. UpgradeResPlanUpdate(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error)
  4477. UpgradeResPlanDel(context.Context, *Ids) (*Empty, error)
  4478. UpgradeResPlanGet(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error)
  4479. UpgradeResPlanList(context.Context, *UpgradeResPlanListReq) (*UpgradeResPlanListResp, error)
  4480. // UpgradeResPlanDetail Model
  4481. // UpgradeResPlanDetailAdd
  4482. UpgradeResPlanDetailAdd(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error)
  4483. UpgradeResPlanDetailUpdate(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error)
  4484. UpgradeResPlanDetailDel(context.Context, *Ids) (*Empty, error)
  4485. UpgradeResPlanDetailGet(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error)
  4486. UpgradeResPlanDetailList(context.Context, *UpgradeResPlanDetailListReq) (*UpgradeResPlanDetailListResp, error)
  4487. // AdPlan Model
  4488. // AdPlanAdd
  4489. AdPlanAdd(context.Context, *AdPlanVo) (*AdPlanVo, error)
  4490. AdPlanUpdate(context.Context, *AdPlanVo) (*AdPlanVo, error)
  4491. AdPlanDel(context.Context, *Ids) (*Empty, error)
  4492. AdPlanGet(context.Context, *AdPlanVo) (*AdPlanVo, error)
  4493. AdPlanList(context.Context, *AdPlanListReq) (*AdPlanListResp, error)
  4494. // AdPlanDetail Model
  4495. // AdPlanDetailAdd
  4496. AdPlanDetailAdd(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error)
  4497. AdPlanDetailUpdate(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error)
  4498. AdPlanDetailDel(context.Context, *Ids) (*Empty, error)
  4499. AdPlanDetailGet(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error)
  4500. AdPlanDetailList(context.Context, *AdPlanDetailListReq) (*AdPlanDetailListResp, error)
  4501. // AdGlobalConfig Model
  4502. // AdGlobalConfigGet
  4503. AdGlobalConfigGet(context.Context, *AdGlobalConfigGetReq) (*AdGlobalConfigVo, error)
  4504. AdGlobalConfigUpdate(context.Context, *AdGlobalConfigVo) (*AdGlobalConfigVo, error)
  4505. // JobBatch Model
  4506. // JobBatchAdd
  4507. JobBatchAdd(context.Context, *JobBatchVo) (*JobBatchVo, error)
  4508. JobBatchAddWithTasks(context.Context, *JobBatchWithTasksVo) (*JobBatchWithTasksVo, error)
  4509. JobBatchUpdate(context.Context, *JobBatchVo) (*JobBatchVo, error)
  4510. JobBatchDel(context.Context, *Ids) (*Empty, error)
  4511. JobBatchGet(context.Context, *JobBatchVo) (*JobBatchVo, error)
  4512. JobBatchGetWithTasks(context.Context, *JobBatchVo) (*JobBatchWithTasksVo, error)
  4513. JobBatchList(context.Context, *JobBatchListReq) (*JobBatchListResp, error)
  4514. JobBatchListWithTasks(context.Context, *JobBatchListReq) (*JobBatchListWithTasksResp, error)
  4515. // JobTasks Model
  4516. // JobTasksAdd
  4517. JobTasksAdd(context.Context, *JobTasksVo) (*JobTasksVo, error)
  4518. JobTasksUpdate(context.Context, *JobTasksVo) (*JobTasksVo, error)
  4519. JobTasksDel(context.Context, *Ids) (*Empty, error)
  4520. JobTasksGet(context.Context, *JobTasksVo) (*JobTasksVo, error)
  4521. JobTasksList(context.Context, *JobTasksListReq) (*JobTasksListResp, error)
  4522. // DeployConfig Model
  4523. // DeployConfigAdd
  4524. DeployConfigAdd(context.Context, *DeployConfigVo) (*DeployConfigVo, error)
  4525. DeployConfigUpdate(context.Context, *DeployConfigVo) (*DeployConfigVo, error)
  4526. DeployConfigDel(context.Context, *Ids) (*Empty, error)
  4527. DeployConfigGet(context.Context, *DeployConfigVo) (*DeployConfigVo, error)
  4528. DeployConfigList(context.Context, *DeployConfigListReq) (*DeployConfigListResp, error)
  4529. // OperationLog Model
  4530. // OperationLogAdd
  4531. OperationLogAdd(context.Context, *OperationLogVo) (*OperationLogVo, error)
  4532. OperationLogUpdate(context.Context, *OperationLogVo) (*OperationLogVo, error)
  4533. OperationLogGet(context.Context, *OperationLogVo) (*OperationLogVo, error)
  4534. OperationLogList(context.Context, *OperationLogListReq) (*OperationLogListResp, error)
  4535. // AnnouncePlan Model
  4536. // AnnouncePlanAdd
  4537. AnnouncePlanAdd(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error)
  4538. AnnouncePlanUpdate(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error)
  4539. AnnouncePlanDel(context.Context, *Ids) (*Empty, error)
  4540. AnnouncePlanGet(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error)
  4541. AnnouncePlanList(context.Context, *AnnouncePlanListReq) (*AnnouncePlanListResp, error)
  4542. // AnnouncePlanDetail Model
  4543. // AnnouncePlanDetailAdd
  4544. AnnouncePlanDetailAdd(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error)
  4545. AnnouncePlanDetailUpdate(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error)
  4546. AnnouncePlanDetailDel(context.Context, *Ids) (*Empty, error)
  4547. AnnouncePlanDetailGet(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error)
  4548. AnnouncePlanDetailList(context.Context, *AnnouncePlanDetailListReq) (*AnnouncePlanDetailListResp, error)
  4549. // MessagePush Model
  4550. // MessagePushAdd
  4551. MessagePushAdd(context.Context, *MessagePushVo) (*MessagePushVo, error)
  4552. MessagePushUpdate(context.Context, *MessagePushVo) (*MessagePushVo, error)
  4553. MessagePushList(context.Context, *MessagePushListReq) (*MessagePushListResp, error)
  4554. mustEmbedUnimplementedGoPmpClientServer()
  4555. }
  4556. // UnimplementedGoPmpClientServer must be embedded to have
  4557. // forward compatible implementations.
  4558. //
  4559. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  4560. // pointer dereference when methods are called.
  4561. type UnimplementedGoPmpClientServer struct{}
  4562. func (UnimplementedGoPmpClientServer) Ping(context.Context, *Request) (*Response, error) {
  4563. return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
  4564. }
  4565. func (UnimplementedGoPmpClientServer) GlobalParamAdd(context.Context, *GlobalParamVo) (*GlobalParamVo, error) {
  4566. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamAdd not implemented")
  4567. }
  4568. func (UnimplementedGoPmpClientServer) GlobalParamUpdate(context.Context, *GlobalParamVo) (*GlobalParamVo, error) {
  4569. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamUpdate not implemented")
  4570. }
  4571. func (UnimplementedGoPmpClientServer) GlobalParamDel(context.Context, *Ids) (*Empty, error) {
  4572. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamDel not implemented")
  4573. }
  4574. func (UnimplementedGoPmpClientServer) GlobalParamGet(context.Context, *GlobalParamVo) (*GlobalParamVo, error) {
  4575. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamGet not implemented")
  4576. }
  4577. func (UnimplementedGoPmpClientServer) GlobalParamGetWithLang(context.Context, *GlobalParamGetReq) (*GlobalParamVo, error) {
  4578. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamGetWithLang not implemented")
  4579. }
  4580. func (UnimplementedGoPmpClientServer) GlobalParamList(context.Context, *GlobalParamListReq) (*GlobalParamListResp, error) {
  4581. return nil, status.Errorf(codes.Unimplemented, "method GlobalParamList not implemented")
  4582. }
  4583. func (UnimplementedGoPmpClientServer) ProductAdd(context.Context, *ProductVo) (*ProductVo, error) {
  4584. return nil, status.Errorf(codes.Unimplemented, "method ProductAdd not implemented")
  4585. }
  4586. func (UnimplementedGoPmpClientServer) ProductUpdate(context.Context, *ProductVo) (*ProductVo, error) {
  4587. return nil, status.Errorf(codes.Unimplemented, "method ProductUpdate not implemented")
  4588. }
  4589. func (UnimplementedGoPmpClientServer) ProductDel(context.Context, *Ids) (*Empty, error) {
  4590. return nil, status.Errorf(codes.Unimplemented, "method ProductDel not implemented")
  4591. }
  4592. func (UnimplementedGoPmpClientServer) ProductGet(context.Context, *ProductVo) (*ProductVo, error) {
  4593. return nil, status.Errorf(codes.Unimplemented, "method ProductGet not implemented")
  4594. }
  4595. func (UnimplementedGoPmpClientServer) ProductList(context.Context, *ProductListReq) (*ProductListResp, error) {
  4596. return nil, status.Errorf(codes.Unimplemented, "method ProductList not implemented")
  4597. }
  4598. func (UnimplementedGoPmpClientServer) ProductAll(context.Context, *Request) (*ProductListResp, error) {
  4599. return nil, status.Errorf(codes.Unimplemented, "method ProductAll not implemented")
  4600. }
  4601. func (UnimplementedGoPmpClientServer) ProductParamAdd(context.Context, *ProductParamVo) (*ProductParamVo, error) {
  4602. return nil, status.Errorf(codes.Unimplemented, "method ProductParamAdd not implemented")
  4603. }
  4604. func (UnimplementedGoPmpClientServer) ProductParamUpdate(context.Context, *ProductParamVo) (*ProductParamVo, error) {
  4605. return nil, status.Errorf(codes.Unimplemented, "method ProductParamUpdate not implemented")
  4606. }
  4607. func (UnimplementedGoPmpClientServer) ProductParamDel(context.Context, *Ids) (*Empty, error) {
  4608. return nil, status.Errorf(codes.Unimplemented, "method ProductParamDel not implemented")
  4609. }
  4610. func (UnimplementedGoPmpClientServer) ProductParamGet(context.Context, *ProductParamVo) (*ProductParamVo, error) {
  4611. return nil, status.Errorf(codes.Unimplemented, "method ProductParamGet not implemented")
  4612. }
  4613. func (UnimplementedGoPmpClientServer) ProductParamGetWithLang(context.Context, *ProductParamGetReq) (*ProductParamVo, error) {
  4614. return nil, status.Errorf(codes.Unimplemented, "method ProductParamGetWithLang not implemented")
  4615. }
  4616. func (UnimplementedGoPmpClientServer) ProductParamList(context.Context, *ProductParamListReq) (*ProductParamListResp, error) {
  4617. return nil, status.Errorf(codes.Unimplemented, "method ProductParamList not implemented")
  4618. }
  4619. func (UnimplementedGoPmpClientServer) ProductActionAdd(context.Context, *ProductActionVo) (*ProductActionVo, error) {
  4620. return nil, status.Errorf(codes.Unimplemented, "method ProductActionAdd not implemented")
  4621. }
  4622. func (UnimplementedGoPmpClientServer) ProductActionUpdate(context.Context, *ProductActionVo) (*ProductActionVo, error) {
  4623. return nil, status.Errorf(codes.Unimplemented, "method ProductActionUpdate not implemented")
  4624. }
  4625. func (UnimplementedGoPmpClientServer) ProductActionDel(context.Context, *Ids) (*Empty, error) {
  4626. return nil, status.Errorf(codes.Unimplemented, "method ProductActionDel not implemented")
  4627. }
  4628. func (UnimplementedGoPmpClientServer) ProductActionGet(context.Context, *ProductActionReq) (*ProductActionVo, error) {
  4629. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGet not implemented")
  4630. }
  4631. func (UnimplementedGoPmpClientServer) ProductActionList(context.Context, *ProductActionListReq) (*ProductActionListResp, error) {
  4632. return nil, status.Errorf(codes.Unimplemented, "method ProductActionList not implemented")
  4633. }
  4634. func (UnimplementedGoPmpClientServer) ProductActionGroupAdd(context.Context, *ProductActionGroupVo) (*ProductActionGroupVo, error) {
  4635. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupAdd not implemented")
  4636. }
  4637. func (UnimplementedGoPmpClientServer) ProductActionGroupUpdate(context.Context, *ProductActionGroupVo) (*ProductActionGroupVo, error) {
  4638. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupUpdate not implemented")
  4639. }
  4640. func (UnimplementedGoPmpClientServer) ProductActionGroupDel(context.Context, *Ids) (*Empty, error) {
  4641. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupDel not implemented")
  4642. }
  4643. func (UnimplementedGoPmpClientServer) ProductActionGroupGet(context.Context, *ProductActionGroupReq) (*ProductActionGroupVo, error) {
  4644. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupGet not implemented")
  4645. }
  4646. func (UnimplementedGoPmpClientServer) ProductActionGroupList(context.Context, *ProductActionGroupListReq) (*ProductActionGroupListResp, error) {
  4647. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupList not implemented")
  4648. }
  4649. func (UnimplementedGoPmpClientServer) ProductActionGroupDisable(context.Context, *ProductActionGroupDisableReq) (*Empty, error) {
  4650. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupDisable not implemented")
  4651. }
  4652. func (UnimplementedGoPmpClientServer) ProductActionGroupEnable(context.Context, *ProductActionGroupEnableReq) (*Empty, error) {
  4653. return nil, status.Errorf(codes.Unimplemented, "method ProductActionGroupEnable not implemented")
  4654. }
  4655. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupAdd(context.Context, *ProductActionPolicyGroupVo) (*ProductActionPolicyGroupVo, error) {
  4656. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupAdd not implemented")
  4657. }
  4658. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupUpdate(context.Context, *ProductActionPolicyGroupVo) (*ProductActionPolicyGroupVo, error) {
  4659. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupUpdate not implemented")
  4660. }
  4661. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupDel(context.Context, *Ids) (*Empty, error) {
  4662. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupDel not implemented")
  4663. }
  4664. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupGet(context.Context, *ProductActionPolicyGroupReq) (*ProductActionPolicyGroupVo, error) {
  4665. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupGet not implemented")
  4666. }
  4667. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupList(context.Context, *ProductActionPolicyGroupListReq) (*ProductActionPolicyGroupListResp, error) {
  4668. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupList not implemented")
  4669. }
  4670. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupDisable(context.Context, *ProductActionPolicyGroupDisableReq) (*Empty, error) {
  4671. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupDisable not implemented")
  4672. }
  4673. func (UnimplementedGoPmpClientServer) ProductActionPolicyGroupEnable(context.Context, *ProductActionPolicyGroupEnableReq) (*Empty, error) {
  4674. return nil, status.Errorf(codes.Unimplemented, "method ProductActionPolicyGroupEnable not implemented")
  4675. }
  4676. func (UnimplementedGoPmpClientServer) ProductActionTypeAdd(context.Context, *ProductActionTypeVo) (*ProductActionTypeVo, error) {
  4677. return nil, status.Errorf(codes.Unimplemented, "method ProductActionTypeAdd not implemented")
  4678. }
  4679. func (UnimplementedGoPmpClientServer) ProductActionTypeUpdate(context.Context, *ProductActionTypeVo) (*ProductActionTypeVo, error) {
  4680. return nil, status.Errorf(codes.Unimplemented, "method ProductActionTypeUpdate not implemented")
  4681. }
  4682. func (UnimplementedGoPmpClientServer) ProductActionTypeDel(context.Context, *Ids) (*Empty, error) {
  4683. return nil, status.Errorf(codes.Unimplemented, "method ProductActionTypeDel not implemented")
  4684. }
  4685. func (UnimplementedGoPmpClientServer) ProductActionTypeGet(context.Context, *ProductActionTypeReq) (*ProductActionTypeVo, error) {
  4686. return nil, status.Errorf(codes.Unimplemented, "method ProductActionTypeGet not implemented")
  4687. }
  4688. func (UnimplementedGoPmpClientServer) ProductActionTypeList(context.Context, *ProductActionTypeListReq) (*ProductActionTypeListResp, error) {
  4689. return nil, status.Errorf(codes.Unimplemented, "method ProductActionTypeList not implemented")
  4690. }
  4691. func (UnimplementedGoPmpClientServer) AreaParamAdd(context.Context, *AreaParamVo) (*AreaParamVo, error) {
  4692. return nil, status.Errorf(codes.Unimplemented, "method AreaParamAdd not implemented")
  4693. }
  4694. func (UnimplementedGoPmpClientServer) AreaParamUpdate(context.Context, *AreaParamVo) (*AreaParamVo, error) {
  4695. return nil, status.Errorf(codes.Unimplemented, "method AreaParamUpdate not implemented")
  4696. }
  4697. func (UnimplementedGoPmpClientServer) AreaParamDel(context.Context, *Ids) (*Empty, error) {
  4698. return nil, status.Errorf(codes.Unimplemented, "method AreaParamDel not implemented")
  4699. }
  4700. func (UnimplementedGoPmpClientServer) AreaParamGet(context.Context, *AreaParamVo) (*AreaParamVo, error) {
  4701. return nil, status.Errorf(codes.Unimplemented, "method AreaParamGet not implemented")
  4702. }
  4703. func (UnimplementedGoPmpClientServer) AreaParamList(context.Context, *AreaParamListReq) (*AreaParamListResp, error) {
  4704. return nil, status.Errorf(codes.Unimplemented, "method AreaParamList not implemented")
  4705. }
  4706. func (UnimplementedGoPmpClientServer) NationalLanguageAdd(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error) {
  4707. return nil, status.Errorf(codes.Unimplemented, "method NationalLanguageAdd not implemented")
  4708. }
  4709. func (UnimplementedGoPmpClientServer) NationalLanguageUpdate(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error) {
  4710. return nil, status.Errorf(codes.Unimplemented, "method NationalLanguageUpdate not implemented")
  4711. }
  4712. func (UnimplementedGoPmpClientServer) NationalLanguageDel(context.Context, *Ids) (*Empty, error) {
  4713. return nil, status.Errorf(codes.Unimplemented, "method NationalLanguageDel not implemented")
  4714. }
  4715. func (UnimplementedGoPmpClientServer) NationalLanguageGet(context.Context, *NationalLanguageVo) (*NationalLanguageVo, error) {
  4716. return nil, status.Errorf(codes.Unimplemented, "method NationalLanguageGet not implemented")
  4717. }
  4718. func (UnimplementedGoPmpClientServer) NationalLanguageList(context.Context, *NationalLanguageListReq) (*NationalLanguageListResp, error) {
  4719. return nil, status.Errorf(codes.Unimplemented, "method NationalLanguageList not implemented")
  4720. }
  4721. func (UnimplementedGoPmpClientServer) TipAdd(context.Context, *TipVo) (*TipVo, error) {
  4722. return nil, status.Errorf(codes.Unimplemented, "method TipAdd not implemented")
  4723. }
  4724. func (UnimplementedGoPmpClientServer) TipUpdate(context.Context, *TipVo) (*TipVo, error) {
  4725. return nil, status.Errorf(codes.Unimplemented, "method TipUpdate not implemented")
  4726. }
  4727. func (UnimplementedGoPmpClientServer) TipDel(context.Context, *Ids) (*Empty, error) {
  4728. return nil, status.Errorf(codes.Unimplemented, "method TipDel not implemented")
  4729. }
  4730. func (UnimplementedGoPmpClientServer) TipGet(context.Context, *TipGetReq) (*TipVo, error) {
  4731. return nil, status.Errorf(codes.Unimplemented, "method TipGet not implemented")
  4732. }
  4733. func (UnimplementedGoPmpClientServer) TipList(context.Context, *TipListReq) (*TipListResp, error) {
  4734. return nil, status.Errorf(codes.Unimplemented, "method TipList not implemented")
  4735. }
  4736. func (UnimplementedGoPmpClientServer) DictAdd(context.Context, *DictVo) (*DictVo, error) {
  4737. return nil, status.Errorf(codes.Unimplemented, "method DictAdd not implemented")
  4738. }
  4739. func (UnimplementedGoPmpClientServer) DictUpdate(context.Context, *DictVo) (*DictVo, error) {
  4740. return nil, status.Errorf(codes.Unimplemented, "method DictUpdate not implemented")
  4741. }
  4742. func (UnimplementedGoPmpClientServer) DictDel(context.Context, *Ids) (*Empty, error) {
  4743. return nil, status.Errorf(codes.Unimplemented, "method DictDel not implemented")
  4744. }
  4745. func (UnimplementedGoPmpClientServer) DictGet(context.Context, *DictGetReq) (*DictVo, error) {
  4746. return nil, status.Errorf(codes.Unimplemented, "method DictGet not implemented")
  4747. }
  4748. func (UnimplementedGoPmpClientServer) DictList(context.Context, *DictListReq) (*DictListResp, error) {
  4749. return nil, status.Errorf(codes.Unimplemented, "method DictList not implemented")
  4750. }
  4751. func (UnimplementedGoPmpClientServer) UpgradePkgPlanAdd(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error) {
  4752. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanAdd not implemented")
  4753. }
  4754. func (UnimplementedGoPmpClientServer) UpgradePkgPlanUpdate(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error) {
  4755. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanUpdate not implemented")
  4756. }
  4757. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDel(context.Context, *Ids) (*Empty, error) {
  4758. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDel not implemented")
  4759. }
  4760. func (UnimplementedGoPmpClientServer) UpgradePkgPlanGet(context.Context, *UpgradePkgPlanVo) (*UpgradePkgPlanVo, error) {
  4761. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanGet not implemented")
  4762. }
  4763. func (UnimplementedGoPmpClientServer) UpgradePkgPlanList(context.Context, *UpgradePkgPlanListReq) (*UpgradePkgPlanListResp, error) {
  4764. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanList not implemented")
  4765. }
  4766. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDetailAdd(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error) {
  4767. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDetailAdd not implemented")
  4768. }
  4769. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDetailUpdate(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error) {
  4770. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDetailUpdate not implemented")
  4771. }
  4772. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDetailDel(context.Context, *Ids) (*Empty, error) {
  4773. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDetailDel not implemented")
  4774. }
  4775. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDetailGet(context.Context, *UpgradePkgPlanDetailVo) (*UpgradePkgPlanDetailVo, error) {
  4776. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDetailGet not implemented")
  4777. }
  4778. func (UnimplementedGoPmpClientServer) UpgradePkgPlanDetailList(context.Context, *UpgradePkgPlanDetailListReq) (*UpgradePkgPlanDetailListResp, error) {
  4779. return nil, status.Errorf(codes.Unimplemented, "method UpgradePkgPlanDetailList not implemented")
  4780. }
  4781. func (UnimplementedGoPmpClientServer) UpgradeResPlanAdd(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error) {
  4782. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanAdd not implemented")
  4783. }
  4784. func (UnimplementedGoPmpClientServer) UpgradeResPlanUpdate(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error) {
  4785. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanUpdate not implemented")
  4786. }
  4787. func (UnimplementedGoPmpClientServer) UpgradeResPlanDel(context.Context, *Ids) (*Empty, error) {
  4788. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDel not implemented")
  4789. }
  4790. func (UnimplementedGoPmpClientServer) UpgradeResPlanGet(context.Context, *UpgradeResPlanVo) (*UpgradeResPlanVo, error) {
  4791. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanGet not implemented")
  4792. }
  4793. func (UnimplementedGoPmpClientServer) UpgradeResPlanList(context.Context, *UpgradeResPlanListReq) (*UpgradeResPlanListResp, error) {
  4794. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanList not implemented")
  4795. }
  4796. func (UnimplementedGoPmpClientServer) UpgradeResPlanDetailAdd(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error) {
  4797. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDetailAdd not implemented")
  4798. }
  4799. func (UnimplementedGoPmpClientServer) UpgradeResPlanDetailUpdate(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error) {
  4800. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDetailUpdate not implemented")
  4801. }
  4802. func (UnimplementedGoPmpClientServer) UpgradeResPlanDetailDel(context.Context, *Ids) (*Empty, error) {
  4803. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDetailDel not implemented")
  4804. }
  4805. func (UnimplementedGoPmpClientServer) UpgradeResPlanDetailGet(context.Context, *UpgradeResPlanDetailVo) (*UpgradeResPlanDetailVo, error) {
  4806. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDetailGet not implemented")
  4807. }
  4808. func (UnimplementedGoPmpClientServer) UpgradeResPlanDetailList(context.Context, *UpgradeResPlanDetailListReq) (*UpgradeResPlanDetailListResp, error) {
  4809. return nil, status.Errorf(codes.Unimplemented, "method UpgradeResPlanDetailList not implemented")
  4810. }
  4811. func (UnimplementedGoPmpClientServer) AdPlanAdd(context.Context, *AdPlanVo) (*AdPlanVo, error) {
  4812. return nil, status.Errorf(codes.Unimplemented, "method AdPlanAdd not implemented")
  4813. }
  4814. func (UnimplementedGoPmpClientServer) AdPlanUpdate(context.Context, *AdPlanVo) (*AdPlanVo, error) {
  4815. return nil, status.Errorf(codes.Unimplemented, "method AdPlanUpdate not implemented")
  4816. }
  4817. func (UnimplementedGoPmpClientServer) AdPlanDel(context.Context, *Ids) (*Empty, error) {
  4818. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDel not implemented")
  4819. }
  4820. func (UnimplementedGoPmpClientServer) AdPlanGet(context.Context, *AdPlanVo) (*AdPlanVo, error) {
  4821. return nil, status.Errorf(codes.Unimplemented, "method AdPlanGet not implemented")
  4822. }
  4823. func (UnimplementedGoPmpClientServer) AdPlanList(context.Context, *AdPlanListReq) (*AdPlanListResp, error) {
  4824. return nil, status.Errorf(codes.Unimplemented, "method AdPlanList not implemented")
  4825. }
  4826. func (UnimplementedGoPmpClientServer) AdPlanDetailAdd(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error) {
  4827. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDetailAdd not implemented")
  4828. }
  4829. func (UnimplementedGoPmpClientServer) AdPlanDetailUpdate(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error) {
  4830. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDetailUpdate not implemented")
  4831. }
  4832. func (UnimplementedGoPmpClientServer) AdPlanDetailDel(context.Context, *Ids) (*Empty, error) {
  4833. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDetailDel not implemented")
  4834. }
  4835. func (UnimplementedGoPmpClientServer) AdPlanDetailGet(context.Context, *AdPlanDetailVo) (*AdPlanDetailVo, error) {
  4836. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDetailGet not implemented")
  4837. }
  4838. func (UnimplementedGoPmpClientServer) AdPlanDetailList(context.Context, *AdPlanDetailListReq) (*AdPlanDetailListResp, error) {
  4839. return nil, status.Errorf(codes.Unimplemented, "method AdPlanDetailList not implemented")
  4840. }
  4841. func (UnimplementedGoPmpClientServer) AdGlobalConfigGet(context.Context, *AdGlobalConfigGetReq) (*AdGlobalConfigVo, error) {
  4842. return nil, status.Errorf(codes.Unimplemented, "method AdGlobalConfigGet not implemented")
  4843. }
  4844. func (UnimplementedGoPmpClientServer) AdGlobalConfigUpdate(context.Context, *AdGlobalConfigVo) (*AdGlobalConfigVo, error) {
  4845. return nil, status.Errorf(codes.Unimplemented, "method AdGlobalConfigUpdate not implemented")
  4846. }
  4847. func (UnimplementedGoPmpClientServer) JobBatchAdd(context.Context, *JobBatchVo) (*JobBatchVo, error) {
  4848. return nil, status.Errorf(codes.Unimplemented, "method JobBatchAdd not implemented")
  4849. }
  4850. func (UnimplementedGoPmpClientServer) JobBatchAddWithTasks(context.Context, *JobBatchWithTasksVo) (*JobBatchWithTasksVo, error) {
  4851. return nil, status.Errorf(codes.Unimplemented, "method JobBatchAddWithTasks not implemented")
  4852. }
  4853. func (UnimplementedGoPmpClientServer) JobBatchUpdate(context.Context, *JobBatchVo) (*JobBatchVo, error) {
  4854. return nil, status.Errorf(codes.Unimplemented, "method JobBatchUpdate not implemented")
  4855. }
  4856. func (UnimplementedGoPmpClientServer) JobBatchDel(context.Context, *Ids) (*Empty, error) {
  4857. return nil, status.Errorf(codes.Unimplemented, "method JobBatchDel not implemented")
  4858. }
  4859. func (UnimplementedGoPmpClientServer) JobBatchGet(context.Context, *JobBatchVo) (*JobBatchVo, error) {
  4860. return nil, status.Errorf(codes.Unimplemented, "method JobBatchGet not implemented")
  4861. }
  4862. func (UnimplementedGoPmpClientServer) JobBatchGetWithTasks(context.Context, *JobBatchVo) (*JobBatchWithTasksVo, error) {
  4863. return nil, status.Errorf(codes.Unimplemented, "method JobBatchGetWithTasks not implemented")
  4864. }
  4865. func (UnimplementedGoPmpClientServer) JobBatchList(context.Context, *JobBatchListReq) (*JobBatchListResp, error) {
  4866. return nil, status.Errorf(codes.Unimplemented, "method JobBatchList not implemented")
  4867. }
  4868. func (UnimplementedGoPmpClientServer) JobBatchListWithTasks(context.Context, *JobBatchListReq) (*JobBatchListWithTasksResp, error) {
  4869. return nil, status.Errorf(codes.Unimplemented, "method JobBatchListWithTasks not implemented")
  4870. }
  4871. func (UnimplementedGoPmpClientServer) JobTasksAdd(context.Context, *JobTasksVo) (*JobTasksVo, error) {
  4872. return nil, status.Errorf(codes.Unimplemented, "method JobTasksAdd not implemented")
  4873. }
  4874. func (UnimplementedGoPmpClientServer) JobTasksUpdate(context.Context, *JobTasksVo) (*JobTasksVo, error) {
  4875. return nil, status.Errorf(codes.Unimplemented, "method JobTasksUpdate not implemented")
  4876. }
  4877. func (UnimplementedGoPmpClientServer) JobTasksDel(context.Context, *Ids) (*Empty, error) {
  4878. return nil, status.Errorf(codes.Unimplemented, "method JobTasksDel not implemented")
  4879. }
  4880. func (UnimplementedGoPmpClientServer) JobTasksGet(context.Context, *JobTasksVo) (*JobTasksVo, error) {
  4881. return nil, status.Errorf(codes.Unimplemented, "method JobTasksGet not implemented")
  4882. }
  4883. func (UnimplementedGoPmpClientServer) JobTasksList(context.Context, *JobTasksListReq) (*JobTasksListResp, error) {
  4884. return nil, status.Errorf(codes.Unimplemented, "method JobTasksList not implemented")
  4885. }
  4886. func (UnimplementedGoPmpClientServer) DeployConfigAdd(context.Context, *DeployConfigVo) (*DeployConfigVo, error) {
  4887. return nil, status.Errorf(codes.Unimplemented, "method DeployConfigAdd not implemented")
  4888. }
  4889. func (UnimplementedGoPmpClientServer) DeployConfigUpdate(context.Context, *DeployConfigVo) (*DeployConfigVo, error) {
  4890. return nil, status.Errorf(codes.Unimplemented, "method DeployConfigUpdate not implemented")
  4891. }
  4892. func (UnimplementedGoPmpClientServer) DeployConfigDel(context.Context, *Ids) (*Empty, error) {
  4893. return nil, status.Errorf(codes.Unimplemented, "method DeployConfigDel not implemented")
  4894. }
  4895. func (UnimplementedGoPmpClientServer) DeployConfigGet(context.Context, *DeployConfigVo) (*DeployConfigVo, error) {
  4896. return nil, status.Errorf(codes.Unimplemented, "method DeployConfigGet not implemented")
  4897. }
  4898. func (UnimplementedGoPmpClientServer) DeployConfigList(context.Context, *DeployConfigListReq) (*DeployConfigListResp, error) {
  4899. return nil, status.Errorf(codes.Unimplemented, "method DeployConfigList not implemented")
  4900. }
  4901. func (UnimplementedGoPmpClientServer) OperationLogAdd(context.Context, *OperationLogVo) (*OperationLogVo, error) {
  4902. return nil, status.Errorf(codes.Unimplemented, "method OperationLogAdd not implemented")
  4903. }
  4904. func (UnimplementedGoPmpClientServer) OperationLogUpdate(context.Context, *OperationLogVo) (*OperationLogVo, error) {
  4905. return nil, status.Errorf(codes.Unimplemented, "method OperationLogUpdate not implemented")
  4906. }
  4907. func (UnimplementedGoPmpClientServer) OperationLogGet(context.Context, *OperationLogVo) (*OperationLogVo, error) {
  4908. return nil, status.Errorf(codes.Unimplemented, "method OperationLogGet not implemented")
  4909. }
  4910. func (UnimplementedGoPmpClientServer) OperationLogList(context.Context, *OperationLogListReq) (*OperationLogListResp, error) {
  4911. return nil, status.Errorf(codes.Unimplemented, "method OperationLogList not implemented")
  4912. }
  4913. func (UnimplementedGoPmpClientServer) AnnouncePlanAdd(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error) {
  4914. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanAdd not implemented")
  4915. }
  4916. func (UnimplementedGoPmpClientServer) AnnouncePlanUpdate(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error) {
  4917. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanUpdate not implemented")
  4918. }
  4919. func (UnimplementedGoPmpClientServer) AnnouncePlanDel(context.Context, *Ids) (*Empty, error) {
  4920. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDel not implemented")
  4921. }
  4922. func (UnimplementedGoPmpClientServer) AnnouncePlanGet(context.Context, *AnnouncePlanVo) (*AnnouncePlanVo, error) {
  4923. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanGet not implemented")
  4924. }
  4925. func (UnimplementedGoPmpClientServer) AnnouncePlanList(context.Context, *AnnouncePlanListReq) (*AnnouncePlanListResp, error) {
  4926. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanList not implemented")
  4927. }
  4928. func (UnimplementedGoPmpClientServer) AnnouncePlanDetailAdd(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error) {
  4929. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDetailAdd not implemented")
  4930. }
  4931. func (UnimplementedGoPmpClientServer) AnnouncePlanDetailUpdate(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error) {
  4932. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDetailUpdate not implemented")
  4933. }
  4934. func (UnimplementedGoPmpClientServer) AnnouncePlanDetailDel(context.Context, *Ids) (*Empty, error) {
  4935. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDetailDel not implemented")
  4936. }
  4937. func (UnimplementedGoPmpClientServer) AnnouncePlanDetailGet(context.Context, *AnnouncePlanDetailVo) (*AnnouncePlanDetailVo, error) {
  4938. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDetailGet not implemented")
  4939. }
  4940. func (UnimplementedGoPmpClientServer) AnnouncePlanDetailList(context.Context, *AnnouncePlanDetailListReq) (*AnnouncePlanDetailListResp, error) {
  4941. return nil, status.Errorf(codes.Unimplemented, "method AnnouncePlanDetailList not implemented")
  4942. }
  4943. func (UnimplementedGoPmpClientServer) MessagePushAdd(context.Context, *MessagePushVo) (*MessagePushVo, error) {
  4944. return nil, status.Errorf(codes.Unimplemented, "method MessagePushAdd not implemented")
  4945. }
  4946. func (UnimplementedGoPmpClientServer) MessagePushUpdate(context.Context, *MessagePushVo) (*MessagePushVo, error) {
  4947. return nil, status.Errorf(codes.Unimplemented, "method MessagePushUpdate not implemented")
  4948. }
  4949. func (UnimplementedGoPmpClientServer) MessagePushList(context.Context, *MessagePushListReq) (*MessagePushListResp, error) {
  4950. return nil, status.Errorf(codes.Unimplemented, "method MessagePushList not implemented")
  4951. }
  4952. func (UnimplementedGoPmpClientServer) mustEmbedUnimplementedGoPmpClientServer() {}
  4953. func (UnimplementedGoPmpClientServer) testEmbeddedByValue() {}
  4954. // UnsafeGoPmpClientServer may be embedded to opt out of forward compatibility for this service.
  4955. // Use of this interface is not recommended, as added methods to GoPmpClientServer will
  4956. // result in compilation errors.
  4957. type UnsafeGoPmpClientServer interface {
  4958. mustEmbedUnimplementedGoPmpClientServer()
  4959. }
  4960. func RegisterGoPmpClientServer(s grpc.ServiceRegistrar, srv GoPmpClientServer) {
  4961. // If the following call pancis, it indicates UnimplementedGoPmpClientServer was
  4962. // embedded by pointer and is nil. This will cause panics if an
  4963. // unimplemented method is ever invoked, so we test this at initialization
  4964. // time to prevent it from happening at runtime later due to I/O.
  4965. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  4966. t.testEmbeddedByValue()
  4967. }
  4968. s.RegisterService(&GoPmpClient_ServiceDesc, srv)
  4969. }
  4970. func _GoPmpClient_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  4971. in := new(Request)
  4972. if err := dec(in); err != nil {
  4973. return nil, err
  4974. }
  4975. if interceptor == nil {
  4976. return srv.(GoPmpClientServer).Ping(ctx, in)
  4977. }
  4978. info := &grpc.UnaryServerInfo{
  4979. Server: srv,
  4980. FullMethod: GoPmpClient_Ping_FullMethodName,
  4981. }
  4982. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  4983. return srv.(GoPmpClientServer).Ping(ctx, req.(*Request))
  4984. }
  4985. return interceptor(ctx, in, info, handler)
  4986. }
  4987. func _GoPmpClient_GlobalParamAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  4988. in := new(GlobalParamVo)
  4989. if err := dec(in); err != nil {
  4990. return nil, err
  4991. }
  4992. if interceptor == nil {
  4993. return srv.(GoPmpClientServer).GlobalParamAdd(ctx, in)
  4994. }
  4995. info := &grpc.UnaryServerInfo{
  4996. Server: srv,
  4997. FullMethod: GoPmpClient_GlobalParamAdd_FullMethodName,
  4998. }
  4999. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5000. return srv.(GoPmpClientServer).GlobalParamAdd(ctx, req.(*GlobalParamVo))
  5001. }
  5002. return interceptor(ctx, in, info, handler)
  5003. }
  5004. func _GoPmpClient_GlobalParamUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5005. in := new(GlobalParamVo)
  5006. if err := dec(in); err != nil {
  5007. return nil, err
  5008. }
  5009. if interceptor == nil {
  5010. return srv.(GoPmpClientServer).GlobalParamUpdate(ctx, in)
  5011. }
  5012. info := &grpc.UnaryServerInfo{
  5013. Server: srv,
  5014. FullMethod: GoPmpClient_GlobalParamUpdate_FullMethodName,
  5015. }
  5016. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5017. return srv.(GoPmpClientServer).GlobalParamUpdate(ctx, req.(*GlobalParamVo))
  5018. }
  5019. return interceptor(ctx, in, info, handler)
  5020. }
  5021. func _GoPmpClient_GlobalParamDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5022. in := new(Ids)
  5023. if err := dec(in); err != nil {
  5024. return nil, err
  5025. }
  5026. if interceptor == nil {
  5027. return srv.(GoPmpClientServer).GlobalParamDel(ctx, in)
  5028. }
  5029. info := &grpc.UnaryServerInfo{
  5030. Server: srv,
  5031. FullMethod: GoPmpClient_GlobalParamDel_FullMethodName,
  5032. }
  5033. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5034. return srv.(GoPmpClientServer).GlobalParamDel(ctx, req.(*Ids))
  5035. }
  5036. return interceptor(ctx, in, info, handler)
  5037. }
  5038. func _GoPmpClient_GlobalParamGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5039. in := new(GlobalParamVo)
  5040. if err := dec(in); err != nil {
  5041. return nil, err
  5042. }
  5043. if interceptor == nil {
  5044. return srv.(GoPmpClientServer).GlobalParamGet(ctx, in)
  5045. }
  5046. info := &grpc.UnaryServerInfo{
  5047. Server: srv,
  5048. FullMethod: GoPmpClient_GlobalParamGet_FullMethodName,
  5049. }
  5050. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5051. return srv.(GoPmpClientServer).GlobalParamGet(ctx, req.(*GlobalParamVo))
  5052. }
  5053. return interceptor(ctx, in, info, handler)
  5054. }
  5055. func _GoPmpClient_GlobalParamGetWithLang_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5056. in := new(GlobalParamGetReq)
  5057. if err := dec(in); err != nil {
  5058. return nil, err
  5059. }
  5060. if interceptor == nil {
  5061. return srv.(GoPmpClientServer).GlobalParamGetWithLang(ctx, in)
  5062. }
  5063. info := &grpc.UnaryServerInfo{
  5064. Server: srv,
  5065. FullMethod: GoPmpClient_GlobalParamGetWithLang_FullMethodName,
  5066. }
  5067. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5068. return srv.(GoPmpClientServer).GlobalParamGetWithLang(ctx, req.(*GlobalParamGetReq))
  5069. }
  5070. return interceptor(ctx, in, info, handler)
  5071. }
  5072. func _GoPmpClient_GlobalParamList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5073. in := new(GlobalParamListReq)
  5074. if err := dec(in); err != nil {
  5075. return nil, err
  5076. }
  5077. if interceptor == nil {
  5078. return srv.(GoPmpClientServer).GlobalParamList(ctx, in)
  5079. }
  5080. info := &grpc.UnaryServerInfo{
  5081. Server: srv,
  5082. FullMethod: GoPmpClient_GlobalParamList_FullMethodName,
  5083. }
  5084. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5085. return srv.(GoPmpClientServer).GlobalParamList(ctx, req.(*GlobalParamListReq))
  5086. }
  5087. return interceptor(ctx, in, info, handler)
  5088. }
  5089. func _GoPmpClient_ProductAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5090. in := new(ProductVo)
  5091. if err := dec(in); err != nil {
  5092. return nil, err
  5093. }
  5094. if interceptor == nil {
  5095. return srv.(GoPmpClientServer).ProductAdd(ctx, in)
  5096. }
  5097. info := &grpc.UnaryServerInfo{
  5098. Server: srv,
  5099. FullMethod: GoPmpClient_ProductAdd_FullMethodName,
  5100. }
  5101. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5102. return srv.(GoPmpClientServer).ProductAdd(ctx, req.(*ProductVo))
  5103. }
  5104. return interceptor(ctx, in, info, handler)
  5105. }
  5106. func _GoPmpClient_ProductUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5107. in := new(ProductVo)
  5108. if err := dec(in); err != nil {
  5109. return nil, err
  5110. }
  5111. if interceptor == nil {
  5112. return srv.(GoPmpClientServer).ProductUpdate(ctx, in)
  5113. }
  5114. info := &grpc.UnaryServerInfo{
  5115. Server: srv,
  5116. FullMethod: GoPmpClient_ProductUpdate_FullMethodName,
  5117. }
  5118. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5119. return srv.(GoPmpClientServer).ProductUpdate(ctx, req.(*ProductVo))
  5120. }
  5121. return interceptor(ctx, in, info, handler)
  5122. }
  5123. func _GoPmpClient_ProductDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5124. in := new(Ids)
  5125. if err := dec(in); err != nil {
  5126. return nil, err
  5127. }
  5128. if interceptor == nil {
  5129. return srv.(GoPmpClientServer).ProductDel(ctx, in)
  5130. }
  5131. info := &grpc.UnaryServerInfo{
  5132. Server: srv,
  5133. FullMethod: GoPmpClient_ProductDel_FullMethodName,
  5134. }
  5135. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5136. return srv.(GoPmpClientServer).ProductDel(ctx, req.(*Ids))
  5137. }
  5138. return interceptor(ctx, in, info, handler)
  5139. }
  5140. func _GoPmpClient_ProductGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5141. in := new(ProductVo)
  5142. if err := dec(in); err != nil {
  5143. return nil, err
  5144. }
  5145. if interceptor == nil {
  5146. return srv.(GoPmpClientServer).ProductGet(ctx, in)
  5147. }
  5148. info := &grpc.UnaryServerInfo{
  5149. Server: srv,
  5150. FullMethod: GoPmpClient_ProductGet_FullMethodName,
  5151. }
  5152. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5153. return srv.(GoPmpClientServer).ProductGet(ctx, req.(*ProductVo))
  5154. }
  5155. return interceptor(ctx, in, info, handler)
  5156. }
  5157. func _GoPmpClient_ProductList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5158. in := new(ProductListReq)
  5159. if err := dec(in); err != nil {
  5160. return nil, err
  5161. }
  5162. if interceptor == nil {
  5163. return srv.(GoPmpClientServer).ProductList(ctx, in)
  5164. }
  5165. info := &grpc.UnaryServerInfo{
  5166. Server: srv,
  5167. FullMethod: GoPmpClient_ProductList_FullMethodName,
  5168. }
  5169. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5170. return srv.(GoPmpClientServer).ProductList(ctx, req.(*ProductListReq))
  5171. }
  5172. return interceptor(ctx, in, info, handler)
  5173. }
  5174. func _GoPmpClient_ProductAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5175. in := new(Request)
  5176. if err := dec(in); err != nil {
  5177. return nil, err
  5178. }
  5179. if interceptor == nil {
  5180. return srv.(GoPmpClientServer).ProductAll(ctx, in)
  5181. }
  5182. info := &grpc.UnaryServerInfo{
  5183. Server: srv,
  5184. FullMethod: GoPmpClient_ProductAll_FullMethodName,
  5185. }
  5186. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5187. return srv.(GoPmpClientServer).ProductAll(ctx, req.(*Request))
  5188. }
  5189. return interceptor(ctx, in, info, handler)
  5190. }
  5191. func _GoPmpClient_ProductParamAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5192. in := new(ProductParamVo)
  5193. if err := dec(in); err != nil {
  5194. return nil, err
  5195. }
  5196. if interceptor == nil {
  5197. return srv.(GoPmpClientServer).ProductParamAdd(ctx, in)
  5198. }
  5199. info := &grpc.UnaryServerInfo{
  5200. Server: srv,
  5201. FullMethod: GoPmpClient_ProductParamAdd_FullMethodName,
  5202. }
  5203. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5204. return srv.(GoPmpClientServer).ProductParamAdd(ctx, req.(*ProductParamVo))
  5205. }
  5206. return interceptor(ctx, in, info, handler)
  5207. }
  5208. func _GoPmpClient_ProductParamUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5209. in := new(ProductParamVo)
  5210. if err := dec(in); err != nil {
  5211. return nil, err
  5212. }
  5213. if interceptor == nil {
  5214. return srv.(GoPmpClientServer).ProductParamUpdate(ctx, in)
  5215. }
  5216. info := &grpc.UnaryServerInfo{
  5217. Server: srv,
  5218. FullMethod: GoPmpClient_ProductParamUpdate_FullMethodName,
  5219. }
  5220. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5221. return srv.(GoPmpClientServer).ProductParamUpdate(ctx, req.(*ProductParamVo))
  5222. }
  5223. return interceptor(ctx, in, info, handler)
  5224. }
  5225. func _GoPmpClient_ProductParamDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5226. in := new(Ids)
  5227. if err := dec(in); err != nil {
  5228. return nil, err
  5229. }
  5230. if interceptor == nil {
  5231. return srv.(GoPmpClientServer).ProductParamDel(ctx, in)
  5232. }
  5233. info := &grpc.UnaryServerInfo{
  5234. Server: srv,
  5235. FullMethod: GoPmpClient_ProductParamDel_FullMethodName,
  5236. }
  5237. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5238. return srv.(GoPmpClientServer).ProductParamDel(ctx, req.(*Ids))
  5239. }
  5240. return interceptor(ctx, in, info, handler)
  5241. }
  5242. func _GoPmpClient_ProductParamGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5243. in := new(ProductParamVo)
  5244. if err := dec(in); err != nil {
  5245. return nil, err
  5246. }
  5247. if interceptor == nil {
  5248. return srv.(GoPmpClientServer).ProductParamGet(ctx, in)
  5249. }
  5250. info := &grpc.UnaryServerInfo{
  5251. Server: srv,
  5252. FullMethod: GoPmpClient_ProductParamGet_FullMethodName,
  5253. }
  5254. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5255. return srv.(GoPmpClientServer).ProductParamGet(ctx, req.(*ProductParamVo))
  5256. }
  5257. return interceptor(ctx, in, info, handler)
  5258. }
  5259. func _GoPmpClient_ProductParamGetWithLang_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5260. in := new(ProductParamGetReq)
  5261. if err := dec(in); err != nil {
  5262. return nil, err
  5263. }
  5264. if interceptor == nil {
  5265. return srv.(GoPmpClientServer).ProductParamGetWithLang(ctx, in)
  5266. }
  5267. info := &grpc.UnaryServerInfo{
  5268. Server: srv,
  5269. FullMethod: GoPmpClient_ProductParamGetWithLang_FullMethodName,
  5270. }
  5271. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5272. return srv.(GoPmpClientServer).ProductParamGetWithLang(ctx, req.(*ProductParamGetReq))
  5273. }
  5274. return interceptor(ctx, in, info, handler)
  5275. }
  5276. func _GoPmpClient_ProductParamList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5277. in := new(ProductParamListReq)
  5278. if err := dec(in); err != nil {
  5279. return nil, err
  5280. }
  5281. if interceptor == nil {
  5282. return srv.(GoPmpClientServer).ProductParamList(ctx, in)
  5283. }
  5284. info := &grpc.UnaryServerInfo{
  5285. Server: srv,
  5286. FullMethod: GoPmpClient_ProductParamList_FullMethodName,
  5287. }
  5288. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5289. return srv.(GoPmpClientServer).ProductParamList(ctx, req.(*ProductParamListReq))
  5290. }
  5291. return interceptor(ctx, in, info, handler)
  5292. }
  5293. func _GoPmpClient_ProductActionAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5294. in := new(ProductActionVo)
  5295. if err := dec(in); err != nil {
  5296. return nil, err
  5297. }
  5298. if interceptor == nil {
  5299. return srv.(GoPmpClientServer).ProductActionAdd(ctx, in)
  5300. }
  5301. info := &grpc.UnaryServerInfo{
  5302. Server: srv,
  5303. FullMethod: GoPmpClient_ProductActionAdd_FullMethodName,
  5304. }
  5305. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5306. return srv.(GoPmpClientServer).ProductActionAdd(ctx, req.(*ProductActionVo))
  5307. }
  5308. return interceptor(ctx, in, info, handler)
  5309. }
  5310. func _GoPmpClient_ProductActionUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5311. in := new(ProductActionVo)
  5312. if err := dec(in); err != nil {
  5313. return nil, err
  5314. }
  5315. if interceptor == nil {
  5316. return srv.(GoPmpClientServer).ProductActionUpdate(ctx, in)
  5317. }
  5318. info := &grpc.UnaryServerInfo{
  5319. Server: srv,
  5320. FullMethod: GoPmpClient_ProductActionUpdate_FullMethodName,
  5321. }
  5322. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5323. return srv.(GoPmpClientServer).ProductActionUpdate(ctx, req.(*ProductActionVo))
  5324. }
  5325. return interceptor(ctx, in, info, handler)
  5326. }
  5327. func _GoPmpClient_ProductActionDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5328. in := new(Ids)
  5329. if err := dec(in); err != nil {
  5330. return nil, err
  5331. }
  5332. if interceptor == nil {
  5333. return srv.(GoPmpClientServer).ProductActionDel(ctx, in)
  5334. }
  5335. info := &grpc.UnaryServerInfo{
  5336. Server: srv,
  5337. FullMethod: GoPmpClient_ProductActionDel_FullMethodName,
  5338. }
  5339. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5340. return srv.(GoPmpClientServer).ProductActionDel(ctx, req.(*Ids))
  5341. }
  5342. return interceptor(ctx, in, info, handler)
  5343. }
  5344. func _GoPmpClient_ProductActionGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5345. in := new(ProductActionReq)
  5346. if err := dec(in); err != nil {
  5347. return nil, err
  5348. }
  5349. if interceptor == nil {
  5350. return srv.(GoPmpClientServer).ProductActionGet(ctx, in)
  5351. }
  5352. info := &grpc.UnaryServerInfo{
  5353. Server: srv,
  5354. FullMethod: GoPmpClient_ProductActionGet_FullMethodName,
  5355. }
  5356. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5357. return srv.(GoPmpClientServer).ProductActionGet(ctx, req.(*ProductActionReq))
  5358. }
  5359. return interceptor(ctx, in, info, handler)
  5360. }
  5361. func _GoPmpClient_ProductActionList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5362. in := new(ProductActionListReq)
  5363. if err := dec(in); err != nil {
  5364. return nil, err
  5365. }
  5366. if interceptor == nil {
  5367. return srv.(GoPmpClientServer).ProductActionList(ctx, in)
  5368. }
  5369. info := &grpc.UnaryServerInfo{
  5370. Server: srv,
  5371. FullMethod: GoPmpClient_ProductActionList_FullMethodName,
  5372. }
  5373. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5374. return srv.(GoPmpClientServer).ProductActionList(ctx, req.(*ProductActionListReq))
  5375. }
  5376. return interceptor(ctx, in, info, handler)
  5377. }
  5378. func _GoPmpClient_ProductActionGroupAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5379. in := new(ProductActionGroupVo)
  5380. if err := dec(in); err != nil {
  5381. return nil, err
  5382. }
  5383. if interceptor == nil {
  5384. return srv.(GoPmpClientServer).ProductActionGroupAdd(ctx, in)
  5385. }
  5386. info := &grpc.UnaryServerInfo{
  5387. Server: srv,
  5388. FullMethod: GoPmpClient_ProductActionGroupAdd_FullMethodName,
  5389. }
  5390. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5391. return srv.(GoPmpClientServer).ProductActionGroupAdd(ctx, req.(*ProductActionGroupVo))
  5392. }
  5393. return interceptor(ctx, in, info, handler)
  5394. }
  5395. func _GoPmpClient_ProductActionGroupUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5396. in := new(ProductActionGroupVo)
  5397. if err := dec(in); err != nil {
  5398. return nil, err
  5399. }
  5400. if interceptor == nil {
  5401. return srv.(GoPmpClientServer).ProductActionGroupUpdate(ctx, in)
  5402. }
  5403. info := &grpc.UnaryServerInfo{
  5404. Server: srv,
  5405. FullMethod: GoPmpClient_ProductActionGroupUpdate_FullMethodName,
  5406. }
  5407. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5408. return srv.(GoPmpClientServer).ProductActionGroupUpdate(ctx, req.(*ProductActionGroupVo))
  5409. }
  5410. return interceptor(ctx, in, info, handler)
  5411. }
  5412. func _GoPmpClient_ProductActionGroupDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5413. in := new(Ids)
  5414. if err := dec(in); err != nil {
  5415. return nil, err
  5416. }
  5417. if interceptor == nil {
  5418. return srv.(GoPmpClientServer).ProductActionGroupDel(ctx, in)
  5419. }
  5420. info := &grpc.UnaryServerInfo{
  5421. Server: srv,
  5422. FullMethod: GoPmpClient_ProductActionGroupDel_FullMethodName,
  5423. }
  5424. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5425. return srv.(GoPmpClientServer).ProductActionGroupDel(ctx, req.(*Ids))
  5426. }
  5427. return interceptor(ctx, in, info, handler)
  5428. }
  5429. func _GoPmpClient_ProductActionGroupGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5430. in := new(ProductActionGroupReq)
  5431. if err := dec(in); err != nil {
  5432. return nil, err
  5433. }
  5434. if interceptor == nil {
  5435. return srv.(GoPmpClientServer).ProductActionGroupGet(ctx, in)
  5436. }
  5437. info := &grpc.UnaryServerInfo{
  5438. Server: srv,
  5439. FullMethod: GoPmpClient_ProductActionGroupGet_FullMethodName,
  5440. }
  5441. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5442. return srv.(GoPmpClientServer).ProductActionGroupGet(ctx, req.(*ProductActionGroupReq))
  5443. }
  5444. return interceptor(ctx, in, info, handler)
  5445. }
  5446. func _GoPmpClient_ProductActionGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5447. in := new(ProductActionGroupListReq)
  5448. if err := dec(in); err != nil {
  5449. return nil, err
  5450. }
  5451. if interceptor == nil {
  5452. return srv.(GoPmpClientServer).ProductActionGroupList(ctx, in)
  5453. }
  5454. info := &grpc.UnaryServerInfo{
  5455. Server: srv,
  5456. FullMethod: GoPmpClient_ProductActionGroupList_FullMethodName,
  5457. }
  5458. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5459. return srv.(GoPmpClientServer).ProductActionGroupList(ctx, req.(*ProductActionGroupListReq))
  5460. }
  5461. return interceptor(ctx, in, info, handler)
  5462. }
  5463. func _GoPmpClient_ProductActionGroupDisable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5464. in := new(ProductActionGroupDisableReq)
  5465. if err := dec(in); err != nil {
  5466. return nil, err
  5467. }
  5468. if interceptor == nil {
  5469. return srv.(GoPmpClientServer).ProductActionGroupDisable(ctx, in)
  5470. }
  5471. info := &grpc.UnaryServerInfo{
  5472. Server: srv,
  5473. FullMethod: GoPmpClient_ProductActionGroupDisable_FullMethodName,
  5474. }
  5475. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5476. return srv.(GoPmpClientServer).ProductActionGroupDisable(ctx, req.(*ProductActionGroupDisableReq))
  5477. }
  5478. return interceptor(ctx, in, info, handler)
  5479. }
  5480. func _GoPmpClient_ProductActionGroupEnable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5481. in := new(ProductActionGroupEnableReq)
  5482. if err := dec(in); err != nil {
  5483. return nil, err
  5484. }
  5485. if interceptor == nil {
  5486. return srv.(GoPmpClientServer).ProductActionGroupEnable(ctx, in)
  5487. }
  5488. info := &grpc.UnaryServerInfo{
  5489. Server: srv,
  5490. FullMethod: GoPmpClient_ProductActionGroupEnable_FullMethodName,
  5491. }
  5492. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5493. return srv.(GoPmpClientServer).ProductActionGroupEnable(ctx, req.(*ProductActionGroupEnableReq))
  5494. }
  5495. return interceptor(ctx, in, info, handler)
  5496. }
  5497. func _GoPmpClient_ProductActionPolicyGroupAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5498. in := new(ProductActionPolicyGroupVo)
  5499. if err := dec(in); err != nil {
  5500. return nil, err
  5501. }
  5502. if interceptor == nil {
  5503. return srv.(GoPmpClientServer).ProductActionPolicyGroupAdd(ctx, in)
  5504. }
  5505. info := &grpc.UnaryServerInfo{
  5506. Server: srv,
  5507. FullMethod: GoPmpClient_ProductActionPolicyGroupAdd_FullMethodName,
  5508. }
  5509. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5510. return srv.(GoPmpClientServer).ProductActionPolicyGroupAdd(ctx, req.(*ProductActionPolicyGroupVo))
  5511. }
  5512. return interceptor(ctx, in, info, handler)
  5513. }
  5514. func _GoPmpClient_ProductActionPolicyGroupUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5515. in := new(ProductActionPolicyGroupVo)
  5516. if err := dec(in); err != nil {
  5517. return nil, err
  5518. }
  5519. if interceptor == nil {
  5520. return srv.(GoPmpClientServer).ProductActionPolicyGroupUpdate(ctx, in)
  5521. }
  5522. info := &grpc.UnaryServerInfo{
  5523. Server: srv,
  5524. FullMethod: GoPmpClient_ProductActionPolicyGroupUpdate_FullMethodName,
  5525. }
  5526. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5527. return srv.(GoPmpClientServer).ProductActionPolicyGroupUpdate(ctx, req.(*ProductActionPolicyGroupVo))
  5528. }
  5529. return interceptor(ctx, in, info, handler)
  5530. }
  5531. func _GoPmpClient_ProductActionPolicyGroupDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5532. in := new(Ids)
  5533. if err := dec(in); err != nil {
  5534. return nil, err
  5535. }
  5536. if interceptor == nil {
  5537. return srv.(GoPmpClientServer).ProductActionPolicyGroupDel(ctx, in)
  5538. }
  5539. info := &grpc.UnaryServerInfo{
  5540. Server: srv,
  5541. FullMethod: GoPmpClient_ProductActionPolicyGroupDel_FullMethodName,
  5542. }
  5543. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5544. return srv.(GoPmpClientServer).ProductActionPolicyGroupDel(ctx, req.(*Ids))
  5545. }
  5546. return interceptor(ctx, in, info, handler)
  5547. }
  5548. func _GoPmpClient_ProductActionPolicyGroupGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5549. in := new(ProductActionPolicyGroupReq)
  5550. if err := dec(in); err != nil {
  5551. return nil, err
  5552. }
  5553. if interceptor == nil {
  5554. return srv.(GoPmpClientServer).ProductActionPolicyGroupGet(ctx, in)
  5555. }
  5556. info := &grpc.UnaryServerInfo{
  5557. Server: srv,
  5558. FullMethod: GoPmpClient_ProductActionPolicyGroupGet_FullMethodName,
  5559. }
  5560. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5561. return srv.(GoPmpClientServer).ProductActionPolicyGroupGet(ctx, req.(*ProductActionPolicyGroupReq))
  5562. }
  5563. return interceptor(ctx, in, info, handler)
  5564. }
  5565. func _GoPmpClient_ProductActionPolicyGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5566. in := new(ProductActionPolicyGroupListReq)
  5567. if err := dec(in); err != nil {
  5568. return nil, err
  5569. }
  5570. if interceptor == nil {
  5571. return srv.(GoPmpClientServer).ProductActionPolicyGroupList(ctx, in)
  5572. }
  5573. info := &grpc.UnaryServerInfo{
  5574. Server: srv,
  5575. FullMethod: GoPmpClient_ProductActionPolicyGroupList_FullMethodName,
  5576. }
  5577. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5578. return srv.(GoPmpClientServer).ProductActionPolicyGroupList(ctx, req.(*ProductActionPolicyGroupListReq))
  5579. }
  5580. return interceptor(ctx, in, info, handler)
  5581. }
  5582. func _GoPmpClient_ProductActionPolicyGroupDisable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5583. in := new(ProductActionPolicyGroupDisableReq)
  5584. if err := dec(in); err != nil {
  5585. return nil, err
  5586. }
  5587. if interceptor == nil {
  5588. return srv.(GoPmpClientServer).ProductActionPolicyGroupDisable(ctx, in)
  5589. }
  5590. info := &grpc.UnaryServerInfo{
  5591. Server: srv,
  5592. FullMethod: GoPmpClient_ProductActionPolicyGroupDisable_FullMethodName,
  5593. }
  5594. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5595. return srv.(GoPmpClientServer).ProductActionPolicyGroupDisable(ctx, req.(*ProductActionPolicyGroupDisableReq))
  5596. }
  5597. return interceptor(ctx, in, info, handler)
  5598. }
  5599. func _GoPmpClient_ProductActionPolicyGroupEnable_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5600. in := new(ProductActionPolicyGroupEnableReq)
  5601. if err := dec(in); err != nil {
  5602. return nil, err
  5603. }
  5604. if interceptor == nil {
  5605. return srv.(GoPmpClientServer).ProductActionPolicyGroupEnable(ctx, in)
  5606. }
  5607. info := &grpc.UnaryServerInfo{
  5608. Server: srv,
  5609. FullMethod: GoPmpClient_ProductActionPolicyGroupEnable_FullMethodName,
  5610. }
  5611. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5612. return srv.(GoPmpClientServer).ProductActionPolicyGroupEnable(ctx, req.(*ProductActionPolicyGroupEnableReq))
  5613. }
  5614. return interceptor(ctx, in, info, handler)
  5615. }
  5616. func _GoPmpClient_ProductActionTypeAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5617. in := new(ProductActionTypeVo)
  5618. if err := dec(in); err != nil {
  5619. return nil, err
  5620. }
  5621. if interceptor == nil {
  5622. return srv.(GoPmpClientServer).ProductActionTypeAdd(ctx, in)
  5623. }
  5624. info := &grpc.UnaryServerInfo{
  5625. Server: srv,
  5626. FullMethod: GoPmpClient_ProductActionTypeAdd_FullMethodName,
  5627. }
  5628. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5629. return srv.(GoPmpClientServer).ProductActionTypeAdd(ctx, req.(*ProductActionTypeVo))
  5630. }
  5631. return interceptor(ctx, in, info, handler)
  5632. }
  5633. func _GoPmpClient_ProductActionTypeUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5634. in := new(ProductActionTypeVo)
  5635. if err := dec(in); err != nil {
  5636. return nil, err
  5637. }
  5638. if interceptor == nil {
  5639. return srv.(GoPmpClientServer).ProductActionTypeUpdate(ctx, in)
  5640. }
  5641. info := &grpc.UnaryServerInfo{
  5642. Server: srv,
  5643. FullMethod: GoPmpClient_ProductActionTypeUpdate_FullMethodName,
  5644. }
  5645. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5646. return srv.(GoPmpClientServer).ProductActionTypeUpdate(ctx, req.(*ProductActionTypeVo))
  5647. }
  5648. return interceptor(ctx, in, info, handler)
  5649. }
  5650. func _GoPmpClient_ProductActionTypeDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5651. in := new(Ids)
  5652. if err := dec(in); err != nil {
  5653. return nil, err
  5654. }
  5655. if interceptor == nil {
  5656. return srv.(GoPmpClientServer).ProductActionTypeDel(ctx, in)
  5657. }
  5658. info := &grpc.UnaryServerInfo{
  5659. Server: srv,
  5660. FullMethod: GoPmpClient_ProductActionTypeDel_FullMethodName,
  5661. }
  5662. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5663. return srv.(GoPmpClientServer).ProductActionTypeDel(ctx, req.(*Ids))
  5664. }
  5665. return interceptor(ctx, in, info, handler)
  5666. }
  5667. func _GoPmpClient_ProductActionTypeGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5668. in := new(ProductActionTypeReq)
  5669. if err := dec(in); err != nil {
  5670. return nil, err
  5671. }
  5672. if interceptor == nil {
  5673. return srv.(GoPmpClientServer).ProductActionTypeGet(ctx, in)
  5674. }
  5675. info := &grpc.UnaryServerInfo{
  5676. Server: srv,
  5677. FullMethod: GoPmpClient_ProductActionTypeGet_FullMethodName,
  5678. }
  5679. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5680. return srv.(GoPmpClientServer).ProductActionTypeGet(ctx, req.(*ProductActionTypeReq))
  5681. }
  5682. return interceptor(ctx, in, info, handler)
  5683. }
  5684. func _GoPmpClient_ProductActionTypeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5685. in := new(ProductActionTypeListReq)
  5686. if err := dec(in); err != nil {
  5687. return nil, err
  5688. }
  5689. if interceptor == nil {
  5690. return srv.(GoPmpClientServer).ProductActionTypeList(ctx, in)
  5691. }
  5692. info := &grpc.UnaryServerInfo{
  5693. Server: srv,
  5694. FullMethod: GoPmpClient_ProductActionTypeList_FullMethodName,
  5695. }
  5696. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5697. return srv.(GoPmpClientServer).ProductActionTypeList(ctx, req.(*ProductActionTypeListReq))
  5698. }
  5699. return interceptor(ctx, in, info, handler)
  5700. }
  5701. func _GoPmpClient_AreaParamAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5702. in := new(AreaParamVo)
  5703. if err := dec(in); err != nil {
  5704. return nil, err
  5705. }
  5706. if interceptor == nil {
  5707. return srv.(GoPmpClientServer).AreaParamAdd(ctx, in)
  5708. }
  5709. info := &grpc.UnaryServerInfo{
  5710. Server: srv,
  5711. FullMethod: GoPmpClient_AreaParamAdd_FullMethodName,
  5712. }
  5713. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5714. return srv.(GoPmpClientServer).AreaParamAdd(ctx, req.(*AreaParamVo))
  5715. }
  5716. return interceptor(ctx, in, info, handler)
  5717. }
  5718. func _GoPmpClient_AreaParamUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5719. in := new(AreaParamVo)
  5720. if err := dec(in); err != nil {
  5721. return nil, err
  5722. }
  5723. if interceptor == nil {
  5724. return srv.(GoPmpClientServer).AreaParamUpdate(ctx, in)
  5725. }
  5726. info := &grpc.UnaryServerInfo{
  5727. Server: srv,
  5728. FullMethod: GoPmpClient_AreaParamUpdate_FullMethodName,
  5729. }
  5730. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5731. return srv.(GoPmpClientServer).AreaParamUpdate(ctx, req.(*AreaParamVo))
  5732. }
  5733. return interceptor(ctx, in, info, handler)
  5734. }
  5735. func _GoPmpClient_AreaParamDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5736. in := new(Ids)
  5737. if err := dec(in); err != nil {
  5738. return nil, err
  5739. }
  5740. if interceptor == nil {
  5741. return srv.(GoPmpClientServer).AreaParamDel(ctx, in)
  5742. }
  5743. info := &grpc.UnaryServerInfo{
  5744. Server: srv,
  5745. FullMethod: GoPmpClient_AreaParamDel_FullMethodName,
  5746. }
  5747. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5748. return srv.(GoPmpClientServer).AreaParamDel(ctx, req.(*Ids))
  5749. }
  5750. return interceptor(ctx, in, info, handler)
  5751. }
  5752. func _GoPmpClient_AreaParamGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5753. in := new(AreaParamVo)
  5754. if err := dec(in); err != nil {
  5755. return nil, err
  5756. }
  5757. if interceptor == nil {
  5758. return srv.(GoPmpClientServer).AreaParamGet(ctx, in)
  5759. }
  5760. info := &grpc.UnaryServerInfo{
  5761. Server: srv,
  5762. FullMethod: GoPmpClient_AreaParamGet_FullMethodName,
  5763. }
  5764. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5765. return srv.(GoPmpClientServer).AreaParamGet(ctx, req.(*AreaParamVo))
  5766. }
  5767. return interceptor(ctx, in, info, handler)
  5768. }
  5769. func _GoPmpClient_AreaParamList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5770. in := new(AreaParamListReq)
  5771. if err := dec(in); err != nil {
  5772. return nil, err
  5773. }
  5774. if interceptor == nil {
  5775. return srv.(GoPmpClientServer).AreaParamList(ctx, in)
  5776. }
  5777. info := &grpc.UnaryServerInfo{
  5778. Server: srv,
  5779. FullMethod: GoPmpClient_AreaParamList_FullMethodName,
  5780. }
  5781. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5782. return srv.(GoPmpClientServer).AreaParamList(ctx, req.(*AreaParamListReq))
  5783. }
  5784. return interceptor(ctx, in, info, handler)
  5785. }
  5786. func _GoPmpClient_NationalLanguageAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5787. in := new(NationalLanguageVo)
  5788. if err := dec(in); err != nil {
  5789. return nil, err
  5790. }
  5791. if interceptor == nil {
  5792. return srv.(GoPmpClientServer).NationalLanguageAdd(ctx, in)
  5793. }
  5794. info := &grpc.UnaryServerInfo{
  5795. Server: srv,
  5796. FullMethod: GoPmpClient_NationalLanguageAdd_FullMethodName,
  5797. }
  5798. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5799. return srv.(GoPmpClientServer).NationalLanguageAdd(ctx, req.(*NationalLanguageVo))
  5800. }
  5801. return interceptor(ctx, in, info, handler)
  5802. }
  5803. func _GoPmpClient_NationalLanguageUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5804. in := new(NationalLanguageVo)
  5805. if err := dec(in); err != nil {
  5806. return nil, err
  5807. }
  5808. if interceptor == nil {
  5809. return srv.(GoPmpClientServer).NationalLanguageUpdate(ctx, in)
  5810. }
  5811. info := &grpc.UnaryServerInfo{
  5812. Server: srv,
  5813. FullMethod: GoPmpClient_NationalLanguageUpdate_FullMethodName,
  5814. }
  5815. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5816. return srv.(GoPmpClientServer).NationalLanguageUpdate(ctx, req.(*NationalLanguageVo))
  5817. }
  5818. return interceptor(ctx, in, info, handler)
  5819. }
  5820. func _GoPmpClient_NationalLanguageDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5821. in := new(Ids)
  5822. if err := dec(in); err != nil {
  5823. return nil, err
  5824. }
  5825. if interceptor == nil {
  5826. return srv.(GoPmpClientServer).NationalLanguageDel(ctx, in)
  5827. }
  5828. info := &grpc.UnaryServerInfo{
  5829. Server: srv,
  5830. FullMethod: GoPmpClient_NationalLanguageDel_FullMethodName,
  5831. }
  5832. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5833. return srv.(GoPmpClientServer).NationalLanguageDel(ctx, req.(*Ids))
  5834. }
  5835. return interceptor(ctx, in, info, handler)
  5836. }
  5837. func _GoPmpClient_NationalLanguageGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5838. in := new(NationalLanguageVo)
  5839. if err := dec(in); err != nil {
  5840. return nil, err
  5841. }
  5842. if interceptor == nil {
  5843. return srv.(GoPmpClientServer).NationalLanguageGet(ctx, in)
  5844. }
  5845. info := &grpc.UnaryServerInfo{
  5846. Server: srv,
  5847. FullMethod: GoPmpClient_NationalLanguageGet_FullMethodName,
  5848. }
  5849. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5850. return srv.(GoPmpClientServer).NationalLanguageGet(ctx, req.(*NationalLanguageVo))
  5851. }
  5852. return interceptor(ctx, in, info, handler)
  5853. }
  5854. func _GoPmpClient_NationalLanguageList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5855. in := new(NationalLanguageListReq)
  5856. if err := dec(in); err != nil {
  5857. return nil, err
  5858. }
  5859. if interceptor == nil {
  5860. return srv.(GoPmpClientServer).NationalLanguageList(ctx, in)
  5861. }
  5862. info := &grpc.UnaryServerInfo{
  5863. Server: srv,
  5864. FullMethod: GoPmpClient_NationalLanguageList_FullMethodName,
  5865. }
  5866. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5867. return srv.(GoPmpClientServer).NationalLanguageList(ctx, req.(*NationalLanguageListReq))
  5868. }
  5869. return interceptor(ctx, in, info, handler)
  5870. }
  5871. func _GoPmpClient_TipAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5872. in := new(TipVo)
  5873. if err := dec(in); err != nil {
  5874. return nil, err
  5875. }
  5876. if interceptor == nil {
  5877. return srv.(GoPmpClientServer).TipAdd(ctx, in)
  5878. }
  5879. info := &grpc.UnaryServerInfo{
  5880. Server: srv,
  5881. FullMethod: GoPmpClient_TipAdd_FullMethodName,
  5882. }
  5883. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5884. return srv.(GoPmpClientServer).TipAdd(ctx, req.(*TipVo))
  5885. }
  5886. return interceptor(ctx, in, info, handler)
  5887. }
  5888. func _GoPmpClient_TipUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5889. in := new(TipVo)
  5890. if err := dec(in); err != nil {
  5891. return nil, err
  5892. }
  5893. if interceptor == nil {
  5894. return srv.(GoPmpClientServer).TipUpdate(ctx, in)
  5895. }
  5896. info := &grpc.UnaryServerInfo{
  5897. Server: srv,
  5898. FullMethod: GoPmpClient_TipUpdate_FullMethodName,
  5899. }
  5900. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5901. return srv.(GoPmpClientServer).TipUpdate(ctx, req.(*TipVo))
  5902. }
  5903. return interceptor(ctx, in, info, handler)
  5904. }
  5905. func _GoPmpClient_TipDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5906. in := new(Ids)
  5907. if err := dec(in); err != nil {
  5908. return nil, err
  5909. }
  5910. if interceptor == nil {
  5911. return srv.(GoPmpClientServer).TipDel(ctx, in)
  5912. }
  5913. info := &grpc.UnaryServerInfo{
  5914. Server: srv,
  5915. FullMethod: GoPmpClient_TipDel_FullMethodName,
  5916. }
  5917. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5918. return srv.(GoPmpClientServer).TipDel(ctx, req.(*Ids))
  5919. }
  5920. return interceptor(ctx, in, info, handler)
  5921. }
  5922. func _GoPmpClient_TipGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5923. in := new(TipGetReq)
  5924. if err := dec(in); err != nil {
  5925. return nil, err
  5926. }
  5927. if interceptor == nil {
  5928. return srv.(GoPmpClientServer).TipGet(ctx, in)
  5929. }
  5930. info := &grpc.UnaryServerInfo{
  5931. Server: srv,
  5932. FullMethod: GoPmpClient_TipGet_FullMethodName,
  5933. }
  5934. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5935. return srv.(GoPmpClientServer).TipGet(ctx, req.(*TipGetReq))
  5936. }
  5937. return interceptor(ctx, in, info, handler)
  5938. }
  5939. func _GoPmpClient_TipList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5940. in := new(TipListReq)
  5941. if err := dec(in); err != nil {
  5942. return nil, err
  5943. }
  5944. if interceptor == nil {
  5945. return srv.(GoPmpClientServer).TipList(ctx, in)
  5946. }
  5947. info := &grpc.UnaryServerInfo{
  5948. Server: srv,
  5949. FullMethod: GoPmpClient_TipList_FullMethodName,
  5950. }
  5951. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5952. return srv.(GoPmpClientServer).TipList(ctx, req.(*TipListReq))
  5953. }
  5954. return interceptor(ctx, in, info, handler)
  5955. }
  5956. func _GoPmpClient_DictAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5957. in := new(DictVo)
  5958. if err := dec(in); err != nil {
  5959. return nil, err
  5960. }
  5961. if interceptor == nil {
  5962. return srv.(GoPmpClientServer).DictAdd(ctx, in)
  5963. }
  5964. info := &grpc.UnaryServerInfo{
  5965. Server: srv,
  5966. FullMethod: GoPmpClient_DictAdd_FullMethodName,
  5967. }
  5968. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5969. return srv.(GoPmpClientServer).DictAdd(ctx, req.(*DictVo))
  5970. }
  5971. return interceptor(ctx, in, info, handler)
  5972. }
  5973. func _GoPmpClient_DictUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5974. in := new(DictVo)
  5975. if err := dec(in); err != nil {
  5976. return nil, err
  5977. }
  5978. if interceptor == nil {
  5979. return srv.(GoPmpClientServer).DictUpdate(ctx, in)
  5980. }
  5981. info := &grpc.UnaryServerInfo{
  5982. Server: srv,
  5983. FullMethod: GoPmpClient_DictUpdate_FullMethodName,
  5984. }
  5985. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  5986. return srv.(GoPmpClientServer).DictUpdate(ctx, req.(*DictVo))
  5987. }
  5988. return interceptor(ctx, in, info, handler)
  5989. }
  5990. func _GoPmpClient_DictDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  5991. in := new(Ids)
  5992. if err := dec(in); err != nil {
  5993. return nil, err
  5994. }
  5995. if interceptor == nil {
  5996. return srv.(GoPmpClientServer).DictDel(ctx, in)
  5997. }
  5998. info := &grpc.UnaryServerInfo{
  5999. Server: srv,
  6000. FullMethod: GoPmpClient_DictDel_FullMethodName,
  6001. }
  6002. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6003. return srv.(GoPmpClientServer).DictDel(ctx, req.(*Ids))
  6004. }
  6005. return interceptor(ctx, in, info, handler)
  6006. }
  6007. func _GoPmpClient_DictGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6008. in := new(DictGetReq)
  6009. if err := dec(in); err != nil {
  6010. return nil, err
  6011. }
  6012. if interceptor == nil {
  6013. return srv.(GoPmpClientServer).DictGet(ctx, in)
  6014. }
  6015. info := &grpc.UnaryServerInfo{
  6016. Server: srv,
  6017. FullMethod: GoPmpClient_DictGet_FullMethodName,
  6018. }
  6019. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6020. return srv.(GoPmpClientServer).DictGet(ctx, req.(*DictGetReq))
  6021. }
  6022. return interceptor(ctx, in, info, handler)
  6023. }
  6024. func _GoPmpClient_DictList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6025. in := new(DictListReq)
  6026. if err := dec(in); err != nil {
  6027. return nil, err
  6028. }
  6029. if interceptor == nil {
  6030. return srv.(GoPmpClientServer).DictList(ctx, in)
  6031. }
  6032. info := &grpc.UnaryServerInfo{
  6033. Server: srv,
  6034. FullMethod: GoPmpClient_DictList_FullMethodName,
  6035. }
  6036. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6037. return srv.(GoPmpClientServer).DictList(ctx, req.(*DictListReq))
  6038. }
  6039. return interceptor(ctx, in, info, handler)
  6040. }
  6041. func _GoPmpClient_UpgradePkgPlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6042. in := new(UpgradePkgPlanVo)
  6043. if err := dec(in); err != nil {
  6044. return nil, err
  6045. }
  6046. if interceptor == nil {
  6047. return srv.(GoPmpClientServer).UpgradePkgPlanAdd(ctx, in)
  6048. }
  6049. info := &grpc.UnaryServerInfo{
  6050. Server: srv,
  6051. FullMethod: GoPmpClient_UpgradePkgPlanAdd_FullMethodName,
  6052. }
  6053. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6054. return srv.(GoPmpClientServer).UpgradePkgPlanAdd(ctx, req.(*UpgradePkgPlanVo))
  6055. }
  6056. return interceptor(ctx, in, info, handler)
  6057. }
  6058. func _GoPmpClient_UpgradePkgPlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6059. in := new(UpgradePkgPlanVo)
  6060. if err := dec(in); err != nil {
  6061. return nil, err
  6062. }
  6063. if interceptor == nil {
  6064. return srv.(GoPmpClientServer).UpgradePkgPlanUpdate(ctx, in)
  6065. }
  6066. info := &grpc.UnaryServerInfo{
  6067. Server: srv,
  6068. FullMethod: GoPmpClient_UpgradePkgPlanUpdate_FullMethodName,
  6069. }
  6070. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6071. return srv.(GoPmpClientServer).UpgradePkgPlanUpdate(ctx, req.(*UpgradePkgPlanVo))
  6072. }
  6073. return interceptor(ctx, in, info, handler)
  6074. }
  6075. func _GoPmpClient_UpgradePkgPlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6076. in := new(Ids)
  6077. if err := dec(in); err != nil {
  6078. return nil, err
  6079. }
  6080. if interceptor == nil {
  6081. return srv.(GoPmpClientServer).UpgradePkgPlanDel(ctx, in)
  6082. }
  6083. info := &grpc.UnaryServerInfo{
  6084. Server: srv,
  6085. FullMethod: GoPmpClient_UpgradePkgPlanDel_FullMethodName,
  6086. }
  6087. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6088. return srv.(GoPmpClientServer).UpgradePkgPlanDel(ctx, req.(*Ids))
  6089. }
  6090. return interceptor(ctx, in, info, handler)
  6091. }
  6092. func _GoPmpClient_UpgradePkgPlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6093. in := new(UpgradePkgPlanVo)
  6094. if err := dec(in); err != nil {
  6095. return nil, err
  6096. }
  6097. if interceptor == nil {
  6098. return srv.(GoPmpClientServer).UpgradePkgPlanGet(ctx, in)
  6099. }
  6100. info := &grpc.UnaryServerInfo{
  6101. Server: srv,
  6102. FullMethod: GoPmpClient_UpgradePkgPlanGet_FullMethodName,
  6103. }
  6104. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6105. return srv.(GoPmpClientServer).UpgradePkgPlanGet(ctx, req.(*UpgradePkgPlanVo))
  6106. }
  6107. return interceptor(ctx, in, info, handler)
  6108. }
  6109. func _GoPmpClient_UpgradePkgPlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6110. in := new(UpgradePkgPlanListReq)
  6111. if err := dec(in); err != nil {
  6112. return nil, err
  6113. }
  6114. if interceptor == nil {
  6115. return srv.(GoPmpClientServer).UpgradePkgPlanList(ctx, in)
  6116. }
  6117. info := &grpc.UnaryServerInfo{
  6118. Server: srv,
  6119. FullMethod: GoPmpClient_UpgradePkgPlanList_FullMethodName,
  6120. }
  6121. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6122. return srv.(GoPmpClientServer).UpgradePkgPlanList(ctx, req.(*UpgradePkgPlanListReq))
  6123. }
  6124. return interceptor(ctx, in, info, handler)
  6125. }
  6126. func _GoPmpClient_UpgradePkgPlanDetailAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6127. in := new(UpgradePkgPlanDetailVo)
  6128. if err := dec(in); err != nil {
  6129. return nil, err
  6130. }
  6131. if interceptor == nil {
  6132. return srv.(GoPmpClientServer).UpgradePkgPlanDetailAdd(ctx, in)
  6133. }
  6134. info := &grpc.UnaryServerInfo{
  6135. Server: srv,
  6136. FullMethod: GoPmpClient_UpgradePkgPlanDetailAdd_FullMethodName,
  6137. }
  6138. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6139. return srv.(GoPmpClientServer).UpgradePkgPlanDetailAdd(ctx, req.(*UpgradePkgPlanDetailVo))
  6140. }
  6141. return interceptor(ctx, in, info, handler)
  6142. }
  6143. func _GoPmpClient_UpgradePkgPlanDetailUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6144. in := new(UpgradePkgPlanDetailVo)
  6145. if err := dec(in); err != nil {
  6146. return nil, err
  6147. }
  6148. if interceptor == nil {
  6149. return srv.(GoPmpClientServer).UpgradePkgPlanDetailUpdate(ctx, in)
  6150. }
  6151. info := &grpc.UnaryServerInfo{
  6152. Server: srv,
  6153. FullMethod: GoPmpClient_UpgradePkgPlanDetailUpdate_FullMethodName,
  6154. }
  6155. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6156. return srv.(GoPmpClientServer).UpgradePkgPlanDetailUpdate(ctx, req.(*UpgradePkgPlanDetailVo))
  6157. }
  6158. return interceptor(ctx, in, info, handler)
  6159. }
  6160. func _GoPmpClient_UpgradePkgPlanDetailDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6161. in := new(Ids)
  6162. if err := dec(in); err != nil {
  6163. return nil, err
  6164. }
  6165. if interceptor == nil {
  6166. return srv.(GoPmpClientServer).UpgradePkgPlanDetailDel(ctx, in)
  6167. }
  6168. info := &grpc.UnaryServerInfo{
  6169. Server: srv,
  6170. FullMethod: GoPmpClient_UpgradePkgPlanDetailDel_FullMethodName,
  6171. }
  6172. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6173. return srv.(GoPmpClientServer).UpgradePkgPlanDetailDel(ctx, req.(*Ids))
  6174. }
  6175. return interceptor(ctx, in, info, handler)
  6176. }
  6177. func _GoPmpClient_UpgradePkgPlanDetailGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6178. in := new(UpgradePkgPlanDetailVo)
  6179. if err := dec(in); err != nil {
  6180. return nil, err
  6181. }
  6182. if interceptor == nil {
  6183. return srv.(GoPmpClientServer).UpgradePkgPlanDetailGet(ctx, in)
  6184. }
  6185. info := &grpc.UnaryServerInfo{
  6186. Server: srv,
  6187. FullMethod: GoPmpClient_UpgradePkgPlanDetailGet_FullMethodName,
  6188. }
  6189. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6190. return srv.(GoPmpClientServer).UpgradePkgPlanDetailGet(ctx, req.(*UpgradePkgPlanDetailVo))
  6191. }
  6192. return interceptor(ctx, in, info, handler)
  6193. }
  6194. func _GoPmpClient_UpgradePkgPlanDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6195. in := new(UpgradePkgPlanDetailListReq)
  6196. if err := dec(in); err != nil {
  6197. return nil, err
  6198. }
  6199. if interceptor == nil {
  6200. return srv.(GoPmpClientServer).UpgradePkgPlanDetailList(ctx, in)
  6201. }
  6202. info := &grpc.UnaryServerInfo{
  6203. Server: srv,
  6204. FullMethod: GoPmpClient_UpgradePkgPlanDetailList_FullMethodName,
  6205. }
  6206. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6207. return srv.(GoPmpClientServer).UpgradePkgPlanDetailList(ctx, req.(*UpgradePkgPlanDetailListReq))
  6208. }
  6209. return interceptor(ctx, in, info, handler)
  6210. }
  6211. func _GoPmpClient_UpgradeResPlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6212. in := new(UpgradeResPlanVo)
  6213. if err := dec(in); err != nil {
  6214. return nil, err
  6215. }
  6216. if interceptor == nil {
  6217. return srv.(GoPmpClientServer).UpgradeResPlanAdd(ctx, in)
  6218. }
  6219. info := &grpc.UnaryServerInfo{
  6220. Server: srv,
  6221. FullMethod: GoPmpClient_UpgradeResPlanAdd_FullMethodName,
  6222. }
  6223. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6224. return srv.(GoPmpClientServer).UpgradeResPlanAdd(ctx, req.(*UpgradeResPlanVo))
  6225. }
  6226. return interceptor(ctx, in, info, handler)
  6227. }
  6228. func _GoPmpClient_UpgradeResPlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6229. in := new(UpgradeResPlanVo)
  6230. if err := dec(in); err != nil {
  6231. return nil, err
  6232. }
  6233. if interceptor == nil {
  6234. return srv.(GoPmpClientServer).UpgradeResPlanUpdate(ctx, in)
  6235. }
  6236. info := &grpc.UnaryServerInfo{
  6237. Server: srv,
  6238. FullMethod: GoPmpClient_UpgradeResPlanUpdate_FullMethodName,
  6239. }
  6240. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6241. return srv.(GoPmpClientServer).UpgradeResPlanUpdate(ctx, req.(*UpgradeResPlanVo))
  6242. }
  6243. return interceptor(ctx, in, info, handler)
  6244. }
  6245. func _GoPmpClient_UpgradeResPlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6246. in := new(Ids)
  6247. if err := dec(in); err != nil {
  6248. return nil, err
  6249. }
  6250. if interceptor == nil {
  6251. return srv.(GoPmpClientServer).UpgradeResPlanDel(ctx, in)
  6252. }
  6253. info := &grpc.UnaryServerInfo{
  6254. Server: srv,
  6255. FullMethod: GoPmpClient_UpgradeResPlanDel_FullMethodName,
  6256. }
  6257. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6258. return srv.(GoPmpClientServer).UpgradeResPlanDel(ctx, req.(*Ids))
  6259. }
  6260. return interceptor(ctx, in, info, handler)
  6261. }
  6262. func _GoPmpClient_UpgradeResPlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6263. in := new(UpgradeResPlanVo)
  6264. if err := dec(in); err != nil {
  6265. return nil, err
  6266. }
  6267. if interceptor == nil {
  6268. return srv.(GoPmpClientServer).UpgradeResPlanGet(ctx, in)
  6269. }
  6270. info := &grpc.UnaryServerInfo{
  6271. Server: srv,
  6272. FullMethod: GoPmpClient_UpgradeResPlanGet_FullMethodName,
  6273. }
  6274. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6275. return srv.(GoPmpClientServer).UpgradeResPlanGet(ctx, req.(*UpgradeResPlanVo))
  6276. }
  6277. return interceptor(ctx, in, info, handler)
  6278. }
  6279. func _GoPmpClient_UpgradeResPlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6280. in := new(UpgradeResPlanListReq)
  6281. if err := dec(in); err != nil {
  6282. return nil, err
  6283. }
  6284. if interceptor == nil {
  6285. return srv.(GoPmpClientServer).UpgradeResPlanList(ctx, in)
  6286. }
  6287. info := &grpc.UnaryServerInfo{
  6288. Server: srv,
  6289. FullMethod: GoPmpClient_UpgradeResPlanList_FullMethodName,
  6290. }
  6291. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6292. return srv.(GoPmpClientServer).UpgradeResPlanList(ctx, req.(*UpgradeResPlanListReq))
  6293. }
  6294. return interceptor(ctx, in, info, handler)
  6295. }
  6296. func _GoPmpClient_UpgradeResPlanDetailAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6297. in := new(UpgradeResPlanDetailVo)
  6298. if err := dec(in); err != nil {
  6299. return nil, err
  6300. }
  6301. if interceptor == nil {
  6302. return srv.(GoPmpClientServer).UpgradeResPlanDetailAdd(ctx, in)
  6303. }
  6304. info := &grpc.UnaryServerInfo{
  6305. Server: srv,
  6306. FullMethod: GoPmpClient_UpgradeResPlanDetailAdd_FullMethodName,
  6307. }
  6308. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6309. return srv.(GoPmpClientServer).UpgradeResPlanDetailAdd(ctx, req.(*UpgradeResPlanDetailVo))
  6310. }
  6311. return interceptor(ctx, in, info, handler)
  6312. }
  6313. func _GoPmpClient_UpgradeResPlanDetailUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6314. in := new(UpgradeResPlanDetailVo)
  6315. if err := dec(in); err != nil {
  6316. return nil, err
  6317. }
  6318. if interceptor == nil {
  6319. return srv.(GoPmpClientServer).UpgradeResPlanDetailUpdate(ctx, in)
  6320. }
  6321. info := &grpc.UnaryServerInfo{
  6322. Server: srv,
  6323. FullMethod: GoPmpClient_UpgradeResPlanDetailUpdate_FullMethodName,
  6324. }
  6325. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6326. return srv.(GoPmpClientServer).UpgradeResPlanDetailUpdate(ctx, req.(*UpgradeResPlanDetailVo))
  6327. }
  6328. return interceptor(ctx, in, info, handler)
  6329. }
  6330. func _GoPmpClient_UpgradeResPlanDetailDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6331. in := new(Ids)
  6332. if err := dec(in); err != nil {
  6333. return nil, err
  6334. }
  6335. if interceptor == nil {
  6336. return srv.(GoPmpClientServer).UpgradeResPlanDetailDel(ctx, in)
  6337. }
  6338. info := &grpc.UnaryServerInfo{
  6339. Server: srv,
  6340. FullMethod: GoPmpClient_UpgradeResPlanDetailDel_FullMethodName,
  6341. }
  6342. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6343. return srv.(GoPmpClientServer).UpgradeResPlanDetailDel(ctx, req.(*Ids))
  6344. }
  6345. return interceptor(ctx, in, info, handler)
  6346. }
  6347. func _GoPmpClient_UpgradeResPlanDetailGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6348. in := new(UpgradeResPlanDetailVo)
  6349. if err := dec(in); err != nil {
  6350. return nil, err
  6351. }
  6352. if interceptor == nil {
  6353. return srv.(GoPmpClientServer).UpgradeResPlanDetailGet(ctx, in)
  6354. }
  6355. info := &grpc.UnaryServerInfo{
  6356. Server: srv,
  6357. FullMethod: GoPmpClient_UpgradeResPlanDetailGet_FullMethodName,
  6358. }
  6359. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6360. return srv.(GoPmpClientServer).UpgradeResPlanDetailGet(ctx, req.(*UpgradeResPlanDetailVo))
  6361. }
  6362. return interceptor(ctx, in, info, handler)
  6363. }
  6364. func _GoPmpClient_UpgradeResPlanDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6365. in := new(UpgradeResPlanDetailListReq)
  6366. if err := dec(in); err != nil {
  6367. return nil, err
  6368. }
  6369. if interceptor == nil {
  6370. return srv.(GoPmpClientServer).UpgradeResPlanDetailList(ctx, in)
  6371. }
  6372. info := &grpc.UnaryServerInfo{
  6373. Server: srv,
  6374. FullMethod: GoPmpClient_UpgradeResPlanDetailList_FullMethodName,
  6375. }
  6376. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6377. return srv.(GoPmpClientServer).UpgradeResPlanDetailList(ctx, req.(*UpgradeResPlanDetailListReq))
  6378. }
  6379. return interceptor(ctx, in, info, handler)
  6380. }
  6381. func _GoPmpClient_AdPlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6382. in := new(AdPlanVo)
  6383. if err := dec(in); err != nil {
  6384. return nil, err
  6385. }
  6386. if interceptor == nil {
  6387. return srv.(GoPmpClientServer).AdPlanAdd(ctx, in)
  6388. }
  6389. info := &grpc.UnaryServerInfo{
  6390. Server: srv,
  6391. FullMethod: GoPmpClient_AdPlanAdd_FullMethodName,
  6392. }
  6393. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6394. return srv.(GoPmpClientServer).AdPlanAdd(ctx, req.(*AdPlanVo))
  6395. }
  6396. return interceptor(ctx, in, info, handler)
  6397. }
  6398. func _GoPmpClient_AdPlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6399. in := new(AdPlanVo)
  6400. if err := dec(in); err != nil {
  6401. return nil, err
  6402. }
  6403. if interceptor == nil {
  6404. return srv.(GoPmpClientServer).AdPlanUpdate(ctx, in)
  6405. }
  6406. info := &grpc.UnaryServerInfo{
  6407. Server: srv,
  6408. FullMethod: GoPmpClient_AdPlanUpdate_FullMethodName,
  6409. }
  6410. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6411. return srv.(GoPmpClientServer).AdPlanUpdate(ctx, req.(*AdPlanVo))
  6412. }
  6413. return interceptor(ctx, in, info, handler)
  6414. }
  6415. func _GoPmpClient_AdPlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6416. in := new(Ids)
  6417. if err := dec(in); err != nil {
  6418. return nil, err
  6419. }
  6420. if interceptor == nil {
  6421. return srv.(GoPmpClientServer).AdPlanDel(ctx, in)
  6422. }
  6423. info := &grpc.UnaryServerInfo{
  6424. Server: srv,
  6425. FullMethod: GoPmpClient_AdPlanDel_FullMethodName,
  6426. }
  6427. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6428. return srv.(GoPmpClientServer).AdPlanDel(ctx, req.(*Ids))
  6429. }
  6430. return interceptor(ctx, in, info, handler)
  6431. }
  6432. func _GoPmpClient_AdPlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6433. in := new(AdPlanVo)
  6434. if err := dec(in); err != nil {
  6435. return nil, err
  6436. }
  6437. if interceptor == nil {
  6438. return srv.(GoPmpClientServer).AdPlanGet(ctx, in)
  6439. }
  6440. info := &grpc.UnaryServerInfo{
  6441. Server: srv,
  6442. FullMethod: GoPmpClient_AdPlanGet_FullMethodName,
  6443. }
  6444. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6445. return srv.(GoPmpClientServer).AdPlanGet(ctx, req.(*AdPlanVo))
  6446. }
  6447. return interceptor(ctx, in, info, handler)
  6448. }
  6449. func _GoPmpClient_AdPlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6450. in := new(AdPlanListReq)
  6451. if err := dec(in); err != nil {
  6452. return nil, err
  6453. }
  6454. if interceptor == nil {
  6455. return srv.(GoPmpClientServer).AdPlanList(ctx, in)
  6456. }
  6457. info := &grpc.UnaryServerInfo{
  6458. Server: srv,
  6459. FullMethod: GoPmpClient_AdPlanList_FullMethodName,
  6460. }
  6461. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6462. return srv.(GoPmpClientServer).AdPlanList(ctx, req.(*AdPlanListReq))
  6463. }
  6464. return interceptor(ctx, in, info, handler)
  6465. }
  6466. func _GoPmpClient_AdPlanDetailAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6467. in := new(AdPlanDetailVo)
  6468. if err := dec(in); err != nil {
  6469. return nil, err
  6470. }
  6471. if interceptor == nil {
  6472. return srv.(GoPmpClientServer).AdPlanDetailAdd(ctx, in)
  6473. }
  6474. info := &grpc.UnaryServerInfo{
  6475. Server: srv,
  6476. FullMethod: GoPmpClient_AdPlanDetailAdd_FullMethodName,
  6477. }
  6478. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6479. return srv.(GoPmpClientServer).AdPlanDetailAdd(ctx, req.(*AdPlanDetailVo))
  6480. }
  6481. return interceptor(ctx, in, info, handler)
  6482. }
  6483. func _GoPmpClient_AdPlanDetailUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6484. in := new(AdPlanDetailVo)
  6485. if err := dec(in); err != nil {
  6486. return nil, err
  6487. }
  6488. if interceptor == nil {
  6489. return srv.(GoPmpClientServer).AdPlanDetailUpdate(ctx, in)
  6490. }
  6491. info := &grpc.UnaryServerInfo{
  6492. Server: srv,
  6493. FullMethod: GoPmpClient_AdPlanDetailUpdate_FullMethodName,
  6494. }
  6495. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6496. return srv.(GoPmpClientServer).AdPlanDetailUpdate(ctx, req.(*AdPlanDetailVo))
  6497. }
  6498. return interceptor(ctx, in, info, handler)
  6499. }
  6500. func _GoPmpClient_AdPlanDetailDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6501. in := new(Ids)
  6502. if err := dec(in); err != nil {
  6503. return nil, err
  6504. }
  6505. if interceptor == nil {
  6506. return srv.(GoPmpClientServer).AdPlanDetailDel(ctx, in)
  6507. }
  6508. info := &grpc.UnaryServerInfo{
  6509. Server: srv,
  6510. FullMethod: GoPmpClient_AdPlanDetailDel_FullMethodName,
  6511. }
  6512. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6513. return srv.(GoPmpClientServer).AdPlanDetailDel(ctx, req.(*Ids))
  6514. }
  6515. return interceptor(ctx, in, info, handler)
  6516. }
  6517. func _GoPmpClient_AdPlanDetailGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6518. in := new(AdPlanDetailVo)
  6519. if err := dec(in); err != nil {
  6520. return nil, err
  6521. }
  6522. if interceptor == nil {
  6523. return srv.(GoPmpClientServer).AdPlanDetailGet(ctx, in)
  6524. }
  6525. info := &grpc.UnaryServerInfo{
  6526. Server: srv,
  6527. FullMethod: GoPmpClient_AdPlanDetailGet_FullMethodName,
  6528. }
  6529. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6530. return srv.(GoPmpClientServer).AdPlanDetailGet(ctx, req.(*AdPlanDetailVo))
  6531. }
  6532. return interceptor(ctx, in, info, handler)
  6533. }
  6534. func _GoPmpClient_AdPlanDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6535. in := new(AdPlanDetailListReq)
  6536. if err := dec(in); err != nil {
  6537. return nil, err
  6538. }
  6539. if interceptor == nil {
  6540. return srv.(GoPmpClientServer).AdPlanDetailList(ctx, in)
  6541. }
  6542. info := &grpc.UnaryServerInfo{
  6543. Server: srv,
  6544. FullMethod: GoPmpClient_AdPlanDetailList_FullMethodName,
  6545. }
  6546. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6547. return srv.(GoPmpClientServer).AdPlanDetailList(ctx, req.(*AdPlanDetailListReq))
  6548. }
  6549. return interceptor(ctx, in, info, handler)
  6550. }
  6551. func _GoPmpClient_AdGlobalConfigGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6552. in := new(AdGlobalConfigGetReq)
  6553. if err := dec(in); err != nil {
  6554. return nil, err
  6555. }
  6556. if interceptor == nil {
  6557. return srv.(GoPmpClientServer).AdGlobalConfigGet(ctx, in)
  6558. }
  6559. info := &grpc.UnaryServerInfo{
  6560. Server: srv,
  6561. FullMethod: GoPmpClient_AdGlobalConfigGet_FullMethodName,
  6562. }
  6563. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6564. return srv.(GoPmpClientServer).AdGlobalConfigGet(ctx, req.(*AdGlobalConfigGetReq))
  6565. }
  6566. return interceptor(ctx, in, info, handler)
  6567. }
  6568. func _GoPmpClient_AdGlobalConfigUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6569. in := new(AdGlobalConfigVo)
  6570. if err := dec(in); err != nil {
  6571. return nil, err
  6572. }
  6573. if interceptor == nil {
  6574. return srv.(GoPmpClientServer).AdGlobalConfigUpdate(ctx, in)
  6575. }
  6576. info := &grpc.UnaryServerInfo{
  6577. Server: srv,
  6578. FullMethod: GoPmpClient_AdGlobalConfigUpdate_FullMethodName,
  6579. }
  6580. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6581. return srv.(GoPmpClientServer).AdGlobalConfigUpdate(ctx, req.(*AdGlobalConfigVo))
  6582. }
  6583. return interceptor(ctx, in, info, handler)
  6584. }
  6585. func _GoPmpClient_JobBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6586. in := new(JobBatchVo)
  6587. if err := dec(in); err != nil {
  6588. return nil, err
  6589. }
  6590. if interceptor == nil {
  6591. return srv.(GoPmpClientServer).JobBatchAdd(ctx, in)
  6592. }
  6593. info := &grpc.UnaryServerInfo{
  6594. Server: srv,
  6595. FullMethod: GoPmpClient_JobBatchAdd_FullMethodName,
  6596. }
  6597. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6598. return srv.(GoPmpClientServer).JobBatchAdd(ctx, req.(*JobBatchVo))
  6599. }
  6600. return interceptor(ctx, in, info, handler)
  6601. }
  6602. func _GoPmpClient_JobBatchAddWithTasks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6603. in := new(JobBatchWithTasksVo)
  6604. if err := dec(in); err != nil {
  6605. return nil, err
  6606. }
  6607. if interceptor == nil {
  6608. return srv.(GoPmpClientServer).JobBatchAddWithTasks(ctx, in)
  6609. }
  6610. info := &grpc.UnaryServerInfo{
  6611. Server: srv,
  6612. FullMethod: GoPmpClient_JobBatchAddWithTasks_FullMethodName,
  6613. }
  6614. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6615. return srv.(GoPmpClientServer).JobBatchAddWithTasks(ctx, req.(*JobBatchWithTasksVo))
  6616. }
  6617. return interceptor(ctx, in, info, handler)
  6618. }
  6619. func _GoPmpClient_JobBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6620. in := new(JobBatchVo)
  6621. if err := dec(in); err != nil {
  6622. return nil, err
  6623. }
  6624. if interceptor == nil {
  6625. return srv.(GoPmpClientServer).JobBatchUpdate(ctx, in)
  6626. }
  6627. info := &grpc.UnaryServerInfo{
  6628. Server: srv,
  6629. FullMethod: GoPmpClient_JobBatchUpdate_FullMethodName,
  6630. }
  6631. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6632. return srv.(GoPmpClientServer).JobBatchUpdate(ctx, req.(*JobBatchVo))
  6633. }
  6634. return interceptor(ctx, in, info, handler)
  6635. }
  6636. func _GoPmpClient_JobBatchDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6637. in := new(Ids)
  6638. if err := dec(in); err != nil {
  6639. return nil, err
  6640. }
  6641. if interceptor == nil {
  6642. return srv.(GoPmpClientServer).JobBatchDel(ctx, in)
  6643. }
  6644. info := &grpc.UnaryServerInfo{
  6645. Server: srv,
  6646. FullMethod: GoPmpClient_JobBatchDel_FullMethodName,
  6647. }
  6648. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6649. return srv.(GoPmpClientServer).JobBatchDel(ctx, req.(*Ids))
  6650. }
  6651. return interceptor(ctx, in, info, handler)
  6652. }
  6653. func _GoPmpClient_JobBatchGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6654. in := new(JobBatchVo)
  6655. if err := dec(in); err != nil {
  6656. return nil, err
  6657. }
  6658. if interceptor == nil {
  6659. return srv.(GoPmpClientServer).JobBatchGet(ctx, in)
  6660. }
  6661. info := &grpc.UnaryServerInfo{
  6662. Server: srv,
  6663. FullMethod: GoPmpClient_JobBatchGet_FullMethodName,
  6664. }
  6665. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6666. return srv.(GoPmpClientServer).JobBatchGet(ctx, req.(*JobBatchVo))
  6667. }
  6668. return interceptor(ctx, in, info, handler)
  6669. }
  6670. func _GoPmpClient_JobBatchGetWithTasks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6671. in := new(JobBatchVo)
  6672. if err := dec(in); err != nil {
  6673. return nil, err
  6674. }
  6675. if interceptor == nil {
  6676. return srv.(GoPmpClientServer).JobBatchGetWithTasks(ctx, in)
  6677. }
  6678. info := &grpc.UnaryServerInfo{
  6679. Server: srv,
  6680. FullMethod: GoPmpClient_JobBatchGetWithTasks_FullMethodName,
  6681. }
  6682. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6683. return srv.(GoPmpClientServer).JobBatchGetWithTasks(ctx, req.(*JobBatchVo))
  6684. }
  6685. return interceptor(ctx, in, info, handler)
  6686. }
  6687. func _GoPmpClient_JobBatchList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6688. in := new(JobBatchListReq)
  6689. if err := dec(in); err != nil {
  6690. return nil, err
  6691. }
  6692. if interceptor == nil {
  6693. return srv.(GoPmpClientServer).JobBatchList(ctx, in)
  6694. }
  6695. info := &grpc.UnaryServerInfo{
  6696. Server: srv,
  6697. FullMethod: GoPmpClient_JobBatchList_FullMethodName,
  6698. }
  6699. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6700. return srv.(GoPmpClientServer).JobBatchList(ctx, req.(*JobBatchListReq))
  6701. }
  6702. return interceptor(ctx, in, info, handler)
  6703. }
  6704. func _GoPmpClient_JobBatchListWithTasks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6705. in := new(JobBatchListReq)
  6706. if err := dec(in); err != nil {
  6707. return nil, err
  6708. }
  6709. if interceptor == nil {
  6710. return srv.(GoPmpClientServer).JobBatchListWithTasks(ctx, in)
  6711. }
  6712. info := &grpc.UnaryServerInfo{
  6713. Server: srv,
  6714. FullMethod: GoPmpClient_JobBatchListWithTasks_FullMethodName,
  6715. }
  6716. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6717. return srv.(GoPmpClientServer).JobBatchListWithTasks(ctx, req.(*JobBatchListReq))
  6718. }
  6719. return interceptor(ctx, in, info, handler)
  6720. }
  6721. func _GoPmpClient_JobTasksAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6722. in := new(JobTasksVo)
  6723. if err := dec(in); err != nil {
  6724. return nil, err
  6725. }
  6726. if interceptor == nil {
  6727. return srv.(GoPmpClientServer).JobTasksAdd(ctx, in)
  6728. }
  6729. info := &grpc.UnaryServerInfo{
  6730. Server: srv,
  6731. FullMethod: GoPmpClient_JobTasksAdd_FullMethodName,
  6732. }
  6733. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6734. return srv.(GoPmpClientServer).JobTasksAdd(ctx, req.(*JobTasksVo))
  6735. }
  6736. return interceptor(ctx, in, info, handler)
  6737. }
  6738. func _GoPmpClient_JobTasksUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6739. in := new(JobTasksVo)
  6740. if err := dec(in); err != nil {
  6741. return nil, err
  6742. }
  6743. if interceptor == nil {
  6744. return srv.(GoPmpClientServer).JobTasksUpdate(ctx, in)
  6745. }
  6746. info := &grpc.UnaryServerInfo{
  6747. Server: srv,
  6748. FullMethod: GoPmpClient_JobTasksUpdate_FullMethodName,
  6749. }
  6750. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6751. return srv.(GoPmpClientServer).JobTasksUpdate(ctx, req.(*JobTasksVo))
  6752. }
  6753. return interceptor(ctx, in, info, handler)
  6754. }
  6755. func _GoPmpClient_JobTasksDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6756. in := new(Ids)
  6757. if err := dec(in); err != nil {
  6758. return nil, err
  6759. }
  6760. if interceptor == nil {
  6761. return srv.(GoPmpClientServer).JobTasksDel(ctx, in)
  6762. }
  6763. info := &grpc.UnaryServerInfo{
  6764. Server: srv,
  6765. FullMethod: GoPmpClient_JobTasksDel_FullMethodName,
  6766. }
  6767. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6768. return srv.(GoPmpClientServer).JobTasksDel(ctx, req.(*Ids))
  6769. }
  6770. return interceptor(ctx, in, info, handler)
  6771. }
  6772. func _GoPmpClient_JobTasksGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6773. in := new(JobTasksVo)
  6774. if err := dec(in); err != nil {
  6775. return nil, err
  6776. }
  6777. if interceptor == nil {
  6778. return srv.(GoPmpClientServer).JobTasksGet(ctx, in)
  6779. }
  6780. info := &grpc.UnaryServerInfo{
  6781. Server: srv,
  6782. FullMethod: GoPmpClient_JobTasksGet_FullMethodName,
  6783. }
  6784. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6785. return srv.(GoPmpClientServer).JobTasksGet(ctx, req.(*JobTasksVo))
  6786. }
  6787. return interceptor(ctx, in, info, handler)
  6788. }
  6789. func _GoPmpClient_JobTasksList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6790. in := new(JobTasksListReq)
  6791. if err := dec(in); err != nil {
  6792. return nil, err
  6793. }
  6794. if interceptor == nil {
  6795. return srv.(GoPmpClientServer).JobTasksList(ctx, in)
  6796. }
  6797. info := &grpc.UnaryServerInfo{
  6798. Server: srv,
  6799. FullMethod: GoPmpClient_JobTasksList_FullMethodName,
  6800. }
  6801. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6802. return srv.(GoPmpClientServer).JobTasksList(ctx, req.(*JobTasksListReq))
  6803. }
  6804. return interceptor(ctx, in, info, handler)
  6805. }
  6806. func _GoPmpClient_DeployConfigAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6807. in := new(DeployConfigVo)
  6808. if err := dec(in); err != nil {
  6809. return nil, err
  6810. }
  6811. if interceptor == nil {
  6812. return srv.(GoPmpClientServer).DeployConfigAdd(ctx, in)
  6813. }
  6814. info := &grpc.UnaryServerInfo{
  6815. Server: srv,
  6816. FullMethod: GoPmpClient_DeployConfigAdd_FullMethodName,
  6817. }
  6818. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6819. return srv.(GoPmpClientServer).DeployConfigAdd(ctx, req.(*DeployConfigVo))
  6820. }
  6821. return interceptor(ctx, in, info, handler)
  6822. }
  6823. func _GoPmpClient_DeployConfigUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6824. in := new(DeployConfigVo)
  6825. if err := dec(in); err != nil {
  6826. return nil, err
  6827. }
  6828. if interceptor == nil {
  6829. return srv.(GoPmpClientServer).DeployConfigUpdate(ctx, in)
  6830. }
  6831. info := &grpc.UnaryServerInfo{
  6832. Server: srv,
  6833. FullMethod: GoPmpClient_DeployConfigUpdate_FullMethodName,
  6834. }
  6835. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6836. return srv.(GoPmpClientServer).DeployConfigUpdate(ctx, req.(*DeployConfigVo))
  6837. }
  6838. return interceptor(ctx, in, info, handler)
  6839. }
  6840. func _GoPmpClient_DeployConfigDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6841. in := new(Ids)
  6842. if err := dec(in); err != nil {
  6843. return nil, err
  6844. }
  6845. if interceptor == nil {
  6846. return srv.(GoPmpClientServer).DeployConfigDel(ctx, in)
  6847. }
  6848. info := &grpc.UnaryServerInfo{
  6849. Server: srv,
  6850. FullMethod: GoPmpClient_DeployConfigDel_FullMethodName,
  6851. }
  6852. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6853. return srv.(GoPmpClientServer).DeployConfigDel(ctx, req.(*Ids))
  6854. }
  6855. return interceptor(ctx, in, info, handler)
  6856. }
  6857. func _GoPmpClient_DeployConfigGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6858. in := new(DeployConfigVo)
  6859. if err := dec(in); err != nil {
  6860. return nil, err
  6861. }
  6862. if interceptor == nil {
  6863. return srv.(GoPmpClientServer).DeployConfigGet(ctx, in)
  6864. }
  6865. info := &grpc.UnaryServerInfo{
  6866. Server: srv,
  6867. FullMethod: GoPmpClient_DeployConfigGet_FullMethodName,
  6868. }
  6869. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6870. return srv.(GoPmpClientServer).DeployConfigGet(ctx, req.(*DeployConfigVo))
  6871. }
  6872. return interceptor(ctx, in, info, handler)
  6873. }
  6874. func _GoPmpClient_DeployConfigList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6875. in := new(DeployConfigListReq)
  6876. if err := dec(in); err != nil {
  6877. return nil, err
  6878. }
  6879. if interceptor == nil {
  6880. return srv.(GoPmpClientServer).DeployConfigList(ctx, in)
  6881. }
  6882. info := &grpc.UnaryServerInfo{
  6883. Server: srv,
  6884. FullMethod: GoPmpClient_DeployConfigList_FullMethodName,
  6885. }
  6886. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6887. return srv.(GoPmpClientServer).DeployConfigList(ctx, req.(*DeployConfigListReq))
  6888. }
  6889. return interceptor(ctx, in, info, handler)
  6890. }
  6891. func _GoPmpClient_OperationLogAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6892. in := new(OperationLogVo)
  6893. if err := dec(in); err != nil {
  6894. return nil, err
  6895. }
  6896. if interceptor == nil {
  6897. return srv.(GoPmpClientServer).OperationLogAdd(ctx, in)
  6898. }
  6899. info := &grpc.UnaryServerInfo{
  6900. Server: srv,
  6901. FullMethod: GoPmpClient_OperationLogAdd_FullMethodName,
  6902. }
  6903. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6904. return srv.(GoPmpClientServer).OperationLogAdd(ctx, req.(*OperationLogVo))
  6905. }
  6906. return interceptor(ctx, in, info, handler)
  6907. }
  6908. func _GoPmpClient_OperationLogUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6909. in := new(OperationLogVo)
  6910. if err := dec(in); err != nil {
  6911. return nil, err
  6912. }
  6913. if interceptor == nil {
  6914. return srv.(GoPmpClientServer).OperationLogUpdate(ctx, in)
  6915. }
  6916. info := &grpc.UnaryServerInfo{
  6917. Server: srv,
  6918. FullMethod: GoPmpClient_OperationLogUpdate_FullMethodName,
  6919. }
  6920. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6921. return srv.(GoPmpClientServer).OperationLogUpdate(ctx, req.(*OperationLogVo))
  6922. }
  6923. return interceptor(ctx, in, info, handler)
  6924. }
  6925. func _GoPmpClient_OperationLogGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6926. in := new(OperationLogVo)
  6927. if err := dec(in); err != nil {
  6928. return nil, err
  6929. }
  6930. if interceptor == nil {
  6931. return srv.(GoPmpClientServer).OperationLogGet(ctx, in)
  6932. }
  6933. info := &grpc.UnaryServerInfo{
  6934. Server: srv,
  6935. FullMethod: GoPmpClient_OperationLogGet_FullMethodName,
  6936. }
  6937. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6938. return srv.(GoPmpClientServer).OperationLogGet(ctx, req.(*OperationLogVo))
  6939. }
  6940. return interceptor(ctx, in, info, handler)
  6941. }
  6942. func _GoPmpClient_OperationLogList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6943. in := new(OperationLogListReq)
  6944. if err := dec(in); err != nil {
  6945. return nil, err
  6946. }
  6947. if interceptor == nil {
  6948. return srv.(GoPmpClientServer).OperationLogList(ctx, in)
  6949. }
  6950. info := &grpc.UnaryServerInfo{
  6951. Server: srv,
  6952. FullMethod: GoPmpClient_OperationLogList_FullMethodName,
  6953. }
  6954. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6955. return srv.(GoPmpClientServer).OperationLogList(ctx, req.(*OperationLogListReq))
  6956. }
  6957. return interceptor(ctx, in, info, handler)
  6958. }
  6959. func _GoPmpClient_AnnouncePlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6960. in := new(AnnouncePlanVo)
  6961. if err := dec(in); err != nil {
  6962. return nil, err
  6963. }
  6964. if interceptor == nil {
  6965. return srv.(GoPmpClientServer).AnnouncePlanAdd(ctx, in)
  6966. }
  6967. info := &grpc.UnaryServerInfo{
  6968. Server: srv,
  6969. FullMethod: GoPmpClient_AnnouncePlanAdd_FullMethodName,
  6970. }
  6971. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6972. return srv.(GoPmpClientServer).AnnouncePlanAdd(ctx, req.(*AnnouncePlanVo))
  6973. }
  6974. return interceptor(ctx, in, info, handler)
  6975. }
  6976. func _GoPmpClient_AnnouncePlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6977. in := new(AnnouncePlanVo)
  6978. if err := dec(in); err != nil {
  6979. return nil, err
  6980. }
  6981. if interceptor == nil {
  6982. return srv.(GoPmpClientServer).AnnouncePlanUpdate(ctx, in)
  6983. }
  6984. info := &grpc.UnaryServerInfo{
  6985. Server: srv,
  6986. FullMethod: GoPmpClient_AnnouncePlanUpdate_FullMethodName,
  6987. }
  6988. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  6989. return srv.(GoPmpClientServer).AnnouncePlanUpdate(ctx, req.(*AnnouncePlanVo))
  6990. }
  6991. return interceptor(ctx, in, info, handler)
  6992. }
  6993. func _GoPmpClient_AnnouncePlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  6994. in := new(Ids)
  6995. if err := dec(in); err != nil {
  6996. return nil, err
  6997. }
  6998. if interceptor == nil {
  6999. return srv.(GoPmpClientServer).AnnouncePlanDel(ctx, in)
  7000. }
  7001. info := &grpc.UnaryServerInfo{
  7002. Server: srv,
  7003. FullMethod: GoPmpClient_AnnouncePlanDel_FullMethodName,
  7004. }
  7005. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7006. return srv.(GoPmpClientServer).AnnouncePlanDel(ctx, req.(*Ids))
  7007. }
  7008. return interceptor(ctx, in, info, handler)
  7009. }
  7010. func _GoPmpClient_AnnouncePlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7011. in := new(AnnouncePlanVo)
  7012. if err := dec(in); err != nil {
  7013. return nil, err
  7014. }
  7015. if interceptor == nil {
  7016. return srv.(GoPmpClientServer).AnnouncePlanGet(ctx, in)
  7017. }
  7018. info := &grpc.UnaryServerInfo{
  7019. Server: srv,
  7020. FullMethod: GoPmpClient_AnnouncePlanGet_FullMethodName,
  7021. }
  7022. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7023. return srv.(GoPmpClientServer).AnnouncePlanGet(ctx, req.(*AnnouncePlanVo))
  7024. }
  7025. return interceptor(ctx, in, info, handler)
  7026. }
  7027. func _GoPmpClient_AnnouncePlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7028. in := new(AnnouncePlanListReq)
  7029. if err := dec(in); err != nil {
  7030. return nil, err
  7031. }
  7032. if interceptor == nil {
  7033. return srv.(GoPmpClientServer).AnnouncePlanList(ctx, in)
  7034. }
  7035. info := &grpc.UnaryServerInfo{
  7036. Server: srv,
  7037. FullMethod: GoPmpClient_AnnouncePlanList_FullMethodName,
  7038. }
  7039. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7040. return srv.(GoPmpClientServer).AnnouncePlanList(ctx, req.(*AnnouncePlanListReq))
  7041. }
  7042. return interceptor(ctx, in, info, handler)
  7043. }
  7044. func _GoPmpClient_AnnouncePlanDetailAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7045. in := new(AnnouncePlanDetailVo)
  7046. if err := dec(in); err != nil {
  7047. return nil, err
  7048. }
  7049. if interceptor == nil {
  7050. return srv.(GoPmpClientServer).AnnouncePlanDetailAdd(ctx, in)
  7051. }
  7052. info := &grpc.UnaryServerInfo{
  7053. Server: srv,
  7054. FullMethod: GoPmpClient_AnnouncePlanDetailAdd_FullMethodName,
  7055. }
  7056. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7057. return srv.(GoPmpClientServer).AnnouncePlanDetailAdd(ctx, req.(*AnnouncePlanDetailVo))
  7058. }
  7059. return interceptor(ctx, in, info, handler)
  7060. }
  7061. func _GoPmpClient_AnnouncePlanDetailUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7062. in := new(AnnouncePlanDetailVo)
  7063. if err := dec(in); err != nil {
  7064. return nil, err
  7065. }
  7066. if interceptor == nil {
  7067. return srv.(GoPmpClientServer).AnnouncePlanDetailUpdate(ctx, in)
  7068. }
  7069. info := &grpc.UnaryServerInfo{
  7070. Server: srv,
  7071. FullMethod: GoPmpClient_AnnouncePlanDetailUpdate_FullMethodName,
  7072. }
  7073. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7074. return srv.(GoPmpClientServer).AnnouncePlanDetailUpdate(ctx, req.(*AnnouncePlanDetailVo))
  7075. }
  7076. return interceptor(ctx, in, info, handler)
  7077. }
  7078. func _GoPmpClient_AnnouncePlanDetailDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7079. in := new(Ids)
  7080. if err := dec(in); err != nil {
  7081. return nil, err
  7082. }
  7083. if interceptor == nil {
  7084. return srv.(GoPmpClientServer).AnnouncePlanDetailDel(ctx, in)
  7085. }
  7086. info := &grpc.UnaryServerInfo{
  7087. Server: srv,
  7088. FullMethod: GoPmpClient_AnnouncePlanDetailDel_FullMethodName,
  7089. }
  7090. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7091. return srv.(GoPmpClientServer).AnnouncePlanDetailDel(ctx, req.(*Ids))
  7092. }
  7093. return interceptor(ctx, in, info, handler)
  7094. }
  7095. func _GoPmpClient_AnnouncePlanDetailGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7096. in := new(AnnouncePlanDetailVo)
  7097. if err := dec(in); err != nil {
  7098. return nil, err
  7099. }
  7100. if interceptor == nil {
  7101. return srv.(GoPmpClientServer).AnnouncePlanDetailGet(ctx, in)
  7102. }
  7103. info := &grpc.UnaryServerInfo{
  7104. Server: srv,
  7105. FullMethod: GoPmpClient_AnnouncePlanDetailGet_FullMethodName,
  7106. }
  7107. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7108. return srv.(GoPmpClientServer).AnnouncePlanDetailGet(ctx, req.(*AnnouncePlanDetailVo))
  7109. }
  7110. return interceptor(ctx, in, info, handler)
  7111. }
  7112. func _GoPmpClient_AnnouncePlanDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7113. in := new(AnnouncePlanDetailListReq)
  7114. if err := dec(in); err != nil {
  7115. return nil, err
  7116. }
  7117. if interceptor == nil {
  7118. return srv.(GoPmpClientServer).AnnouncePlanDetailList(ctx, in)
  7119. }
  7120. info := &grpc.UnaryServerInfo{
  7121. Server: srv,
  7122. FullMethod: GoPmpClient_AnnouncePlanDetailList_FullMethodName,
  7123. }
  7124. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7125. return srv.(GoPmpClientServer).AnnouncePlanDetailList(ctx, req.(*AnnouncePlanDetailListReq))
  7126. }
  7127. return interceptor(ctx, in, info, handler)
  7128. }
  7129. func _GoPmpClient_MessagePushAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7130. in := new(MessagePushVo)
  7131. if err := dec(in); err != nil {
  7132. return nil, err
  7133. }
  7134. if interceptor == nil {
  7135. return srv.(GoPmpClientServer).MessagePushAdd(ctx, in)
  7136. }
  7137. info := &grpc.UnaryServerInfo{
  7138. Server: srv,
  7139. FullMethod: GoPmpClient_MessagePushAdd_FullMethodName,
  7140. }
  7141. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7142. return srv.(GoPmpClientServer).MessagePushAdd(ctx, req.(*MessagePushVo))
  7143. }
  7144. return interceptor(ctx, in, info, handler)
  7145. }
  7146. func _GoPmpClient_MessagePushUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7147. in := new(MessagePushVo)
  7148. if err := dec(in); err != nil {
  7149. return nil, err
  7150. }
  7151. if interceptor == nil {
  7152. return srv.(GoPmpClientServer).MessagePushUpdate(ctx, in)
  7153. }
  7154. info := &grpc.UnaryServerInfo{
  7155. Server: srv,
  7156. FullMethod: GoPmpClient_MessagePushUpdate_FullMethodName,
  7157. }
  7158. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7159. return srv.(GoPmpClientServer).MessagePushUpdate(ctx, req.(*MessagePushVo))
  7160. }
  7161. return interceptor(ctx, in, info, handler)
  7162. }
  7163. func _GoPmpClient_MessagePushList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  7164. in := new(MessagePushListReq)
  7165. if err := dec(in); err != nil {
  7166. return nil, err
  7167. }
  7168. if interceptor == nil {
  7169. return srv.(GoPmpClientServer).MessagePushList(ctx, in)
  7170. }
  7171. info := &grpc.UnaryServerInfo{
  7172. Server: srv,
  7173. FullMethod: GoPmpClient_MessagePushList_FullMethodName,
  7174. }
  7175. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  7176. return srv.(GoPmpClientServer).MessagePushList(ctx, req.(*MessagePushListReq))
  7177. }
  7178. return interceptor(ctx, in, info, handler)
  7179. }
  7180. // GoPmpClient_ServiceDesc is the grpc.ServiceDesc for GoPmpClient service.
  7181. // It's only intended for direct use with grpc.RegisterService,
  7182. // and not to be introspected or modified (even as a copy)
  7183. var GoPmpClient_ServiceDesc = grpc.ServiceDesc{
  7184. ServiceName: "gorpc.GoPmpClient",
  7185. HandlerType: (*GoPmpClientServer)(nil),
  7186. Methods: []grpc.MethodDesc{
  7187. {
  7188. MethodName: "Ping",
  7189. Handler: _GoPmpClient_Ping_Handler,
  7190. },
  7191. {
  7192. MethodName: "GlobalParamAdd",
  7193. Handler: _GoPmpClient_GlobalParamAdd_Handler,
  7194. },
  7195. {
  7196. MethodName: "GlobalParamUpdate",
  7197. Handler: _GoPmpClient_GlobalParamUpdate_Handler,
  7198. },
  7199. {
  7200. MethodName: "GlobalParamDel",
  7201. Handler: _GoPmpClient_GlobalParamDel_Handler,
  7202. },
  7203. {
  7204. MethodName: "GlobalParamGet",
  7205. Handler: _GoPmpClient_GlobalParamGet_Handler,
  7206. },
  7207. {
  7208. MethodName: "GlobalParamGetWithLang",
  7209. Handler: _GoPmpClient_GlobalParamGetWithLang_Handler,
  7210. },
  7211. {
  7212. MethodName: "GlobalParamList",
  7213. Handler: _GoPmpClient_GlobalParamList_Handler,
  7214. },
  7215. {
  7216. MethodName: "ProductAdd",
  7217. Handler: _GoPmpClient_ProductAdd_Handler,
  7218. },
  7219. {
  7220. MethodName: "ProductUpdate",
  7221. Handler: _GoPmpClient_ProductUpdate_Handler,
  7222. },
  7223. {
  7224. MethodName: "ProductDel",
  7225. Handler: _GoPmpClient_ProductDel_Handler,
  7226. },
  7227. {
  7228. MethodName: "ProductGet",
  7229. Handler: _GoPmpClient_ProductGet_Handler,
  7230. },
  7231. {
  7232. MethodName: "ProductList",
  7233. Handler: _GoPmpClient_ProductList_Handler,
  7234. },
  7235. {
  7236. MethodName: "ProductAll",
  7237. Handler: _GoPmpClient_ProductAll_Handler,
  7238. },
  7239. {
  7240. MethodName: "ProductParamAdd",
  7241. Handler: _GoPmpClient_ProductParamAdd_Handler,
  7242. },
  7243. {
  7244. MethodName: "ProductParamUpdate",
  7245. Handler: _GoPmpClient_ProductParamUpdate_Handler,
  7246. },
  7247. {
  7248. MethodName: "ProductParamDel",
  7249. Handler: _GoPmpClient_ProductParamDel_Handler,
  7250. },
  7251. {
  7252. MethodName: "ProductParamGet",
  7253. Handler: _GoPmpClient_ProductParamGet_Handler,
  7254. },
  7255. {
  7256. MethodName: "ProductParamGetWithLang",
  7257. Handler: _GoPmpClient_ProductParamGetWithLang_Handler,
  7258. },
  7259. {
  7260. MethodName: "ProductParamList",
  7261. Handler: _GoPmpClient_ProductParamList_Handler,
  7262. },
  7263. {
  7264. MethodName: "ProductActionAdd",
  7265. Handler: _GoPmpClient_ProductActionAdd_Handler,
  7266. },
  7267. {
  7268. MethodName: "ProductActionUpdate",
  7269. Handler: _GoPmpClient_ProductActionUpdate_Handler,
  7270. },
  7271. {
  7272. MethodName: "ProductActionDel",
  7273. Handler: _GoPmpClient_ProductActionDel_Handler,
  7274. },
  7275. {
  7276. MethodName: "ProductActionGet",
  7277. Handler: _GoPmpClient_ProductActionGet_Handler,
  7278. },
  7279. {
  7280. MethodName: "ProductActionList",
  7281. Handler: _GoPmpClient_ProductActionList_Handler,
  7282. },
  7283. {
  7284. MethodName: "ProductActionGroupAdd",
  7285. Handler: _GoPmpClient_ProductActionGroupAdd_Handler,
  7286. },
  7287. {
  7288. MethodName: "ProductActionGroupUpdate",
  7289. Handler: _GoPmpClient_ProductActionGroupUpdate_Handler,
  7290. },
  7291. {
  7292. MethodName: "ProductActionGroupDel",
  7293. Handler: _GoPmpClient_ProductActionGroupDel_Handler,
  7294. },
  7295. {
  7296. MethodName: "ProductActionGroupGet",
  7297. Handler: _GoPmpClient_ProductActionGroupGet_Handler,
  7298. },
  7299. {
  7300. MethodName: "ProductActionGroupList",
  7301. Handler: _GoPmpClient_ProductActionGroupList_Handler,
  7302. },
  7303. {
  7304. MethodName: "ProductActionGroupDisable",
  7305. Handler: _GoPmpClient_ProductActionGroupDisable_Handler,
  7306. },
  7307. {
  7308. MethodName: "ProductActionGroupEnable",
  7309. Handler: _GoPmpClient_ProductActionGroupEnable_Handler,
  7310. },
  7311. {
  7312. MethodName: "ProductActionPolicyGroupAdd",
  7313. Handler: _GoPmpClient_ProductActionPolicyGroupAdd_Handler,
  7314. },
  7315. {
  7316. MethodName: "ProductActionPolicyGroupUpdate",
  7317. Handler: _GoPmpClient_ProductActionPolicyGroupUpdate_Handler,
  7318. },
  7319. {
  7320. MethodName: "ProductActionPolicyGroupDel",
  7321. Handler: _GoPmpClient_ProductActionPolicyGroupDel_Handler,
  7322. },
  7323. {
  7324. MethodName: "ProductActionPolicyGroupGet",
  7325. Handler: _GoPmpClient_ProductActionPolicyGroupGet_Handler,
  7326. },
  7327. {
  7328. MethodName: "ProductActionPolicyGroupList",
  7329. Handler: _GoPmpClient_ProductActionPolicyGroupList_Handler,
  7330. },
  7331. {
  7332. MethodName: "ProductActionPolicyGroupDisable",
  7333. Handler: _GoPmpClient_ProductActionPolicyGroupDisable_Handler,
  7334. },
  7335. {
  7336. MethodName: "ProductActionPolicyGroupEnable",
  7337. Handler: _GoPmpClient_ProductActionPolicyGroupEnable_Handler,
  7338. },
  7339. {
  7340. MethodName: "ProductActionTypeAdd",
  7341. Handler: _GoPmpClient_ProductActionTypeAdd_Handler,
  7342. },
  7343. {
  7344. MethodName: "ProductActionTypeUpdate",
  7345. Handler: _GoPmpClient_ProductActionTypeUpdate_Handler,
  7346. },
  7347. {
  7348. MethodName: "ProductActionTypeDel",
  7349. Handler: _GoPmpClient_ProductActionTypeDel_Handler,
  7350. },
  7351. {
  7352. MethodName: "ProductActionTypeGet",
  7353. Handler: _GoPmpClient_ProductActionTypeGet_Handler,
  7354. },
  7355. {
  7356. MethodName: "ProductActionTypeList",
  7357. Handler: _GoPmpClient_ProductActionTypeList_Handler,
  7358. },
  7359. {
  7360. MethodName: "AreaParamAdd",
  7361. Handler: _GoPmpClient_AreaParamAdd_Handler,
  7362. },
  7363. {
  7364. MethodName: "AreaParamUpdate",
  7365. Handler: _GoPmpClient_AreaParamUpdate_Handler,
  7366. },
  7367. {
  7368. MethodName: "AreaParamDel",
  7369. Handler: _GoPmpClient_AreaParamDel_Handler,
  7370. },
  7371. {
  7372. MethodName: "AreaParamGet",
  7373. Handler: _GoPmpClient_AreaParamGet_Handler,
  7374. },
  7375. {
  7376. MethodName: "AreaParamList",
  7377. Handler: _GoPmpClient_AreaParamList_Handler,
  7378. },
  7379. {
  7380. MethodName: "NationalLanguageAdd",
  7381. Handler: _GoPmpClient_NationalLanguageAdd_Handler,
  7382. },
  7383. {
  7384. MethodName: "NationalLanguageUpdate",
  7385. Handler: _GoPmpClient_NationalLanguageUpdate_Handler,
  7386. },
  7387. {
  7388. MethodName: "NationalLanguageDel",
  7389. Handler: _GoPmpClient_NationalLanguageDel_Handler,
  7390. },
  7391. {
  7392. MethodName: "NationalLanguageGet",
  7393. Handler: _GoPmpClient_NationalLanguageGet_Handler,
  7394. },
  7395. {
  7396. MethodName: "NationalLanguageList",
  7397. Handler: _GoPmpClient_NationalLanguageList_Handler,
  7398. },
  7399. {
  7400. MethodName: "TipAdd",
  7401. Handler: _GoPmpClient_TipAdd_Handler,
  7402. },
  7403. {
  7404. MethodName: "TipUpdate",
  7405. Handler: _GoPmpClient_TipUpdate_Handler,
  7406. },
  7407. {
  7408. MethodName: "TipDel",
  7409. Handler: _GoPmpClient_TipDel_Handler,
  7410. },
  7411. {
  7412. MethodName: "TipGet",
  7413. Handler: _GoPmpClient_TipGet_Handler,
  7414. },
  7415. {
  7416. MethodName: "TipList",
  7417. Handler: _GoPmpClient_TipList_Handler,
  7418. },
  7419. {
  7420. MethodName: "DictAdd",
  7421. Handler: _GoPmpClient_DictAdd_Handler,
  7422. },
  7423. {
  7424. MethodName: "DictUpdate",
  7425. Handler: _GoPmpClient_DictUpdate_Handler,
  7426. },
  7427. {
  7428. MethodName: "DictDel",
  7429. Handler: _GoPmpClient_DictDel_Handler,
  7430. },
  7431. {
  7432. MethodName: "DictGet",
  7433. Handler: _GoPmpClient_DictGet_Handler,
  7434. },
  7435. {
  7436. MethodName: "DictList",
  7437. Handler: _GoPmpClient_DictList_Handler,
  7438. },
  7439. {
  7440. MethodName: "UpgradePkgPlanAdd",
  7441. Handler: _GoPmpClient_UpgradePkgPlanAdd_Handler,
  7442. },
  7443. {
  7444. MethodName: "UpgradePkgPlanUpdate",
  7445. Handler: _GoPmpClient_UpgradePkgPlanUpdate_Handler,
  7446. },
  7447. {
  7448. MethodName: "UpgradePkgPlanDel",
  7449. Handler: _GoPmpClient_UpgradePkgPlanDel_Handler,
  7450. },
  7451. {
  7452. MethodName: "UpgradePkgPlanGet",
  7453. Handler: _GoPmpClient_UpgradePkgPlanGet_Handler,
  7454. },
  7455. {
  7456. MethodName: "UpgradePkgPlanList",
  7457. Handler: _GoPmpClient_UpgradePkgPlanList_Handler,
  7458. },
  7459. {
  7460. MethodName: "UpgradePkgPlanDetailAdd",
  7461. Handler: _GoPmpClient_UpgradePkgPlanDetailAdd_Handler,
  7462. },
  7463. {
  7464. MethodName: "UpgradePkgPlanDetailUpdate",
  7465. Handler: _GoPmpClient_UpgradePkgPlanDetailUpdate_Handler,
  7466. },
  7467. {
  7468. MethodName: "UpgradePkgPlanDetailDel",
  7469. Handler: _GoPmpClient_UpgradePkgPlanDetailDel_Handler,
  7470. },
  7471. {
  7472. MethodName: "UpgradePkgPlanDetailGet",
  7473. Handler: _GoPmpClient_UpgradePkgPlanDetailGet_Handler,
  7474. },
  7475. {
  7476. MethodName: "UpgradePkgPlanDetailList",
  7477. Handler: _GoPmpClient_UpgradePkgPlanDetailList_Handler,
  7478. },
  7479. {
  7480. MethodName: "UpgradeResPlanAdd",
  7481. Handler: _GoPmpClient_UpgradeResPlanAdd_Handler,
  7482. },
  7483. {
  7484. MethodName: "UpgradeResPlanUpdate",
  7485. Handler: _GoPmpClient_UpgradeResPlanUpdate_Handler,
  7486. },
  7487. {
  7488. MethodName: "UpgradeResPlanDel",
  7489. Handler: _GoPmpClient_UpgradeResPlanDel_Handler,
  7490. },
  7491. {
  7492. MethodName: "UpgradeResPlanGet",
  7493. Handler: _GoPmpClient_UpgradeResPlanGet_Handler,
  7494. },
  7495. {
  7496. MethodName: "UpgradeResPlanList",
  7497. Handler: _GoPmpClient_UpgradeResPlanList_Handler,
  7498. },
  7499. {
  7500. MethodName: "UpgradeResPlanDetailAdd",
  7501. Handler: _GoPmpClient_UpgradeResPlanDetailAdd_Handler,
  7502. },
  7503. {
  7504. MethodName: "UpgradeResPlanDetailUpdate",
  7505. Handler: _GoPmpClient_UpgradeResPlanDetailUpdate_Handler,
  7506. },
  7507. {
  7508. MethodName: "UpgradeResPlanDetailDel",
  7509. Handler: _GoPmpClient_UpgradeResPlanDetailDel_Handler,
  7510. },
  7511. {
  7512. MethodName: "UpgradeResPlanDetailGet",
  7513. Handler: _GoPmpClient_UpgradeResPlanDetailGet_Handler,
  7514. },
  7515. {
  7516. MethodName: "UpgradeResPlanDetailList",
  7517. Handler: _GoPmpClient_UpgradeResPlanDetailList_Handler,
  7518. },
  7519. {
  7520. MethodName: "AdPlanAdd",
  7521. Handler: _GoPmpClient_AdPlanAdd_Handler,
  7522. },
  7523. {
  7524. MethodName: "AdPlanUpdate",
  7525. Handler: _GoPmpClient_AdPlanUpdate_Handler,
  7526. },
  7527. {
  7528. MethodName: "AdPlanDel",
  7529. Handler: _GoPmpClient_AdPlanDel_Handler,
  7530. },
  7531. {
  7532. MethodName: "AdPlanGet",
  7533. Handler: _GoPmpClient_AdPlanGet_Handler,
  7534. },
  7535. {
  7536. MethodName: "AdPlanList",
  7537. Handler: _GoPmpClient_AdPlanList_Handler,
  7538. },
  7539. {
  7540. MethodName: "AdPlanDetailAdd",
  7541. Handler: _GoPmpClient_AdPlanDetailAdd_Handler,
  7542. },
  7543. {
  7544. MethodName: "AdPlanDetailUpdate",
  7545. Handler: _GoPmpClient_AdPlanDetailUpdate_Handler,
  7546. },
  7547. {
  7548. MethodName: "AdPlanDetailDel",
  7549. Handler: _GoPmpClient_AdPlanDetailDel_Handler,
  7550. },
  7551. {
  7552. MethodName: "AdPlanDetailGet",
  7553. Handler: _GoPmpClient_AdPlanDetailGet_Handler,
  7554. },
  7555. {
  7556. MethodName: "AdPlanDetailList",
  7557. Handler: _GoPmpClient_AdPlanDetailList_Handler,
  7558. },
  7559. {
  7560. MethodName: "AdGlobalConfigGet",
  7561. Handler: _GoPmpClient_AdGlobalConfigGet_Handler,
  7562. },
  7563. {
  7564. MethodName: "AdGlobalConfigUpdate",
  7565. Handler: _GoPmpClient_AdGlobalConfigUpdate_Handler,
  7566. },
  7567. {
  7568. MethodName: "JobBatchAdd",
  7569. Handler: _GoPmpClient_JobBatchAdd_Handler,
  7570. },
  7571. {
  7572. MethodName: "JobBatchAddWithTasks",
  7573. Handler: _GoPmpClient_JobBatchAddWithTasks_Handler,
  7574. },
  7575. {
  7576. MethodName: "JobBatchUpdate",
  7577. Handler: _GoPmpClient_JobBatchUpdate_Handler,
  7578. },
  7579. {
  7580. MethodName: "JobBatchDel",
  7581. Handler: _GoPmpClient_JobBatchDel_Handler,
  7582. },
  7583. {
  7584. MethodName: "JobBatchGet",
  7585. Handler: _GoPmpClient_JobBatchGet_Handler,
  7586. },
  7587. {
  7588. MethodName: "JobBatchGetWithTasks",
  7589. Handler: _GoPmpClient_JobBatchGetWithTasks_Handler,
  7590. },
  7591. {
  7592. MethodName: "JobBatchList",
  7593. Handler: _GoPmpClient_JobBatchList_Handler,
  7594. },
  7595. {
  7596. MethodName: "JobBatchListWithTasks",
  7597. Handler: _GoPmpClient_JobBatchListWithTasks_Handler,
  7598. },
  7599. {
  7600. MethodName: "JobTasksAdd",
  7601. Handler: _GoPmpClient_JobTasksAdd_Handler,
  7602. },
  7603. {
  7604. MethodName: "JobTasksUpdate",
  7605. Handler: _GoPmpClient_JobTasksUpdate_Handler,
  7606. },
  7607. {
  7608. MethodName: "JobTasksDel",
  7609. Handler: _GoPmpClient_JobTasksDel_Handler,
  7610. },
  7611. {
  7612. MethodName: "JobTasksGet",
  7613. Handler: _GoPmpClient_JobTasksGet_Handler,
  7614. },
  7615. {
  7616. MethodName: "JobTasksList",
  7617. Handler: _GoPmpClient_JobTasksList_Handler,
  7618. },
  7619. {
  7620. MethodName: "DeployConfigAdd",
  7621. Handler: _GoPmpClient_DeployConfigAdd_Handler,
  7622. },
  7623. {
  7624. MethodName: "DeployConfigUpdate",
  7625. Handler: _GoPmpClient_DeployConfigUpdate_Handler,
  7626. },
  7627. {
  7628. MethodName: "DeployConfigDel",
  7629. Handler: _GoPmpClient_DeployConfigDel_Handler,
  7630. },
  7631. {
  7632. MethodName: "DeployConfigGet",
  7633. Handler: _GoPmpClient_DeployConfigGet_Handler,
  7634. },
  7635. {
  7636. MethodName: "DeployConfigList",
  7637. Handler: _GoPmpClient_DeployConfigList_Handler,
  7638. },
  7639. {
  7640. MethodName: "OperationLogAdd",
  7641. Handler: _GoPmpClient_OperationLogAdd_Handler,
  7642. },
  7643. {
  7644. MethodName: "OperationLogUpdate",
  7645. Handler: _GoPmpClient_OperationLogUpdate_Handler,
  7646. },
  7647. {
  7648. MethodName: "OperationLogGet",
  7649. Handler: _GoPmpClient_OperationLogGet_Handler,
  7650. },
  7651. {
  7652. MethodName: "OperationLogList",
  7653. Handler: _GoPmpClient_OperationLogList_Handler,
  7654. },
  7655. {
  7656. MethodName: "AnnouncePlanAdd",
  7657. Handler: _GoPmpClient_AnnouncePlanAdd_Handler,
  7658. },
  7659. {
  7660. MethodName: "AnnouncePlanUpdate",
  7661. Handler: _GoPmpClient_AnnouncePlanUpdate_Handler,
  7662. },
  7663. {
  7664. MethodName: "AnnouncePlanDel",
  7665. Handler: _GoPmpClient_AnnouncePlanDel_Handler,
  7666. },
  7667. {
  7668. MethodName: "AnnouncePlanGet",
  7669. Handler: _GoPmpClient_AnnouncePlanGet_Handler,
  7670. },
  7671. {
  7672. MethodName: "AnnouncePlanList",
  7673. Handler: _GoPmpClient_AnnouncePlanList_Handler,
  7674. },
  7675. {
  7676. MethodName: "AnnouncePlanDetailAdd",
  7677. Handler: _GoPmpClient_AnnouncePlanDetailAdd_Handler,
  7678. },
  7679. {
  7680. MethodName: "AnnouncePlanDetailUpdate",
  7681. Handler: _GoPmpClient_AnnouncePlanDetailUpdate_Handler,
  7682. },
  7683. {
  7684. MethodName: "AnnouncePlanDetailDel",
  7685. Handler: _GoPmpClient_AnnouncePlanDetailDel_Handler,
  7686. },
  7687. {
  7688. MethodName: "AnnouncePlanDetailGet",
  7689. Handler: _GoPmpClient_AnnouncePlanDetailGet_Handler,
  7690. },
  7691. {
  7692. MethodName: "AnnouncePlanDetailList",
  7693. Handler: _GoPmpClient_AnnouncePlanDetailList_Handler,
  7694. },
  7695. {
  7696. MethodName: "MessagePushAdd",
  7697. Handler: _GoPmpClient_MessagePushAdd_Handler,
  7698. },
  7699. {
  7700. MethodName: "MessagePushUpdate",
  7701. Handler: _GoPmpClient_MessagePushUpdate_Handler,
  7702. },
  7703. {
  7704. MethodName: "MessagePushList",
  7705. Handler: _GoPmpClient_MessagePushList_Handler,
  7706. },
  7707. },
  7708. Streams: []grpc.StreamDesc{},
  7709. Metadata: "gorpc.proto",
  7710. }
  7711. const (
  7712. GoShortDramaClient_ShortDramaAdd_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaAdd"
  7713. GoShortDramaClient_ShortDramaUpdate_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaUpdate"
  7714. GoShortDramaClient_ShortDramaDel_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaDel"
  7715. GoShortDramaClient_ShortDramaGet_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaGet"
  7716. GoShortDramaClient_ShortDramaList_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaList"
  7717. GoShortDramaClient_ShortDramaUpdateModifier_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaUpdateModifier"
  7718. GoShortDramaClient_ShortDramaUpdateReleaseRegions_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaUpdateReleaseRegions"
  7719. GoShortDramaClient_ShortDramaFindIdsWithCopyright_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaFindIdsWithCopyright"
  7720. GoShortDramaClient_ShortDramaFindSchedulePublishList_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaFindSchedulePublishList"
  7721. GoShortDramaClient_ShortDramaPublishSchedule_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaPublishSchedule"
  7722. GoShortDramaClient_ShortDramaLanguageList_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaLanguageList"
  7723. GoShortDramaClient_ShortDramaEpisodeAdd_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeAdd"
  7724. GoShortDramaClient_ShortDramaEpisodeBatchAdd_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeBatchAdd"
  7725. GoShortDramaClient_ShortDramaEpisodeUpdate_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeUpdate"
  7726. GoShortDramaClient_ShortDramaEpisodeDel_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeDel"
  7727. GoShortDramaClient_ShortDramaEpisodeGet_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeGet"
  7728. GoShortDramaClient_ShortDramaEpisodeList_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeList"
  7729. GoShortDramaClient_ShortDramaEpisodeBatchRefreshUpdateTime_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeBatchRefreshUpdateTime"
  7730. GoShortDramaClient_ShortDramaEpisodeCount_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaEpisodeCount"
  7731. GoShortDramaClient_ShortDramaCheckName_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaCheckName"
  7732. GoShortDramaClient_SetTotalStats_FullMethodName = "/gorpc.GoShortDramaClient/SetTotalStats"
  7733. GoShortDramaClient_ShortDramaStatsPlaysTotalList_FullMethodName = "/gorpc.GoShortDramaClient/ShortDramaStatsPlaysTotalList"
  7734. )
  7735. // GoShortDramaClientClient is the client API for GoShortDramaClient service.
  7736. //
  7737. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  7738. type GoShortDramaClientClient interface {
  7739. // ShortDrama
  7740. ShortDramaAdd(ctx context.Context, in *ShortDramaVo, opts ...grpc.CallOption) (*ShortDramaVo, error)
  7741. ShortDramaUpdate(ctx context.Context, in *ShortDramaVo, opts ...grpc.CallOption) (*Empty, error)
  7742. ShortDramaDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  7743. ShortDramaGet(ctx context.Context, in *ShortDramaGetReq, opts ...grpc.CallOption) (*ShortDramaVo, error)
  7744. ShortDramaList(ctx context.Context, in *ShortDramaListReq, opts ...grpc.CallOption) (*ShortDramaListResp, error)
  7745. ShortDramaUpdateModifier(ctx context.Context, in *ShortDramaUpdateModifierReq, opts ...grpc.CallOption) (*Empty, error)
  7746. ShortDramaUpdateReleaseRegions(ctx context.Context, in *ShortDramaUpdateReleaseRegionsReq, opts ...grpc.CallOption) (*Empty, error)
  7747. ShortDramaFindIdsWithCopyright(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ShortDramaFindIdsWithCopyrightResp, error)
  7748. ShortDramaFindSchedulePublishList(ctx context.Context, in *FindSchedulePublishListReq, opts ...grpc.CallOption) (*FindSchedulePublishListResp, error)
  7749. ShortDramaPublishSchedule(ctx context.Context, in *PublishScheduleDramaReq, opts ...grpc.CallOption) (*Empty, error)
  7750. // ShortDramaLanguage
  7751. ShortDramaLanguageList(ctx context.Context, in *ShortDramaLanguageListReq, opts ...grpc.CallOption) (*ShortDramaLanguageListResp, error)
  7752. // ShortDramaEpisode
  7753. ShortDramaEpisodeAdd(ctx context.Context, in *ShortDramaEpisodeVo, opts ...grpc.CallOption) (*ShortDramaEpisodeVo, error)
  7754. ShortDramaEpisodeBatchAdd(ctx context.Context, in *ShortDramaEpisodeBatchAddReq, opts ...grpc.CallOption) (*Empty, error)
  7755. ShortDramaEpisodeUpdate(ctx context.Context, in *ShortDramaEpisodeVo, opts ...grpc.CallOption) (*Empty, error)
  7756. ShortDramaEpisodeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  7757. ShortDramaEpisodeGet(ctx context.Context, in *ShortDramaEpisodeGetReq, opts ...grpc.CallOption) (*ShortDramaEpisodeVo, error)
  7758. ShortDramaEpisodeList(ctx context.Context, in *ShortDramaEpisodeListReq, opts ...grpc.CallOption) (*ShortDramaEpisodeListResp, error)
  7759. ShortDramaEpisodeBatchRefreshUpdateTime(ctx context.Context, in *ShortDramaEpisodeBatchRefreshUpdateTimeReq, opts ...grpc.CallOption) (*Empty, error)
  7760. // ShortDramaEpisodeCount
  7761. ShortDramaEpisodeCount(ctx context.Context, in *ShortDramaEpisodeCountReq, opts ...grpc.CallOption) (*ShortDramaEpisodeCountResp, error)
  7762. ShortDramaCheckName(ctx context.Context, in *ShortDramaCheckNameReq, opts ...grpc.CallOption) (*ShortDramaCheckNameResp, error)
  7763. // ShortDramaStats
  7764. SetTotalStats(ctx context.Context, in *SetTotalStatsReq, opts ...grpc.CallOption) (*Empty, error)
  7765. // ShortDramaStatsPlaysTotal
  7766. ShortDramaStatsPlaysTotalList(ctx context.Context, in *ShortDramaStatsPlaysTotalListReq, opts ...grpc.CallOption) (*ShortDramaStatsPlaysTotalListResp, error)
  7767. }
  7768. type goShortDramaClientClient struct {
  7769. cc grpc.ClientConnInterface
  7770. }
  7771. func NewGoShortDramaClientClient(cc grpc.ClientConnInterface) GoShortDramaClientClient {
  7772. return &goShortDramaClientClient{cc}
  7773. }
  7774. func (c *goShortDramaClientClient) ShortDramaAdd(ctx context.Context, in *ShortDramaVo, opts ...grpc.CallOption) (*ShortDramaVo, error) {
  7775. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7776. out := new(ShortDramaVo)
  7777. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaAdd_FullMethodName, in, out, cOpts...)
  7778. if err != nil {
  7779. return nil, err
  7780. }
  7781. return out, nil
  7782. }
  7783. func (c *goShortDramaClientClient) ShortDramaUpdate(ctx context.Context, in *ShortDramaVo, opts ...grpc.CallOption) (*Empty, error) {
  7784. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7785. out := new(Empty)
  7786. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaUpdate_FullMethodName, in, out, cOpts...)
  7787. if err != nil {
  7788. return nil, err
  7789. }
  7790. return out, nil
  7791. }
  7792. func (c *goShortDramaClientClient) ShortDramaDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  7793. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7794. out := new(Empty)
  7795. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaDel_FullMethodName, in, out, cOpts...)
  7796. if err != nil {
  7797. return nil, err
  7798. }
  7799. return out, nil
  7800. }
  7801. func (c *goShortDramaClientClient) ShortDramaGet(ctx context.Context, in *ShortDramaGetReq, opts ...grpc.CallOption) (*ShortDramaVo, error) {
  7802. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7803. out := new(ShortDramaVo)
  7804. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaGet_FullMethodName, in, out, cOpts...)
  7805. if err != nil {
  7806. return nil, err
  7807. }
  7808. return out, nil
  7809. }
  7810. func (c *goShortDramaClientClient) ShortDramaList(ctx context.Context, in *ShortDramaListReq, opts ...grpc.CallOption) (*ShortDramaListResp, error) {
  7811. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7812. out := new(ShortDramaListResp)
  7813. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaList_FullMethodName, in, out, cOpts...)
  7814. if err != nil {
  7815. return nil, err
  7816. }
  7817. return out, nil
  7818. }
  7819. func (c *goShortDramaClientClient) ShortDramaUpdateModifier(ctx context.Context, in *ShortDramaUpdateModifierReq, opts ...grpc.CallOption) (*Empty, error) {
  7820. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7821. out := new(Empty)
  7822. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaUpdateModifier_FullMethodName, in, out, cOpts...)
  7823. if err != nil {
  7824. return nil, err
  7825. }
  7826. return out, nil
  7827. }
  7828. func (c *goShortDramaClientClient) ShortDramaUpdateReleaseRegions(ctx context.Context, in *ShortDramaUpdateReleaseRegionsReq, opts ...grpc.CallOption) (*Empty, error) {
  7829. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7830. out := new(Empty)
  7831. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaUpdateReleaseRegions_FullMethodName, in, out, cOpts...)
  7832. if err != nil {
  7833. return nil, err
  7834. }
  7835. return out, nil
  7836. }
  7837. func (c *goShortDramaClientClient) ShortDramaFindIdsWithCopyright(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*ShortDramaFindIdsWithCopyrightResp, error) {
  7838. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7839. out := new(ShortDramaFindIdsWithCopyrightResp)
  7840. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaFindIdsWithCopyright_FullMethodName, in, out, cOpts...)
  7841. if err != nil {
  7842. return nil, err
  7843. }
  7844. return out, nil
  7845. }
  7846. func (c *goShortDramaClientClient) ShortDramaFindSchedulePublishList(ctx context.Context, in *FindSchedulePublishListReq, opts ...grpc.CallOption) (*FindSchedulePublishListResp, error) {
  7847. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7848. out := new(FindSchedulePublishListResp)
  7849. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaFindSchedulePublishList_FullMethodName, in, out, cOpts...)
  7850. if err != nil {
  7851. return nil, err
  7852. }
  7853. return out, nil
  7854. }
  7855. func (c *goShortDramaClientClient) ShortDramaPublishSchedule(ctx context.Context, in *PublishScheduleDramaReq, opts ...grpc.CallOption) (*Empty, error) {
  7856. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7857. out := new(Empty)
  7858. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaPublishSchedule_FullMethodName, in, out, cOpts...)
  7859. if err != nil {
  7860. return nil, err
  7861. }
  7862. return out, nil
  7863. }
  7864. func (c *goShortDramaClientClient) ShortDramaLanguageList(ctx context.Context, in *ShortDramaLanguageListReq, opts ...grpc.CallOption) (*ShortDramaLanguageListResp, error) {
  7865. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7866. out := new(ShortDramaLanguageListResp)
  7867. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaLanguageList_FullMethodName, in, out, cOpts...)
  7868. if err != nil {
  7869. return nil, err
  7870. }
  7871. return out, nil
  7872. }
  7873. func (c *goShortDramaClientClient) ShortDramaEpisodeAdd(ctx context.Context, in *ShortDramaEpisodeVo, opts ...grpc.CallOption) (*ShortDramaEpisodeVo, error) {
  7874. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7875. out := new(ShortDramaEpisodeVo)
  7876. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeAdd_FullMethodName, in, out, cOpts...)
  7877. if err != nil {
  7878. return nil, err
  7879. }
  7880. return out, nil
  7881. }
  7882. func (c *goShortDramaClientClient) ShortDramaEpisodeBatchAdd(ctx context.Context, in *ShortDramaEpisodeBatchAddReq, opts ...grpc.CallOption) (*Empty, error) {
  7883. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7884. out := new(Empty)
  7885. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeBatchAdd_FullMethodName, in, out, cOpts...)
  7886. if err != nil {
  7887. return nil, err
  7888. }
  7889. return out, nil
  7890. }
  7891. func (c *goShortDramaClientClient) ShortDramaEpisodeUpdate(ctx context.Context, in *ShortDramaEpisodeVo, opts ...grpc.CallOption) (*Empty, error) {
  7892. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7893. out := new(Empty)
  7894. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeUpdate_FullMethodName, in, out, cOpts...)
  7895. if err != nil {
  7896. return nil, err
  7897. }
  7898. return out, nil
  7899. }
  7900. func (c *goShortDramaClientClient) ShortDramaEpisodeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  7901. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7902. out := new(Empty)
  7903. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeDel_FullMethodName, in, out, cOpts...)
  7904. if err != nil {
  7905. return nil, err
  7906. }
  7907. return out, nil
  7908. }
  7909. func (c *goShortDramaClientClient) ShortDramaEpisodeGet(ctx context.Context, in *ShortDramaEpisodeGetReq, opts ...grpc.CallOption) (*ShortDramaEpisodeVo, error) {
  7910. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7911. out := new(ShortDramaEpisodeVo)
  7912. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeGet_FullMethodName, in, out, cOpts...)
  7913. if err != nil {
  7914. return nil, err
  7915. }
  7916. return out, nil
  7917. }
  7918. func (c *goShortDramaClientClient) ShortDramaEpisodeList(ctx context.Context, in *ShortDramaEpisodeListReq, opts ...grpc.CallOption) (*ShortDramaEpisodeListResp, error) {
  7919. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7920. out := new(ShortDramaEpisodeListResp)
  7921. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeList_FullMethodName, in, out, cOpts...)
  7922. if err != nil {
  7923. return nil, err
  7924. }
  7925. return out, nil
  7926. }
  7927. func (c *goShortDramaClientClient) ShortDramaEpisodeBatchRefreshUpdateTime(ctx context.Context, in *ShortDramaEpisodeBatchRefreshUpdateTimeReq, opts ...grpc.CallOption) (*Empty, error) {
  7928. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7929. out := new(Empty)
  7930. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeBatchRefreshUpdateTime_FullMethodName, in, out, cOpts...)
  7931. if err != nil {
  7932. return nil, err
  7933. }
  7934. return out, nil
  7935. }
  7936. func (c *goShortDramaClientClient) ShortDramaEpisodeCount(ctx context.Context, in *ShortDramaEpisodeCountReq, opts ...grpc.CallOption) (*ShortDramaEpisodeCountResp, error) {
  7937. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7938. out := new(ShortDramaEpisodeCountResp)
  7939. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaEpisodeCount_FullMethodName, in, out, cOpts...)
  7940. if err != nil {
  7941. return nil, err
  7942. }
  7943. return out, nil
  7944. }
  7945. func (c *goShortDramaClientClient) ShortDramaCheckName(ctx context.Context, in *ShortDramaCheckNameReq, opts ...grpc.CallOption) (*ShortDramaCheckNameResp, error) {
  7946. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7947. out := new(ShortDramaCheckNameResp)
  7948. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaCheckName_FullMethodName, in, out, cOpts...)
  7949. if err != nil {
  7950. return nil, err
  7951. }
  7952. return out, nil
  7953. }
  7954. func (c *goShortDramaClientClient) SetTotalStats(ctx context.Context, in *SetTotalStatsReq, opts ...grpc.CallOption) (*Empty, error) {
  7955. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7956. out := new(Empty)
  7957. err := c.cc.Invoke(ctx, GoShortDramaClient_SetTotalStats_FullMethodName, in, out, cOpts...)
  7958. if err != nil {
  7959. return nil, err
  7960. }
  7961. return out, nil
  7962. }
  7963. func (c *goShortDramaClientClient) ShortDramaStatsPlaysTotalList(ctx context.Context, in *ShortDramaStatsPlaysTotalListReq, opts ...grpc.CallOption) (*ShortDramaStatsPlaysTotalListResp, error) {
  7964. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  7965. out := new(ShortDramaStatsPlaysTotalListResp)
  7966. err := c.cc.Invoke(ctx, GoShortDramaClient_ShortDramaStatsPlaysTotalList_FullMethodName, in, out, cOpts...)
  7967. if err != nil {
  7968. return nil, err
  7969. }
  7970. return out, nil
  7971. }
  7972. // GoShortDramaClientServer is the server API for GoShortDramaClient service.
  7973. // All implementations must embed UnimplementedGoShortDramaClientServer
  7974. // for forward compatibility.
  7975. type GoShortDramaClientServer interface {
  7976. // ShortDrama
  7977. ShortDramaAdd(context.Context, *ShortDramaVo) (*ShortDramaVo, error)
  7978. ShortDramaUpdate(context.Context, *ShortDramaVo) (*Empty, error)
  7979. ShortDramaDel(context.Context, *Ids) (*Empty, error)
  7980. ShortDramaGet(context.Context, *ShortDramaGetReq) (*ShortDramaVo, error)
  7981. ShortDramaList(context.Context, *ShortDramaListReq) (*ShortDramaListResp, error)
  7982. ShortDramaUpdateModifier(context.Context, *ShortDramaUpdateModifierReq) (*Empty, error)
  7983. ShortDramaUpdateReleaseRegions(context.Context, *ShortDramaUpdateReleaseRegionsReq) (*Empty, error)
  7984. ShortDramaFindIdsWithCopyright(context.Context, *Empty) (*ShortDramaFindIdsWithCopyrightResp, error)
  7985. ShortDramaFindSchedulePublishList(context.Context, *FindSchedulePublishListReq) (*FindSchedulePublishListResp, error)
  7986. ShortDramaPublishSchedule(context.Context, *PublishScheduleDramaReq) (*Empty, error)
  7987. // ShortDramaLanguage
  7988. ShortDramaLanguageList(context.Context, *ShortDramaLanguageListReq) (*ShortDramaLanguageListResp, error)
  7989. // ShortDramaEpisode
  7990. ShortDramaEpisodeAdd(context.Context, *ShortDramaEpisodeVo) (*ShortDramaEpisodeVo, error)
  7991. ShortDramaEpisodeBatchAdd(context.Context, *ShortDramaEpisodeBatchAddReq) (*Empty, error)
  7992. ShortDramaEpisodeUpdate(context.Context, *ShortDramaEpisodeVo) (*Empty, error)
  7993. ShortDramaEpisodeDel(context.Context, *Ids) (*Empty, error)
  7994. ShortDramaEpisodeGet(context.Context, *ShortDramaEpisodeGetReq) (*ShortDramaEpisodeVo, error)
  7995. ShortDramaEpisodeList(context.Context, *ShortDramaEpisodeListReq) (*ShortDramaEpisodeListResp, error)
  7996. ShortDramaEpisodeBatchRefreshUpdateTime(context.Context, *ShortDramaEpisodeBatchRefreshUpdateTimeReq) (*Empty, error)
  7997. // ShortDramaEpisodeCount
  7998. ShortDramaEpisodeCount(context.Context, *ShortDramaEpisodeCountReq) (*ShortDramaEpisodeCountResp, error)
  7999. ShortDramaCheckName(context.Context, *ShortDramaCheckNameReq) (*ShortDramaCheckNameResp, error)
  8000. // ShortDramaStats
  8001. SetTotalStats(context.Context, *SetTotalStatsReq) (*Empty, error)
  8002. // ShortDramaStatsPlaysTotal
  8003. ShortDramaStatsPlaysTotalList(context.Context, *ShortDramaStatsPlaysTotalListReq) (*ShortDramaStatsPlaysTotalListResp, error)
  8004. mustEmbedUnimplementedGoShortDramaClientServer()
  8005. }
  8006. // UnimplementedGoShortDramaClientServer must be embedded to have
  8007. // forward compatible implementations.
  8008. //
  8009. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  8010. // pointer dereference when methods are called.
  8011. type UnimplementedGoShortDramaClientServer struct{}
  8012. func (UnimplementedGoShortDramaClientServer) ShortDramaAdd(context.Context, *ShortDramaVo) (*ShortDramaVo, error) {
  8013. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaAdd not implemented")
  8014. }
  8015. func (UnimplementedGoShortDramaClientServer) ShortDramaUpdate(context.Context, *ShortDramaVo) (*Empty, error) {
  8016. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaUpdate not implemented")
  8017. }
  8018. func (UnimplementedGoShortDramaClientServer) ShortDramaDel(context.Context, *Ids) (*Empty, error) {
  8019. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaDel not implemented")
  8020. }
  8021. func (UnimplementedGoShortDramaClientServer) ShortDramaGet(context.Context, *ShortDramaGetReq) (*ShortDramaVo, error) {
  8022. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaGet not implemented")
  8023. }
  8024. func (UnimplementedGoShortDramaClientServer) ShortDramaList(context.Context, *ShortDramaListReq) (*ShortDramaListResp, error) {
  8025. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaList not implemented")
  8026. }
  8027. func (UnimplementedGoShortDramaClientServer) ShortDramaUpdateModifier(context.Context, *ShortDramaUpdateModifierReq) (*Empty, error) {
  8028. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaUpdateModifier not implemented")
  8029. }
  8030. func (UnimplementedGoShortDramaClientServer) ShortDramaUpdateReleaseRegions(context.Context, *ShortDramaUpdateReleaseRegionsReq) (*Empty, error) {
  8031. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaUpdateReleaseRegions not implemented")
  8032. }
  8033. func (UnimplementedGoShortDramaClientServer) ShortDramaFindIdsWithCopyright(context.Context, *Empty) (*ShortDramaFindIdsWithCopyrightResp, error) {
  8034. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaFindIdsWithCopyright not implemented")
  8035. }
  8036. func (UnimplementedGoShortDramaClientServer) ShortDramaFindSchedulePublishList(context.Context, *FindSchedulePublishListReq) (*FindSchedulePublishListResp, error) {
  8037. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaFindSchedulePublishList not implemented")
  8038. }
  8039. func (UnimplementedGoShortDramaClientServer) ShortDramaPublishSchedule(context.Context, *PublishScheduleDramaReq) (*Empty, error) {
  8040. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaPublishSchedule not implemented")
  8041. }
  8042. func (UnimplementedGoShortDramaClientServer) ShortDramaLanguageList(context.Context, *ShortDramaLanguageListReq) (*ShortDramaLanguageListResp, error) {
  8043. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaLanguageList not implemented")
  8044. }
  8045. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeAdd(context.Context, *ShortDramaEpisodeVo) (*ShortDramaEpisodeVo, error) {
  8046. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeAdd not implemented")
  8047. }
  8048. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeBatchAdd(context.Context, *ShortDramaEpisodeBatchAddReq) (*Empty, error) {
  8049. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeBatchAdd not implemented")
  8050. }
  8051. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeUpdate(context.Context, *ShortDramaEpisodeVo) (*Empty, error) {
  8052. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeUpdate not implemented")
  8053. }
  8054. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeDel(context.Context, *Ids) (*Empty, error) {
  8055. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeDel not implemented")
  8056. }
  8057. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeGet(context.Context, *ShortDramaEpisodeGetReq) (*ShortDramaEpisodeVo, error) {
  8058. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeGet not implemented")
  8059. }
  8060. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeList(context.Context, *ShortDramaEpisodeListReq) (*ShortDramaEpisodeListResp, error) {
  8061. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeList not implemented")
  8062. }
  8063. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeBatchRefreshUpdateTime(context.Context, *ShortDramaEpisodeBatchRefreshUpdateTimeReq) (*Empty, error) {
  8064. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeBatchRefreshUpdateTime not implemented")
  8065. }
  8066. func (UnimplementedGoShortDramaClientServer) ShortDramaEpisodeCount(context.Context, *ShortDramaEpisodeCountReq) (*ShortDramaEpisodeCountResp, error) {
  8067. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaEpisodeCount not implemented")
  8068. }
  8069. func (UnimplementedGoShortDramaClientServer) ShortDramaCheckName(context.Context, *ShortDramaCheckNameReq) (*ShortDramaCheckNameResp, error) {
  8070. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaCheckName not implemented")
  8071. }
  8072. func (UnimplementedGoShortDramaClientServer) SetTotalStats(context.Context, *SetTotalStatsReq) (*Empty, error) {
  8073. return nil, status.Errorf(codes.Unimplemented, "method SetTotalStats not implemented")
  8074. }
  8075. func (UnimplementedGoShortDramaClientServer) ShortDramaStatsPlaysTotalList(context.Context, *ShortDramaStatsPlaysTotalListReq) (*ShortDramaStatsPlaysTotalListResp, error) {
  8076. return nil, status.Errorf(codes.Unimplemented, "method ShortDramaStatsPlaysTotalList not implemented")
  8077. }
  8078. func (UnimplementedGoShortDramaClientServer) mustEmbedUnimplementedGoShortDramaClientServer() {}
  8079. func (UnimplementedGoShortDramaClientServer) testEmbeddedByValue() {}
  8080. // UnsafeGoShortDramaClientServer may be embedded to opt out of forward compatibility for this service.
  8081. // Use of this interface is not recommended, as added methods to GoShortDramaClientServer will
  8082. // result in compilation errors.
  8083. type UnsafeGoShortDramaClientServer interface {
  8084. mustEmbedUnimplementedGoShortDramaClientServer()
  8085. }
  8086. func RegisterGoShortDramaClientServer(s grpc.ServiceRegistrar, srv GoShortDramaClientServer) {
  8087. // If the following call pancis, it indicates UnimplementedGoShortDramaClientServer was
  8088. // embedded by pointer and is nil. This will cause panics if an
  8089. // unimplemented method is ever invoked, so we test this at initialization
  8090. // time to prevent it from happening at runtime later due to I/O.
  8091. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  8092. t.testEmbeddedByValue()
  8093. }
  8094. s.RegisterService(&GoShortDramaClient_ServiceDesc, srv)
  8095. }
  8096. func _GoShortDramaClient_ShortDramaAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8097. in := new(ShortDramaVo)
  8098. if err := dec(in); err != nil {
  8099. return nil, err
  8100. }
  8101. if interceptor == nil {
  8102. return srv.(GoShortDramaClientServer).ShortDramaAdd(ctx, in)
  8103. }
  8104. info := &grpc.UnaryServerInfo{
  8105. Server: srv,
  8106. FullMethod: GoShortDramaClient_ShortDramaAdd_FullMethodName,
  8107. }
  8108. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8109. return srv.(GoShortDramaClientServer).ShortDramaAdd(ctx, req.(*ShortDramaVo))
  8110. }
  8111. return interceptor(ctx, in, info, handler)
  8112. }
  8113. func _GoShortDramaClient_ShortDramaUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8114. in := new(ShortDramaVo)
  8115. if err := dec(in); err != nil {
  8116. return nil, err
  8117. }
  8118. if interceptor == nil {
  8119. return srv.(GoShortDramaClientServer).ShortDramaUpdate(ctx, in)
  8120. }
  8121. info := &grpc.UnaryServerInfo{
  8122. Server: srv,
  8123. FullMethod: GoShortDramaClient_ShortDramaUpdate_FullMethodName,
  8124. }
  8125. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8126. return srv.(GoShortDramaClientServer).ShortDramaUpdate(ctx, req.(*ShortDramaVo))
  8127. }
  8128. return interceptor(ctx, in, info, handler)
  8129. }
  8130. func _GoShortDramaClient_ShortDramaDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8131. in := new(Ids)
  8132. if err := dec(in); err != nil {
  8133. return nil, err
  8134. }
  8135. if interceptor == nil {
  8136. return srv.(GoShortDramaClientServer).ShortDramaDel(ctx, in)
  8137. }
  8138. info := &grpc.UnaryServerInfo{
  8139. Server: srv,
  8140. FullMethod: GoShortDramaClient_ShortDramaDel_FullMethodName,
  8141. }
  8142. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8143. return srv.(GoShortDramaClientServer).ShortDramaDel(ctx, req.(*Ids))
  8144. }
  8145. return interceptor(ctx, in, info, handler)
  8146. }
  8147. func _GoShortDramaClient_ShortDramaGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8148. in := new(ShortDramaGetReq)
  8149. if err := dec(in); err != nil {
  8150. return nil, err
  8151. }
  8152. if interceptor == nil {
  8153. return srv.(GoShortDramaClientServer).ShortDramaGet(ctx, in)
  8154. }
  8155. info := &grpc.UnaryServerInfo{
  8156. Server: srv,
  8157. FullMethod: GoShortDramaClient_ShortDramaGet_FullMethodName,
  8158. }
  8159. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8160. return srv.(GoShortDramaClientServer).ShortDramaGet(ctx, req.(*ShortDramaGetReq))
  8161. }
  8162. return interceptor(ctx, in, info, handler)
  8163. }
  8164. func _GoShortDramaClient_ShortDramaList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8165. in := new(ShortDramaListReq)
  8166. if err := dec(in); err != nil {
  8167. return nil, err
  8168. }
  8169. if interceptor == nil {
  8170. return srv.(GoShortDramaClientServer).ShortDramaList(ctx, in)
  8171. }
  8172. info := &grpc.UnaryServerInfo{
  8173. Server: srv,
  8174. FullMethod: GoShortDramaClient_ShortDramaList_FullMethodName,
  8175. }
  8176. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8177. return srv.(GoShortDramaClientServer).ShortDramaList(ctx, req.(*ShortDramaListReq))
  8178. }
  8179. return interceptor(ctx, in, info, handler)
  8180. }
  8181. func _GoShortDramaClient_ShortDramaUpdateModifier_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8182. in := new(ShortDramaUpdateModifierReq)
  8183. if err := dec(in); err != nil {
  8184. return nil, err
  8185. }
  8186. if interceptor == nil {
  8187. return srv.(GoShortDramaClientServer).ShortDramaUpdateModifier(ctx, in)
  8188. }
  8189. info := &grpc.UnaryServerInfo{
  8190. Server: srv,
  8191. FullMethod: GoShortDramaClient_ShortDramaUpdateModifier_FullMethodName,
  8192. }
  8193. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8194. return srv.(GoShortDramaClientServer).ShortDramaUpdateModifier(ctx, req.(*ShortDramaUpdateModifierReq))
  8195. }
  8196. return interceptor(ctx, in, info, handler)
  8197. }
  8198. func _GoShortDramaClient_ShortDramaUpdateReleaseRegions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8199. in := new(ShortDramaUpdateReleaseRegionsReq)
  8200. if err := dec(in); err != nil {
  8201. return nil, err
  8202. }
  8203. if interceptor == nil {
  8204. return srv.(GoShortDramaClientServer).ShortDramaUpdateReleaseRegions(ctx, in)
  8205. }
  8206. info := &grpc.UnaryServerInfo{
  8207. Server: srv,
  8208. FullMethod: GoShortDramaClient_ShortDramaUpdateReleaseRegions_FullMethodName,
  8209. }
  8210. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8211. return srv.(GoShortDramaClientServer).ShortDramaUpdateReleaseRegions(ctx, req.(*ShortDramaUpdateReleaseRegionsReq))
  8212. }
  8213. return interceptor(ctx, in, info, handler)
  8214. }
  8215. func _GoShortDramaClient_ShortDramaFindIdsWithCopyright_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8216. in := new(Empty)
  8217. if err := dec(in); err != nil {
  8218. return nil, err
  8219. }
  8220. if interceptor == nil {
  8221. return srv.(GoShortDramaClientServer).ShortDramaFindIdsWithCopyright(ctx, in)
  8222. }
  8223. info := &grpc.UnaryServerInfo{
  8224. Server: srv,
  8225. FullMethod: GoShortDramaClient_ShortDramaFindIdsWithCopyright_FullMethodName,
  8226. }
  8227. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8228. return srv.(GoShortDramaClientServer).ShortDramaFindIdsWithCopyright(ctx, req.(*Empty))
  8229. }
  8230. return interceptor(ctx, in, info, handler)
  8231. }
  8232. func _GoShortDramaClient_ShortDramaFindSchedulePublishList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8233. in := new(FindSchedulePublishListReq)
  8234. if err := dec(in); err != nil {
  8235. return nil, err
  8236. }
  8237. if interceptor == nil {
  8238. return srv.(GoShortDramaClientServer).ShortDramaFindSchedulePublishList(ctx, in)
  8239. }
  8240. info := &grpc.UnaryServerInfo{
  8241. Server: srv,
  8242. FullMethod: GoShortDramaClient_ShortDramaFindSchedulePublishList_FullMethodName,
  8243. }
  8244. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8245. return srv.(GoShortDramaClientServer).ShortDramaFindSchedulePublishList(ctx, req.(*FindSchedulePublishListReq))
  8246. }
  8247. return interceptor(ctx, in, info, handler)
  8248. }
  8249. func _GoShortDramaClient_ShortDramaPublishSchedule_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8250. in := new(PublishScheduleDramaReq)
  8251. if err := dec(in); err != nil {
  8252. return nil, err
  8253. }
  8254. if interceptor == nil {
  8255. return srv.(GoShortDramaClientServer).ShortDramaPublishSchedule(ctx, in)
  8256. }
  8257. info := &grpc.UnaryServerInfo{
  8258. Server: srv,
  8259. FullMethod: GoShortDramaClient_ShortDramaPublishSchedule_FullMethodName,
  8260. }
  8261. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8262. return srv.(GoShortDramaClientServer).ShortDramaPublishSchedule(ctx, req.(*PublishScheduleDramaReq))
  8263. }
  8264. return interceptor(ctx, in, info, handler)
  8265. }
  8266. func _GoShortDramaClient_ShortDramaLanguageList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8267. in := new(ShortDramaLanguageListReq)
  8268. if err := dec(in); err != nil {
  8269. return nil, err
  8270. }
  8271. if interceptor == nil {
  8272. return srv.(GoShortDramaClientServer).ShortDramaLanguageList(ctx, in)
  8273. }
  8274. info := &grpc.UnaryServerInfo{
  8275. Server: srv,
  8276. FullMethod: GoShortDramaClient_ShortDramaLanguageList_FullMethodName,
  8277. }
  8278. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8279. return srv.(GoShortDramaClientServer).ShortDramaLanguageList(ctx, req.(*ShortDramaLanguageListReq))
  8280. }
  8281. return interceptor(ctx, in, info, handler)
  8282. }
  8283. func _GoShortDramaClient_ShortDramaEpisodeAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8284. in := new(ShortDramaEpisodeVo)
  8285. if err := dec(in); err != nil {
  8286. return nil, err
  8287. }
  8288. if interceptor == nil {
  8289. return srv.(GoShortDramaClientServer).ShortDramaEpisodeAdd(ctx, in)
  8290. }
  8291. info := &grpc.UnaryServerInfo{
  8292. Server: srv,
  8293. FullMethod: GoShortDramaClient_ShortDramaEpisodeAdd_FullMethodName,
  8294. }
  8295. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8296. return srv.(GoShortDramaClientServer).ShortDramaEpisodeAdd(ctx, req.(*ShortDramaEpisodeVo))
  8297. }
  8298. return interceptor(ctx, in, info, handler)
  8299. }
  8300. func _GoShortDramaClient_ShortDramaEpisodeBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8301. in := new(ShortDramaEpisodeBatchAddReq)
  8302. if err := dec(in); err != nil {
  8303. return nil, err
  8304. }
  8305. if interceptor == nil {
  8306. return srv.(GoShortDramaClientServer).ShortDramaEpisodeBatchAdd(ctx, in)
  8307. }
  8308. info := &grpc.UnaryServerInfo{
  8309. Server: srv,
  8310. FullMethod: GoShortDramaClient_ShortDramaEpisodeBatchAdd_FullMethodName,
  8311. }
  8312. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8313. return srv.(GoShortDramaClientServer).ShortDramaEpisodeBatchAdd(ctx, req.(*ShortDramaEpisodeBatchAddReq))
  8314. }
  8315. return interceptor(ctx, in, info, handler)
  8316. }
  8317. func _GoShortDramaClient_ShortDramaEpisodeUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8318. in := new(ShortDramaEpisodeVo)
  8319. if err := dec(in); err != nil {
  8320. return nil, err
  8321. }
  8322. if interceptor == nil {
  8323. return srv.(GoShortDramaClientServer).ShortDramaEpisodeUpdate(ctx, in)
  8324. }
  8325. info := &grpc.UnaryServerInfo{
  8326. Server: srv,
  8327. FullMethod: GoShortDramaClient_ShortDramaEpisodeUpdate_FullMethodName,
  8328. }
  8329. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8330. return srv.(GoShortDramaClientServer).ShortDramaEpisodeUpdate(ctx, req.(*ShortDramaEpisodeVo))
  8331. }
  8332. return interceptor(ctx, in, info, handler)
  8333. }
  8334. func _GoShortDramaClient_ShortDramaEpisodeDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8335. in := new(Ids)
  8336. if err := dec(in); err != nil {
  8337. return nil, err
  8338. }
  8339. if interceptor == nil {
  8340. return srv.(GoShortDramaClientServer).ShortDramaEpisodeDel(ctx, in)
  8341. }
  8342. info := &grpc.UnaryServerInfo{
  8343. Server: srv,
  8344. FullMethod: GoShortDramaClient_ShortDramaEpisodeDel_FullMethodName,
  8345. }
  8346. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8347. return srv.(GoShortDramaClientServer).ShortDramaEpisodeDel(ctx, req.(*Ids))
  8348. }
  8349. return interceptor(ctx, in, info, handler)
  8350. }
  8351. func _GoShortDramaClient_ShortDramaEpisodeGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8352. in := new(ShortDramaEpisodeGetReq)
  8353. if err := dec(in); err != nil {
  8354. return nil, err
  8355. }
  8356. if interceptor == nil {
  8357. return srv.(GoShortDramaClientServer).ShortDramaEpisodeGet(ctx, in)
  8358. }
  8359. info := &grpc.UnaryServerInfo{
  8360. Server: srv,
  8361. FullMethod: GoShortDramaClient_ShortDramaEpisodeGet_FullMethodName,
  8362. }
  8363. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8364. return srv.(GoShortDramaClientServer).ShortDramaEpisodeGet(ctx, req.(*ShortDramaEpisodeGetReq))
  8365. }
  8366. return interceptor(ctx, in, info, handler)
  8367. }
  8368. func _GoShortDramaClient_ShortDramaEpisodeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8369. in := new(ShortDramaEpisodeListReq)
  8370. if err := dec(in); err != nil {
  8371. return nil, err
  8372. }
  8373. if interceptor == nil {
  8374. return srv.(GoShortDramaClientServer).ShortDramaEpisodeList(ctx, in)
  8375. }
  8376. info := &grpc.UnaryServerInfo{
  8377. Server: srv,
  8378. FullMethod: GoShortDramaClient_ShortDramaEpisodeList_FullMethodName,
  8379. }
  8380. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8381. return srv.(GoShortDramaClientServer).ShortDramaEpisodeList(ctx, req.(*ShortDramaEpisodeListReq))
  8382. }
  8383. return interceptor(ctx, in, info, handler)
  8384. }
  8385. func _GoShortDramaClient_ShortDramaEpisodeBatchRefreshUpdateTime_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8386. in := new(ShortDramaEpisodeBatchRefreshUpdateTimeReq)
  8387. if err := dec(in); err != nil {
  8388. return nil, err
  8389. }
  8390. if interceptor == nil {
  8391. return srv.(GoShortDramaClientServer).ShortDramaEpisodeBatchRefreshUpdateTime(ctx, in)
  8392. }
  8393. info := &grpc.UnaryServerInfo{
  8394. Server: srv,
  8395. FullMethod: GoShortDramaClient_ShortDramaEpisodeBatchRefreshUpdateTime_FullMethodName,
  8396. }
  8397. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8398. return srv.(GoShortDramaClientServer).ShortDramaEpisodeBatchRefreshUpdateTime(ctx, req.(*ShortDramaEpisodeBatchRefreshUpdateTimeReq))
  8399. }
  8400. return interceptor(ctx, in, info, handler)
  8401. }
  8402. func _GoShortDramaClient_ShortDramaEpisodeCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8403. in := new(ShortDramaEpisodeCountReq)
  8404. if err := dec(in); err != nil {
  8405. return nil, err
  8406. }
  8407. if interceptor == nil {
  8408. return srv.(GoShortDramaClientServer).ShortDramaEpisodeCount(ctx, in)
  8409. }
  8410. info := &grpc.UnaryServerInfo{
  8411. Server: srv,
  8412. FullMethod: GoShortDramaClient_ShortDramaEpisodeCount_FullMethodName,
  8413. }
  8414. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8415. return srv.(GoShortDramaClientServer).ShortDramaEpisodeCount(ctx, req.(*ShortDramaEpisodeCountReq))
  8416. }
  8417. return interceptor(ctx, in, info, handler)
  8418. }
  8419. func _GoShortDramaClient_ShortDramaCheckName_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8420. in := new(ShortDramaCheckNameReq)
  8421. if err := dec(in); err != nil {
  8422. return nil, err
  8423. }
  8424. if interceptor == nil {
  8425. return srv.(GoShortDramaClientServer).ShortDramaCheckName(ctx, in)
  8426. }
  8427. info := &grpc.UnaryServerInfo{
  8428. Server: srv,
  8429. FullMethod: GoShortDramaClient_ShortDramaCheckName_FullMethodName,
  8430. }
  8431. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8432. return srv.(GoShortDramaClientServer).ShortDramaCheckName(ctx, req.(*ShortDramaCheckNameReq))
  8433. }
  8434. return interceptor(ctx, in, info, handler)
  8435. }
  8436. func _GoShortDramaClient_SetTotalStats_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8437. in := new(SetTotalStatsReq)
  8438. if err := dec(in); err != nil {
  8439. return nil, err
  8440. }
  8441. if interceptor == nil {
  8442. return srv.(GoShortDramaClientServer).SetTotalStats(ctx, in)
  8443. }
  8444. info := &grpc.UnaryServerInfo{
  8445. Server: srv,
  8446. FullMethod: GoShortDramaClient_SetTotalStats_FullMethodName,
  8447. }
  8448. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8449. return srv.(GoShortDramaClientServer).SetTotalStats(ctx, req.(*SetTotalStatsReq))
  8450. }
  8451. return interceptor(ctx, in, info, handler)
  8452. }
  8453. func _GoShortDramaClient_ShortDramaStatsPlaysTotalList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  8454. in := new(ShortDramaStatsPlaysTotalListReq)
  8455. if err := dec(in); err != nil {
  8456. return nil, err
  8457. }
  8458. if interceptor == nil {
  8459. return srv.(GoShortDramaClientServer).ShortDramaStatsPlaysTotalList(ctx, in)
  8460. }
  8461. info := &grpc.UnaryServerInfo{
  8462. Server: srv,
  8463. FullMethod: GoShortDramaClient_ShortDramaStatsPlaysTotalList_FullMethodName,
  8464. }
  8465. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  8466. return srv.(GoShortDramaClientServer).ShortDramaStatsPlaysTotalList(ctx, req.(*ShortDramaStatsPlaysTotalListReq))
  8467. }
  8468. return interceptor(ctx, in, info, handler)
  8469. }
  8470. // GoShortDramaClient_ServiceDesc is the grpc.ServiceDesc for GoShortDramaClient service.
  8471. // It's only intended for direct use with grpc.RegisterService,
  8472. // and not to be introspected or modified (even as a copy)
  8473. var GoShortDramaClient_ServiceDesc = grpc.ServiceDesc{
  8474. ServiceName: "gorpc.GoShortDramaClient",
  8475. HandlerType: (*GoShortDramaClientServer)(nil),
  8476. Methods: []grpc.MethodDesc{
  8477. {
  8478. MethodName: "ShortDramaAdd",
  8479. Handler: _GoShortDramaClient_ShortDramaAdd_Handler,
  8480. },
  8481. {
  8482. MethodName: "ShortDramaUpdate",
  8483. Handler: _GoShortDramaClient_ShortDramaUpdate_Handler,
  8484. },
  8485. {
  8486. MethodName: "ShortDramaDel",
  8487. Handler: _GoShortDramaClient_ShortDramaDel_Handler,
  8488. },
  8489. {
  8490. MethodName: "ShortDramaGet",
  8491. Handler: _GoShortDramaClient_ShortDramaGet_Handler,
  8492. },
  8493. {
  8494. MethodName: "ShortDramaList",
  8495. Handler: _GoShortDramaClient_ShortDramaList_Handler,
  8496. },
  8497. {
  8498. MethodName: "ShortDramaUpdateModifier",
  8499. Handler: _GoShortDramaClient_ShortDramaUpdateModifier_Handler,
  8500. },
  8501. {
  8502. MethodName: "ShortDramaUpdateReleaseRegions",
  8503. Handler: _GoShortDramaClient_ShortDramaUpdateReleaseRegions_Handler,
  8504. },
  8505. {
  8506. MethodName: "ShortDramaFindIdsWithCopyright",
  8507. Handler: _GoShortDramaClient_ShortDramaFindIdsWithCopyright_Handler,
  8508. },
  8509. {
  8510. MethodName: "ShortDramaFindSchedulePublishList",
  8511. Handler: _GoShortDramaClient_ShortDramaFindSchedulePublishList_Handler,
  8512. },
  8513. {
  8514. MethodName: "ShortDramaPublishSchedule",
  8515. Handler: _GoShortDramaClient_ShortDramaPublishSchedule_Handler,
  8516. },
  8517. {
  8518. MethodName: "ShortDramaLanguageList",
  8519. Handler: _GoShortDramaClient_ShortDramaLanguageList_Handler,
  8520. },
  8521. {
  8522. MethodName: "ShortDramaEpisodeAdd",
  8523. Handler: _GoShortDramaClient_ShortDramaEpisodeAdd_Handler,
  8524. },
  8525. {
  8526. MethodName: "ShortDramaEpisodeBatchAdd",
  8527. Handler: _GoShortDramaClient_ShortDramaEpisodeBatchAdd_Handler,
  8528. },
  8529. {
  8530. MethodName: "ShortDramaEpisodeUpdate",
  8531. Handler: _GoShortDramaClient_ShortDramaEpisodeUpdate_Handler,
  8532. },
  8533. {
  8534. MethodName: "ShortDramaEpisodeDel",
  8535. Handler: _GoShortDramaClient_ShortDramaEpisodeDel_Handler,
  8536. },
  8537. {
  8538. MethodName: "ShortDramaEpisodeGet",
  8539. Handler: _GoShortDramaClient_ShortDramaEpisodeGet_Handler,
  8540. },
  8541. {
  8542. MethodName: "ShortDramaEpisodeList",
  8543. Handler: _GoShortDramaClient_ShortDramaEpisodeList_Handler,
  8544. },
  8545. {
  8546. MethodName: "ShortDramaEpisodeBatchRefreshUpdateTime",
  8547. Handler: _GoShortDramaClient_ShortDramaEpisodeBatchRefreshUpdateTime_Handler,
  8548. },
  8549. {
  8550. MethodName: "ShortDramaEpisodeCount",
  8551. Handler: _GoShortDramaClient_ShortDramaEpisodeCount_Handler,
  8552. },
  8553. {
  8554. MethodName: "ShortDramaCheckName",
  8555. Handler: _GoShortDramaClient_ShortDramaCheckName_Handler,
  8556. },
  8557. {
  8558. MethodName: "SetTotalStats",
  8559. Handler: _GoShortDramaClient_SetTotalStats_Handler,
  8560. },
  8561. {
  8562. MethodName: "ShortDramaStatsPlaysTotalList",
  8563. Handler: _GoShortDramaClient_ShortDramaStatsPlaysTotalList_Handler,
  8564. },
  8565. },
  8566. Streams: []grpc.StreamDesc{},
  8567. Metadata: "gorpc.proto",
  8568. }
  8569. const (
  8570. GoSysClient_Ping_FullMethodName = "/gorpc.GoSysClient/Ping"
  8571. GoSysClient_SysUserAdd_FullMethodName = "/gorpc.GoSysClient/SysUserAdd"
  8572. GoSysClient_SysUserUpdate_FullMethodName = "/gorpc.GoSysClient/SysUserUpdate"
  8573. GoSysClient_SysUserDelete_FullMethodName = "/gorpc.GoSysClient/SysUserDelete"
  8574. GoSysClient_SysUserGet_FullMethodName = "/gorpc.GoSysClient/SysUserGet"
  8575. GoSysClient_SysUserList_FullMethodName = "/gorpc.GoSysClient/SysUserList"
  8576. GoSysClient_SysUserAddWithRolesAndPerms_FullMethodName = "/gorpc.GoSysClient/SysUserAddWithRolesAndPerms"
  8577. GoSysClient_SysUserUpdateWithRolesAndPerms_FullMethodName = "/gorpc.GoSysClient/SysUserUpdateWithRolesAndPerms"
  8578. GoSysClient_SysUserGetWithRolesAndPerms_FullMethodName = "/gorpc.GoSysClient/SysUserGetWithRolesAndPerms"
  8579. GoSysClient_SysUserListWithRolesAndPerms_FullMethodName = "/gorpc.GoSysClient/SysUserListWithRolesAndPerms"
  8580. GoSysClient_SysRoleAdd_FullMethodName = "/gorpc.GoSysClient/SysRoleAdd"
  8581. GoSysClient_SysRoleUpdate_FullMethodName = "/gorpc.GoSysClient/SysRoleUpdate"
  8582. GoSysClient_SysRoleDelete_FullMethodName = "/gorpc.GoSysClient/SysRoleDelete"
  8583. GoSysClient_SysRoleGet_FullMethodName = "/gorpc.GoSysClient/SysRoleGet"
  8584. GoSysClient_SysRoleList_FullMethodName = "/gorpc.GoSysClient/SysRoleList"
  8585. GoSysClient_SysRoleAddWithPerms_FullMethodName = "/gorpc.GoSysClient/SysRoleAddWithPerms"
  8586. GoSysClient_SysRoleUpdateWithPerms_FullMethodName = "/gorpc.GoSysClient/SysRoleUpdateWithPerms"
  8587. GoSysClient_SysRoleGetWithPerms_FullMethodName = "/gorpc.GoSysClient/SysRoleGetWithPerms"
  8588. GoSysClient_SysRoleListWithPerms_FullMethodName = "/gorpc.GoSysClient/SysRoleListWithPerms"
  8589. GoSysClient_SysPermAdd_FullMethodName = "/gorpc.GoSysClient/SysPermAdd"
  8590. GoSysClient_SysPermUpdate_FullMethodName = "/gorpc.GoSysClient/SysPermUpdate"
  8591. GoSysClient_SysPermDelete_FullMethodName = "/gorpc.GoSysClient/SysPermDelete"
  8592. GoSysClient_SysPermGet_FullMethodName = "/gorpc.GoSysClient/SysPermGet"
  8593. GoSysClient_SysPermList_FullMethodName = "/gorpc.GoSysClient/SysPermList"
  8594. GoSysClient_SysUserRoleAdd_FullMethodName = "/gorpc.GoSysClient/SysUserRoleAdd"
  8595. GoSysClient_SysUserRoleUpdate_FullMethodName = "/gorpc.GoSysClient/SysUserRoleUpdate"
  8596. GoSysClient_SysUserRoleDelete_FullMethodName = "/gorpc.GoSysClient/SysUserRoleDelete"
  8597. GoSysClient_SysUserRoleGet_FullMethodName = "/gorpc.GoSysClient/SysUserRoleGet"
  8598. GoSysClient_SysUserRoleList_FullMethodName = "/gorpc.GoSysClient/SysUserRoleList"
  8599. GoSysClient_SysRolePermAdd_FullMethodName = "/gorpc.GoSysClient/SysRolePermAdd"
  8600. GoSysClient_SysRolePermUpdate_FullMethodName = "/gorpc.GoSysClient/SysRolePermUpdate"
  8601. GoSysClient_SysRolePermDelete_FullMethodName = "/gorpc.GoSysClient/SysRolePermDelete"
  8602. GoSysClient_SysRolePermGet_FullMethodName = "/gorpc.GoSysClient/SysRolePermGet"
  8603. GoSysClient_SysRolePermList_FullMethodName = "/gorpc.GoSysClient/SysRolePermList"
  8604. GoSysClient_SysUserPermAdd_FullMethodName = "/gorpc.GoSysClient/SysUserPermAdd"
  8605. GoSysClient_SysUserPermUpdate_FullMethodName = "/gorpc.GoSysClient/SysUserPermUpdate"
  8606. GoSysClient_SysUserPermDelete_FullMethodName = "/gorpc.GoSysClient/SysUserPermDelete"
  8607. GoSysClient_SysUserPermGet_FullMethodName = "/gorpc.GoSysClient/SysUserPermGet"
  8608. GoSysClient_SysUserPermList_FullMethodName = "/gorpc.GoSysClient/SysUserPermList"
  8609. )
  8610. // GoSysClientClient is the client API for GoSysClient service.
  8611. //
  8612. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  8613. type GoSysClientClient interface {
  8614. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  8615. // 用户管理
  8616. SysUserAdd(ctx context.Context, in *SysUserVo, opts ...grpc.CallOption) (*SysUserVo, error)
  8617. SysUserUpdate(ctx context.Context, in *SysUserVo, opts ...grpc.CallOption) (*SysUserVo, error)
  8618. SysUserDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8619. SysUserGet(ctx context.Context, in *SysUserGetReq, opts ...grpc.CallOption) (*SysUserVo, error)
  8620. SysUserList(ctx context.Context, in *SysUserListReq, opts ...grpc.CallOption) (*SysUserListResp, error)
  8621. SysUserAddWithRolesAndPerms(ctx context.Context, in *SysUserWithRoleIdsAndPermRules, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error)
  8622. SysUserUpdateWithRolesAndPerms(ctx context.Context, in *SysUserWithRoleIdsAndPermRules, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error)
  8623. SysUserGetWithRolesAndPerms(ctx context.Context, in *SysUserGetReq, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error)
  8624. SysUserListWithRolesAndPerms(ctx context.Context, in *SysUserListReq, opts ...grpc.CallOption) (*SysUserListWithRolesAndPermsResp, error)
  8625. // 角色管理
  8626. SysRoleAdd(ctx context.Context, in *SysRoleVo, opts ...grpc.CallOption) (*SysRoleVo, error)
  8627. SysRoleUpdate(ctx context.Context, in *SysRoleVo, opts ...grpc.CallOption) (*SysRoleVo, error)
  8628. SysRoleDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8629. SysRoleGet(ctx context.Context, in *SysRoleGetReq, opts ...grpc.CallOption) (*SysRoleVo, error)
  8630. SysRoleList(ctx context.Context, in *SysRoleListReq, opts ...grpc.CallOption) (*SysRoleListResp, error)
  8631. SysRoleAddWithPerms(ctx context.Context, in *SysRoleWithPermIds, opts ...grpc.CallOption) (*SysRoleWithPerms, error)
  8632. SysRoleUpdateWithPerms(ctx context.Context, in *SysRoleWithPermIds, opts ...grpc.CallOption) (*SysRoleWithPerms, error)
  8633. SysRoleGetWithPerms(ctx context.Context, in *SysRoleGetReq, opts ...grpc.CallOption) (*SysRoleWithPerms, error)
  8634. SysRoleListWithPerms(ctx context.Context, in *SysRoleListReq, opts ...grpc.CallOption) (*SysRoleListWithPermsResp, error)
  8635. // 权限管理
  8636. SysPermAdd(ctx context.Context, in *SysPermVo, opts ...grpc.CallOption) (*SysPermVo, error)
  8637. SysPermUpdate(ctx context.Context, in *SysPermVo, opts ...grpc.CallOption) (*SysPermVo, error)
  8638. SysPermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8639. SysPermGet(ctx context.Context, in *SysPermGetReq, opts ...grpc.CallOption) (*SysPermVo, error)
  8640. SysPermList(ctx context.Context, in *SysPermListReq, opts ...grpc.CallOption) (*SysPermListResp, error)
  8641. // 用户角色管理
  8642. SysUserRoleAdd(ctx context.Context, in *SysUserRoleVo, opts ...grpc.CallOption) (*SysUserRoleVo, error)
  8643. SysUserRoleUpdate(ctx context.Context, in *SysUserRoleVo, opts ...grpc.CallOption) (*SysUserRoleVo, error)
  8644. SysUserRoleDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8645. SysUserRoleGet(ctx context.Context, in *SysUserRoleGetReq, opts ...grpc.CallOption) (*SysUserRoleVo, error)
  8646. SysUserRoleList(ctx context.Context, in *SysUserRoleListReq, opts ...grpc.CallOption) (*SysUserRoleListResp, error)
  8647. // 角色权限管理
  8648. SysRolePermAdd(ctx context.Context, in *SysRolePermVo, opts ...grpc.CallOption) (*SysRolePermVo, error)
  8649. SysRolePermUpdate(ctx context.Context, in *SysRolePermVo, opts ...grpc.CallOption) (*SysRolePermVo, error)
  8650. SysRolePermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8651. SysRolePermGet(ctx context.Context, in *SysRolePermGetReq, opts ...grpc.CallOption) (*SysRolePermVo, error)
  8652. SysRolePermList(ctx context.Context, in *SysRolePermListReq, opts ...grpc.CallOption) (*SysRolePermListResp, error)
  8653. // 用户权限管理
  8654. SysUserPermAdd(ctx context.Context, in *SysUserPermVo, opts ...grpc.CallOption) (*SysUserPermVo, error)
  8655. SysUserPermUpdate(ctx context.Context, in *SysUserPermVo, opts ...grpc.CallOption) (*SysUserPermVo, error)
  8656. SysUserPermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  8657. SysUserPermGet(ctx context.Context, in *SysUserPermGetReq, opts ...grpc.CallOption) (*SysUserPermVo, error)
  8658. SysUserPermList(ctx context.Context, in *SysUserPermListReq, opts ...grpc.CallOption) (*SysUserPermListResp, error)
  8659. }
  8660. type goSysClientClient struct {
  8661. cc grpc.ClientConnInterface
  8662. }
  8663. func NewGoSysClientClient(cc grpc.ClientConnInterface) GoSysClientClient {
  8664. return &goSysClientClient{cc}
  8665. }
  8666. func (c *goSysClientClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  8667. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8668. out := new(Response)
  8669. err := c.cc.Invoke(ctx, GoSysClient_Ping_FullMethodName, in, out, cOpts...)
  8670. if err != nil {
  8671. return nil, err
  8672. }
  8673. return out, nil
  8674. }
  8675. func (c *goSysClientClient) SysUserAdd(ctx context.Context, in *SysUserVo, opts ...grpc.CallOption) (*SysUserVo, error) {
  8676. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8677. out := new(SysUserVo)
  8678. err := c.cc.Invoke(ctx, GoSysClient_SysUserAdd_FullMethodName, in, out, cOpts...)
  8679. if err != nil {
  8680. return nil, err
  8681. }
  8682. return out, nil
  8683. }
  8684. func (c *goSysClientClient) SysUserUpdate(ctx context.Context, in *SysUserVo, opts ...grpc.CallOption) (*SysUserVo, error) {
  8685. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8686. out := new(SysUserVo)
  8687. err := c.cc.Invoke(ctx, GoSysClient_SysUserUpdate_FullMethodName, in, out, cOpts...)
  8688. if err != nil {
  8689. return nil, err
  8690. }
  8691. return out, nil
  8692. }
  8693. func (c *goSysClientClient) SysUserDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8694. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8695. out := new(Empty)
  8696. err := c.cc.Invoke(ctx, GoSysClient_SysUserDelete_FullMethodName, in, out, cOpts...)
  8697. if err != nil {
  8698. return nil, err
  8699. }
  8700. return out, nil
  8701. }
  8702. func (c *goSysClientClient) SysUserGet(ctx context.Context, in *SysUserGetReq, opts ...grpc.CallOption) (*SysUserVo, error) {
  8703. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8704. out := new(SysUserVo)
  8705. err := c.cc.Invoke(ctx, GoSysClient_SysUserGet_FullMethodName, in, out, cOpts...)
  8706. if err != nil {
  8707. return nil, err
  8708. }
  8709. return out, nil
  8710. }
  8711. func (c *goSysClientClient) SysUserList(ctx context.Context, in *SysUserListReq, opts ...grpc.CallOption) (*SysUserListResp, error) {
  8712. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8713. out := new(SysUserListResp)
  8714. err := c.cc.Invoke(ctx, GoSysClient_SysUserList_FullMethodName, in, out, cOpts...)
  8715. if err != nil {
  8716. return nil, err
  8717. }
  8718. return out, nil
  8719. }
  8720. func (c *goSysClientClient) SysUserAddWithRolesAndPerms(ctx context.Context, in *SysUserWithRoleIdsAndPermRules, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error) {
  8721. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8722. out := new(SysUserWithRolesAndPerms)
  8723. err := c.cc.Invoke(ctx, GoSysClient_SysUserAddWithRolesAndPerms_FullMethodName, in, out, cOpts...)
  8724. if err != nil {
  8725. return nil, err
  8726. }
  8727. return out, nil
  8728. }
  8729. func (c *goSysClientClient) SysUserUpdateWithRolesAndPerms(ctx context.Context, in *SysUserWithRoleIdsAndPermRules, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error) {
  8730. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8731. out := new(SysUserWithRolesAndPerms)
  8732. err := c.cc.Invoke(ctx, GoSysClient_SysUserUpdateWithRolesAndPerms_FullMethodName, in, out, cOpts...)
  8733. if err != nil {
  8734. return nil, err
  8735. }
  8736. return out, nil
  8737. }
  8738. func (c *goSysClientClient) SysUserGetWithRolesAndPerms(ctx context.Context, in *SysUserGetReq, opts ...grpc.CallOption) (*SysUserWithRolesAndPerms, error) {
  8739. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8740. out := new(SysUserWithRolesAndPerms)
  8741. err := c.cc.Invoke(ctx, GoSysClient_SysUserGetWithRolesAndPerms_FullMethodName, in, out, cOpts...)
  8742. if err != nil {
  8743. return nil, err
  8744. }
  8745. return out, nil
  8746. }
  8747. func (c *goSysClientClient) SysUserListWithRolesAndPerms(ctx context.Context, in *SysUserListReq, opts ...grpc.CallOption) (*SysUserListWithRolesAndPermsResp, error) {
  8748. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8749. out := new(SysUserListWithRolesAndPermsResp)
  8750. err := c.cc.Invoke(ctx, GoSysClient_SysUserListWithRolesAndPerms_FullMethodName, in, out, cOpts...)
  8751. if err != nil {
  8752. return nil, err
  8753. }
  8754. return out, nil
  8755. }
  8756. func (c *goSysClientClient) SysRoleAdd(ctx context.Context, in *SysRoleVo, opts ...grpc.CallOption) (*SysRoleVo, error) {
  8757. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8758. out := new(SysRoleVo)
  8759. err := c.cc.Invoke(ctx, GoSysClient_SysRoleAdd_FullMethodName, in, out, cOpts...)
  8760. if err != nil {
  8761. return nil, err
  8762. }
  8763. return out, nil
  8764. }
  8765. func (c *goSysClientClient) SysRoleUpdate(ctx context.Context, in *SysRoleVo, opts ...grpc.CallOption) (*SysRoleVo, error) {
  8766. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8767. out := new(SysRoleVo)
  8768. err := c.cc.Invoke(ctx, GoSysClient_SysRoleUpdate_FullMethodName, in, out, cOpts...)
  8769. if err != nil {
  8770. return nil, err
  8771. }
  8772. return out, nil
  8773. }
  8774. func (c *goSysClientClient) SysRoleDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8775. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8776. out := new(Empty)
  8777. err := c.cc.Invoke(ctx, GoSysClient_SysRoleDelete_FullMethodName, in, out, cOpts...)
  8778. if err != nil {
  8779. return nil, err
  8780. }
  8781. return out, nil
  8782. }
  8783. func (c *goSysClientClient) SysRoleGet(ctx context.Context, in *SysRoleGetReq, opts ...grpc.CallOption) (*SysRoleVo, error) {
  8784. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8785. out := new(SysRoleVo)
  8786. err := c.cc.Invoke(ctx, GoSysClient_SysRoleGet_FullMethodName, in, out, cOpts...)
  8787. if err != nil {
  8788. return nil, err
  8789. }
  8790. return out, nil
  8791. }
  8792. func (c *goSysClientClient) SysRoleList(ctx context.Context, in *SysRoleListReq, opts ...grpc.CallOption) (*SysRoleListResp, error) {
  8793. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8794. out := new(SysRoleListResp)
  8795. err := c.cc.Invoke(ctx, GoSysClient_SysRoleList_FullMethodName, in, out, cOpts...)
  8796. if err != nil {
  8797. return nil, err
  8798. }
  8799. return out, nil
  8800. }
  8801. func (c *goSysClientClient) SysRoleAddWithPerms(ctx context.Context, in *SysRoleWithPermIds, opts ...grpc.CallOption) (*SysRoleWithPerms, error) {
  8802. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8803. out := new(SysRoleWithPerms)
  8804. err := c.cc.Invoke(ctx, GoSysClient_SysRoleAddWithPerms_FullMethodName, in, out, cOpts...)
  8805. if err != nil {
  8806. return nil, err
  8807. }
  8808. return out, nil
  8809. }
  8810. func (c *goSysClientClient) SysRoleUpdateWithPerms(ctx context.Context, in *SysRoleWithPermIds, opts ...grpc.CallOption) (*SysRoleWithPerms, error) {
  8811. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8812. out := new(SysRoleWithPerms)
  8813. err := c.cc.Invoke(ctx, GoSysClient_SysRoleUpdateWithPerms_FullMethodName, in, out, cOpts...)
  8814. if err != nil {
  8815. return nil, err
  8816. }
  8817. return out, nil
  8818. }
  8819. func (c *goSysClientClient) SysRoleGetWithPerms(ctx context.Context, in *SysRoleGetReq, opts ...grpc.CallOption) (*SysRoleWithPerms, error) {
  8820. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8821. out := new(SysRoleWithPerms)
  8822. err := c.cc.Invoke(ctx, GoSysClient_SysRoleGetWithPerms_FullMethodName, in, out, cOpts...)
  8823. if err != nil {
  8824. return nil, err
  8825. }
  8826. return out, nil
  8827. }
  8828. func (c *goSysClientClient) SysRoleListWithPerms(ctx context.Context, in *SysRoleListReq, opts ...grpc.CallOption) (*SysRoleListWithPermsResp, error) {
  8829. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8830. out := new(SysRoleListWithPermsResp)
  8831. err := c.cc.Invoke(ctx, GoSysClient_SysRoleListWithPerms_FullMethodName, in, out, cOpts...)
  8832. if err != nil {
  8833. return nil, err
  8834. }
  8835. return out, nil
  8836. }
  8837. func (c *goSysClientClient) SysPermAdd(ctx context.Context, in *SysPermVo, opts ...grpc.CallOption) (*SysPermVo, error) {
  8838. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8839. out := new(SysPermVo)
  8840. err := c.cc.Invoke(ctx, GoSysClient_SysPermAdd_FullMethodName, in, out, cOpts...)
  8841. if err != nil {
  8842. return nil, err
  8843. }
  8844. return out, nil
  8845. }
  8846. func (c *goSysClientClient) SysPermUpdate(ctx context.Context, in *SysPermVo, opts ...grpc.CallOption) (*SysPermVo, error) {
  8847. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8848. out := new(SysPermVo)
  8849. err := c.cc.Invoke(ctx, GoSysClient_SysPermUpdate_FullMethodName, in, out, cOpts...)
  8850. if err != nil {
  8851. return nil, err
  8852. }
  8853. return out, nil
  8854. }
  8855. func (c *goSysClientClient) SysPermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8856. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8857. out := new(Empty)
  8858. err := c.cc.Invoke(ctx, GoSysClient_SysPermDelete_FullMethodName, in, out, cOpts...)
  8859. if err != nil {
  8860. return nil, err
  8861. }
  8862. return out, nil
  8863. }
  8864. func (c *goSysClientClient) SysPermGet(ctx context.Context, in *SysPermGetReq, opts ...grpc.CallOption) (*SysPermVo, error) {
  8865. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8866. out := new(SysPermVo)
  8867. err := c.cc.Invoke(ctx, GoSysClient_SysPermGet_FullMethodName, in, out, cOpts...)
  8868. if err != nil {
  8869. return nil, err
  8870. }
  8871. return out, nil
  8872. }
  8873. func (c *goSysClientClient) SysPermList(ctx context.Context, in *SysPermListReq, opts ...grpc.CallOption) (*SysPermListResp, error) {
  8874. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8875. out := new(SysPermListResp)
  8876. err := c.cc.Invoke(ctx, GoSysClient_SysPermList_FullMethodName, in, out, cOpts...)
  8877. if err != nil {
  8878. return nil, err
  8879. }
  8880. return out, nil
  8881. }
  8882. func (c *goSysClientClient) SysUserRoleAdd(ctx context.Context, in *SysUserRoleVo, opts ...grpc.CallOption) (*SysUserRoleVo, error) {
  8883. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8884. out := new(SysUserRoleVo)
  8885. err := c.cc.Invoke(ctx, GoSysClient_SysUserRoleAdd_FullMethodName, in, out, cOpts...)
  8886. if err != nil {
  8887. return nil, err
  8888. }
  8889. return out, nil
  8890. }
  8891. func (c *goSysClientClient) SysUserRoleUpdate(ctx context.Context, in *SysUserRoleVo, opts ...grpc.CallOption) (*SysUserRoleVo, error) {
  8892. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8893. out := new(SysUserRoleVo)
  8894. err := c.cc.Invoke(ctx, GoSysClient_SysUserRoleUpdate_FullMethodName, in, out, cOpts...)
  8895. if err != nil {
  8896. return nil, err
  8897. }
  8898. return out, nil
  8899. }
  8900. func (c *goSysClientClient) SysUserRoleDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8901. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8902. out := new(Empty)
  8903. err := c.cc.Invoke(ctx, GoSysClient_SysUserRoleDelete_FullMethodName, in, out, cOpts...)
  8904. if err != nil {
  8905. return nil, err
  8906. }
  8907. return out, nil
  8908. }
  8909. func (c *goSysClientClient) SysUserRoleGet(ctx context.Context, in *SysUserRoleGetReq, opts ...grpc.CallOption) (*SysUserRoleVo, error) {
  8910. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8911. out := new(SysUserRoleVo)
  8912. err := c.cc.Invoke(ctx, GoSysClient_SysUserRoleGet_FullMethodName, in, out, cOpts...)
  8913. if err != nil {
  8914. return nil, err
  8915. }
  8916. return out, nil
  8917. }
  8918. func (c *goSysClientClient) SysUserRoleList(ctx context.Context, in *SysUserRoleListReq, opts ...grpc.CallOption) (*SysUserRoleListResp, error) {
  8919. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8920. out := new(SysUserRoleListResp)
  8921. err := c.cc.Invoke(ctx, GoSysClient_SysUserRoleList_FullMethodName, in, out, cOpts...)
  8922. if err != nil {
  8923. return nil, err
  8924. }
  8925. return out, nil
  8926. }
  8927. func (c *goSysClientClient) SysRolePermAdd(ctx context.Context, in *SysRolePermVo, opts ...grpc.CallOption) (*SysRolePermVo, error) {
  8928. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8929. out := new(SysRolePermVo)
  8930. err := c.cc.Invoke(ctx, GoSysClient_SysRolePermAdd_FullMethodName, in, out, cOpts...)
  8931. if err != nil {
  8932. return nil, err
  8933. }
  8934. return out, nil
  8935. }
  8936. func (c *goSysClientClient) SysRolePermUpdate(ctx context.Context, in *SysRolePermVo, opts ...grpc.CallOption) (*SysRolePermVo, error) {
  8937. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8938. out := new(SysRolePermVo)
  8939. err := c.cc.Invoke(ctx, GoSysClient_SysRolePermUpdate_FullMethodName, in, out, cOpts...)
  8940. if err != nil {
  8941. return nil, err
  8942. }
  8943. return out, nil
  8944. }
  8945. func (c *goSysClientClient) SysRolePermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8946. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8947. out := new(Empty)
  8948. err := c.cc.Invoke(ctx, GoSysClient_SysRolePermDelete_FullMethodName, in, out, cOpts...)
  8949. if err != nil {
  8950. return nil, err
  8951. }
  8952. return out, nil
  8953. }
  8954. func (c *goSysClientClient) SysRolePermGet(ctx context.Context, in *SysRolePermGetReq, opts ...grpc.CallOption) (*SysRolePermVo, error) {
  8955. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8956. out := new(SysRolePermVo)
  8957. err := c.cc.Invoke(ctx, GoSysClient_SysRolePermGet_FullMethodName, in, out, cOpts...)
  8958. if err != nil {
  8959. return nil, err
  8960. }
  8961. return out, nil
  8962. }
  8963. func (c *goSysClientClient) SysRolePermList(ctx context.Context, in *SysRolePermListReq, opts ...grpc.CallOption) (*SysRolePermListResp, error) {
  8964. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8965. out := new(SysRolePermListResp)
  8966. err := c.cc.Invoke(ctx, GoSysClient_SysRolePermList_FullMethodName, in, out, cOpts...)
  8967. if err != nil {
  8968. return nil, err
  8969. }
  8970. return out, nil
  8971. }
  8972. func (c *goSysClientClient) SysUserPermAdd(ctx context.Context, in *SysUserPermVo, opts ...grpc.CallOption) (*SysUserPermVo, error) {
  8973. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8974. out := new(SysUserPermVo)
  8975. err := c.cc.Invoke(ctx, GoSysClient_SysUserPermAdd_FullMethodName, in, out, cOpts...)
  8976. if err != nil {
  8977. return nil, err
  8978. }
  8979. return out, nil
  8980. }
  8981. func (c *goSysClientClient) SysUserPermUpdate(ctx context.Context, in *SysUserPermVo, opts ...grpc.CallOption) (*SysUserPermVo, error) {
  8982. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8983. out := new(SysUserPermVo)
  8984. err := c.cc.Invoke(ctx, GoSysClient_SysUserPermUpdate_FullMethodName, in, out, cOpts...)
  8985. if err != nil {
  8986. return nil, err
  8987. }
  8988. return out, nil
  8989. }
  8990. func (c *goSysClientClient) SysUserPermDelete(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  8991. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  8992. out := new(Empty)
  8993. err := c.cc.Invoke(ctx, GoSysClient_SysUserPermDelete_FullMethodName, in, out, cOpts...)
  8994. if err != nil {
  8995. return nil, err
  8996. }
  8997. return out, nil
  8998. }
  8999. func (c *goSysClientClient) SysUserPermGet(ctx context.Context, in *SysUserPermGetReq, opts ...grpc.CallOption) (*SysUserPermVo, error) {
  9000. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  9001. out := new(SysUserPermVo)
  9002. err := c.cc.Invoke(ctx, GoSysClient_SysUserPermGet_FullMethodName, in, out, cOpts...)
  9003. if err != nil {
  9004. return nil, err
  9005. }
  9006. return out, nil
  9007. }
  9008. func (c *goSysClientClient) SysUserPermList(ctx context.Context, in *SysUserPermListReq, opts ...grpc.CallOption) (*SysUserPermListResp, error) {
  9009. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  9010. out := new(SysUserPermListResp)
  9011. err := c.cc.Invoke(ctx, GoSysClient_SysUserPermList_FullMethodName, in, out, cOpts...)
  9012. if err != nil {
  9013. return nil, err
  9014. }
  9015. return out, nil
  9016. }
  9017. // GoSysClientServer is the server API for GoSysClient service.
  9018. // All implementations must embed UnimplementedGoSysClientServer
  9019. // for forward compatibility.
  9020. type GoSysClientServer interface {
  9021. Ping(context.Context, *Request) (*Response, error)
  9022. // 用户管理
  9023. SysUserAdd(context.Context, *SysUserVo) (*SysUserVo, error)
  9024. SysUserUpdate(context.Context, *SysUserVo) (*SysUserVo, error)
  9025. SysUserDelete(context.Context, *Ids) (*Empty, error)
  9026. SysUserGet(context.Context, *SysUserGetReq) (*SysUserVo, error)
  9027. SysUserList(context.Context, *SysUserListReq) (*SysUserListResp, error)
  9028. SysUserAddWithRolesAndPerms(context.Context, *SysUserWithRoleIdsAndPermRules) (*SysUserWithRolesAndPerms, error)
  9029. SysUserUpdateWithRolesAndPerms(context.Context, *SysUserWithRoleIdsAndPermRules) (*SysUserWithRolesAndPerms, error)
  9030. SysUserGetWithRolesAndPerms(context.Context, *SysUserGetReq) (*SysUserWithRolesAndPerms, error)
  9031. SysUserListWithRolesAndPerms(context.Context, *SysUserListReq) (*SysUserListWithRolesAndPermsResp, error)
  9032. // 角色管理
  9033. SysRoleAdd(context.Context, *SysRoleVo) (*SysRoleVo, error)
  9034. SysRoleUpdate(context.Context, *SysRoleVo) (*SysRoleVo, error)
  9035. SysRoleDelete(context.Context, *Ids) (*Empty, error)
  9036. SysRoleGet(context.Context, *SysRoleGetReq) (*SysRoleVo, error)
  9037. SysRoleList(context.Context, *SysRoleListReq) (*SysRoleListResp, error)
  9038. SysRoleAddWithPerms(context.Context, *SysRoleWithPermIds) (*SysRoleWithPerms, error)
  9039. SysRoleUpdateWithPerms(context.Context, *SysRoleWithPermIds) (*SysRoleWithPerms, error)
  9040. SysRoleGetWithPerms(context.Context, *SysRoleGetReq) (*SysRoleWithPerms, error)
  9041. SysRoleListWithPerms(context.Context, *SysRoleListReq) (*SysRoleListWithPermsResp, error)
  9042. // 权限管理
  9043. SysPermAdd(context.Context, *SysPermVo) (*SysPermVo, error)
  9044. SysPermUpdate(context.Context, *SysPermVo) (*SysPermVo, error)
  9045. SysPermDelete(context.Context, *Ids) (*Empty, error)
  9046. SysPermGet(context.Context, *SysPermGetReq) (*SysPermVo, error)
  9047. SysPermList(context.Context, *SysPermListReq) (*SysPermListResp, error)
  9048. // 用户角色管理
  9049. SysUserRoleAdd(context.Context, *SysUserRoleVo) (*SysUserRoleVo, error)
  9050. SysUserRoleUpdate(context.Context, *SysUserRoleVo) (*SysUserRoleVo, error)
  9051. SysUserRoleDelete(context.Context, *Ids) (*Empty, error)
  9052. SysUserRoleGet(context.Context, *SysUserRoleGetReq) (*SysUserRoleVo, error)
  9053. SysUserRoleList(context.Context, *SysUserRoleListReq) (*SysUserRoleListResp, error)
  9054. // 角色权限管理
  9055. SysRolePermAdd(context.Context, *SysRolePermVo) (*SysRolePermVo, error)
  9056. SysRolePermUpdate(context.Context, *SysRolePermVo) (*SysRolePermVo, error)
  9057. SysRolePermDelete(context.Context, *Ids) (*Empty, error)
  9058. SysRolePermGet(context.Context, *SysRolePermGetReq) (*SysRolePermVo, error)
  9059. SysRolePermList(context.Context, *SysRolePermListReq) (*SysRolePermListResp, error)
  9060. // 用户权限管理
  9061. SysUserPermAdd(context.Context, *SysUserPermVo) (*SysUserPermVo, error)
  9062. SysUserPermUpdate(context.Context, *SysUserPermVo) (*SysUserPermVo, error)
  9063. SysUserPermDelete(context.Context, *Ids) (*Empty, error)
  9064. SysUserPermGet(context.Context, *SysUserPermGetReq) (*SysUserPermVo, error)
  9065. SysUserPermList(context.Context, *SysUserPermListReq) (*SysUserPermListResp, error)
  9066. mustEmbedUnimplementedGoSysClientServer()
  9067. }
  9068. // UnimplementedGoSysClientServer must be embedded to have
  9069. // forward compatible implementations.
  9070. //
  9071. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  9072. // pointer dereference when methods are called.
  9073. type UnimplementedGoSysClientServer struct{}
  9074. func (UnimplementedGoSysClientServer) Ping(context.Context, *Request) (*Response, error) {
  9075. return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
  9076. }
  9077. func (UnimplementedGoSysClientServer) SysUserAdd(context.Context, *SysUserVo) (*SysUserVo, error) {
  9078. return nil, status.Errorf(codes.Unimplemented, "method SysUserAdd not implemented")
  9079. }
  9080. func (UnimplementedGoSysClientServer) SysUserUpdate(context.Context, *SysUserVo) (*SysUserVo, error) {
  9081. return nil, status.Errorf(codes.Unimplemented, "method SysUserUpdate not implemented")
  9082. }
  9083. func (UnimplementedGoSysClientServer) SysUserDelete(context.Context, *Ids) (*Empty, error) {
  9084. return nil, status.Errorf(codes.Unimplemented, "method SysUserDelete not implemented")
  9085. }
  9086. func (UnimplementedGoSysClientServer) SysUserGet(context.Context, *SysUserGetReq) (*SysUserVo, error) {
  9087. return nil, status.Errorf(codes.Unimplemented, "method SysUserGet not implemented")
  9088. }
  9089. func (UnimplementedGoSysClientServer) SysUserList(context.Context, *SysUserListReq) (*SysUserListResp, error) {
  9090. return nil, status.Errorf(codes.Unimplemented, "method SysUserList not implemented")
  9091. }
  9092. func (UnimplementedGoSysClientServer) SysUserAddWithRolesAndPerms(context.Context, *SysUserWithRoleIdsAndPermRules) (*SysUserWithRolesAndPerms, error) {
  9093. return nil, status.Errorf(codes.Unimplemented, "method SysUserAddWithRolesAndPerms not implemented")
  9094. }
  9095. func (UnimplementedGoSysClientServer) SysUserUpdateWithRolesAndPerms(context.Context, *SysUserWithRoleIdsAndPermRules) (*SysUserWithRolesAndPerms, error) {
  9096. return nil, status.Errorf(codes.Unimplemented, "method SysUserUpdateWithRolesAndPerms not implemented")
  9097. }
  9098. func (UnimplementedGoSysClientServer) SysUserGetWithRolesAndPerms(context.Context, *SysUserGetReq) (*SysUserWithRolesAndPerms, error) {
  9099. return nil, status.Errorf(codes.Unimplemented, "method SysUserGetWithRolesAndPerms not implemented")
  9100. }
  9101. func (UnimplementedGoSysClientServer) SysUserListWithRolesAndPerms(context.Context, *SysUserListReq) (*SysUserListWithRolesAndPermsResp, error) {
  9102. return nil, status.Errorf(codes.Unimplemented, "method SysUserListWithRolesAndPerms not implemented")
  9103. }
  9104. func (UnimplementedGoSysClientServer) SysRoleAdd(context.Context, *SysRoleVo) (*SysRoleVo, error) {
  9105. return nil, status.Errorf(codes.Unimplemented, "method SysRoleAdd not implemented")
  9106. }
  9107. func (UnimplementedGoSysClientServer) SysRoleUpdate(context.Context, *SysRoleVo) (*SysRoleVo, error) {
  9108. return nil, status.Errorf(codes.Unimplemented, "method SysRoleUpdate not implemented")
  9109. }
  9110. func (UnimplementedGoSysClientServer) SysRoleDelete(context.Context, *Ids) (*Empty, error) {
  9111. return nil, status.Errorf(codes.Unimplemented, "method SysRoleDelete not implemented")
  9112. }
  9113. func (UnimplementedGoSysClientServer) SysRoleGet(context.Context, *SysRoleGetReq) (*SysRoleVo, error) {
  9114. return nil, status.Errorf(codes.Unimplemented, "method SysRoleGet not implemented")
  9115. }
  9116. func (UnimplementedGoSysClientServer) SysRoleList(context.Context, *SysRoleListReq) (*SysRoleListResp, error) {
  9117. return nil, status.Errorf(codes.Unimplemented, "method SysRoleList not implemented")
  9118. }
  9119. func (UnimplementedGoSysClientServer) SysRoleAddWithPerms(context.Context, *SysRoleWithPermIds) (*SysRoleWithPerms, error) {
  9120. return nil, status.Errorf(codes.Unimplemented, "method SysRoleAddWithPerms not implemented")
  9121. }
  9122. func (UnimplementedGoSysClientServer) SysRoleUpdateWithPerms(context.Context, *SysRoleWithPermIds) (*SysRoleWithPerms, error) {
  9123. return nil, status.Errorf(codes.Unimplemented, "method SysRoleUpdateWithPerms not implemented")
  9124. }
  9125. func (UnimplementedGoSysClientServer) SysRoleGetWithPerms(context.Context, *SysRoleGetReq) (*SysRoleWithPerms, error) {
  9126. return nil, status.Errorf(codes.Unimplemented, "method SysRoleGetWithPerms not implemented")
  9127. }
  9128. func (UnimplementedGoSysClientServer) SysRoleListWithPerms(context.Context, *SysRoleListReq) (*SysRoleListWithPermsResp, error) {
  9129. return nil, status.Errorf(codes.Unimplemented, "method SysRoleListWithPerms not implemented")
  9130. }
  9131. func (UnimplementedGoSysClientServer) SysPermAdd(context.Context, *SysPermVo) (*SysPermVo, error) {
  9132. return nil, status.Errorf(codes.Unimplemented, "method SysPermAdd not implemented")
  9133. }
  9134. func (UnimplementedGoSysClientServer) SysPermUpdate(context.Context, *SysPermVo) (*SysPermVo, error) {
  9135. return nil, status.Errorf(codes.Unimplemented, "method SysPermUpdate not implemented")
  9136. }
  9137. func (UnimplementedGoSysClientServer) SysPermDelete(context.Context, *Ids) (*Empty, error) {
  9138. return nil, status.Errorf(codes.Unimplemented, "method SysPermDelete not implemented")
  9139. }
  9140. func (UnimplementedGoSysClientServer) SysPermGet(context.Context, *SysPermGetReq) (*SysPermVo, error) {
  9141. return nil, status.Errorf(codes.Unimplemented, "method SysPermGet not implemented")
  9142. }
  9143. func (UnimplementedGoSysClientServer) SysPermList(context.Context, *SysPermListReq) (*SysPermListResp, error) {
  9144. return nil, status.Errorf(codes.Unimplemented, "method SysPermList not implemented")
  9145. }
  9146. func (UnimplementedGoSysClientServer) SysUserRoleAdd(context.Context, *SysUserRoleVo) (*SysUserRoleVo, error) {
  9147. return nil, status.Errorf(codes.Unimplemented, "method SysUserRoleAdd not implemented")
  9148. }
  9149. func (UnimplementedGoSysClientServer) SysUserRoleUpdate(context.Context, *SysUserRoleVo) (*SysUserRoleVo, error) {
  9150. return nil, status.Errorf(codes.Unimplemented, "method SysUserRoleUpdate not implemented")
  9151. }
  9152. func (UnimplementedGoSysClientServer) SysUserRoleDelete(context.Context, *Ids) (*Empty, error) {
  9153. return nil, status.Errorf(codes.Unimplemented, "method SysUserRoleDelete not implemented")
  9154. }
  9155. func (UnimplementedGoSysClientServer) SysUserRoleGet(context.Context, *SysUserRoleGetReq) (*SysUserRoleVo, error) {
  9156. return nil, status.Errorf(codes.Unimplemented, "method SysUserRoleGet not implemented")
  9157. }
  9158. func (UnimplementedGoSysClientServer) SysUserRoleList(context.Context, *SysUserRoleListReq) (*SysUserRoleListResp, error) {
  9159. return nil, status.Errorf(codes.Unimplemented, "method SysUserRoleList not implemented")
  9160. }
  9161. func (UnimplementedGoSysClientServer) SysRolePermAdd(context.Context, *SysRolePermVo) (*SysRolePermVo, error) {
  9162. return nil, status.Errorf(codes.Unimplemented, "method SysRolePermAdd not implemented")
  9163. }
  9164. func (UnimplementedGoSysClientServer) SysRolePermUpdate(context.Context, *SysRolePermVo) (*SysRolePermVo, error) {
  9165. return nil, status.Errorf(codes.Unimplemented, "method SysRolePermUpdate not implemented")
  9166. }
  9167. func (UnimplementedGoSysClientServer) SysRolePermDelete(context.Context, *Ids) (*Empty, error) {
  9168. return nil, status.Errorf(codes.Unimplemented, "method SysRolePermDelete not implemented")
  9169. }
  9170. func (UnimplementedGoSysClientServer) SysRolePermGet(context.Context, *SysRolePermGetReq) (*SysRolePermVo, error) {
  9171. return nil, status.Errorf(codes.Unimplemented, "method SysRolePermGet not implemented")
  9172. }
  9173. func (UnimplementedGoSysClientServer) SysRolePermList(context.Context, *SysRolePermListReq) (*SysRolePermListResp, error) {
  9174. return nil, status.Errorf(codes.Unimplemented, "method SysRolePermList not implemented")
  9175. }
  9176. func (UnimplementedGoSysClientServer) SysUserPermAdd(context.Context, *SysUserPermVo) (*SysUserPermVo, error) {
  9177. return nil, status.Errorf(codes.Unimplemented, "method SysUserPermAdd not implemented")
  9178. }
  9179. func (UnimplementedGoSysClientServer) SysUserPermUpdate(context.Context, *SysUserPermVo) (*SysUserPermVo, error) {
  9180. return nil, status.Errorf(codes.Unimplemented, "method SysUserPermUpdate not implemented")
  9181. }
  9182. func (UnimplementedGoSysClientServer) SysUserPermDelete(context.Context, *Ids) (*Empty, error) {
  9183. return nil, status.Errorf(codes.Unimplemented, "method SysUserPermDelete not implemented")
  9184. }
  9185. func (UnimplementedGoSysClientServer) SysUserPermGet(context.Context, *SysUserPermGetReq) (*SysUserPermVo, error) {
  9186. return nil, status.Errorf(codes.Unimplemented, "method SysUserPermGet not implemented")
  9187. }
  9188. func (UnimplementedGoSysClientServer) SysUserPermList(context.Context, *SysUserPermListReq) (*SysUserPermListResp, error) {
  9189. return nil, status.Errorf(codes.Unimplemented, "method SysUserPermList not implemented")
  9190. }
  9191. func (UnimplementedGoSysClientServer) mustEmbedUnimplementedGoSysClientServer() {}
  9192. func (UnimplementedGoSysClientServer) testEmbeddedByValue() {}
  9193. // UnsafeGoSysClientServer may be embedded to opt out of forward compatibility for this service.
  9194. // Use of this interface is not recommended, as added methods to GoSysClientServer will
  9195. // result in compilation errors.
  9196. type UnsafeGoSysClientServer interface {
  9197. mustEmbedUnimplementedGoSysClientServer()
  9198. }
  9199. func RegisterGoSysClientServer(s grpc.ServiceRegistrar, srv GoSysClientServer) {
  9200. // If the following call pancis, it indicates UnimplementedGoSysClientServer was
  9201. // embedded by pointer and is nil. This will cause panics if an
  9202. // unimplemented method is ever invoked, so we test this at initialization
  9203. // time to prevent it from happening at runtime later due to I/O.
  9204. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  9205. t.testEmbeddedByValue()
  9206. }
  9207. s.RegisterService(&GoSysClient_ServiceDesc, srv)
  9208. }
  9209. func _GoSysClient_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9210. in := new(Request)
  9211. if err := dec(in); err != nil {
  9212. return nil, err
  9213. }
  9214. if interceptor == nil {
  9215. return srv.(GoSysClientServer).Ping(ctx, in)
  9216. }
  9217. info := &grpc.UnaryServerInfo{
  9218. Server: srv,
  9219. FullMethod: GoSysClient_Ping_FullMethodName,
  9220. }
  9221. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9222. return srv.(GoSysClientServer).Ping(ctx, req.(*Request))
  9223. }
  9224. return interceptor(ctx, in, info, handler)
  9225. }
  9226. func _GoSysClient_SysUserAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9227. in := new(SysUserVo)
  9228. if err := dec(in); err != nil {
  9229. return nil, err
  9230. }
  9231. if interceptor == nil {
  9232. return srv.(GoSysClientServer).SysUserAdd(ctx, in)
  9233. }
  9234. info := &grpc.UnaryServerInfo{
  9235. Server: srv,
  9236. FullMethod: GoSysClient_SysUserAdd_FullMethodName,
  9237. }
  9238. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9239. return srv.(GoSysClientServer).SysUserAdd(ctx, req.(*SysUserVo))
  9240. }
  9241. return interceptor(ctx, in, info, handler)
  9242. }
  9243. func _GoSysClient_SysUserUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9244. in := new(SysUserVo)
  9245. if err := dec(in); err != nil {
  9246. return nil, err
  9247. }
  9248. if interceptor == nil {
  9249. return srv.(GoSysClientServer).SysUserUpdate(ctx, in)
  9250. }
  9251. info := &grpc.UnaryServerInfo{
  9252. Server: srv,
  9253. FullMethod: GoSysClient_SysUserUpdate_FullMethodName,
  9254. }
  9255. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9256. return srv.(GoSysClientServer).SysUserUpdate(ctx, req.(*SysUserVo))
  9257. }
  9258. return interceptor(ctx, in, info, handler)
  9259. }
  9260. func _GoSysClient_SysUserDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9261. in := new(Ids)
  9262. if err := dec(in); err != nil {
  9263. return nil, err
  9264. }
  9265. if interceptor == nil {
  9266. return srv.(GoSysClientServer).SysUserDelete(ctx, in)
  9267. }
  9268. info := &grpc.UnaryServerInfo{
  9269. Server: srv,
  9270. FullMethod: GoSysClient_SysUserDelete_FullMethodName,
  9271. }
  9272. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9273. return srv.(GoSysClientServer).SysUserDelete(ctx, req.(*Ids))
  9274. }
  9275. return interceptor(ctx, in, info, handler)
  9276. }
  9277. func _GoSysClient_SysUserGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9278. in := new(SysUserGetReq)
  9279. if err := dec(in); err != nil {
  9280. return nil, err
  9281. }
  9282. if interceptor == nil {
  9283. return srv.(GoSysClientServer).SysUserGet(ctx, in)
  9284. }
  9285. info := &grpc.UnaryServerInfo{
  9286. Server: srv,
  9287. FullMethod: GoSysClient_SysUserGet_FullMethodName,
  9288. }
  9289. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9290. return srv.(GoSysClientServer).SysUserGet(ctx, req.(*SysUserGetReq))
  9291. }
  9292. return interceptor(ctx, in, info, handler)
  9293. }
  9294. func _GoSysClient_SysUserList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9295. in := new(SysUserListReq)
  9296. if err := dec(in); err != nil {
  9297. return nil, err
  9298. }
  9299. if interceptor == nil {
  9300. return srv.(GoSysClientServer).SysUserList(ctx, in)
  9301. }
  9302. info := &grpc.UnaryServerInfo{
  9303. Server: srv,
  9304. FullMethod: GoSysClient_SysUserList_FullMethodName,
  9305. }
  9306. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9307. return srv.(GoSysClientServer).SysUserList(ctx, req.(*SysUserListReq))
  9308. }
  9309. return interceptor(ctx, in, info, handler)
  9310. }
  9311. func _GoSysClient_SysUserAddWithRolesAndPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9312. in := new(SysUserWithRoleIdsAndPermRules)
  9313. if err := dec(in); err != nil {
  9314. return nil, err
  9315. }
  9316. if interceptor == nil {
  9317. return srv.(GoSysClientServer).SysUserAddWithRolesAndPerms(ctx, in)
  9318. }
  9319. info := &grpc.UnaryServerInfo{
  9320. Server: srv,
  9321. FullMethod: GoSysClient_SysUserAddWithRolesAndPerms_FullMethodName,
  9322. }
  9323. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9324. return srv.(GoSysClientServer).SysUserAddWithRolesAndPerms(ctx, req.(*SysUserWithRoleIdsAndPermRules))
  9325. }
  9326. return interceptor(ctx, in, info, handler)
  9327. }
  9328. func _GoSysClient_SysUserUpdateWithRolesAndPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9329. in := new(SysUserWithRoleIdsAndPermRules)
  9330. if err := dec(in); err != nil {
  9331. return nil, err
  9332. }
  9333. if interceptor == nil {
  9334. return srv.(GoSysClientServer).SysUserUpdateWithRolesAndPerms(ctx, in)
  9335. }
  9336. info := &grpc.UnaryServerInfo{
  9337. Server: srv,
  9338. FullMethod: GoSysClient_SysUserUpdateWithRolesAndPerms_FullMethodName,
  9339. }
  9340. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9341. return srv.(GoSysClientServer).SysUserUpdateWithRolesAndPerms(ctx, req.(*SysUserWithRoleIdsAndPermRules))
  9342. }
  9343. return interceptor(ctx, in, info, handler)
  9344. }
  9345. func _GoSysClient_SysUserGetWithRolesAndPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9346. in := new(SysUserGetReq)
  9347. if err := dec(in); err != nil {
  9348. return nil, err
  9349. }
  9350. if interceptor == nil {
  9351. return srv.(GoSysClientServer).SysUserGetWithRolesAndPerms(ctx, in)
  9352. }
  9353. info := &grpc.UnaryServerInfo{
  9354. Server: srv,
  9355. FullMethod: GoSysClient_SysUserGetWithRolesAndPerms_FullMethodName,
  9356. }
  9357. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9358. return srv.(GoSysClientServer).SysUserGetWithRolesAndPerms(ctx, req.(*SysUserGetReq))
  9359. }
  9360. return interceptor(ctx, in, info, handler)
  9361. }
  9362. func _GoSysClient_SysUserListWithRolesAndPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9363. in := new(SysUserListReq)
  9364. if err := dec(in); err != nil {
  9365. return nil, err
  9366. }
  9367. if interceptor == nil {
  9368. return srv.(GoSysClientServer).SysUserListWithRolesAndPerms(ctx, in)
  9369. }
  9370. info := &grpc.UnaryServerInfo{
  9371. Server: srv,
  9372. FullMethod: GoSysClient_SysUserListWithRolesAndPerms_FullMethodName,
  9373. }
  9374. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9375. return srv.(GoSysClientServer).SysUserListWithRolesAndPerms(ctx, req.(*SysUserListReq))
  9376. }
  9377. return interceptor(ctx, in, info, handler)
  9378. }
  9379. func _GoSysClient_SysRoleAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9380. in := new(SysRoleVo)
  9381. if err := dec(in); err != nil {
  9382. return nil, err
  9383. }
  9384. if interceptor == nil {
  9385. return srv.(GoSysClientServer).SysRoleAdd(ctx, in)
  9386. }
  9387. info := &grpc.UnaryServerInfo{
  9388. Server: srv,
  9389. FullMethod: GoSysClient_SysRoleAdd_FullMethodName,
  9390. }
  9391. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9392. return srv.(GoSysClientServer).SysRoleAdd(ctx, req.(*SysRoleVo))
  9393. }
  9394. return interceptor(ctx, in, info, handler)
  9395. }
  9396. func _GoSysClient_SysRoleUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9397. in := new(SysRoleVo)
  9398. if err := dec(in); err != nil {
  9399. return nil, err
  9400. }
  9401. if interceptor == nil {
  9402. return srv.(GoSysClientServer).SysRoleUpdate(ctx, in)
  9403. }
  9404. info := &grpc.UnaryServerInfo{
  9405. Server: srv,
  9406. FullMethod: GoSysClient_SysRoleUpdate_FullMethodName,
  9407. }
  9408. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9409. return srv.(GoSysClientServer).SysRoleUpdate(ctx, req.(*SysRoleVo))
  9410. }
  9411. return interceptor(ctx, in, info, handler)
  9412. }
  9413. func _GoSysClient_SysRoleDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9414. in := new(Ids)
  9415. if err := dec(in); err != nil {
  9416. return nil, err
  9417. }
  9418. if interceptor == nil {
  9419. return srv.(GoSysClientServer).SysRoleDelete(ctx, in)
  9420. }
  9421. info := &grpc.UnaryServerInfo{
  9422. Server: srv,
  9423. FullMethod: GoSysClient_SysRoleDelete_FullMethodName,
  9424. }
  9425. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9426. return srv.(GoSysClientServer).SysRoleDelete(ctx, req.(*Ids))
  9427. }
  9428. return interceptor(ctx, in, info, handler)
  9429. }
  9430. func _GoSysClient_SysRoleGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9431. in := new(SysRoleGetReq)
  9432. if err := dec(in); err != nil {
  9433. return nil, err
  9434. }
  9435. if interceptor == nil {
  9436. return srv.(GoSysClientServer).SysRoleGet(ctx, in)
  9437. }
  9438. info := &grpc.UnaryServerInfo{
  9439. Server: srv,
  9440. FullMethod: GoSysClient_SysRoleGet_FullMethodName,
  9441. }
  9442. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9443. return srv.(GoSysClientServer).SysRoleGet(ctx, req.(*SysRoleGetReq))
  9444. }
  9445. return interceptor(ctx, in, info, handler)
  9446. }
  9447. func _GoSysClient_SysRoleList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9448. in := new(SysRoleListReq)
  9449. if err := dec(in); err != nil {
  9450. return nil, err
  9451. }
  9452. if interceptor == nil {
  9453. return srv.(GoSysClientServer).SysRoleList(ctx, in)
  9454. }
  9455. info := &grpc.UnaryServerInfo{
  9456. Server: srv,
  9457. FullMethod: GoSysClient_SysRoleList_FullMethodName,
  9458. }
  9459. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9460. return srv.(GoSysClientServer).SysRoleList(ctx, req.(*SysRoleListReq))
  9461. }
  9462. return interceptor(ctx, in, info, handler)
  9463. }
  9464. func _GoSysClient_SysRoleAddWithPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9465. in := new(SysRoleWithPermIds)
  9466. if err := dec(in); err != nil {
  9467. return nil, err
  9468. }
  9469. if interceptor == nil {
  9470. return srv.(GoSysClientServer).SysRoleAddWithPerms(ctx, in)
  9471. }
  9472. info := &grpc.UnaryServerInfo{
  9473. Server: srv,
  9474. FullMethod: GoSysClient_SysRoleAddWithPerms_FullMethodName,
  9475. }
  9476. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9477. return srv.(GoSysClientServer).SysRoleAddWithPerms(ctx, req.(*SysRoleWithPermIds))
  9478. }
  9479. return interceptor(ctx, in, info, handler)
  9480. }
  9481. func _GoSysClient_SysRoleUpdateWithPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9482. in := new(SysRoleWithPermIds)
  9483. if err := dec(in); err != nil {
  9484. return nil, err
  9485. }
  9486. if interceptor == nil {
  9487. return srv.(GoSysClientServer).SysRoleUpdateWithPerms(ctx, in)
  9488. }
  9489. info := &grpc.UnaryServerInfo{
  9490. Server: srv,
  9491. FullMethod: GoSysClient_SysRoleUpdateWithPerms_FullMethodName,
  9492. }
  9493. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9494. return srv.(GoSysClientServer).SysRoleUpdateWithPerms(ctx, req.(*SysRoleWithPermIds))
  9495. }
  9496. return interceptor(ctx, in, info, handler)
  9497. }
  9498. func _GoSysClient_SysRoleGetWithPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9499. in := new(SysRoleGetReq)
  9500. if err := dec(in); err != nil {
  9501. return nil, err
  9502. }
  9503. if interceptor == nil {
  9504. return srv.(GoSysClientServer).SysRoleGetWithPerms(ctx, in)
  9505. }
  9506. info := &grpc.UnaryServerInfo{
  9507. Server: srv,
  9508. FullMethod: GoSysClient_SysRoleGetWithPerms_FullMethodName,
  9509. }
  9510. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9511. return srv.(GoSysClientServer).SysRoleGetWithPerms(ctx, req.(*SysRoleGetReq))
  9512. }
  9513. return interceptor(ctx, in, info, handler)
  9514. }
  9515. func _GoSysClient_SysRoleListWithPerms_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9516. in := new(SysRoleListReq)
  9517. if err := dec(in); err != nil {
  9518. return nil, err
  9519. }
  9520. if interceptor == nil {
  9521. return srv.(GoSysClientServer).SysRoleListWithPerms(ctx, in)
  9522. }
  9523. info := &grpc.UnaryServerInfo{
  9524. Server: srv,
  9525. FullMethod: GoSysClient_SysRoleListWithPerms_FullMethodName,
  9526. }
  9527. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9528. return srv.(GoSysClientServer).SysRoleListWithPerms(ctx, req.(*SysRoleListReq))
  9529. }
  9530. return interceptor(ctx, in, info, handler)
  9531. }
  9532. func _GoSysClient_SysPermAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9533. in := new(SysPermVo)
  9534. if err := dec(in); err != nil {
  9535. return nil, err
  9536. }
  9537. if interceptor == nil {
  9538. return srv.(GoSysClientServer).SysPermAdd(ctx, in)
  9539. }
  9540. info := &grpc.UnaryServerInfo{
  9541. Server: srv,
  9542. FullMethod: GoSysClient_SysPermAdd_FullMethodName,
  9543. }
  9544. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9545. return srv.(GoSysClientServer).SysPermAdd(ctx, req.(*SysPermVo))
  9546. }
  9547. return interceptor(ctx, in, info, handler)
  9548. }
  9549. func _GoSysClient_SysPermUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9550. in := new(SysPermVo)
  9551. if err := dec(in); err != nil {
  9552. return nil, err
  9553. }
  9554. if interceptor == nil {
  9555. return srv.(GoSysClientServer).SysPermUpdate(ctx, in)
  9556. }
  9557. info := &grpc.UnaryServerInfo{
  9558. Server: srv,
  9559. FullMethod: GoSysClient_SysPermUpdate_FullMethodName,
  9560. }
  9561. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9562. return srv.(GoSysClientServer).SysPermUpdate(ctx, req.(*SysPermVo))
  9563. }
  9564. return interceptor(ctx, in, info, handler)
  9565. }
  9566. func _GoSysClient_SysPermDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9567. in := new(Ids)
  9568. if err := dec(in); err != nil {
  9569. return nil, err
  9570. }
  9571. if interceptor == nil {
  9572. return srv.(GoSysClientServer).SysPermDelete(ctx, in)
  9573. }
  9574. info := &grpc.UnaryServerInfo{
  9575. Server: srv,
  9576. FullMethod: GoSysClient_SysPermDelete_FullMethodName,
  9577. }
  9578. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9579. return srv.(GoSysClientServer).SysPermDelete(ctx, req.(*Ids))
  9580. }
  9581. return interceptor(ctx, in, info, handler)
  9582. }
  9583. func _GoSysClient_SysPermGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9584. in := new(SysPermGetReq)
  9585. if err := dec(in); err != nil {
  9586. return nil, err
  9587. }
  9588. if interceptor == nil {
  9589. return srv.(GoSysClientServer).SysPermGet(ctx, in)
  9590. }
  9591. info := &grpc.UnaryServerInfo{
  9592. Server: srv,
  9593. FullMethod: GoSysClient_SysPermGet_FullMethodName,
  9594. }
  9595. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9596. return srv.(GoSysClientServer).SysPermGet(ctx, req.(*SysPermGetReq))
  9597. }
  9598. return interceptor(ctx, in, info, handler)
  9599. }
  9600. func _GoSysClient_SysPermList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9601. in := new(SysPermListReq)
  9602. if err := dec(in); err != nil {
  9603. return nil, err
  9604. }
  9605. if interceptor == nil {
  9606. return srv.(GoSysClientServer).SysPermList(ctx, in)
  9607. }
  9608. info := &grpc.UnaryServerInfo{
  9609. Server: srv,
  9610. FullMethod: GoSysClient_SysPermList_FullMethodName,
  9611. }
  9612. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9613. return srv.(GoSysClientServer).SysPermList(ctx, req.(*SysPermListReq))
  9614. }
  9615. return interceptor(ctx, in, info, handler)
  9616. }
  9617. func _GoSysClient_SysUserRoleAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9618. in := new(SysUserRoleVo)
  9619. if err := dec(in); err != nil {
  9620. return nil, err
  9621. }
  9622. if interceptor == nil {
  9623. return srv.(GoSysClientServer).SysUserRoleAdd(ctx, in)
  9624. }
  9625. info := &grpc.UnaryServerInfo{
  9626. Server: srv,
  9627. FullMethod: GoSysClient_SysUserRoleAdd_FullMethodName,
  9628. }
  9629. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9630. return srv.(GoSysClientServer).SysUserRoleAdd(ctx, req.(*SysUserRoleVo))
  9631. }
  9632. return interceptor(ctx, in, info, handler)
  9633. }
  9634. func _GoSysClient_SysUserRoleUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9635. in := new(SysUserRoleVo)
  9636. if err := dec(in); err != nil {
  9637. return nil, err
  9638. }
  9639. if interceptor == nil {
  9640. return srv.(GoSysClientServer).SysUserRoleUpdate(ctx, in)
  9641. }
  9642. info := &grpc.UnaryServerInfo{
  9643. Server: srv,
  9644. FullMethod: GoSysClient_SysUserRoleUpdate_FullMethodName,
  9645. }
  9646. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9647. return srv.(GoSysClientServer).SysUserRoleUpdate(ctx, req.(*SysUserRoleVo))
  9648. }
  9649. return interceptor(ctx, in, info, handler)
  9650. }
  9651. func _GoSysClient_SysUserRoleDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9652. in := new(Ids)
  9653. if err := dec(in); err != nil {
  9654. return nil, err
  9655. }
  9656. if interceptor == nil {
  9657. return srv.(GoSysClientServer).SysUserRoleDelete(ctx, in)
  9658. }
  9659. info := &grpc.UnaryServerInfo{
  9660. Server: srv,
  9661. FullMethod: GoSysClient_SysUserRoleDelete_FullMethodName,
  9662. }
  9663. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9664. return srv.(GoSysClientServer).SysUserRoleDelete(ctx, req.(*Ids))
  9665. }
  9666. return interceptor(ctx, in, info, handler)
  9667. }
  9668. func _GoSysClient_SysUserRoleGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9669. in := new(SysUserRoleGetReq)
  9670. if err := dec(in); err != nil {
  9671. return nil, err
  9672. }
  9673. if interceptor == nil {
  9674. return srv.(GoSysClientServer).SysUserRoleGet(ctx, in)
  9675. }
  9676. info := &grpc.UnaryServerInfo{
  9677. Server: srv,
  9678. FullMethod: GoSysClient_SysUserRoleGet_FullMethodName,
  9679. }
  9680. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9681. return srv.(GoSysClientServer).SysUserRoleGet(ctx, req.(*SysUserRoleGetReq))
  9682. }
  9683. return interceptor(ctx, in, info, handler)
  9684. }
  9685. func _GoSysClient_SysUserRoleList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9686. in := new(SysUserRoleListReq)
  9687. if err := dec(in); err != nil {
  9688. return nil, err
  9689. }
  9690. if interceptor == nil {
  9691. return srv.(GoSysClientServer).SysUserRoleList(ctx, in)
  9692. }
  9693. info := &grpc.UnaryServerInfo{
  9694. Server: srv,
  9695. FullMethod: GoSysClient_SysUserRoleList_FullMethodName,
  9696. }
  9697. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9698. return srv.(GoSysClientServer).SysUserRoleList(ctx, req.(*SysUserRoleListReq))
  9699. }
  9700. return interceptor(ctx, in, info, handler)
  9701. }
  9702. func _GoSysClient_SysRolePermAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9703. in := new(SysRolePermVo)
  9704. if err := dec(in); err != nil {
  9705. return nil, err
  9706. }
  9707. if interceptor == nil {
  9708. return srv.(GoSysClientServer).SysRolePermAdd(ctx, in)
  9709. }
  9710. info := &grpc.UnaryServerInfo{
  9711. Server: srv,
  9712. FullMethod: GoSysClient_SysRolePermAdd_FullMethodName,
  9713. }
  9714. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9715. return srv.(GoSysClientServer).SysRolePermAdd(ctx, req.(*SysRolePermVo))
  9716. }
  9717. return interceptor(ctx, in, info, handler)
  9718. }
  9719. func _GoSysClient_SysRolePermUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9720. in := new(SysRolePermVo)
  9721. if err := dec(in); err != nil {
  9722. return nil, err
  9723. }
  9724. if interceptor == nil {
  9725. return srv.(GoSysClientServer).SysRolePermUpdate(ctx, in)
  9726. }
  9727. info := &grpc.UnaryServerInfo{
  9728. Server: srv,
  9729. FullMethod: GoSysClient_SysRolePermUpdate_FullMethodName,
  9730. }
  9731. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9732. return srv.(GoSysClientServer).SysRolePermUpdate(ctx, req.(*SysRolePermVo))
  9733. }
  9734. return interceptor(ctx, in, info, handler)
  9735. }
  9736. func _GoSysClient_SysRolePermDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9737. in := new(Ids)
  9738. if err := dec(in); err != nil {
  9739. return nil, err
  9740. }
  9741. if interceptor == nil {
  9742. return srv.(GoSysClientServer).SysRolePermDelete(ctx, in)
  9743. }
  9744. info := &grpc.UnaryServerInfo{
  9745. Server: srv,
  9746. FullMethod: GoSysClient_SysRolePermDelete_FullMethodName,
  9747. }
  9748. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9749. return srv.(GoSysClientServer).SysRolePermDelete(ctx, req.(*Ids))
  9750. }
  9751. return interceptor(ctx, in, info, handler)
  9752. }
  9753. func _GoSysClient_SysRolePermGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9754. in := new(SysRolePermGetReq)
  9755. if err := dec(in); err != nil {
  9756. return nil, err
  9757. }
  9758. if interceptor == nil {
  9759. return srv.(GoSysClientServer).SysRolePermGet(ctx, in)
  9760. }
  9761. info := &grpc.UnaryServerInfo{
  9762. Server: srv,
  9763. FullMethod: GoSysClient_SysRolePermGet_FullMethodName,
  9764. }
  9765. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9766. return srv.(GoSysClientServer).SysRolePermGet(ctx, req.(*SysRolePermGetReq))
  9767. }
  9768. return interceptor(ctx, in, info, handler)
  9769. }
  9770. func _GoSysClient_SysRolePermList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9771. in := new(SysRolePermListReq)
  9772. if err := dec(in); err != nil {
  9773. return nil, err
  9774. }
  9775. if interceptor == nil {
  9776. return srv.(GoSysClientServer).SysRolePermList(ctx, in)
  9777. }
  9778. info := &grpc.UnaryServerInfo{
  9779. Server: srv,
  9780. FullMethod: GoSysClient_SysRolePermList_FullMethodName,
  9781. }
  9782. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9783. return srv.(GoSysClientServer).SysRolePermList(ctx, req.(*SysRolePermListReq))
  9784. }
  9785. return interceptor(ctx, in, info, handler)
  9786. }
  9787. func _GoSysClient_SysUserPermAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9788. in := new(SysUserPermVo)
  9789. if err := dec(in); err != nil {
  9790. return nil, err
  9791. }
  9792. if interceptor == nil {
  9793. return srv.(GoSysClientServer).SysUserPermAdd(ctx, in)
  9794. }
  9795. info := &grpc.UnaryServerInfo{
  9796. Server: srv,
  9797. FullMethod: GoSysClient_SysUserPermAdd_FullMethodName,
  9798. }
  9799. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9800. return srv.(GoSysClientServer).SysUserPermAdd(ctx, req.(*SysUserPermVo))
  9801. }
  9802. return interceptor(ctx, in, info, handler)
  9803. }
  9804. func _GoSysClient_SysUserPermUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9805. in := new(SysUserPermVo)
  9806. if err := dec(in); err != nil {
  9807. return nil, err
  9808. }
  9809. if interceptor == nil {
  9810. return srv.(GoSysClientServer).SysUserPermUpdate(ctx, in)
  9811. }
  9812. info := &grpc.UnaryServerInfo{
  9813. Server: srv,
  9814. FullMethod: GoSysClient_SysUserPermUpdate_FullMethodName,
  9815. }
  9816. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9817. return srv.(GoSysClientServer).SysUserPermUpdate(ctx, req.(*SysUserPermVo))
  9818. }
  9819. return interceptor(ctx, in, info, handler)
  9820. }
  9821. func _GoSysClient_SysUserPermDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9822. in := new(Ids)
  9823. if err := dec(in); err != nil {
  9824. return nil, err
  9825. }
  9826. if interceptor == nil {
  9827. return srv.(GoSysClientServer).SysUserPermDelete(ctx, in)
  9828. }
  9829. info := &grpc.UnaryServerInfo{
  9830. Server: srv,
  9831. FullMethod: GoSysClient_SysUserPermDelete_FullMethodName,
  9832. }
  9833. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9834. return srv.(GoSysClientServer).SysUserPermDelete(ctx, req.(*Ids))
  9835. }
  9836. return interceptor(ctx, in, info, handler)
  9837. }
  9838. func _GoSysClient_SysUserPermGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9839. in := new(SysUserPermGetReq)
  9840. if err := dec(in); err != nil {
  9841. return nil, err
  9842. }
  9843. if interceptor == nil {
  9844. return srv.(GoSysClientServer).SysUserPermGet(ctx, in)
  9845. }
  9846. info := &grpc.UnaryServerInfo{
  9847. Server: srv,
  9848. FullMethod: GoSysClient_SysUserPermGet_FullMethodName,
  9849. }
  9850. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9851. return srv.(GoSysClientServer).SysUserPermGet(ctx, req.(*SysUserPermGetReq))
  9852. }
  9853. return interceptor(ctx, in, info, handler)
  9854. }
  9855. func _GoSysClient_SysUserPermList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9856. in := new(SysUserPermListReq)
  9857. if err := dec(in); err != nil {
  9858. return nil, err
  9859. }
  9860. if interceptor == nil {
  9861. return srv.(GoSysClientServer).SysUserPermList(ctx, in)
  9862. }
  9863. info := &grpc.UnaryServerInfo{
  9864. Server: srv,
  9865. FullMethod: GoSysClient_SysUserPermList_FullMethodName,
  9866. }
  9867. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9868. return srv.(GoSysClientServer).SysUserPermList(ctx, req.(*SysUserPermListReq))
  9869. }
  9870. return interceptor(ctx, in, info, handler)
  9871. }
  9872. // GoSysClient_ServiceDesc is the grpc.ServiceDesc for GoSysClient service.
  9873. // It's only intended for direct use with grpc.RegisterService,
  9874. // and not to be introspected or modified (even as a copy)
  9875. var GoSysClient_ServiceDesc = grpc.ServiceDesc{
  9876. ServiceName: "gorpc.GoSysClient",
  9877. HandlerType: (*GoSysClientServer)(nil),
  9878. Methods: []grpc.MethodDesc{
  9879. {
  9880. MethodName: "Ping",
  9881. Handler: _GoSysClient_Ping_Handler,
  9882. },
  9883. {
  9884. MethodName: "SysUserAdd",
  9885. Handler: _GoSysClient_SysUserAdd_Handler,
  9886. },
  9887. {
  9888. MethodName: "SysUserUpdate",
  9889. Handler: _GoSysClient_SysUserUpdate_Handler,
  9890. },
  9891. {
  9892. MethodName: "SysUserDelete",
  9893. Handler: _GoSysClient_SysUserDelete_Handler,
  9894. },
  9895. {
  9896. MethodName: "SysUserGet",
  9897. Handler: _GoSysClient_SysUserGet_Handler,
  9898. },
  9899. {
  9900. MethodName: "SysUserList",
  9901. Handler: _GoSysClient_SysUserList_Handler,
  9902. },
  9903. {
  9904. MethodName: "SysUserAddWithRolesAndPerms",
  9905. Handler: _GoSysClient_SysUserAddWithRolesAndPerms_Handler,
  9906. },
  9907. {
  9908. MethodName: "SysUserUpdateWithRolesAndPerms",
  9909. Handler: _GoSysClient_SysUserUpdateWithRolesAndPerms_Handler,
  9910. },
  9911. {
  9912. MethodName: "SysUserGetWithRolesAndPerms",
  9913. Handler: _GoSysClient_SysUserGetWithRolesAndPerms_Handler,
  9914. },
  9915. {
  9916. MethodName: "SysUserListWithRolesAndPerms",
  9917. Handler: _GoSysClient_SysUserListWithRolesAndPerms_Handler,
  9918. },
  9919. {
  9920. MethodName: "SysRoleAdd",
  9921. Handler: _GoSysClient_SysRoleAdd_Handler,
  9922. },
  9923. {
  9924. MethodName: "SysRoleUpdate",
  9925. Handler: _GoSysClient_SysRoleUpdate_Handler,
  9926. },
  9927. {
  9928. MethodName: "SysRoleDelete",
  9929. Handler: _GoSysClient_SysRoleDelete_Handler,
  9930. },
  9931. {
  9932. MethodName: "SysRoleGet",
  9933. Handler: _GoSysClient_SysRoleGet_Handler,
  9934. },
  9935. {
  9936. MethodName: "SysRoleList",
  9937. Handler: _GoSysClient_SysRoleList_Handler,
  9938. },
  9939. {
  9940. MethodName: "SysRoleAddWithPerms",
  9941. Handler: _GoSysClient_SysRoleAddWithPerms_Handler,
  9942. },
  9943. {
  9944. MethodName: "SysRoleUpdateWithPerms",
  9945. Handler: _GoSysClient_SysRoleUpdateWithPerms_Handler,
  9946. },
  9947. {
  9948. MethodName: "SysRoleGetWithPerms",
  9949. Handler: _GoSysClient_SysRoleGetWithPerms_Handler,
  9950. },
  9951. {
  9952. MethodName: "SysRoleListWithPerms",
  9953. Handler: _GoSysClient_SysRoleListWithPerms_Handler,
  9954. },
  9955. {
  9956. MethodName: "SysPermAdd",
  9957. Handler: _GoSysClient_SysPermAdd_Handler,
  9958. },
  9959. {
  9960. MethodName: "SysPermUpdate",
  9961. Handler: _GoSysClient_SysPermUpdate_Handler,
  9962. },
  9963. {
  9964. MethodName: "SysPermDelete",
  9965. Handler: _GoSysClient_SysPermDelete_Handler,
  9966. },
  9967. {
  9968. MethodName: "SysPermGet",
  9969. Handler: _GoSysClient_SysPermGet_Handler,
  9970. },
  9971. {
  9972. MethodName: "SysPermList",
  9973. Handler: _GoSysClient_SysPermList_Handler,
  9974. },
  9975. {
  9976. MethodName: "SysUserRoleAdd",
  9977. Handler: _GoSysClient_SysUserRoleAdd_Handler,
  9978. },
  9979. {
  9980. MethodName: "SysUserRoleUpdate",
  9981. Handler: _GoSysClient_SysUserRoleUpdate_Handler,
  9982. },
  9983. {
  9984. MethodName: "SysUserRoleDelete",
  9985. Handler: _GoSysClient_SysUserRoleDelete_Handler,
  9986. },
  9987. {
  9988. MethodName: "SysUserRoleGet",
  9989. Handler: _GoSysClient_SysUserRoleGet_Handler,
  9990. },
  9991. {
  9992. MethodName: "SysUserRoleList",
  9993. Handler: _GoSysClient_SysUserRoleList_Handler,
  9994. },
  9995. {
  9996. MethodName: "SysRolePermAdd",
  9997. Handler: _GoSysClient_SysRolePermAdd_Handler,
  9998. },
  9999. {
  10000. MethodName: "SysRolePermUpdate",
  10001. Handler: _GoSysClient_SysRolePermUpdate_Handler,
  10002. },
  10003. {
  10004. MethodName: "SysRolePermDelete",
  10005. Handler: _GoSysClient_SysRolePermDelete_Handler,
  10006. },
  10007. {
  10008. MethodName: "SysRolePermGet",
  10009. Handler: _GoSysClient_SysRolePermGet_Handler,
  10010. },
  10011. {
  10012. MethodName: "SysRolePermList",
  10013. Handler: _GoSysClient_SysRolePermList_Handler,
  10014. },
  10015. {
  10016. MethodName: "SysUserPermAdd",
  10017. Handler: _GoSysClient_SysUserPermAdd_Handler,
  10018. },
  10019. {
  10020. MethodName: "SysUserPermUpdate",
  10021. Handler: _GoSysClient_SysUserPermUpdate_Handler,
  10022. },
  10023. {
  10024. MethodName: "SysUserPermDelete",
  10025. Handler: _GoSysClient_SysUserPermDelete_Handler,
  10026. },
  10027. {
  10028. MethodName: "SysUserPermGet",
  10029. Handler: _GoSysClient_SysUserPermGet_Handler,
  10030. },
  10031. {
  10032. MethodName: "SysUserPermList",
  10033. Handler: _GoSysClient_SysUserPermList_Handler,
  10034. },
  10035. },
  10036. Streams: []grpc.StreamDesc{},
  10037. Metadata: "gorpc.proto",
  10038. }
  10039. const (
  10040. GoUserClient_Ping_FullMethodName = "/gorpc.GoUserClient/Ping"
  10041. GoUserClient_UserAppConfigAdd_FullMethodName = "/gorpc.GoUserClient/UserAppConfigAdd"
  10042. GoUserClient_UserAppConfigUpdate_FullMethodName = "/gorpc.GoUserClient/UserAppConfigUpdate"
  10043. GoUserClient_UserAppConfigDel_FullMethodName = "/gorpc.GoUserClient/UserAppConfigDel"
  10044. GoUserClient_UserAppConfigGet_FullMethodName = "/gorpc.GoUserClient/UserAppConfigGet"
  10045. GoUserClient_UserAppConfigList_FullMethodName = "/gorpc.GoUserClient/UserAppConfigList"
  10046. GoUserClient_DeviceAdd_FullMethodName = "/gorpc.GoUserClient/DeviceAdd"
  10047. GoUserClient_DeviceUpdate_FullMethodName = "/gorpc.GoUserClient/DeviceUpdate"
  10048. GoUserClient_DeviceDel_FullMethodName = "/gorpc.GoUserClient/DeviceDel"
  10049. GoUserClient_DeviceGet_FullMethodName = "/gorpc.GoUserClient/DeviceGet"
  10050. GoUserClient_DeviceList_FullMethodName = "/gorpc.GoUserClient/DeviceList"
  10051. GoUserClient_AccountAdd_FullMethodName = "/gorpc.GoUserClient/AccountAdd"
  10052. GoUserClient_AccountUpdate_FullMethodName = "/gorpc.GoUserClient/AccountUpdate"
  10053. GoUserClient_AccountDel_FullMethodName = "/gorpc.GoUserClient/AccountDel"
  10054. GoUserClient_AccountGet_FullMethodName = "/gorpc.GoUserClient/AccountGet"
  10055. GoUserClient_AccountList_FullMethodName = "/gorpc.GoUserClient/AccountList"
  10056. GoUserClient_AccountDeviceAdd_FullMethodName = "/gorpc.GoUserClient/AccountDeviceAdd"
  10057. GoUserClient_AccountDeviceUpdate_FullMethodName = "/gorpc.GoUserClient/AccountDeviceUpdate"
  10058. GoUserClient_AccountDeviceDel_FullMethodName = "/gorpc.GoUserClient/AccountDeviceDel"
  10059. GoUserClient_AccountDeviceGet_FullMethodName = "/gorpc.GoUserClient/AccountDeviceGet"
  10060. GoUserClient_AccountDeviceList_FullMethodName = "/gorpc.GoUserClient/AccountDeviceList"
  10061. GoUserClient_UserWhiteAdd_FullMethodName = "/gorpc.GoUserClient/UserWhiteAdd"
  10062. GoUserClient_UserWhiteUpdate_FullMethodName = "/gorpc.GoUserClient/UserWhiteUpdate"
  10063. GoUserClient_UserWhiteDel_FullMethodName = "/gorpc.GoUserClient/UserWhiteDel"
  10064. GoUserClient_UserWhiteGet_FullMethodName = "/gorpc.GoUserClient/UserWhiteGet"
  10065. GoUserClient_UserWhiteList_FullMethodName = "/gorpc.GoUserClient/UserWhiteList"
  10066. GoUserClient_UserTestAdd_FullMethodName = "/gorpc.GoUserClient/UserTestAdd"
  10067. GoUserClient_UserTestUpdate_FullMethodName = "/gorpc.GoUserClient/UserTestUpdate"
  10068. GoUserClient_UserTestDel_FullMethodName = "/gorpc.GoUserClient/UserTestDel"
  10069. GoUserClient_UserTestGet_FullMethodName = "/gorpc.GoUserClient/UserTestGet"
  10070. GoUserClient_UserTestList_FullMethodName = "/gorpc.GoUserClient/UserTestList"
  10071. GoUserClient_UserAdd_FullMethodName = "/gorpc.GoUserClient/UserAdd"
  10072. GoUserClient_UserUpdate_FullMethodName = "/gorpc.GoUserClient/UserUpdate"
  10073. GoUserClient_UserDel_FullMethodName = "/gorpc.GoUserClient/UserDel"
  10074. GoUserClient_UserGet_FullMethodName = "/gorpc.GoUserClient/UserGet"
  10075. GoUserClient_UserList_FullMethodName = "/gorpc.GoUserClient/UserList"
  10076. GoUserClient_UserCredentialAdd_FullMethodName = "/gorpc.GoUserClient/UserCredentialAdd"
  10077. GoUserClient_UserCredentialUpdate_FullMethodName = "/gorpc.GoUserClient/UserCredentialUpdate"
  10078. GoUserClient_UserCredentialDel_FullMethodName = "/gorpc.GoUserClient/UserCredentialDel"
  10079. GoUserClient_UserCredentialGet_FullMethodName = "/gorpc.GoUserClient/UserCredentialGet"
  10080. GoUserClient_UserCredentialList_FullMethodName = "/gorpc.GoUserClient/UserCredentialList"
  10081. GoUserClient_UserDeviceAdd_FullMethodName = "/gorpc.GoUserClient/UserDeviceAdd"
  10082. GoUserClient_UserDeviceUpdate_FullMethodName = "/gorpc.GoUserClient/UserDeviceUpdate"
  10083. GoUserClient_UserDeviceDel_FullMethodName = "/gorpc.GoUserClient/UserDeviceDel"
  10084. GoUserClient_UserDeviceGet_FullMethodName = "/gorpc.GoUserClient/UserDeviceGet"
  10085. GoUserClient_UserDeviceList_FullMethodName = "/gorpc.GoUserClient/UserDeviceList"
  10086. GoUserClient_UserServiceAdd_FullMethodName = "/gorpc.GoUserClient/UserServiceAdd"
  10087. GoUserClient_UserServiceUpdate_FullMethodName = "/gorpc.GoUserClient/UserServiceUpdate"
  10088. GoUserClient_UserServiceDel_FullMethodName = "/gorpc.GoUserClient/UserServiceDel"
  10089. GoUserClient_UserServiceGet_FullMethodName = "/gorpc.GoUserClient/UserServiceGet"
  10090. GoUserClient_UserServiceList_FullMethodName = "/gorpc.GoUserClient/UserServiceList"
  10091. )
  10092. // GoUserClientClient is the client API for GoUserClient service.
  10093. //
  10094. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  10095. //
  10096. // 用户模块
  10097. type GoUserClientClient interface {
  10098. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  10099. // 用户app配置管理(ring)
  10100. UserAppConfigAdd(ctx context.Context, in *UserAppConfigVo, opts ...grpc.CallOption) (*UserAppConfigVo, error)
  10101. UserAppConfigUpdate(ctx context.Context, in *UserAppConfigVo, opts ...grpc.CallOption) (*UserAppConfigVo, error)
  10102. UserAppConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  10103. UserAppConfigGet(ctx context.Context, in *UserAppConfigGetReq, opts ...grpc.CallOption) (*UserAppConfigVo, error)
  10104. UserAppConfigList(ctx context.Context, in *UserAppConfigListReq, opts ...grpc.CallOption) (*UserAppConfigListRes, error)
  10105. // Device Model
  10106. // DeviceAdd
  10107. DeviceAdd(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error)
  10108. DeviceUpdate(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error)
  10109. DeviceDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  10110. DeviceGet(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error)
  10111. DeviceList(ctx context.Context, in *DeviceListReq, opts ...grpc.CallOption) (*DeviceListRes, error)
  10112. // Account Model
  10113. // AccountAdd
  10114. AccountAdd(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error)
  10115. AccountUpdate(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error)
  10116. AccountDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  10117. AccountGet(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error)
  10118. AccountList(ctx context.Context, in *AccountListReq, opts ...grpc.CallOption) (*AccountListResp, error)
  10119. // AccountDevice Model
  10120. // AccountDeviceAdd
  10121. AccountDeviceAdd(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error)
  10122. AccountDeviceUpdate(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error)
  10123. AccountDeviceDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  10124. AccountDeviceGet(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error)
  10125. AccountDeviceList(ctx context.Context, in *AccountDeviceListReq, opts ...grpc.CallOption) (*AccountDeviceListResp, error)
  10126. // 用户白名单管理
  10127. UserWhiteAdd(ctx context.Context, in *UserWhiteAddReq, opts ...grpc.CallOption) (*UserWhiteAddResp, error)
  10128. UserWhiteUpdate(ctx context.Context, in *UserWhiteUpdateReq, opts ...grpc.CallOption) (*UserWhiteUpdateResp, error)
  10129. UserWhiteDel(ctx context.Context, in *UserWhiteDelReq, opts ...grpc.CallOption) (*Empty, error)
  10130. UserWhiteGet(ctx context.Context, in *UserWhiteGetReq, opts ...grpc.CallOption) (*UserWhiteGetResp, error)
  10131. UserWhiteList(ctx context.Context, in *UserWhiteListReq, opts ...grpc.CallOption) (*UserWhiteListResp, error)
  10132. // 测试用户管理
  10133. UserTestAdd(ctx context.Context, in *UserTestAddReq, opts ...grpc.CallOption) (*UserTestAddResp, error)
  10134. UserTestUpdate(ctx context.Context, in *UserTestUpdateReq, opts ...grpc.CallOption) (*UserTestUpdateResp, error)
  10135. UserTestDel(ctx context.Context, in *UserTestDelReq, opts ...grpc.CallOption) (*Empty, error)
  10136. UserTestGet(ctx context.Context, in *UserTestGetReq, opts ...grpc.CallOption) (*UserTestGetResp, error)
  10137. UserTestList(ctx context.Context, in *UserTestListReq, opts ...grpc.CallOption) (*UserTestListResp, error)
  10138. // User Model
  10139. // UserAdd
  10140. UserAdd(ctx context.Context, in *UserAddReq, opts ...grpc.CallOption) (*UserAddResp, error)
  10141. UserUpdate(ctx context.Context, in *UserUpdateReq, opts ...grpc.CallOption) (*UserUpdateResp, error)
  10142. UserDel(ctx context.Context, in *UserDelReq, opts ...grpc.CallOption) (*Empty, error)
  10143. UserGet(ctx context.Context, in *UserGetReq, opts ...grpc.CallOption) (*UserGetResp, error)
  10144. UserList(ctx context.Context, in *UserListReq, opts ...grpc.CallOption) (*UserListResp, error)
  10145. // UserCredential Model
  10146. // UserCredentialAdd
  10147. UserCredentialAdd(ctx context.Context, in *UserCredentialAddReq, opts ...grpc.CallOption) (*UserCredentialAddResp, error)
  10148. UserCredentialUpdate(ctx context.Context, in *UserCredentialUpdateReq, opts ...grpc.CallOption) (*UserCredentialUpdateResp, error)
  10149. UserCredentialDel(ctx context.Context, in *UserCredentialDelReq, opts ...grpc.CallOption) (*Empty, error)
  10150. UserCredentialGet(ctx context.Context, in *UserCredentialGetReq, opts ...grpc.CallOption) (*UserCredentialGetResp, error)
  10151. UserCredentialList(ctx context.Context, in *UserCredentialListReq, opts ...grpc.CallOption) (*UserCredentialListResp, error)
  10152. // UserDevice Model
  10153. // UserDeviceAdd
  10154. UserDeviceAdd(ctx context.Context, in *UserDeviceAddReq, opts ...grpc.CallOption) (*UserDeviceAddResp, error)
  10155. UserDeviceUpdate(ctx context.Context, in *UserDeviceUpdateReq, opts ...grpc.CallOption) (*UserDeviceUpdateResp, error)
  10156. UserDeviceDel(ctx context.Context, in *UserDeviceDelReq, opts ...grpc.CallOption) (*Empty, error)
  10157. UserDeviceGet(ctx context.Context, in *UserDeviceGetReq, opts ...grpc.CallOption) (*UserDeviceGetResp, error)
  10158. UserDeviceList(ctx context.Context, in *UserDeviceListReq, opts ...grpc.CallOption) (*UserDeviceListResp, error)
  10159. // UserService
  10160. UserServiceAdd(ctx context.Context, in *UserServiceAddReq, opts ...grpc.CallOption) (*UserServiceAddResp, error)
  10161. UserServiceUpdate(ctx context.Context, in *UserServiceUpdateReq, opts ...grpc.CallOption) (*UserServiceUpdateResp, error)
  10162. UserServiceDel(ctx context.Context, in *UserServiceDelReq, opts ...grpc.CallOption) (*Empty, error)
  10163. UserServiceGet(ctx context.Context, in *UserServiceGetReq, opts ...grpc.CallOption) (*UserServiceGetResp, error)
  10164. UserServiceList(ctx context.Context, in *UserServiceListReq, opts ...grpc.CallOption) (*UserServiceListResp, error)
  10165. }
  10166. type goUserClientClient struct {
  10167. cc grpc.ClientConnInterface
  10168. }
  10169. func NewGoUserClientClient(cc grpc.ClientConnInterface) GoUserClientClient {
  10170. return &goUserClientClient{cc}
  10171. }
  10172. func (c *goUserClientClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  10173. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10174. out := new(Response)
  10175. err := c.cc.Invoke(ctx, GoUserClient_Ping_FullMethodName, in, out, cOpts...)
  10176. if err != nil {
  10177. return nil, err
  10178. }
  10179. return out, nil
  10180. }
  10181. func (c *goUserClientClient) UserAppConfigAdd(ctx context.Context, in *UserAppConfigVo, opts ...grpc.CallOption) (*UserAppConfigVo, error) {
  10182. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10183. out := new(UserAppConfigVo)
  10184. err := c.cc.Invoke(ctx, GoUserClient_UserAppConfigAdd_FullMethodName, in, out, cOpts...)
  10185. if err != nil {
  10186. return nil, err
  10187. }
  10188. return out, nil
  10189. }
  10190. func (c *goUserClientClient) UserAppConfigUpdate(ctx context.Context, in *UserAppConfigVo, opts ...grpc.CallOption) (*UserAppConfigVo, error) {
  10191. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10192. out := new(UserAppConfigVo)
  10193. err := c.cc.Invoke(ctx, GoUserClient_UserAppConfigUpdate_FullMethodName, in, out, cOpts...)
  10194. if err != nil {
  10195. return nil, err
  10196. }
  10197. return out, nil
  10198. }
  10199. func (c *goUserClientClient) UserAppConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  10200. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10201. out := new(Empty)
  10202. err := c.cc.Invoke(ctx, GoUserClient_UserAppConfigDel_FullMethodName, in, out, cOpts...)
  10203. if err != nil {
  10204. return nil, err
  10205. }
  10206. return out, nil
  10207. }
  10208. func (c *goUserClientClient) UserAppConfigGet(ctx context.Context, in *UserAppConfigGetReq, opts ...grpc.CallOption) (*UserAppConfigVo, error) {
  10209. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10210. out := new(UserAppConfigVo)
  10211. err := c.cc.Invoke(ctx, GoUserClient_UserAppConfigGet_FullMethodName, in, out, cOpts...)
  10212. if err != nil {
  10213. return nil, err
  10214. }
  10215. return out, nil
  10216. }
  10217. func (c *goUserClientClient) UserAppConfigList(ctx context.Context, in *UserAppConfigListReq, opts ...grpc.CallOption) (*UserAppConfigListRes, error) {
  10218. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10219. out := new(UserAppConfigListRes)
  10220. err := c.cc.Invoke(ctx, GoUserClient_UserAppConfigList_FullMethodName, in, out, cOpts...)
  10221. if err != nil {
  10222. return nil, err
  10223. }
  10224. return out, nil
  10225. }
  10226. func (c *goUserClientClient) DeviceAdd(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error) {
  10227. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10228. out := new(DeviceVo)
  10229. err := c.cc.Invoke(ctx, GoUserClient_DeviceAdd_FullMethodName, in, out, cOpts...)
  10230. if err != nil {
  10231. return nil, err
  10232. }
  10233. return out, nil
  10234. }
  10235. func (c *goUserClientClient) DeviceUpdate(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error) {
  10236. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10237. out := new(DeviceVo)
  10238. err := c.cc.Invoke(ctx, GoUserClient_DeviceUpdate_FullMethodName, in, out, cOpts...)
  10239. if err != nil {
  10240. return nil, err
  10241. }
  10242. return out, nil
  10243. }
  10244. func (c *goUserClientClient) DeviceDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  10245. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10246. out := new(Empty)
  10247. err := c.cc.Invoke(ctx, GoUserClient_DeviceDel_FullMethodName, in, out, cOpts...)
  10248. if err != nil {
  10249. return nil, err
  10250. }
  10251. return out, nil
  10252. }
  10253. func (c *goUserClientClient) DeviceGet(ctx context.Context, in *DeviceVo, opts ...grpc.CallOption) (*DeviceVo, error) {
  10254. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10255. out := new(DeviceVo)
  10256. err := c.cc.Invoke(ctx, GoUserClient_DeviceGet_FullMethodName, in, out, cOpts...)
  10257. if err != nil {
  10258. return nil, err
  10259. }
  10260. return out, nil
  10261. }
  10262. func (c *goUserClientClient) DeviceList(ctx context.Context, in *DeviceListReq, opts ...grpc.CallOption) (*DeviceListRes, error) {
  10263. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10264. out := new(DeviceListRes)
  10265. err := c.cc.Invoke(ctx, GoUserClient_DeviceList_FullMethodName, in, out, cOpts...)
  10266. if err != nil {
  10267. return nil, err
  10268. }
  10269. return out, nil
  10270. }
  10271. func (c *goUserClientClient) AccountAdd(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error) {
  10272. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10273. out := new(AccountVo)
  10274. err := c.cc.Invoke(ctx, GoUserClient_AccountAdd_FullMethodName, in, out, cOpts...)
  10275. if err != nil {
  10276. return nil, err
  10277. }
  10278. return out, nil
  10279. }
  10280. func (c *goUserClientClient) AccountUpdate(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error) {
  10281. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10282. out := new(AccountVo)
  10283. err := c.cc.Invoke(ctx, GoUserClient_AccountUpdate_FullMethodName, in, out, cOpts...)
  10284. if err != nil {
  10285. return nil, err
  10286. }
  10287. return out, nil
  10288. }
  10289. func (c *goUserClientClient) AccountDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  10290. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10291. out := new(Empty)
  10292. err := c.cc.Invoke(ctx, GoUserClient_AccountDel_FullMethodName, in, out, cOpts...)
  10293. if err != nil {
  10294. return nil, err
  10295. }
  10296. return out, nil
  10297. }
  10298. func (c *goUserClientClient) AccountGet(ctx context.Context, in *AccountVo, opts ...grpc.CallOption) (*AccountVo, error) {
  10299. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10300. out := new(AccountVo)
  10301. err := c.cc.Invoke(ctx, GoUserClient_AccountGet_FullMethodName, in, out, cOpts...)
  10302. if err != nil {
  10303. return nil, err
  10304. }
  10305. return out, nil
  10306. }
  10307. func (c *goUserClientClient) AccountList(ctx context.Context, in *AccountListReq, opts ...grpc.CallOption) (*AccountListResp, error) {
  10308. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10309. out := new(AccountListResp)
  10310. err := c.cc.Invoke(ctx, GoUserClient_AccountList_FullMethodName, in, out, cOpts...)
  10311. if err != nil {
  10312. return nil, err
  10313. }
  10314. return out, nil
  10315. }
  10316. func (c *goUserClientClient) AccountDeviceAdd(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error) {
  10317. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10318. out := new(AccountDeviceVo)
  10319. err := c.cc.Invoke(ctx, GoUserClient_AccountDeviceAdd_FullMethodName, in, out, cOpts...)
  10320. if err != nil {
  10321. return nil, err
  10322. }
  10323. return out, nil
  10324. }
  10325. func (c *goUserClientClient) AccountDeviceUpdate(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error) {
  10326. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10327. out := new(AccountDeviceVo)
  10328. err := c.cc.Invoke(ctx, GoUserClient_AccountDeviceUpdate_FullMethodName, in, out, cOpts...)
  10329. if err != nil {
  10330. return nil, err
  10331. }
  10332. return out, nil
  10333. }
  10334. func (c *goUserClientClient) AccountDeviceDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  10335. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10336. out := new(Empty)
  10337. err := c.cc.Invoke(ctx, GoUserClient_AccountDeviceDel_FullMethodName, in, out, cOpts...)
  10338. if err != nil {
  10339. return nil, err
  10340. }
  10341. return out, nil
  10342. }
  10343. func (c *goUserClientClient) AccountDeviceGet(ctx context.Context, in *AccountDeviceVo, opts ...grpc.CallOption) (*AccountDeviceVo, error) {
  10344. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10345. out := new(AccountDeviceVo)
  10346. err := c.cc.Invoke(ctx, GoUserClient_AccountDeviceGet_FullMethodName, in, out, cOpts...)
  10347. if err != nil {
  10348. return nil, err
  10349. }
  10350. return out, nil
  10351. }
  10352. func (c *goUserClientClient) AccountDeviceList(ctx context.Context, in *AccountDeviceListReq, opts ...grpc.CallOption) (*AccountDeviceListResp, error) {
  10353. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10354. out := new(AccountDeviceListResp)
  10355. err := c.cc.Invoke(ctx, GoUserClient_AccountDeviceList_FullMethodName, in, out, cOpts...)
  10356. if err != nil {
  10357. return nil, err
  10358. }
  10359. return out, nil
  10360. }
  10361. func (c *goUserClientClient) UserWhiteAdd(ctx context.Context, in *UserWhiteAddReq, opts ...grpc.CallOption) (*UserWhiteAddResp, error) {
  10362. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10363. out := new(UserWhiteAddResp)
  10364. err := c.cc.Invoke(ctx, GoUserClient_UserWhiteAdd_FullMethodName, in, out, cOpts...)
  10365. if err != nil {
  10366. return nil, err
  10367. }
  10368. return out, nil
  10369. }
  10370. func (c *goUserClientClient) UserWhiteUpdate(ctx context.Context, in *UserWhiteUpdateReq, opts ...grpc.CallOption) (*UserWhiteUpdateResp, error) {
  10371. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10372. out := new(UserWhiteUpdateResp)
  10373. err := c.cc.Invoke(ctx, GoUserClient_UserWhiteUpdate_FullMethodName, in, out, cOpts...)
  10374. if err != nil {
  10375. return nil, err
  10376. }
  10377. return out, nil
  10378. }
  10379. func (c *goUserClientClient) UserWhiteDel(ctx context.Context, in *UserWhiteDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10380. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10381. out := new(Empty)
  10382. err := c.cc.Invoke(ctx, GoUserClient_UserWhiteDel_FullMethodName, in, out, cOpts...)
  10383. if err != nil {
  10384. return nil, err
  10385. }
  10386. return out, nil
  10387. }
  10388. func (c *goUserClientClient) UserWhiteGet(ctx context.Context, in *UserWhiteGetReq, opts ...grpc.CallOption) (*UserWhiteGetResp, error) {
  10389. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10390. out := new(UserWhiteGetResp)
  10391. err := c.cc.Invoke(ctx, GoUserClient_UserWhiteGet_FullMethodName, in, out, cOpts...)
  10392. if err != nil {
  10393. return nil, err
  10394. }
  10395. return out, nil
  10396. }
  10397. func (c *goUserClientClient) UserWhiteList(ctx context.Context, in *UserWhiteListReq, opts ...grpc.CallOption) (*UserWhiteListResp, error) {
  10398. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10399. out := new(UserWhiteListResp)
  10400. err := c.cc.Invoke(ctx, GoUserClient_UserWhiteList_FullMethodName, in, out, cOpts...)
  10401. if err != nil {
  10402. return nil, err
  10403. }
  10404. return out, nil
  10405. }
  10406. func (c *goUserClientClient) UserTestAdd(ctx context.Context, in *UserTestAddReq, opts ...grpc.CallOption) (*UserTestAddResp, error) {
  10407. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10408. out := new(UserTestAddResp)
  10409. err := c.cc.Invoke(ctx, GoUserClient_UserTestAdd_FullMethodName, in, out, cOpts...)
  10410. if err != nil {
  10411. return nil, err
  10412. }
  10413. return out, nil
  10414. }
  10415. func (c *goUserClientClient) UserTestUpdate(ctx context.Context, in *UserTestUpdateReq, opts ...grpc.CallOption) (*UserTestUpdateResp, error) {
  10416. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10417. out := new(UserTestUpdateResp)
  10418. err := c.cc.Invoke(ctx, GoUserClient_UserTestUpdate_FullMethodName, in, out, cOpts...)
  10419. if err != nil {
  10420. return nil, err
  10421. }
  10422. return out, nil
  10423. }
  10424. func (c *goUserClientClient) UserTestDel(ctx context.Context, in *UserTestDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10425. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10426. out := new(Empty)
  10427. err := c.cc.Invoke(ctx, GoUserClient_UserTestDel_FullMethodName, in, out, cOpts...)
  10428. if err != nil {
  10429. return nil, err
  10430. }
  10431. return out, nil
  10432. }
  10433. func (c *goUserClientClient) UserTestGet(ctx context.Context, in *UserTestGetReq, opts ...grpc.CallOption) (*UserTestGetResp, error) {
  10434. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10435. out := new(UserTestGetResp)
  10436. err := c.cc.Invoke(ctx, GoUserClient_UserTestGet_FullMethodName, in, out, cOpts...)
  10437. if err != nil {
  10438. return nil, err
  10439. }
  10440. return out, nil
  10441. }
  10442. func (c *goUserClientClient) UserTestList(ctx context.Context, in *UserTestListReq, opts ...grpc.CallOption) (*UserTestListResp, error) {
  10443. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10444. out := new(UserTestListResp)
  10445. err := c.cc.Invoke(ctx, GoUserClient_UserTestList_FullMethodName, in, out, cOpts...)
  10446. if err != nil {
  10447. return nil, err
  10448. }
  10449. return out, nil
  10450. }
  10451. func (c *goUserClientClient) UserAdd(ctx context.Context, in *UserAddReq, opts ...grpc.CallOption) (*UserAddResp, error) {
  10452. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10453. out := new(UserAddResp)
  10454. err := c.cc.Invoke(ctx, GoUserClient_UserAdd_FullMethodName, in, out, cOpts...)
  10455. if err != nil {
  10456. return nil, err
  10457. }
  10458. return out, nil
  10459. }
  10460. func (c *goUserClientClient) UserUpdate(ctx context.Context, in *UserUpdateReq, opts ...grpc.CallOption) (*UserUpdateResp, error) {
  10461. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10462. out := new(UserUpdateResp)
  10463. err := c.cc.Invoke(ctx, GoUserClient_UserUpdate_FullMethodName, in, out, cOpts...)
  10464. if err != nil {
  10465. return nil, err
  10466. }
  10467. return out, nil
  10468. }
  10469. func (c *goUserClientClient) UserDel(ctx context.Context, in *UserDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10470. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10471. out := new(Empty)
  10472. err := c.cc.Invoke(ctx, GoUserClient_UserDel_FullMethodName, in, out, cOpts...)
  10473. if err != nil {
  10474. return nil, err
  10475. }
  10476. return out, nil
  10477. }
  10478. func (c *goUserClientClient) UserGet(ctx context.Context, in *UserGetReq, opts ...grpc.CallOption) (*UserGetResp, error) {
  10479. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10480. out := new(UserGetResp)
  10481. err := c.cc.Invoke(ctx, GoUserClient_UserGet_FullMethodName, in, out, cOpts...)
  10482. if err != nil {
  10483. return nil, err
  10484. }
  10485. return out, nil
  10486. }
  10487. func (c *goUserClientClient) UserList(ctx context.Context, in *UserListReq, opts ...grpc.CallOption) (*UserListResp, error) {
  10488. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10489. out := new(UserListResp)
  10490. err := c.cc.Invoke(ctx, GoUserClient_UserList_FullMethodName, in, out, cOpts...)
  10491. if err != nil {
  10492. return nil, err
  10493. }
  10494. return out, nil
  10495. }
  10496. func (c *goUserClientClient) UserCredentialAdd(ctx context.Context, in *UserCredentialAddReq, opts ...grpc.CallOption) (*UserCredentialAddResp, error) {
  10497. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10498. out := new(UserCredentialAddResp)
  10499. err := c.cc.Invoke(ctx, GoUserClient_UserCredentialAdd_FullMethodName, in, out, cOpts...)
  10500. if err != nil {
  10501. return nil, err
  10502. }
  10503. return out, nil
  10504. }
  10505. func (c *goUserClientClient) UserCredentialUpdate(ctx context.Context, in *UserCredentialUpdateReq, opts ...grpc.CallOption) (*UserCredentialUpdateResp, error) {
  10506. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10507. out := new(UserCredentialUpdateResp)
  10508. err := c.cc.Invoke(ctx, GoUserClient_UserCredentialUpdate_FullMethodName, in, out, cOpts...)
  10509. if err != nil {
  10510. return nil, err
  10511. }
  10512. return out, nil
  10513. }
  10514. func (c *goUserClientClient) UserCredentialDel(ctx context.Context, in *UserCredentialDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10515. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10516. out := new(Empty)
  10517. err := c.cc.Invoke(ctx, GoUserClient_UserCredentialDel_FullMethodName, in, out, cOpts...)
  10518. if err != nil {
  10519. return nil, err
  10520. }
  10521. return out, nil
  10522. }
  10523. func (c *goUserClientClient) UserCredentialGet(ctx context.Context, in *UserCredentialGetReq, opts ...grpc.CallOption) (*UserCredentialGetResp, error) {
  10524. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10525. out := new(UserCredentialGetResp)
  10526. err := c.cc.Invoke(ctx, GoUserClient_UserCredentialGet_FullMethodName, in, out, cOpts...)
  10527. if err != nil {
  10528. return nil, err
  10529. }
  10530. return out, nil
  10531. }
  10532. func (c *goUserClientClient) UserCredentialList(ctx context.Context, in *UserCredentialListReq, opts ...grpc.CallOption) (*UserCredentialListResp, error) {
  10533. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10534. out := new(UserCredentialListResp)
  10535. err := c.cc.Invoke(ctx, GoUserClient_UserCredentialList_FullMethodName, in, out, cOpts...)
  10536. if err != nil {
  10537. return nil, err
  10538. }
  10539. return out, nil
  10540. }
  10541. func (c *goUserClientClient) UserDeviceAdd(ctx context.Context, in *UserDeviceAddReq, opts ...grpc.CallOption) (*UserDeviceAddResp, error) {
  10542. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10543. out := new(UserDeviceAddResp)
  10544. err := c.cc.Invoke(ctx, GoUserClient_UserDeviceAdd_FullMethodName, in, out, cOpts...)
  10545. if err != nil {
  10546. return nil, err
  10547. }
  10548. return out, nil
  10549. }
  10550. func (c *goUserClientClient) UserDeviceUpdate(ctx context.Context, in *UserDeviceUpdateReq, opts ...grpc.CallOption) (*UserDeviceUpdateResp, error) {
  10551. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10552. out := new(UserDeviceUpdateResp)
  10553. err := c.cc.Invoke(ctx, GoUserClient_UserDeviceUpdate_FullMethodName, in, out, cOpts...)
  10554. if err != nil {
  10555. return nil, err
  10556. }
  10557. return out, nil
  10558. }
  10559. func (c *goUserClientClient) UserDeviceDel(ctx context.Context, in *UserDeviceDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10560. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10561. out := new(Empty)
  10562. err := c.cc.Invoke(ctx, GoUserClient_UserDeviceDel_FullMethodName, in, out, cOpts...)
  10563. if err != nil {
  10564. return nil, err
  10565. }
  10566. return out, nil
  10567. }
  10568. func (c *goUserClientClient) UserDeviceGet(ctx context.Context, in *UserDeviceGetReq, opts ...grpc.CallOption) (*UserDeviceGetResp, error) {
  10569. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10570. out := new(UserDeviceGetResp)
  10571. err := c.cc.Invoke(ctx, GoUserClient_UserDeviceGet_FullMethodName, in, out, cOpts...)
  10572. if err != nil {
  10573. return nil, err
  10574. }
  10575. return out, nil
  10576. }
  10577. func (c *goUserClientClient) UserDeviceList(ctx context.Context, in *UserDeviceListReq, opts ...grpc.CallOption) (*UserDeviceListResp, error) {
  10578. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10579. out := new(UserDeviceListResp)
  10580. err := c.cc.Invoke(ctx, GoUserClient_UserDeviceList_FullMethodName, in, out, cOpts...)
  10581. if err != nil {
  10582. return nil, err
  10583. }
  10584. return out, nil
  10585. }
  10586. func (c *goUserClientClient) UserServiceAdd(ctx context.Context, in *UserServiceAddReq, opts ...grpc.CallOption) (*UserServiceAddResp, error) {
  10587. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10588. out := new(UserServiceAddResp)
  10589. err := c.cc.Invoke(ctx, GoUserClient_UserServiceAdd_FullMethodName, in, out, cOpts...)
  10590. if err != nil {
  10591. return nil, err
  10592. }
  10593. return out, nil
  10594. }
  10595. func (c *goUserClientClient) UserServiceUpdate(ctx context.Context, in *UserServiceUpdateReq, opts ...grpc.CallOption) (*UserServiceUpdateResp, error) {
  10596. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10597. out := new(UserServiceUpdateResp)
  10598. err := c.cc.Invoke(ctx, GoUserClient_UserServiceUpdate_FullMethodName, in, out, cOpts...)
  10599. if err != nil {
  10600. return nil, err
  10601. }
  10602. return out, nil
  10603. }
  10604. func (c *goUserClientClient) UserServiceDel(ctx context.Context, in *UserServiceDelReq, opts ...grpc.CallOption) (*Empty, error) {
  10605. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10606. out := new(Empty)
  10607. err := c.cc.Invoke(ctx, GoUserClient_UserServiceDel_FullMethodName, in, out, cOpts...)
  10608. if err != nil {
  10609. return nil, err
  10610. }
  10611. return out, nil
  10612. }
  10613. func (c *goUserClientClient) UserServiceGet(ctx context.Context, in *UserServiceGetReq, opts ...grpc.CallOption) (*UserServiceGetResp, error) {
  10614. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10615. out := new(UserServiceGetResp)
  10616. err := c.cc.Invoke(ctx, GoUserClient_UserServiceGet_FullMethodName, in, out, cOpts...)
  10617. if err != nil {
  10618. return nil, err
  10619. }
  10620. return out, nil
  10621. }
  10622. func (c *goUserClientClient) UserServiceList(ctx context.Context, in *UserServiceListReq, opts ...grpc.CallOption) (*UserServiceListResp, error) {
  10623. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  10624. out := new(UserServiceListResp)
  10625. err := c.cc.Invoke(ctx, GoUserClient_UserServiceList_FullMethodName, in, out, cOpts...)
  10626. if err != nil {
  10627. return nil, err
  10628. }
  10629. return out, nil
  10630. }
  10631. // GoUserClientServer is the server API for GoUserClient service.
  10632. // All implementations must embed UnimplementedGoUserClientServer
  10633. // for forward compatibility.
  10634. //
  10635. // 用户模块
  10636. type GoUserClientServer interface {
  10637. Ping(context.Context, *Request) (*Response, error)
  10638. // 用户app配置管理(ring)
  10639. UserAppConfigAdd(context.Context, *UserAppConfigVo) (*UserAppConfigVo, error)
  10640. UserAppConfigUpdate(context.Context, *UserAppConfigVo) (*UserAppConfigVo, error)
  10641. UserAppConfigDel(context.Context, *Ids) (*Empty, error)
  10642. UserAppConfigGet(context.Context, *UserAppConfigGetReq) (*UserAppConfigVo, error)
  10643. UserAppConfigList(context.Context, *UserAppConfigListReq) (*UserAppConfigListRes, error)
  10644. // Device Model
  10645. // DeviceAdd
  10646. DeviceAdd(context.Context, *DeviceVo) (*DeviceVo, error)
  10647. DeviceUpdate(context.Context, *DeviceVo) (*DeviceVo, error)
  10648. DeviceDel(context.Context, *Ids) (*Empty, error)
  10649. DeviceGet(context.Context, *DeviceVo) (*DeviceVo, error)
  10650. DeviceList(context.Context, *DeviceListReq) (*DeviceListRes, error)
  10651. // Account Model
  10652. // AccountAdd
  10653. AccountAdd(context.Context, *AccountVo) (*AccountVo, error)
  10654. AccountUpdate(context.Context, *AccountVo) (*AccountVo, error)
  10655. AccountDel(context.Context, *Ids) (*Empty, error)
  10656. AccountGet(context.Context, *AccountVo) (*AccountVo, error)
  10657. AccountList(context.Context, *AccountListReq) (*AccountListResp, error)
  10658. // AccountDevice Model
  10659. // AccountDeviceAdd
  10660. AccountDeviceAdd(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error)
  10661. AccountDeviceUpdate(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error)
  10662. AccountDeviceDel(context.Context, *Ids) (*Empty, error)
  10663. AccountDeviceGet(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error)
  10664. AccountDeviceList(context.Context, *AccountDeviceListReq) (*AccountDeviceListResp, error)
  10665. // 用户白名单管理
  10666. UserWhiteAdd(context.Context, *UserWhiteAddReq) (*UserWhiteAddResp, error)
  10667. UserWhiteUpdate(context.Context, *UserWhiteUpdateReq) (*UserWhiteUpdateResp, error)
  10668. UserWhiteDel(context.Context, *UserWhiteDelReq) (*Empty, error)
  10669. UserWhiteGet(context.Context, *UserWhiteGetReq) (*UserWhiteGetResp, error)
  10670. UserWhiteList(context.Context, *UserWhiteListReq) (*UserWhiteListResp, error)
  10671. // 测试用户管理
  10672. UserTestAdd(context.Context, *UserTestAddReq) (*UserTestAddResp, error)
  10673. UserTestUpdate(context.Context, *UserTestUpdateReq) (*UserTestUpdateResp, error)
  10674. UserTestDel(context.Context, *UserTestDelReq) (*Empty, error)
  10675. UserTestGet(context.Context, *UserTestGetReq) (*UserTestGetResp, error)
  10676. UserTestList(context.Context, *UserTestListReq) (*UserTestListResp, error)
  10677. // User Model
  10678. // UserAdd
  10679. UserAdd(context.Context, *UserAddReq) (*UserAddResp, error)
  10680. UserUpdate(context.Context, *UserUpdateReq) (*UserUpdateResp, error)
  10681. UserDel(context.Context, *UserDelReq) (*Empty, error)
  10682. UserGet(context.Context, *UserGetReq) (*UserGetResp, error)
  10683. UserList(context.Context, *UserListReq) (*UserListResp, error)
  10684. // UserCredential Model
  10685. // UserCredentialAdd
  10686. UserCredentialAdd(context.Context, *UserCredentialAddReq) (*UserCredentialAddResp, error)
  10687. UserCredentialUpdate(context.Context, *UserCredentialUpdateReq) (*UserCredentialUpdateResp, error)
  10688. UserCredentialDel(context.Context, *UserCredentialDelReq) (*Empty, error)
  10689. UserCredentialGet(context.Context, *UserCredentialGetReq) (*UserCredentialGetResp, error)
  10690. UserCredentialList(context.Context, *UserCredentialListReq) (*UserCredentialListResp, error)
  10691. // UserDevice Model
  10692. // UserDeviceAdd
  10693. UserDeviceAdd(context.Context, *UserDeviceAddReq) (*UserDeviceAddResp, error)
  10694. UserDeviceUpdate(context.Context, *UserDeviceUpdateReq) (*UserDeviceUpdateResp, error)
  10695. UserDeviceDel(context.Context, *UserDeviceDelReq) (*Empty, error)
  10696. UserDeviceGet(context.Context, *UserDeviceGetReq) (*UserDeviceGetResp, error)
  10697. UserDeviceList(context.Context, *UserDeviceListReq) (*UserDeviceListResp, error)
  10698. // UserService
  10699. UserServiceAdd(context.Context, *UserServiceAddReq) (*UserServiceAddResp, error)
  10700. UserServiceUpdate(context.Context, *UserServiceUpdateReq) (*UserServiceUpdateResp, error)
  10701. UserServiceDel(context.Context, *UserServiceDelReq) (*Empty, error)
  10702. UserServiceGet(context.Context, *UserServiceGetReq) (*UserServiceGetResp, error)
  10703. UserServiceList(context.Context, *UserServiceListReq) (*UserServiceListResp, error)
  10704. mustEmbedUnimplementedGoUserClientServer()
  10705. }
  10706. // UnimplementedGoUserClientServer must be embedded to have
  10707. // forward compatible implementations.
  10708. //
  10709. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  10710. // pointer dereference when methods are called.
  10711. type UnimplementedGoUserClientServer struct{}
  10712. func (UnimplementedGoUserClientServer) Ping(context.Context, *Request) (*Response, error) {
  10713. return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
  10714. }
  10715. func (UnimplementedGoUserClientServer) UserAppConfigAdd(context.Context, *UserAppConfigVo) (*UserAppConfigVo, error) {
  10716. return nil, status.Errorf(codes.Unimplemented, "method UserAppConfigAdd not implemented")
  10717. }
  10718. func (UnimplementedGoUserClientServer) UserAppConfigUpdate(context.Context, *UserAppConfigVo) (*UserAppConfigVo, error) {
  10719. return nil, status.Errorf(codes.Unimplemented, "method UserAppConfigUpdate not implemented")
  10720. }
  10721. func (UnimplementedGoUserClientServer) UserAppConfigDel(context.Context, *Ids) (*Empty, error) {
  10722. return nil, status.Errorf(codes.Unimplemented, "method UserAppConfigDel not implemented")
  10723. }
  10724. func (UnimplementedGoUserClientServer) UserAppConfigGet(context.Context, *UserAppConfigGetReq) (*UserAppConfigVo, error) {
  10725. return nil, status.Errorf(codes.Unimplemented, "method UserAppConfigGet not implemented")
  10726. }
  10727. func (UnimplementedGoUserClientServer) UserAppConfigList(context.Context, *UserAppConfigListReq) (*UserAppConfigListRes, error) {
  10728. return nil, status.Errorf(codes.Unimplemented, "method UserAppConfigList not implemented")
  10729. }
  10730. func (UnimplementedGoUserClientServer) DeviceAdd(context.Context, *DeviceVo) (*DeviceVo, error) {
  10731. return nil, status.Errorf(codes.Unimplemented, "method DeviceAdd not implemented")
  10732. }
  10733. func (UnimplementedGoUserClientServer) DeviceUpdate(context.Context, *DeviceVo) (*DeviceVo, error) {
  10734. return nil, status.Errorf(codes.Unimplemented, "method DeviceUpdate not implemented")
  10735. }
  10736. func (UnimplementedGoUserClientServer) DeviceDel(context.Context, *Ids) (*Empty, error) {
  10737. return nil, status.Errorf(codes.Unimplemented, "method DeviceDel not implemented")
  10738. }
  10739. func (UnimplementedGoUserClientServer) DeviceGet(context.Context, *DeviceVo) (*DeviceVo, error) {
  10740. return nil, status.Errorf(codes.Unimplemented, "method DeviceGet not implemented")
  10741. }
  10742. func (UnimplementedGoUserClientServer) DeviceList(context.Context, *DeviceListReq) (*DeviceListRes, error) {
  10743. return nil, status.Errorf(codes.Unimplemented, "method DeviceList not implemented")
  10744. }
  10745. func (UnimplementedGoUserClientServer) AccountAdd(context.Context, *AccountVo) (*AccountVo, error) {
  10746. return nil, status.Errorf(codes.Unimplemented, "method AccountAdd not implemented")
  10747. }
  10748. func (UnimplementedGoUserClientServer) AccountUpdate(context.Context, *AccountVo) (*AccountVo, error) {
  10749. return nil, status.Errorf(codes.Unimplemented, "method AccountUpdate not implemented")
  10750. }
  10751. func (UnimplementedGoUserClientServer) AccountDel(context.Context, *Ids) (*Empty, error) {
  10752. return nil, status.Errorf(codes.Unimplemented, "method AccountDel not implemented")
  10753. }
  10754. func (UnimplementedGoUserClientServer) AccountGet(context.Context, *AccountVo) (*AccountVo, error) {
  10755. return nil, status.Errorf(codes.Unimplemented, "method AccountGet not implemented")
  10756. }
  10757. func (UnimplementedGoUserClientServer) AccountList(context.Context, *AccountListReq) (*AccountListResp, error) {
  10758. return nil, status.Errorf(codes.Unimplemented, "method AccountList not implemented")
  10759. }
  10760. func (UnimplementedGoUserClientServer) AccountDeviceAdd(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error) {
  10761. return nil, status.Errorf(codes.Unimplemented, "method AccountDeviceAdd not implemented")
  10762. }
  10763. func (UnimplementedGoUserClientServer) AccountDeviceUpdate(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error) {
  10764. return nil, status.Errorf(codes.Unimplemented, "method AccountDeviceUpdate not implemented")
  10765. }
  10766. func (UnimplementedGoUserClientServer) AccountDeviceDel(context.Context, *Ids) (*Empty, error) {
  10767. return nil, status.Errorf(codes.Unimplemented, "method AccountDeviceDel not implemented")
  10768. }
  10769. func (UnimplementedGoUserClientServer) AccountDeviceGet(context.Context, *AccountDeviceVo) (*AccountDeviceVo, error) {
  10770. return nil, status.Errorf(codes.Unimplemented, "method AccountDeviceGet not implemented")
  10771. }
  10772. func (UnimplementedGoUserClientServer) AccountDeviceList(context.Context, *AccountDeviceListReq) (*AccountDeviceListResp, error) {
  10773. return nil, status.Errorf(codes.Unimplemented, "method AccountDeviceList not implemented")
  10774. }
  10775. func (UnimplementedGoUserClientServer) UserWhiteAdd(context.Context, *UserWhiteAddReq) (*UserWhiteAddResp, error) {
  10776. return nil, status.Errorf(codes.Unimplemented, "method UserWhiteAdd not implemented")
  10777. }
  10778. func (UnimplementedGoUserClientServer) UserWhiteUpdate(context.Context, *UserWhiteUpdateReq) (*UserWhiteUpdateResp, error) {
  10779. return nil, status.Errorf(codes.Unimplemented, "method UserWhiteUpdate not implemented")
  10780. }
  10781. func (UnimplementedGoUserClientServer) UserWhiteDel(context.Context, *UserWhiteDelReq) (*Empty, error) {
  10782. return nil, status.Errorf(codes.Unimplemented, "method UserWhiteDel not implemented")
  10783. }
  10784. func (UnimplementedGoUserClientServer) UserWhiteGet(context.Context, *UserWhiteGetReq) (*UserWhiteGetResp, error) {
  10785. return nil, status.Errorf(codes.Unimplemented, "method UserWhiteGet not implemented")
  10786. }
  10787. func (UnimplementedGoUserClientServer) UserWhiteList(context.Context, *UserWhiteListReq) (*UserWhiteListResp, error) {
  10788. return nil, status.Errorf(codes.Unimplemented, "method UserWhiteList not implemented")
  10789. }
  10790. func (UnimplementedGoUserClientServer) UserTestAdd(context.Context, *UserTestAddReq) (*UserTestAddResp, error) {
  10791. return nil, status.Errorf(codes.Unimplemented, "method UserTestAdd not implemented")
  10792. }
  10793. func (UnimplementedGoUserClientServer) UserTestUpdate(context.Context, *UserTestUpdateReq) (*UserTestUpdateResp, error) {
  10794. return nil, status.Errorf(codes.Unimplemented, "method UserTestUpdate not implemented")
  10795. }
  10796. func (UnimplementedGoUserClientServer) UserTestDel(context.Context, *UserTestDelReq) (*Empty, error) {
  10797. return nil, status.Errorf(codes.Unimplemented, "method UserTestDel not implemented")
  10798. }
  10799. func (UnimplementedGoUserClientServer) UserTestGet(context.Context, *UserTestGetReq) (*UserTestGetResp, error) {
  10800. return nil, status.Errorf(codes.Unimplemented, "method UserTestGet not implemented")
  10801. }
  10802. func (UnimplementedGoUserClientServer) UserTestList(context.Context, *UserTestListReq) (*UserTestListResp, error) {
  10803. return nil, status.Errorf(codes.Unimplemented, "method UserTestList not implemented")
  10804. }
  10805. func (UnimplementedGoUserClientServer) UserAdd(context.Context, *UserAddReq) (*UserAddResp, error) {
  10806. return nil, status.Errorf(codes.Unimplemented, "method UserAdd not implemented")
  10807. }
  10808. func (UnimplementedGoUserClientServer) UserUpdate(context.Context, *UserUpdateReq) (*UserUpdateResp, error) {
  10809. return nil, status.Errorf(codes.Unimplemented, "method UserUpdate not implemented")
  10810. }
  10811. func (UnimplementedGoUserClientServer) UserDel(context.Context, *UserDelReq) (*Empty, error) {
  10812. return nil, status.Errorf(codes.Unimplemented, "method UserDel not implemented")
  10813. }
  10814. func (UnimplementedGoUserClientServer) UserGet(context.Context, *UserGetReq) (*UserGetResp, error) {
  10815. return nil, status.Errorf(codes.Unimplemented, "method UserGet not implemented")
  10816. }
  10817. func (UnimplementedGoUserClientServer) UserList(context.Context, *UserListReq) (*UserListResp, error) {
  10818. return nil, status.Errorf(codes.Unimplemented, "method UserList not implemented")
  10819. }
  10820. func (UnimplementedGoUserClientServer) UserCredentialAdd(context.Context, *UserCredentialAddReq) (*UserCredentialAddResp, error) {
  10821. return nil, status.Errorf(codes.Unimplemented, "method UserCredentialAdd not implemented")
  10822. }
  10823. func (UnimplementedGoUserClientServer) UserCredentialUpdate(context.Context, *UserCredentialUpdateReq) (*UserCredentialUpdateResp, error) {
  10824. return nil, status.Errorf(codes.Unimplemented, "method UserCredentialUpdate not implemented")
  10825. }
  10826. func (UnimplementedGoUserClientServer) UserCredentialDel(context.Context, *UserCredentialDelReq) (*Empty, error) {
  10827. return nil, status.Errorf(codes.Unimplemented, "method UserCredentialDel not implemented")
  10828. }
  10829. func (UnimplementedGoUserClientServer) UserCredentialGet(context.Context, *UserCredentialGetReq) (*UserCredentialGetResp, error) {
  10830. return nil, status.Errorf(codes.Unimplemented, "method UserCredentialGet not implemented")
  10831. }
  10832. func (UnimplementedGoUserClientServer) UserCredentialList(context.Context, *UserCredentialListReq) (*UserCredentialListResp, error) {
  10833. return nil, status.Errorf(codes.Unimplemented, "method UserCredentialList not implemented")
  10834. }
  10835. func (UnimplementedGoUserClientServer) UserDeviceAdd(context.Context, *UserDeviceAddReq) (*UserDeviceAddResp, error) {
  10836. return nil, status.Errorf(codes.Unimplemented, "method UserDeviceAdd not implemented")
  10837. }
  10838. func (UnimplementedGoUserClientServer) UserDeviceUpdate(context.Context, *UserDeviceUpdateReq) (*UserDeviceUpdateResp, error) {
  10839. return nil, status.Errorf(codes.Unimplemented, "method UserDeviceUpdate not implemented")
  10840. }
  10841. func (UnimplementedGoUserClientServer) UserDeviceDel(context.Context, *UserDeviceDelReq) (*Empty, error) {
  10842. return nil, status.Errorf(codes.Unimplemented, "method UserDeviceDel not implemented")
  10843. }
  10844. func (UnimplementedGoUserClientServer) UserDeviceGet(context.Context, *UserDeviceGetReq) (*UserDeviceGetResp, error) {
  10845. return nil, status.Errorf(codes.Unimplemented, "method UserDeviceGet not implemented")
  10846. }
  10847. func (UnimplementedGoUserClientServer) UserDeviceList(context.Context, *UserDeviceListReq) (*UserDeviceListResp, error) {
  10848. return nil, status.Errorf(codes.Unimplemented, "method UserDeviceList not implemented")
  10849. }
  10850. func (UnimplementedGoUserClientServer) UserServiceAdd(context.Context, *UserServiceAddReq) (*UserServiceAddResp, error) {
  10851. return nil, status.Errorf(codes.Unimplemented, "method UserServiceAdd not implemented")
  10852. }
  10853. func (UnimplementedGoUserClientServer) UserServiceUpdate(context.Context, *UserServiceUpdateReq) (*UserServiceUpdateResp, error) {
  10854. return nil, status.Errorf(codes.Unimplemented, "method UserServiceUpdate not implemented")
  10855. }
  10856. func (UnimplementedGoUserClientServer) UserServiceDel(context.Context, *UserServiceDelReq) (*Empty, error) {
  10857. return nil, status.Errorf(codes.Unimplemented, "method UserServiceDel not implemented")
  10858. }
  10859. func (UnimplementedGoUserClientServer) UserServiceGet(context.Context, *UserServiceGetReq) (*UserServiceGetResp, error) {
  10860. return nil, status.Errorf(codes.Unimplemented, "method UserServiceGet not implemented")
  10861. }
  10862. func (UnimplementedGoUserClientServer) UserServiceList(context.Context, *UserServiceListReq) (*UserServiceListResp, error) {
  10863. return nil, status.Errorf(codes.Unimplemented, "method UserServiceList not implemented")
  10864. }
  10865. func (UnimplementedGoUserClientServer) mustEmbedUnimplementedGoUserClientServer() {}
  10866. func (UnimplementedGoUserClientServer) testEmbeddedByValue() {}
  10867. // UnsafeGoUserClientServer may be embedded to opt out of forward compatibility for this service.
  10868. // Use of this interface is not recommended, as added methods to GoUserClientServer will
  10869. // result in compilation errors.
  10870. type UnsafeGoUserClientServer interface {
  10871. mustEmbedUnimplementedGoUserClientServer()
  10872. }
  10873. func RegisterGoUserClientServer(s grpc.ServiceRegistrar, srv GoUserClientServer) {
  10874. // If the following call pancis, it indicates UnimplementedGoUserClientServer was
  10875. // embedded by pointer and is nil. This will cause panics if an
  10876. // unimplemented method is ever invoked, so we test this at initialization
  10877. // time to prevent it from happening at runtime later due to I/O.
  10878. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  10879. t.testEmbeddedByValue()
  10880. }
  10881. s.RegisterService(&GoUserClient_ServiceDesc, srv)
  10882. }
  10883. func _GoUserClient_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10884. in := new(Request)
  10885. if err := dec(in); err != nil {
  10886. return nil, err
  10887. }
  10888. if interceptor == nil {
  10889. return srv.(GoUserClientServer).Ping(ctx, in)
  10890. }
  10891. info := &grpc.UnaryServerInfo{
  10892. Server: srv,
  10893. FullMethod: GoUserClient_Ping_FullMethodName,
  10894. }
  10895. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10896. return srv.(GoUserClientServer).Ping(ctx, req.(*Request))
  10897. }
  10898. return interceptor(ctx, in, info, handler)
  10899. }
  10900. func _GoUserClient_UserAppConfigAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10901. in := new(UserAppConfigVo)
  10902. if err := dec(in); err != nil {
  10903. return nil, err
  10904. }
  10905. if interceptor == nil {
  10906. return srv.(GoUserClientServer).UserAppConfigAdd(ctx, in)
  10907. }
  10908. info := &grpc.UnaryServerInfo{
  10909. Server: srv,
  10910. FullMethod: GoUserClient_UserAppConfigAdd_FullMethodName,
  10911. }
  10912. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10913. return srv.(GoUserClientServer).UserAppConfigAdd(ctx, req.(*UserAppConfigVo))
  10914. }
  10915. return interceptor(ctx, in, info, handler)
  10916. }
  10917. func _GoUserClient_UserAppConfigUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10918. in := new(UserAppConfigVo)
  10919. if err := dec(in); err != nil {
  10920. return nil, err
  10921. }
  10922. if interceptor == nil {
  10923. return srv.(GoUserClientServer).UserAppConfigUpdate(ctx, in)
  10924. }
  10925. info := &grpc.UnaryServerInfo{
  10926. Server: srv,
  10927. FullMethod: GoUserClient_UserAppConfigUpdate_FullMethodName,
  10928. }
  10929. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10930. return srv.(GoUserClientServer).UserAppConfigUpdate(ctx, req.(*UserAppConfigVo))
  10931. }
  10932. return interceptor(ctx, in, info, handler)
  10933. }
  10934. func _GoUserClient_UserAppConfigDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10935. in := new(Ids)
  10936. if err := dec(in); err != nil {
  10937. return nil, err
  10938. }
  10939. if interceptor == nil {
  10940. return srv.(GoUserClientServer).UserAppConfigDel(ctx, in)
  10941. }
  10942. info := &grpc.UnaryServerInfo{
  10943. Server: srv,
  10944. FullMethod: GoUserClient_UserAppConfigDel_FullMethodName,
  10945. }
  10946. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10947. return srv.(GoUserClientServer).UserAppConfigDel(ctx, req.(*Ids))
  10948. }
  10949. return interceptor(ctx, in, info, handler)
  10950. }
  10951. func _GoUserClient_UserAppConfigGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10952. in := new(UserAppConfigGetReq)
  10953. if err := dec(in); err != nil {
  10954. return nil, err
  10955. }
  10956. if interceptor == nil {
  10957. return srv.(GoUserClientServer).UserAppConfigGet(ctx, in)
  10958. }
  10959. info := &grpc.UnaryServerInfo{
  10960. Server: srv,
  10961. FullMethod: GoUserClient_UserAppConfigGet_FullMethodName,
  10962. }
  10963. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10964. return srv.(GoUserClientServer).UserAppConfigGet(ctx, req.(*UserAppConfigGetReq))
  10965. }
  10966. return interceptor(ctx, in, info, handler)
  10967. }
  10968. func _GoUserClient_UserAppConfigList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10969. in := new(UserAppConfigListReq)
  10970. if err := dec(in); err != nil {
  10971. return nil, err
  10972. }
  10973. if interceptor == nil {
  10974. return srv.(GoUserClientServer).UserAppConfigList(ctx, in)
  10975. }
  10976. info := &grpc.UnaryServerInfo{
  10977. Server: srv,
  10978. FullMethod: GoUserClient_UserAppConfigList_FullMethodName,
  10979. }
  10980. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10981. return srv.(GoUserClientServer).UserAppConfigList(ctx, req.(*UserAppConfigListReq))
  10982. }
  10983. return interceptor(ctx, in, info, handler)
  10984. }
  10985. func _GoUserClient_DeviceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10986. in := new(DeviceVo)
  10987. if err := dec(in); err != nil {
  10988. return nil, err
  10989. }
  10990. if interceptor == nil {
  10991. return srv.(GoUserClientServer).DeviceAdd(ctx, in)
  10992. }
  10993. info := &grpc.UnaryServerInfo{
  10994. Server: srv,
  10995. FullMethod: GoUserClient_DeviceAdd_FullMethodName,
  10996. }
  10997. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10998. return srv.(GoUserClientServer).DeviceAdd(ctx, req.(*DeviceVo))
  10999. }
  11000. return interceptor(ctx, in, info, handler)
  11001. }
  11002. func _GoUserClient_DeviceUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11003. in := new(DeviceVo)
  11004. if err := dec(in); err != nil {
  11005. return nil, err
  11006. }
  11007. if interceptor == nil {
  11008. return srv.(GoUserClientServer).DeviceUpdate(ctx, in)
  11009. }
  11010. info := &grpc.UnaryServerInfo{
  11011. Server: srv,
  11012. FullMethod: GoUserClient_DeviceUpdate_FullMethodName,
  11013. }
  11014. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11015. return srv.(GoUserClientServer).DeviceUpdate(ctx, req.(*DeviceVo))
  11016. }
  11017. return interceptor(ctx, in, info, handler)
  11018. }
  11019. func _GoUserClient_DeviceDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11020. in := new(Ids)
  11021. if err := dec(in); err != nil {
  11022. return nil, err
  11023. }
  11024. if interceptor == nil {
  11025. return srv.(GoUserClientServer).DeviceDel(ctx, in)
  11026. }
  11027. info := &grpc.UnaryServerInfo{
  11028. Server: srv,
  11029. FullMethod: GoUserClient_DeviceDel_FullMethodName,
  11030. }
  11031. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11032. return srv.(GoUserClientServer).DeviceDel(ctx, req.(*Ids))
  11033. }
  11034. return interceptor(ctx, in, info, handler)
  11035. }
  11036. func _GoUserClient_DeviceGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11037. in := new(DeviceVo)
  11038. if err := dec(in); err != nil {
  11039. return nil, err
  11040. }
  11041. if interceptor == nil {
  11042. return srv.(GoUserClientServer).DeviceGet(ctx, in)
  11043. }
  11044. info := &grpc.UnaryServerInfo{
  11045. Server: srv,
  11046. FullMethod: GoUserClient_DeviceGet_FullMethodName,
  11047. }
  11048. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11049. return srv.(GoUserClientServer).DeviceGet(ctx, req.(*DeviceVo))
  11050. }
  11051. return interceptor(ctx, in, info, handler)
  11052. }
  11053. func _GoUserClient_DeviceList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11054. in := new(DeviceListReq)
  11055. if err := dec(in); err != nil {
  11056. return nil, err
  11057. }
  11058. if interceptor == nil {
  11059. return srv.(GoUserClientServer).DeviceList(ctx, in)
  11060. }
  11061. info := &grpc.UnaryServerInfo{
  11062. Server: srv,
  11063. FullMethod: GoUserClient_DeviceList_FullMethodName,
  11064. }
  11065. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11066. return srv.(GoUserClientServer).DeviceList(ctx, req.(*DeviceListReq))
  11067. }
  11068. return interceptor(ctx, in, info, handler)
  11069. }
  11070. func _GoUserClient_AccountAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11071. in := new(AccountVo)
  11072. if err := dec(in); err != nil {
  11073. return nil, err
  11074. }
  11075. if interceptor == nil {
  11076. return srv.(GoUserClientServer).AccountAdd(ctx, in)
  11077. }
  11078. info := &grpc.UnaryServerInfo{
  11079. Server: srv,
  11080. FullMethod: GoUserClient_AccountAdd_FullMethodName,
  11081. }
  11082. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11083. return srv.(GoUserClientServer).AccountAdd(ctx, req.(*AccountVo))
  11084. }
  11085. return interceptor(ctx, in, info, handler)
  11086. }
  11087. func _GoUserClient_AccountUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11088. in := new(AccountVo)
  11089. if err := dec(in); err != nil {
  11090. return nil, err
  11091. }
  11092. if interceptor == nil {
  11093. return srv.(GoUserClientServer).AccountUpdate(ctx, in)
  11094. }
  11095. info := &grpc.UnaryServerInfo{
  11096. Server: srv,
  11097. FullMethod: GoUserClient_AccountUpdate_FullMethodName,
  11098. }
  11099. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11100. return srv.(GoUserClientServer).AccountUpdate(ctx, req.(*AccountVo))
  11101. }
  11102. return interceptor(ctx, in, info, handler)
  11103. }
  11104. func _GoUserClient_AccountDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11105. in := new(Ids)
  11106. if err := dec(in); err != nil {
  11107. return nil, err
  11108. }
  11109. if interceptor == nil {
  11110. return srv.(GoUserClientServer).AccountDel(ctx, in)
  11111. }
  11112. info := &grpc.UnaryServerInfo{
  11113. Server: srv,
  11114. FullMethod: GoUserClient_AccountDel_FullMethodName,
  11115. }
  11116. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11117. return srv.(GoUserClientServer).AccountDel(ctx, req.(*Ids))
  11118. }
  11119. return interceptor(ctx, in, info, handler)
  11120. }
  11121. func _GoUserClient_AccountGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11122. in := new(AccountVo)
  11123. if err := dec(in); err != nil {
  11124. return nil, err
  11125. }
  11126. if interceptor == nil {
  11127. return srv.(GoUserClientServer).AccountGet(ctx, in)
  11128. }
  11129. info := &grpc.UnaryServerInfo{
  11130. Server: srv,
  11131. FullMethod: GoUserClient_AccountGet_FullMethodName,
  11132. }
  11133. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11134. return srv.(GoUserClientServer).AccountGet(ctx, req.(*AccountVo))
  11135. }
  11136. return interceptor(ctx, in, info, handler)
  11137. }
  11138. func _GoUserClient_AccountList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11139. in := new(AccountListReq)
  11140. if err := dec(in); err != nil {
  11141. return nil, err
  11142. }
  11143. if interceptor == nil {
  11144. return srv.(GoUserClientServer).AccountList(ctx, in)
  11145. }
  11146. info := &grpc.UnaryServerInfo{
  11147. Server: srv,
  11148. FullMethod: GoUserClient_AccountList_FullMethodName,
  11149. }
  11150. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11151. return srv.(GoUserClientServer).AccountList(ctx, req.(*AccountListReq))
  11152. }
  11153. return interceptor(ctx, in, info, handler)
  11154. }
  11155. func _GoUserClient_AccountDeviceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11156. in := new(AccountDeviceVo)
  11157. if err := dec(in); err != nil {
  11158. return nil, err
  11159. }
  11160. if interceptor == nil {
  11161. return srv.(GoUserClientServer).AccountDeviceAdd(ctx, in)
  11162. }
  11163. info := &grpc.UnaryServerInfo{
  11164. Server: srv,
  11165. FullMethod: GoUserClient_AccountDeviceAdd_FullMethodName,
  11166. }
  11167. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11168. return srv.(GoUserClientServer).AccountDeviceAdd(ctx, req.(*AccountDeviceVo))
  11169. }
  11170. return interceptor(ctx, in, info, handler)
  11171. }
  11172. func _GoUserClient_AccountDeviceUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11173. in := new(AccountDeviceVo)
  11174. if err := dec(in); err != nil {
  11175. return nil, err
  11176. }
  11177. if interceptor == nil {
  11178. return srv.(GoUserClientServer).AccountDeviceUpdate(ctx, in)
  11179. }
  11180. info := &grpc.UnaryServerInfo{
  11181. Server: srv,
  11182. FullMethod: GoUserClient_AccountDeviceUpdate_FullMethodName,
  11183. }
  11184. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11185. return srv.(GoUserClientServer).AccountDeviceUpdate(ctx, req.(*AccountDeviceVo))
  11186. }
  11187. return interceptor(ctx, in, info, handler)
  11188. }
  11189. func _GoUserClient_AccountDeviceDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11190. in := new(Ids)
  11191. if err := dec(in); err != nil {
  11192. return nil, err
  11193. }
  11194. if interceptor == nil {
  11195. return srv.(GoUserClientServer).AccountDeviceDel(ctx, in)
  11196. }
  11197. info := &grpc.UnaryServerInfo{
  11198. Server: srv,
  11199. FullMethod: GoUserClient_AccountDeviceDel_FullMethodName,
  11200. }
  11201. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11202. return srv.(GoUserClientServer).AccountDeviceDel(ctx, req.(*Ids))
  11203. }
  11204. return interceptor(ctx, in, info, handler)
  11205. }
  11206. func _GoUserClient_AccountDeviceGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11207. in := new(AccountDeviceVo)
  11208. if err := dec(in); err != nil {
  11209. return nil, err
  11210. }
  11211. if interceptor == nil {
  11212. return srv.(GoUserClientServer).AccountDeviceGet(ctx, in)
  11213. }
  11214. info := &grpc.UnaryServerInfo{
  11215. Server: srv,
  11216. FullMethod: GoUserClient_AccountDeviceGet_FullMethodName,
  11217. }
  11218. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11219. return srv.(GoUserClientServer).AccountDeviceGet(ctx, req.(*AccountDeviceVo))
  11220. }
  11221. return interceptor(ctx, in, info, handler)
  11222. }
  11223. func _GoUserClient_AccountDeviceList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11224. in := new(AccountDeviceListReq)
  11225. if err := dec(in); err != nil {
  11226. return nil, err
  11227. }
  11228. if interceptor == nil {
  11229. return srv.(GoUserClientServer).AccountDeviceList(ctx, in)
  11230. }
  11231. info := &grpc.UnaryServerInfo{
  11232. Server: srv,
  11233. FullMethod: GoUserClient_AccountDeviceList_FullMethodName,
  11234. }
  11235. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11236. return srv.(GoUserClientServer).AccountDeviceList(ctx, req.(*AccountDeviceListReq))
  11237. }
  11238. return interceptor(ctx, in, info, handler)
  11239. }
  11240. func _GoUserClient_UserWhiteAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11241. in := new(UserWhiteAddReq)
  11242. if err := dec(in); err != nil {
  11243. return nil, err
  11244. }
  11245. if interceptor == nil {
  11246. return srv.(GoUserClientServer).UserWhiteAdd(ctx, in)
  11247. }
  11248. info := &grpc.UnaryServerInfo{
  11249. Server: srv,
  11250. FullMethod: GoUserClient_UserWhiteAdd_FullMethodName,
  11251. }
  11252. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11253. return srv.(GoUserClientServer).UserWhiteAdd(ctx, req.(*UserWhiteAddReq))
  11254. }
  11255. return interceptor(ctx, in, info, handler)
  11256. }
  11257. func _GoUserClient_UserWhiteUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11258. in := new(UserWhiteUpdateReq)
  11259. if err := dec(in); err != nil {
  11260. return nil, err
  11261. }
  11262. if interceptor == nil {
  11263. return srv.(GoUserClientServer).UserWhiteUpdate(ctx, in)
  11264. }
  11265. info := &grpc.UnaryServerInfo{
  11266. Server: srv,
  11267. FullMethod: GoUserClient_UserWhiteUpdate_FullMethodName,
  11268. }
  11269. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11270. return srv.(GoUserClientServer).UserWhiteUpdate(ctx, req.(*UserWhiteUpdateReq))
  11271. }
  11272. return interceptor(ctx, in, info, handler)
  11273. }
  11274. func _GoUserClient_UserWhiteDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11275. in := new(UserWhiteDelReq)
  11276. if err := dec(in); err != nil {
  11277. return nil, err
  11278. }
  11279. if interceptor == nil {
  11280. return srv.(GoUserClientServer).UserWhiteDel(ctx, in)
  11281. }
  11282. info := &grpc.UnaryServerInfo{
  11283. Server: srv,
  11284. FullMethod: GoUserClient_UserWhiteDel_FullMethodName,
  11285. }
  11286. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11287. return srv.(GoUserClientServer).UserWhiteDel(ctx, req.(*UserWhiteDelReq))
  11288. }
  11289. return interceptor(ctx, in, info, handler)
  11290. }
  11291. func _GoUserClient_UserWhiteGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11292. in := new(UserWhiteGetReq)
  11293. if err := dec(in); err != nil {
  11294. return nil, err
  11295. }
  11296. if interceptor == nil {
  11297. return srv.(GoUserClientServer).UserWhiteGet(ctx, in)
  11298. }
  11299. info := &grpc.UnaryServerInfo{
  11300. Server: srv,
  11301. FullMethod: GoUserClient_UserWhiteGet_FullMethodName,
  11302. }
  11303. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11304. return srv.(GoUserClientServer).UserWhiteGet(ctx, req.(*UserWhiteGetReq))
  11305. }
  11306. return interceptor(ctx, in, info, handler)
  11307. }
  11308. func _GoUserClient_UserWhiteList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11309. in := new(UserWhiteListReq)
  11310. if err := dec(in); err != nil {
  11311. return nil, err
  11312. }
  11313. if interceptor == nil {
  11314. return srv.(GoUserClientServer).UserWhiteList(ctx, in)
  11315. }
  11316. info := &grpc.UnaryServerInfo{
  11317. Server: srv,
  11318. FullMethod: GoUserClient_UserWhiteList_FullMethodName,
  11319. }
  11320. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11321. return srv.(GoUserClientServer).UserWhiteList(ctx, req.(*UserWhiteListReq))
  11322. }
  11323. return interceptor(ctx, in, info, handler)
  11324. }
  11325. func _GoUserClient_UserTestAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11326. in := new(UserTestAddReq)
  11327. if err := dec(in); err != nil {
  11328. return nil, err
  11329. }
  11330. if interceptor == nil {
  11331. return srv.(GoUserClientServer).UserTestAdd(ctx, in)
  11332. }
  11333. info := &grpc.UnaryServerInfo{
  11334. Server: srv,
  11335. FullMethod: GoUserClient_UserTestAdd_FullMethodName,
  11336. }
  11337. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11338. return srv.(GoUserClientServer).UserTestAdd(ctx, req.(*UserTestAddReq))
  11339. }
  11340. return interceptor(ctx, in, info, handler)
  11341. }
  11342. func _GoUserClient_UserTestUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11343. in := new(UserTestUpdateReq)
  11344. if err := dec(in); err != nil {
  11345. return nil, err
  11346. }
  11347. if interceptor == nil {
  11348. return srv.(GoUserClientServer).UserTestUpdate(ctx, in)
  11349. }
  11350. info := &grpc.UnaryServerInfo{
  11351. Server: srv,
  11352. FullMethod: GoUserClient_UserTestUpdate_FullMethodName,
  11353. }
  11354. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11355. return srv.(GoUserClientServer).UserTestUpdate(ctx, req.(*UserTestUpdateReq))
  11356. }
  11357. return interceptor(ctx, in, info, handler)
  11358. }
  11359. func _GoUserClient_UserTestDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11360. in := new(UserTestDelReq)
  11361. if err := dec(in); err != nil {
  11362. return nil, err
  11363. }
  11364. if interceptor == nil {
  11365. return srv.(GoUserClientServer).UserTestDel(ctx, in)
  11366. }
  11367. info := &grpc.UnaryServerInfo{
  11368. Server: srv,
  11369. FullMethod: GoUserClient_UserTestDel_FullMethodName,
  11370. }
  11371. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11372. return srv.(GoUserClientServer).UserTestDel(ctx, req.(*UserTestDelReq))
  11373. }
  11374. return interceptor(ctx, in, info, handler)
  11375. }
  11376. func _GoUserClient_UserTestGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11377. in := new(UserTestGetReq)
  11378. if err := dec(in); err != nil {
  11379. return nil, err
  11380. }
  11381. if interceptor == nil {
  11382. return srv.(GoUserClientServer).UserTestGet(ctx, in)
  11383. }
  11384. info := &grpc.UnaryServerInfo{
  11385. Server: srv,
  11386. FullMethod: GoUserClient_UserTestGet_FullMethodName,
  11387. }
  11388. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11389. return srv.(GoUserClientServer).UserTestGet(ctx, req.(*UserTestGetReq))
  11390. }
  11391. return interceptor(ctx, in, info, handler)
  11392. }
  11393. func _GoUserClient_UserTestList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11394. in := new(UserTestListReq)
  11395. if err := dec(in); err != nil {
  11396. return nil, err
  11397. }
  11398. if interceptor == nil {
  11399. return srv.(GoUserClientServer).UserTestList(ctx, in)
  11400. }
  11401. info := &grpc.UnaryServerInfo{
  11402. Server: srv,
  11403. FullMethod: GoUserClient_UserTestList_FullMethodName,
  11404. }
  11405. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11406. return srv.(GoUserClientServer).UserTestList(ctx, req.(*UserTestListReq))
  11407. }
  11408. return interceptor(ctx, in, info, handler)
  11409. }
  11410. func _GoUserClient_UserAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11411. in := new(UserAddReq)
  11412. if err := dec(in); err != nil {
  11413. return nil, err
  11414. }
  11415. if interceptor == nil {
  11416. return srv.(GoUserClientServer).UserAdd(ctx, in)
  11417. }
  11418. info := &grpc.UnaryServerInfo{
  11419. Server: srv,
  11420. FullMethod: GoUserClient_UserAdd_FullMethodName,
  11421. }
  11422. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11423. return srv.(GoUserClientServer).UserAdd(ctx, req.(*UserAddReq))
  11424. }
  11425. return interceptor(ctx, in, info, handler)
  11426. }
  11427. func _GoUserClient_UserUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11428. in := new(UserUpdateReq)
  11429. if err := dec(in); err != nil {
  11430. return nil, err
  11431. }
  11432. if interceptor == nil {
  11433. return srv.(GoUserClientServer).UserUpdate(ctx, in)
  11434. }
  11435. info := &grpc.UnaryServerInfo{
  11436. Server: srv,
  11437. FullMethod: GoUserClient_UserUpdate_FullMethodName,
  11438. }
  11439. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11440. return srv.(GoUserClientServer).UserUpdate(ctx, req.(*UserUpdateReq))
  11441. }
  11442. return interceptor(ctx, in, info, handler)
  11443. }
  11444. func _GoUserClient_UserDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11445. in := new(UserDelReq)
  11446. if err := dec(in); err != nil {
  11447. return nil, err
  11448. }
  11449. if interceptor == nil {
  11450. return srv.(GoUserClientServer).UserDel(ctx, in)
  11451. }
  11452. info := &grpc.UnaryServerInfo{
  11453. Server: srv,
  11454. FullMethod: GoUserClient_UserDel_FullMethodName,
  11455. }
  11456. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11457. return srv.(GoUserClientServer).UserDel(ctx, req.(*UserDelReq))
  11458. }
  11459. return interceptor(ctx, in, info, handler)
  11460. }
  11461. func _GoUserClient_UserGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11462. in := new(UserGetReq)
  11463. if err := dec(in); err != nil {
  11464. return nil, err
  11465. }
  11466. if interceptor == nil {
  11467. return srv.(GoUserClientServer).UserGet(ctx, in)
  11468. }
  11469. info := &grpc.UnaryServerInfo{
  11470. Server: srv,
  11471. FullMethod: GoUserClient_UserGet_FullMethodName,
  11472. }
  11473. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11474. return srv.(GoUserClientServer).UserGet(ctx, req.(*UserGetReq))
  11475. }
  11476. return interceptor(ctx, in, info, handler)
  11477. }
  11478. func _GoUserClient_UserList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11479. in := new(UserListReq)
  11480. if err := dec(in); err != nil {
  11481. return nil, err
  11482. }
  11483. if interceptor == nil {
  11484. return srv.(GoUserClientServer).UserList(ctx, in)
  11485. }
  11486. info := &grpc.UnaryServerInfo{
  11487. Server: srv,
  11488. FullMethod: GoUserClient_UserList_FullMethodName,
  11489. }
  11490. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11491. return srv.(GoUserClientServer).UserList(ctx, req.(*UserListReq))
  11492. }
  11493. return interceptor(ctx, in, info, handler)
  11494. }
  11495. func _GoUserClient_UserCredentialAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11496. in := new(UserCredentialAddReq)
  11497. if err := dec(in); err != nil {
  11498. return nil, err
  11499. }
  11500. if interceptor == nil {
  11501. return srv.(GoUserClientServer).UserCredentialAdd(ctx, in)
  11502. }
  11503. info := &grpc.UnaryServerInfo{
  11504. Server: srv,
  11505. FullMethod: GoUserClient_UserCredentialAdd_FullMethodName,
  11506. }
  11507. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11508. return srv.(GoUserClientServer).UserCredentialAdd(ctx, req.(*UserCredentialAddReq))
  11509. }
  11510. return interceptor(ctx, in, info, handler)
  11511. }
  11512. func _GoUserClient_UserCredentialUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11513. in := new(UserCredentialUpdateReq)
  11514. if err := dec(in); err != nil {
  11515. return nil, err
  11516. }
  11517. if interceptor == nil {
  11518. return srv.(GoUserClientServer).UserCredentialUpdate(ctx, in)
  11519. }
  11520. info := &grpc.UnaryServerInfo{
  11521. Server: srv,
  11522. FullMethod: GoUserClient_UserCredentialUpdate_FullMethodName,
  11523. }
  11524. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11525. return srv.(GoUserClientServer).UserCredentialUpdate(ctx, req.(*UserCredentialUpdateReq))
  11526. }
  11527. return interceptor(ctx, in, info, handler)
  11528. }
  11529. func _GoUserClient_UserCredentialDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11530. in := new(UserCredentialDelReq)
  11531. if err := dec(in); err != nil {
  11532. return nil, err
  11533. }
  11534. if interceptor == nil {
  11535. return srv.(GoUserClientServer).UserCredentialDel(ctx, in)
  11536. }
  11537. info := &grpc.UnaryServerInfo{
  11538. Server: srv,
  11539. FullMethod: GoUserClient_UserCredentialDel_FullMethodName,
  11540. }
  11541. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11542. return srv.(GoUserClientServer).UserCredentialDel(ctx, req.(*UserCredentialDelReq))
  11543. }
  11544. return interceptor(ctx, in, info, handler)
  11545. }
  11546. func _GoUserClient_UserCredentialGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11547. in := new(UserCredentialGetReq)
  11548. if err := dec(in); err != nil {
  11549. return nil, err
  11550. }
  11551. if interceptor == nil {
  11552. return srv.(GoUserClientServer).UserCredentialGet(ctx, in)
  11553. }
  11554. info := &grpc.UnaryServerInfo{
  11555. Server: srv,
  11556. FullMethod: GoUserClient_UserCredentialGet_FullMethodName,
  11557. }
  11558. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11559. return srv.(GoUserClientServer).UserCredentialGet(ctx, req.(*UserCredentialGetReq))
  11560. }
  11561. return interceptor(ctx, in, info, handler)
  11562. }
  11563. func _GoUserClient_UserCredentialList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11564. in := new(UserCredentialListReq)
  11565. if err := dec(in); err != nil {
  11566. return nil, err
  11567. }
  11568. if interceptor == nil {
  11569. return srv.(GoUserClientServer).UserCredentialList(ctx, in)
  11570. }
  11571. info := &grpc.UnaryServerInfo{
  11572. Server: srv,
  11573. FullMethod: GoUserClient_UserCredentialList_FullMethodName,
  11574. }
  11575. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11576. return srv.(GoUserClientServer).UserCredentialList(ctx, req.(*UserCredentialListReq))
  11577. }
  11578. return interceptor(ctx, in, info, handler)
  11579. }
  11580. func _GoUserClient_UserDeviceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11581. in := new(UserDeviceAddReq)
  11582. if err := dec(in); err != nil {
  11583. return nil, err
  11584. }
  11585. if interceptor == nil {
  11586. return srv.(GoUserClientServer).UserDeviceAdd(ctx, in)
  11587. }
  11588. info := &grpc.UnaryServerInfo{
  11589. Server: srv,
  11590. FullMethod: GoUserClient_UserDeviceAdd_FullMethodName,
  11591. }
  11592. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11593. return srv.(GoUserClientServer).UserDeviceAdd(ctx, req.(*UserDeviceAddReq))
  11594. }
  11595. return interceptor(ctx, in, info, handler)
  11596. }
  11597. func _GoUserClient_UserDeviceUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11598. in := new(UserDeviceUpdateReq)
  11599. if err := dec(in); err != nil {
  11600. return nil, err
  11601. }
  11602. if interceptor == nil {
  11603. return srv.(GoUserClientServer).UserDeviceUpdate(ctx, in)
  11604. }
  11605. info := &grpc.UnaryServerInfo{
  11606. Server: srv,
  11607. FullMethod: GoUserClient_UserDeviceUpdate_FullMethodName,
  11608. }
  11609. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11610. return srv.(GoUserClientServer).UserDeviceUpdate(ctx, req.(*UserDeviceUpdateReq))
  11611. }
  11612. return interceptor(ctx, in, info, handler)
  11613. }
  11614. func _GoUserClient_UserDeviceDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11615. in := new(UserDeviceDelReq)
  11616. if err := dec(in); err != nil {
  11617. return nil, err
  11618. }
  11619. if interceptor == nil {
  11620. return srv.(GoUserClientServer).UserDeviceDel(ctx, in)
  11621. }
  11622. info := &grpc.UnaryServerInfo{
  11623. Server: srv,
  11624. FullMethod: GoUserClient_UserDeviceDel_FullMethodName,
  11625. }
  11626. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11627. return srv.(GoUserClientServer).UserDeviceDel(ctx, req.(*UserDeviceDelReq))
  11628. }
  11629. return interceptor(ctx, in, info, handler)
  11630. }
  11631. func _GoUserClient_UserDeviceGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11632. in := new(UserDeviceGetReq)
  11633. if err := dec(in); err != nil {
  11634. return nil, err
  11635. }
  11636. if interceptor == nil {
  11637. return srv.(GoUserClientServer).UserDeviceGet(ctx, in)
  11638. }
  11639. info := &grpc.UnaryServerInfo{
  11640. Server: srv,
  11641. FullMethod: GoUserClient_UserDeviceGet_FullMethodName,
  11642. }
  11643. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11644. return srv.(GoUserClientServer).UserDeviceGet(ctx, req.(*UserDeviceGetReq))
  11645. }
  11646. return interceptor(ctx, in, info, handler)
  11647. }
  11648. func _GoUserClient_UserDeviceList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11649. in := new(UserDeviceListReq)
  11650. if err := dec(in); err != nil {
  11651. return nil, err
  11652. }
  11653. if interceptor == nil {
  11654. return srv.(GoUserClientServer).UserDeviceList(ctx, in)
  11655. }
  11656. info := &grpc.UnaryServerInfo{
  11657. Server: srv,
  11658. FullMethod: GoUserClient_UserDeviceList_FullMethodName,
  11659. }
  11660. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11661. return srv.(GoUserClientServer).UserDeviceList(ctx, req.(*UserDeviceListReq))
  11662. }
  11663. return interceptor(ctx, in, info, handler)
  11664. }
  11665. func _GoUserClient_UserServiceAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11666. in := new(UserServiceAddReq)
  11667. if err := dec(in); err != nil {
  11668. return nil, err
  11669. }
  11670. if interceptor == nil {
  11671. return srv.(GoUserClientServer).UserServiceAdd(ctx, in)
  11672. }
  11673. info := &grpc.UnaryServerInfo{
  11674. Server: srv,
  11675. FullMethod: GoUserClient_UserServiceAdd_FullMethodName,
  11676. }
  11677. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11678. return srv.(GoUserClientServer).UserServiceAdd(ctx, req.(*UserServiceAddReq))
  11679. }
  11680. return interceptor(ctx, in, info, handler)
  11681. }
  11682. func _GoUserClient_UserServiceUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11683. in := new(UserServiceUpdateReq)
  11684. if err := dec(in); err != nil {
  11685. return nil, err
  11686. }
  11687. if interceptor == nil {
  11688. return srv.(GoUserClientServer).UserServiceUpdate(ctx, in)
  11689. }
  11690. info := &grpc.UnaryServerInfo{
  11691. Server: srv,
  11692. FullMethod: GoUserClient_UserServiceUpdate_FullMethodName,
  11693. }
  11694. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11695. return srv.(GoUserClientServer).UserServiceUpdate(ctx, req.(*UserServiceUpdateReq))
  11696. }
  11697. return interceptor(ctx, in, info, handler)
  11698. }
  11699. func _GoUserClient_UserServiceDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11700. in := new(UserServiceDelReq)
  11701. if err := dec(in); err != nil {
  11702. return nil, err
  11703. }
  11704. if interceptor == nil {
  11705. return srv.(GoUserClientServer).UserServiceDel(ctx, in)
  11706. }
  11707. info := &grpc.UnaryServerInfo{
  11708. Server: srv,
  11709. FullMethod: GoUserClient_UserServiceDel_FullMethodName,
  11710. }
  11711. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11712. return srv.(GoUserClientServer).UserServiceDel(ctx, req.(*UserServiceDelReq))
  11713. }
  11714. return interceptor(ctx, in, info, handler)
  11715. }
  11716. func _GoUserClient_UserServiceGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11717. in := new(UserServiceGetReq)
  11718. if err := dec(in); err != nil {
  11719. return nil, err
  11720. }
  11721. if interceptor == nil {
  11722. return srv.(GoUserClientServer).UserServiceGet(ctx, in)
  11723. }
  11724. info := &grpc.UnaryServerInfo{
  11725. Server: srv,
  11726. FullMethod: GoUserClient_UserServiceGet_FullMethodName,
  11727. }
  11728. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11729. return srv.(GoUserClientServer).UserServiceGet(ctx, req.(*UserServiceGetReq))
  11730. }
  11731. return interceptor(ctx, in, info, handler)
  11732. }
  11733. func _GoUserClient_UserServiceList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  11734. in := new(UserServiceListReq)
  11735. if err := dec(in); err != nil {
  11736. return nil, err
  11737. }
  11738. if interceptor == nil {
  11739. return srv.(GoUserClientServer).UserServiceList(ctx, in)
  11740. }
  11741. info := &grpc.UnaryServerInfo{
  11742. Server: srv,
  11743. FullMethod: GoUserClient_UserServiceList_FullMethodName,
  11744. }
  11745. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  11746. return srv.(GoUserClientServer).UserServiceList(ctx, req.(*UserServiceListReq))
  11747. }
  11748. return interceptor(ctx, in, info, handler)
  11749. }
  11750. // GoUserClient_ServiceDesc is the grpc.ServiceDesc for GoUserClient service.
  11751. // It's only intended for direct use with grpc.RegisterService,
  11752. // and not to be introspected or modified (even as a copy)
  11753. var GoUserClient_ServiceDesc = grpc.ServiceDesc{
  11754. ServiceName: "gorpc.GoUserClient",
  11755. HandlerType: (*GoUserClientServer)(nil),
  11756. Methods: []grpc.MethodDesc{
  11757. {
  11758. MethodName: "Ping",
  11759. Handler: _GoUserClient_Ping_Handler,
  11760. },
  11761. {
  11762. MethodName: "UserAppConfigAdd",
  11763. Handler: _GoUserClient_UserAppConfigAdd_Handler,
  11764. },
  11765. {
  11766. MethodName: "UserAppConfigUpdate",
  11767. Handler: _GoUserClient_UserAppConfigUpdate_Handler,
  11768. },
  11769. {
  11770. MethodName: "UserAppConfigDel",
  11771. Handler: _GoUserClient_UserAppConfigDel_Handler,
  11772. },
  11773. {
  11774. MethodName: "UserAppConfigGet",
  11775. Handler: _GoUserClient_UserAppConfigGet_Handler,
  11776. },
  11777. {
  11778. MethodName: "UserAppConfigList",
  11779. Handler: _GoUserClient_UserAppConfigList_Handler,
  11780. },
  11781. {
  11782. MethodName: "DeviceAdd",
  11783. Handler: _GoUserClient_DeviceAdd_Handler,
  11784. },
  11785. {
  11786. MethodName: "DeviceUpdate",
  11787. Handler: _GoUserClient_DeviceUpdate_Handler,
  11788. },
  11789. {
  11790. MethodName: "DeviceDel",
  11791. Handler: _GoUserClient_DeviceDel_Handler,
  11792. },
  11793. {
  11794. MethodName: "DeviceGet",
  11795. Handler: _GoUserClient_DeviceGet_Handler,
  11796. },
  11797. {
  11798. MethodName: "DeviceList",
  11799. Handler: _GoUserClient_DeviceList_Handler,
  11800. },
  11801. {
  11802. MethodName: "AccountAdd",
  11803. Handler: _GoUserClient_AccountAdd_Handler,
  11804. },
  11805. {
  11806. MethodName: "AccountUpdate",
  11807. Handler: _GoUserClient_AccountUpdate_Handler,
  11808. },
  11809. {
  11810. MethodName: "AccountDel",
  11811. Handler: _GoUserClient_AccountDel_Handler,
  11812. },
  11813. {
  11814. MethodName: "AccountGet",
  11815. Handler: _GoUserClient_AccountGet_Handler,
  11816. },
  11817. {
  11818. MethodName: "AccountList",
  11819. Handler: _GoUserClient_AccountList_Handler,
  11820. },
  11821. {
  11822. MethodName: "AccountDeviceAdd",
  11823. Handler: _GoUserClient_AccountDeviceAdd_Handler,
  11824. },
  11825. {
  11826. MethodName: "AccountDeviceUpdate",
  11827. Handler: _GoUserClient_AccountDeviceUpdate_Handler,
  11828. },
  11829. {
  11830. MethodName: "AccountDeviceDel",
  11831. Handler: _GoUserClient_AccountDeviceDel_Handler,
  11832. },
  11833. {
  11834. MethodName: "AccountDeviceGet",
  11835. Handler: _GoUserClient_AccountDeviceGet_Handler,
  11836. },
  11837. {
  11838. MethodName: "AccountDeviceList",
  11839. Handler: _GoUserClient_AccountDeviceList_Handler,
  11840. },
  11841. {
  11842. MethodName: "UserWhiteAdd",
  11843. Handler: _GoUserClient_UserWhiteAdd_Handler,
  11844. },
  11845. {
  11846. MethodName: "UserWhiteUpdate",
  11847. Handler: _GoUserClient_UserWhiteUpdate_Handler,
  11848. },
  11849. {
  11850. MethodName: "UserWhiteDel",
  11851. Handler: _GoUserClient_UserWhiteDel_Handler,
  11852. },
  11853. {
  11854. MethodName: "UserWhiteGet",
  11855. Handler: _GoUserClient_UserWhiteGet_Handler,
  11856. },
  11857. {
  11858. MethodName: "UserWhiteList",
  11859. Handler: _GoUserClient_UserWhiteList_Handler,
  11860. },
  11861. {
  11862. MethodName: "UserTestAdd",
  11863. Handler: _GoUserClient_UserTestAdd_Handler,
  11864. },
  11865. {
  11866. MethodName: "UserTestUpdate",
  11867. Handler: _GoUserClient_UserTestUpdate_Handler,
  11868. },
  11869. {
  11870. MethodName: "UserTestDel",
  11871. Handler: _GoUserClient_UserTestDel_Handler,
  11872. },
  11873. {
  11874. MethodName: "UserTestGet",
  11875. Handler: _GoUserClient_UserTestGet_Handler,
  11876. },
  11877. {
  11878. MethodName: "UserTestList",
  11879. Handler: _GoUserClient_UserTestList_Handler,
  11880. },
  11881. {
  11882. MethodName: "UserAdd",
  11883. Handler: _GoUserClient_UserAdd_Handler,
  11884. },
  11885. {
  11886. MethodName: "UserUpdate",
  11887. Handler: _GoUserClient_UserUpdate_Handler,
  11888. },
  11889. {
  11890. MethodName: "UserDel",
  11891. Handler: _GoUserClient_UserDel_Handler,
  11892. },
  11893. {
  11894. MethodName: "UserGet",
  11895. Handler: _GoUserClient_UserGet_Handler,
  11896. },
  11897. {
  11898. MethodName: "UserList",
  11899. Handler: _GoUserClient_UserList_Handler,
  11900. },
  11901. {
  11902. MethodName: "UserCredentialAdd",
  11903. Handler: _GoUserClient_UserCredentialAdd_Handler,
  11904. },
  11905. {
  11906. MethodName: "UserCredentialUpdate",
  11907. Handler: _GoUserClient_UserCredentialUpdate_Handler,
  11908. },
  11909. {
  11910. MethodName: "UserCredentialDel",
  11911. Handler: _GoUserClient_UserCredentialDel_Handler,
  11912. },
  11913. {
  11914. MethodName: "UserCredentialGet",
  11915. Handler: _GoUserClient_UserCredentialGet_Handler,
  11916. },
  11917. {
  11918. MethodName: "UserCredentialList",
  11919. Handler: _GoUserClient_UserCredentialList_Handler,
  11920. },
  11921. {
  11922. MethodName: "UserDeviceAdd",
  11923. Handler: _GoUserClient_UserDeviceAdd_Handler,
  11924. },
  11925. {
  11926. MethodName: "UserDeviceUpdate",
  11927. Handler: _GoUserClient_UserDeviceUpdate_Handler,
  11928. },
  11929. {
  11930. MethodName: "UserDeviceDel",
  11931. Handler: _GoUserClient_UserDeviceDel_Handler,
  11932. },
  11933. {
  11934. MethodName: "UserDeviceGet",
  11935. Handler: _GoUserClient_UserDeviceGet_Handler,
  11936. },
  11937. {
  11938. MethodName: "UserDeviceList",
  11939. Handler: _GoUserClient_UserDeviceList_Handler,
  11940. },
  11941. {
  11942. MethodName: "UserServiceAdd",
  11943. Handler: _GoUserClient_UserServiceAdd_Handler,
  11944. },
  11945. {
  11946. MethodName: "UserServiceUpdate",
  11947. Handler: _GoUserClient_UserServiceUpdate_Handler,
  11948. },
  11949. {
  11950. MethodName: "UserServiceDel",
  11951. Handler: _GoUserClient_UserServiceDel_Handler,
  11952. },
  11953. {
  11954. MethodName: "UserServiceGet",
  11955. Handler: _GoUserClient_UserServiceGet_Handler,
  11956. },
  11957. {
  11958. MethodName: "UserServiceList",
  11959. Handler: _GoUserClient_UserServiceList_Handler,
  11960. },
  11961. },
  11962. Streams: []grpc.StreamDesc{},
  11963. Metadata: "gorpc.proto",
  11964. }
  11965. const (
  11966. GoVpnClient_Ping_FullMethodName = "/gorpc.GoVpnClient/Ping"
  11967. GoVpnClient_Transaction_FullMethodName = "/gorpc.GoVpnClient/Transaction"
  11968. GoVpnClient_VpnTagAdd_FullMethodName = "/gorpc.GoVpnClient/VpnTagAdd"
  11969. GoVpnClient_VpnTagUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnTagUpdate"
  11970. GoVpnClient_VpnTagDel_FullMethodName = "/gorpc.GoVpnClient/VpnTagDel"
  11971. GoVpnClient_VpnTagGet_FullMethodName = "/gorpc.GoVpnClient/VpnTagGet"
  11972. GoVpnClient_VpnTagList_FullMethodName = "/gorpc.GoVpnClient/VpnTagList"
  11973. GoVpnClient_VpnTagBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnTagBatchAdd"
  11974. GoVpnClient_VpnTagBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnTagBatchUpdate"
  11975. GoVpnClient_VpnGroupAdd_FullMethodName = "/gorpc.GoVpnClient/VpnGroupAdd"
  11976. GoVpnClient_VpnGroupUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnGroupUpdate"
  11977. GoVpnClient_VpnGroupDel_FullMethodName = "/gorpc.GoVpnClient/VpnGroupDel"
  11978. GoVpnClient_VpnGroupGet_FullMethodName = "/gorpc.GoVpnClient/VpnGroupGet"
  11979. GoVpnClient_VpnGroupList_FullMethodName = "/gorpc.GoVpnClient/VpnGroupList"
  11980. GoVpnClient_VpnGroupBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnGroupBatchAdd"
  11981. GoVpnClient_VpnGroupBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnGroupBatchUpdate"
  11982. GoVpnClient_VpnGroupTagAdd_FullMethodName = "/gorpc.GoVpnClient/VpnGroupTagAdd"
  11983. GoVpnClient_VpnGroupTagUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnGroupTagUpdate"
  11984. GoVpnClient_VpnGroupTagDel_FullMethodName = "/gorpc.GoVpnClient/VpnGroupTagDel"
  11985. GoVpnClient_VpnGroupTagGet_FullMethodName = "/gorpc.GoVpnClient/VpnGroupTagGet"
  11986. GoVpnClient_VpnGroupTagList_FullMethodName = "/gorpc.GoVpnClient/VpnGroupTagList"
  11987. GoVpnClient_VpnLocationAdd_FullMethodName = "/gorpc.GoVpnClient/VpnLocationAdd"
  11988. GoVpnClient_VpnLocationUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnLocationUpdate"
  11989. GoVpnClient_VpnLocationDel_FullMethodName = "/gorpc.GoVpnClient/VpnLocationDel"
  11990. GoVpnClient_VpnLocationGet_FullMethodName = "/gorpc.GoVpnClient/VpnLocationGet"
  11991. GoVpnClient_VpnLocationList_FullMethodName = "/gorpc.GoVpnClient/VpnLocationList"
  11992. GoVpnClient_VpnLocationBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnLocationBatchAdd"
  11993. GoVpnClient_VpnLocationBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnLocationBatchUpdate"
  11994. GoVpnClient_VpnServerAdd_FullMethodName = "/gorpc.GoVpnClient/VpnServerAdd"
  11995. GoVpnClient_VpnServerUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnServerUpdate"
  11996. GoVpnClient_VpnServerDel_FullMethodName = "/gorpc.GoVpnClient/VpnServerDel"
  11997. GoVpnClient_VpnServerGet_FullMethodName = "/gorpc.GoVpnClient/VpnServerGet"
  11998. GoVpnClient_VpnServerExGet_FullMethodName = "/gorpc.GoVpnClient/VpnServerExGet"
  11999. GoVpnClient_VpnServerList_FullMethodName = "/gorpc.GoVpnClient/VpnServerList"
  12000. GoVpnClient_VpnServerExList_FullMethodName = "/gorpc.GoVpnClient/VpnServerExList"
  12001. GoVpnClient_VpnServerBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnServerBatchAdd"
  12002. GoVpnClient_VpnServerBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnServerBatchUpdate"
  12003. GoVpnClient_VpnServerLocationAdd_FullMethodName = "/gorpc.GoVpnClient/VpnServerLocationAdd"
  12004. GoVpnClient_VpnServerLocationUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnServerLocationUpdate"
  12005. GoVpnClient_VpnServerLocationDel_FullMethodName = "/gorpc.GoVpnClient/VpnServerLocationDel"
  12006. GoVpnClient_VpnServerLocationGet_FullMethodName = "/gorpc.GoVpnClient/VpnServerLocationGet"
  12007. GoVpnClient_VpnServerLocationList_FullMethodName = "/gorpc.GoVpnClient/VpnServerLocationList"
  12008. GoVpnClient_VpnWithIPAndPort_FullMethodName = "/gorpc.GoVpnClient/VpnWithIPAndPort"
  12009. GoVpnClient_VpnLocationServerCount_FullMethodName = "/gorpc.GoVpnClient/VpnLocationServerCount"
  12010. GoVpnClient_VpnProbeTaskAdd_FullMethodName = "/gorpc.GoVpnClient/VpnProbeTaskAdd"
  12011. GoVpnClient_VpnProbeTaskUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnProbeTaskUpdate"
  12012. GoVpnClient_VpnProbeTaskList_FullMethodName = "/gorpc.GoVpnClient/VpnProbeTaskList"
  12013. GoVpnClient_VpnipWalledAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledAdd"
  12014. GoVpnClient_VpnipWalledUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledUpdate"
  12015. GoVpnClient_VpnipWalledDel_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledDel"
  12016. GoVpnClient_VpnipWalledGet_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledGet"
  12017. GoVpnClient_VpnipWalledList_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledList"
  12018. GoVpnClient_VpnipWalledBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledBatchAdd"
  12019. GoVpnClient_VpnipWalledBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipWalledBatchUpdate"
  12020. GoVpnClient_VpnipAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipAdd"
  12021. GoVpnClient_VpnipExAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipExAdd"
  12022. GoVpnClient_VpnipUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipUpdate"
  12023. GoVpnClient_VpnipExUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipExUpdate"
  12024. GoVpnClient_VpnipDel_FullMethodName = "/gorpc.GoVpnClient/VpnipDel"
  12025. GoVpnClient_VpnipGet_FullMethodName = "/gorpc.GoVpnClient/VpnipGet"
  12026. GoVpnClient_VpnipExGet_FullMethodName = "/gorpc.GoVpnClient/VpnipExGet"
  12027. GoVpnClient_VpnipList_FullMethodName = "/gorpc.GoVpnClient/VpnipList"
  12028. GoVpnClient_VpnipExList_FullMethodName = "/gorpc.GoVpnClient/VpnipExList"
  12029. GoVpnClient_VpnipBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipBatchAdd"
  12030. GoVpnClient_VpnipBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipBatchUpdate"
  12031. GoVpnClient_VpnipExBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipExBatchAdd"
  12032. GoVpnClient_VpnipExBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipExBatchUpdate"
  12033. GoVpnClient_VpnipRangeAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeAdd"
  12034. GoVpnClient_VpnipRangeExAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExAdd"
  12035. GoVpnClient_VpnipRangeUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeUpdate"
  12036. GoVpnClient_VpnipRangeExUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExUpdate"
  12037. GoVpnClient_VpnipRangeDel_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeDel"
  12038. GoVpnClient_VpnipRangeGet_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeGet"
  12039. GoVpnClient_VpnipRangeExGet_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExGet"
  12040. GoVpnClient_VpnipRangeList_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeList"
  12041. GoVpnClient_VpnipRangeExList_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExList"
  12042. GoVpnClient_VpnipRangeBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeBatchAdd"
  12043. GoVpnClient_VpnipRangeExBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExBatchAdd"
  12044. GoVpnClient_VpnipRangeBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeBatchUpdate"
  12045. GoVpnClient_VpnipRangeExBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipRangeExBatchUpdate"
  12046. GoVpnClient_VpnipBindAdd_FullMethodName = "/gorpc.GoVpnClient/VpnipBindAdd"
  12047. GoVpnClient_VpnipBindUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipBindUpdate"
  12048. GoVpnClient_VpnipBindDel_FullMethodName = "/gorpc.GoVpnClient/VpnipBindDel"
  12049. GoVpnClient_VpnipBindGet_FullMethodName = "/gorpc.GoVpnClient/VpnipBindGet"
  12050. GoVpnClient_VpnipBindList_FullMethodName = "/gorpc.GoVpnClient/VpnipBindList"
  12051. GoVpnClient_VpnipBindBatchUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnipBindBatchUpdate"
  12052. GoVpnClient_VpnipsBindServer_FullMethodName = "/gorpc.GoVpnClient/VpnipsBindServer"
  12053. GoVpnClient_VpnConfigTemplatePlanAdd_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanAdd"
  12054. GoVpnClient_VpnConfigTemplatePlanUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanUpdate"
  12055. GoVpnClient_VpnConfigTemplatePlanDel_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDel"
  12056. GoVpnClient_VpnConfigTemplatePlanGet_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanGet"
  12057. GoVpnClient_VpnConfigTemplatePlanList_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanList"
  12058. GoVpnClient_VpnConfigTemplatePlanDetailAdd_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDetailAdd"
  12059. GoVpnClient_VpnConfigTemplatePlanDetailUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDetailUpdate"
  12060. GoVpnClient_VpnConfigTemplatePlanDetailDel_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDetailDel"
  12061. GoVpnClient_VpnConfigTemplatePlanDetailGet_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDetailGet"
  12062. GoVpnClient_VpnConfigTemplatePlanDetailList_FullMethodName = "/gorpc.GoVpnClient/VpnConfigTemplatePlanDetailList"
  12063. GoVpnClient_VpnServerPortAdd_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortAdd"
  12064. GoVpnClient_VpnServerPortUpdate_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortUpdate"
  12065. GoVpnClient_VpnServerPortDel_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortDel"
  12066. GoVpnClient_VpnServerPortGet_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortGet"
  12067. GoVpnClient_VpnServerPortList_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortList"
  12068. GoVpnClient_VpnServerPortBatchAdd_FullMethodName = "/gorpc.GoVpnClient/VpnServerPortBatchAdd"
  12069. )
  12070. // GoVpnClientClient is the client API for GoVpnClient service.
  12071. //
  12072. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  12073. //
  12074. // govpn 模块,VPN相关服务
  12075. type GoVpnClientClient interface {
  12076. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  12077. // 表的事务操作
  12078. Transaction(ctx context.Context, in *TransactionReq, opts ...grpc.CallOption) (*Empty, error)
  12079. // VpnTagAdd
  12080. VpnTagAdd(ctx context.Context, in *VpnTagVo, opts ...grpc.CallOption) (*VpnTagVo, error)
  12081. VpnTagUpdate(ctx context.Context, in *VpnTagVo, opts ...grpc.CallOption) (*VpnTagVo, error)
  12082. VpnTagDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12083. VpnTagGet(ctx context.Context, in *VpnTagGetReq, opts ...grpc.CallOption) (*VpnTagVo, error)
  12084. VpnTagList(ctx context.Context, in *VpnTagListReq, opts ...grpc.CallOption) (*VpnTagListResp, error)
  12085. VpnTagBatchAdd(ctx context.Context, in *VpnTagBatchAddReq, opts ...grpc.CallOption) (*VpnTagBatchAddResp, error)
  12086. VpnTagBatchUpdate(ctx context.Context, in *VpnTagBatchUpdateReq, opts ...grpc.CallOption) (*VpnTagBatchUpdateResp, error)
  12087. // VpnGroupAdd
  12088. VpnGroupAdd(ctx context.Context, in *VpnGroupAddReq, opts ...grpc.CallOption) (*VpnGroupVo, error)
  12089. VpnGroupUpdate(ctx context.Context, in *VpnGroupAddReq, opts ...grpc.CallOption) (*Empty, error)
  12090. VpnGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12091. VpnGroupGet(ctx context.Context, in *VpnGroupGetReq, opts ...grpc.CallOption) (*VpnGroupVo, error)
  12092. VpnGroupList(ctx context.Context, in *VpnGroupListReq, opts ...grpc.CallOption) (*VpnGroupListResp, error)
  12093. VpnGroupBatchAdd(ctx context.Context, in *VpnGroupBatchAddReq, opts ...grpc.CallOption) (*VpnGroupBatchAddResp, error)
  12094. VpnGroupBatchUpdate(ctx context.Context, in *VpnGroupBatchUpdateReq, opts ...grpc.CallOption) (*VpnGroupBatchUpdateResp, error)
  12095. // VpnGroupTagAdd
  12096. VpnGroupTagAdd(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error)
  12097. VpnGroupTagUpdate(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error)
  12098. VpnGroupTagDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12099. VpnGroupTagGet(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error)
  12100. VpnGroupTagList(ctx context.Context, in *VpnGroupTagListReq, opts ...grpc.CallOption) (*VpnGroupTagListResp, error)
  12101. // VpnLocationAdd
  12102. VpnLocationAdd(ctx context.Context, in *VpnLocationVo, opts ...grpc.CallOption) (*VpnLocationVo, error)
  12103. VpnLocationUpdate(ctx context.Context, in *VpnLocationVo, opts ...grpc.CallOption) (*Empty, error)
  12104. VpnLocationDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12105. VpnLocationGet(ctx context.Context, in *VpnLocationGetReq, opts ...grpc.CallOption) (*VpnLocationVo, error)
  12106. VpnLocationList(ctx context.Context, in *VpnLocationListReq, opts ...grpc.CallOption) (*VpnLocationListResp, error)
  12107. VpnLocationBatchAdd(ctx context.Context, in *VpnLocationBatchAddReq, opts ...grpc.CallOption) (*VpnLocationBatchAddResp, error)
  12108. VpnLocationBatchUpdate(ctx context.Context, in *VpnLocationBatchUpdateReq, opts ...grpc.CallOption) (*VpnLocationBatchUpdateResp, error)
  12109. // VpnServerAdd
  12110. VpnServerAdd(ctx context.Context, in *VpnServerAddReq, opts ...grpc.CallOption) (*VpnServerAddReq, error)
  12111. VpnServerUpdate(ctx context.Context, in *VpnServerAddReq, opts ...grpc.CallOption) (*VpnServerAddReq, error)
  12112. VpnServerDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12113. VpnServerGet(ctx context.Context, in *VpnServerVo, opts ...grpc.CallOption) (*VpnServerVo, error)
  12114. VpnServerExGet(ctx context.Context, in *VpnServerVo, opts ...grpc.CallOption) (*VpnServerExVo, error)
  12115. VpnServerList(ctx context.Context, in *VpnServerListReq, opts ...grpc.CallOption) (*VpnServerListResp, error)
  12116. VpnServerExList(ctx context.Context, in *VpnServerListReq, opts ...grpc.CallOption) (*VpnServerExListResp, error)
  12117. VpnServerBatchAdd(ctx context.Context, in *VpnServerBatchAddReq, opts ...grpc.CallOption) (*VpnServerBatchAddResp, error)
  12118. VpnServerBatchUpdate(ctx context.Context, in *VpnServerBatchUpdateReq, opts ...grpc.CallOption) (*VpnServerBatchUpdateResp, error)
  12119. // VpnServerLocationAdd
  12120. VpnServerLocationAdd(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*VpnServerLocationVo, error)
  12121. VpnServerLocationUpdate(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*Empty, error)
  12122. VpnServerLocationDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12123. VpnServerLocationGet(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*VpnServerLocationVo, error)
  12124. VpnServerLocationList(ctx context.Context, in *VpnServerLocationListReq, opts ...grpc.CallOption) (*VpnServerLocationListResp, error)
  12125. VpnWithIPAndPort(ctx context.Context, in *VpnWithIPAndPortReq, opts ...grpc.CallOption) (*VpnWithIPAndPortResp, error)
  12126. // VpnLocationServerCount
  12127. VpnLocationServerCount(ctx context.Context, in *VpnLocationServerCountReq, opts ...grpc.CallOption) (*VpnLocationServerCountResp, error)
  12128. // VpnProbeTaskAdd
  12129. VpnProbeTaskAdd(ctx context.Context, in *VpnProbeTaskVo, opts ...grpc.CallOption) (*VpnProbeTaskVo, error)
  12130. VpnProbeTaskUpdate(ctx context.Context, in *VpnProbeTaskVo, opts ...grpc.CallOption) (*Empty, error)
  12131. VpnProbeTaskList(ctx context.Context, in *VpnProbeTaskListReq, opts ...grpc.CallOption) (*VpnProbeTaskListResp, error)
  12132. // VpnipWalledAdd
  12133. VpnipWalledAdd(ctx context.Context, in *VpnipWalledAddReq, opts ...grpc.CallOption) (*VpnipWalledAddResp, error)
  12134. VpnipWalledUpdate(ctx context.Context, in *VpnipWalledUpdateReq, opts ...grpc.CallOption) (*VpnipWalledUpdateResp, error)
  12135. VpnipWalledDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12136. VpnipWalledGet(ctx context.Context, in *VpnipWalledGetReq, opts ...grpc.CallOption) (*VpnipWalledGetResp, error)
  12137. VpnipWalledList(ctx context.Context, in *VpnipWalledListReq, opts ...grpc.CallOption) (*VpnipWalledListResp, error)
  12138. VpnipWalledBatchAdd(ctx context.Context, in *VpnipWalledBatchAddReq, opts ...grpc.CallOption) (*VpnipWalledBatchAddResp, error)
  12139. VpnipWalledBatchUpdate(ctx context.Context, in *VpnipWalledBatchUpdateReq, opts ...grpc.CallOption) (*VpnipWalledBatchUpdateResp, error)
  12140. // VpnipAdd
  12141. VpnipAdd(ctx context.Context, in *VpnipAddReq, opts ...grpc.CallOption) (*VpnipAddResp, error)
  12142. VpnipExAdd(ctx context.Context, in *VpnipExAddReq, opts ...grpc.CallOption) (*VpnipExAddResp, error)
  12143. VpnipUpdate(ctx context.Context, in *VpnipUpdateReq, opts ...grpc.CallOption) (*VpnipUpdateResp, error)
  12144. VpnipExUpdate(ctx context.Context, in *VpnipExUpdateReq, opts ...grpc.CallOption) (*VpnipExUpdateResp, error)
  12145. VpnipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12146. VpnipGet(ctx context.Context, in *VpnipGetReq, opts ...grpc.CallOption) (*VpnipGetResp, error)
  12147. VpnipExGet(ctx context.Context, in *VpnipGetReq, opts ...grpc.CallOption) (*VpnipExGetResp, error)
  12148. VpnipList(ctx context.Context, in *VpnipListReq, opts ...grpc.CallOption) (*VpnipListResp, error)
  12149. VpnipExList(ctx context.Context, in *VpnipListReq, opts ...grpc.CallOption) (*VpnipExListResp, error)
  12150. VpnipBatchAdd(ctx context.Context, in *VpnipBatchAddReq, opts ...grpc.CallOption) (*VpnipBatchAddResp, error)
  12151. VpnipBatchUpdate(ctx context.Context, in *VpnipBatchUpdateReq, opts ...grpc.CallOption) (*VpnipBatchUpdateResp, error)
  12152. VpnipExBatchAdd(ctx context.Context, in *VpnipExBatchAddReq, opts ...grpc.CallOption) (*VpnipExBatchAddResp, error)
  12153. VpnipExBatchUpdate(ctx context.Context, in *VpnipExBatchUpdateReq, opts ...grpc.CallOption) (*VpnipExBatchUpdateResp, error)
  12154. // VpnipRangeAdd
  12155. VpnipRangeAdd(ctx context.Context, in *VpnipRangeAddReq, opts ...grpc.CallOption) (*VpnipRangeAddResp, error)
  12156. // VpnipRangeExAdd 添加IP段及IP数据,如果IP数据已存在,会自动将已经存在的IP的 rangeId 更新为新增的IP段的ID
  12157. VpnipRangeExAdd(ctx context.Context, in *VpnipRangeExAddReq, opts ...grpc.CallOption) (*VpnipRangeExAddResp, error)
  12158. VpnipRangeUpdate(ctx context.Context, in *VpnipRangeUpdateReq, opts ...grpc.CallOption) (*VpnipRangeUpdateResp, error)
  12159. VpnipRangeExUpdate(ctx context.Context, in *VpnipRangeExUpdateReq, opts ...grpc.CallOption) (*VpnipRangeExUpdateResp, error)
  12160. VpnipRangeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12161. VpnipRangeGet(ctx context.Context, in *VpnipRangeGetReq, opts ...grpc.CallOption) (*VpnipRangeGetResp, error)
  12162. VpnipRangeExGet(ctx context.Context, in *VpnipRangeGetReq, opts ...grpc.CallOption) (*VpnipRangeExGetResp, error)
  12163. VpnipRangeList(ctx context.Context, in *VpnipRangeListReq, opts ...grpc.CallOption) (*VpnipRangeListResp, error)
  12164. VpnipRangeExList(ctx context.Context, in *VpnipRangeListReq, opts ...grpc.CallOption) (*VpnipRangeExListResp, error)
  12165. VpnipRangeBatchAdd(ctx context.Context, in *VpnipRangeBatchAddReq, opts ...grpc.CallOption) (*VpnipRangeBatchAddResp, error)
  12166. VpnipRangeExBatchAdd(ctx context.Context, in *VpnipRangeExBatchAddReq, opts ...grpc.CallOption) (*VpnipRangeExBatchAddResp, error)
  12167. VpnipRangeBatchUpdate(ctx context.Context, in *VpnipRangeBatchUpdateReq, opts ...grpc.CallOption) (*VpnipRangeBatchUpdateResp, error)
  12168. VpnipRangeExBatchUpdate(ctx context.Context, in *VpnipRangeExBatchUpdateReq, opts ...grpc.CallOption) (*VpnipRangeExBatchUpdateResp, error)
  12169. // VpnipBindAdd
  12170. VpnipBindAdd(ctx context.Context, in *VpnipBindAddReq, opts ...grpc.CallOption) (*VpnipBindAddResp, error)
  12171. VpnipBindUpdate(ctx context.Context, in *VpnipBindUpdateReq, opts ...grpc.CallOption) (*VpnipBindUpdateResp, error)
  12172. VpnipBindDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  12173. VpnipBindGet(ctx context.Context, in *VpnipBindGetReq, opts ...grpc.CallOption) (*VpnipBindGetResp, error)
  12174. VpnipBindList(ctx context.Context, in *VpnipBindListReq, opts ...grpc.CallOption) (*VpnipBindListResp, error)
  12175. VpnipBindBatchUpdate(ctx context.Context, in *VpnipBindBatchUpdateReq, opts ...grpc.CallOption) (*VpnipBindBatchUpdateResp, error)
  12176. // VpnipsBindServer 为一台服务器绑定一批新IP,会解绑上次绑定的IP,再绑定新的IP,仅需提供 ipId, serverId, Remark, createAt, updateAt 即可,其他字段会自动填充
  12177. VpnipsBindServer(ctx context.Context, in *VpnipBindBatchAddReq, opts ...grpc.CallOption) (*VpnipBindBatchAddResp, error)
  12178. // VpnConfigTemplatePlanAdd 添加配置模板及模板详情
  12179. VpnConfigTemplatePlanAdd(ctx context.Context, in *VpnConfigTemplatePlanAddReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanAddResp, error)
  12180. // VpnConfigTemplatePlanUpdate 更新配置模板(只更新模板,不更新模板详情,如果 withDetails 为 true,则返回结果中包含模板详情)
  12181. VpnConfigTemplatePlanUpdate(ctx context.Context, in *VpnConfigTemplatePlanUpdateReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanUpdateResp, error)
  12182. // VpnConfigTemplatePlanDel 删除配置模板(会同时删除模板详情)
  12183. VpnConfigTemplatePlanDel(ctx context.Context, in *VpnConfigTemplatePlanDelReq, opts ...grpc.CallOption) (*Empty, error)
  12184. // VpnConfigTemplatePlanGet 获取配置模板(如果 withDetails 为 true,则返回结果中包含模板详情)
  12185. VpnConfigTemplatePlanGet(ctx context.Context, in *VpnConfigTemplatePlanGetReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanGetResp, error)
  12186. // VpnConfigTemplatePlanList 获取配置模板列表(如果 withDetails 为 true,则返回结果中包含模板详情)
  12187. VpnConfigTemplatePlanList(ctx context.Context, in *VpnConfigTemplatePlanListReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanListResp, error)
  12188. // VpnConfigTemplatePlanDetailAdd 添加模板详情
  12189. VpnConfigTemplatePlanDetailAdd(ctx context.Context, in *VpnConfigTemplatePlanDetailAddReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailAddResp, error)
  12190. VpnConfigTemplatePlanDetailUpdate(ctx context.Context, in *VpnConfigTemplatePlanDetailUpdateReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailUpdateResp, error)
  12191. VpnConfigTemplatePlanDetailDel(ctx context.Context, in *VpnConfigTemplatePlanDetailDelReq, opts ...grpc.CallOption) (*Empty, error)
  12192. VpnConfigTemplatePlanDetailGet(ctx context.Context, in *VpnConfigTemplatePlanDetailGetReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailGetResp, error)
  12193. VpnConfigTemplatePlanDetailList(ctx context.Context, in *VpnConfigTemplatePlanDetailListReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailListResp, error)
  12194. // VpnServerPortAdd
  12195. VpnServerPortAdd(ctx context.Context, in *VpnServerPortAddReq, opts ...grpc.CallOption) (*VpnServerPortAddResp, error)
  12196. VpnServerPortUpdate(ctx context.Context, in *VpnServerPortUpdateReq, opts ...grpc.CallOption) (*VpnServerPortUpdateResp, error)
  12197. VpnServerPortDel(ctx context.Context, in *VpnServerPortDelReq, opts ...grpc.CallOption) (*Empty, error)
  12198. VpnServerPortGet(ctx context.Context, in *VpnServerPortGetReq, opts ...grpc.CallOption) (*VpnServerPortGetResp, error)
  12199. VpnServerPortList(ctx context.Context, in *VpnServerPortListReq, opts ...grpc.CallOption) (*VpnServerPortListResp, error)
  12200. VpnServerPortBatchAdd(ctx context.Context, in *VpnServerPortBatchAddReq, opts ...grpc.CallOption) (*VpnServerPortBatchAddResp, error)
  12201. }
  12202. type goVpnClientClient struct {
  12203. cc grpc.ClientConnInterface
  12204. }
  12205. func NewGoVpnClientClient(cc grpc.ClientConnInterface) GoVpnClientClient {
  12206. return &goVpnClientClient{cc}
  12207. }
  12208. func (c *goVpnClientClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  12209. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12210. out := new(Response)
  12211. err := c.cc.Invoke(ctx, GoVpnClient_Ping_FullMethodName, in, out, cOpts...)
  12212. if err != nil {
  12213. return nil, err
  12214. }
  12215. return out, nil
  12216. }
  12217. func (c *goVpnClientClient) Transaction(ctx context.Context, in *TransactionReq, opts ...grpc.CallOption) (*Empty, error) {
  12218. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12219. out := new(Empty)
  12220. err := c.cc.Invoke(ctx, GoVpnClient_Transaction_FullMethodName, in, out, cOpts...)
  12221. if err != nil {
  12222. return nil, err
  12223. }
  12224. return out, nil
  12225. }
  12226. func (c *goVpnClientClient) VpnTagAdd(ctx context.Context, in *VpnTagVo, opts ...grpc.CallOption) (*VpnTagVo, error) {
  12227. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12228. out := new(VpnTagVo)
  12229. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagAdd_FullMethodName, in, out, cOpts...)
  12230. if err != nil {
  12231. return nil, err
  12232. }
  12233. return out, nil
  12234. }
  12235. func (c *goVpnClientClient) VpnTagUpdate(ctx context.Context, in *VpnTagVo, opts ...grpc.CallOption) (*VpnTagVo, error) {
  12236. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12237. out := new(VpnTagVo)
  12238. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagUpdate_FullMethodName, in, out, cOpts...)
  12239. if err != nil {
  12240. return nil, err
  12241. }
  12242. return out, nil
  12243. }
  12244. func (c *goVpnClientClient) VpnTagDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12245. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12246. out := new(Empty)
  12247. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagDel_FullMethodName, in, out, cOpts...)
  12248. if err != nil {
  12249. return nil, err
  12250. }
  12251. return out, nil
  12252. }
  12253. func (c *goVpnClientClient) VpnTagGet(ctx context.Context, in *VpnTagGetReq, opts ...grpc.CallOption) (*VpnTagVo, error) {
  12254. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12255. out := new(VpnTagVo)
  12256. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagGet_FullMethodName, in, out, cOpts...)
  12257. if err != nil {
  12258. return nil, err
  12259. }
  12260. return out, nil
  12261. }
  12262. func (c *goVpnClientClient) VpnTagList(ctx context.Context, in *VpnTagListReq, opts ...grpc.CallOption) (*VpnTagListResp, error) {
  12263. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12264. out := new(VpnTagListResp)
  12265. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagList_FullMethodName, in, out, cOpts...)
  12266. if err != nil {
  12267. return nil, err
  12268. }
  12269. return out, nil
  12270. }
  12271. func (c *goVpnClientClient) VpnTagBatchAdd(ctx context.Context, in *VpnTagBatchAddReq, opts ...grpc.CallOption) (*VpnTagBatchAddResp, error) {
  12272. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12273. out := new(VpnTagBatchAddResp)
  12274. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagBatchAdd_FullMethodName, in, out, cOpts...)
  12275. if err != nil {
  12276. return nil, err
  12277. }
  12278. return out, nil
  12279. }
  12280. func (c *goVpnClientClient) VpnTagBatchUpdate(ctx context.Context, in *VpnTagBatchUpdateReq, opts ...grpc.CallOption) (*VpnTagBatchUpdateResp, error) {
  12281. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12282. out := new(VpnTagBatchUpdateResp)
  12283. err := c.cc.Invoke(ctx, GoVpnClient_VpnTagBatchUpdate_FullMethodName, in, out, cOpts...)
  12284. if err != nil {
  12285. return nil, err
  12286. }
  12287. return out, nil
  12288. }
  12289. func (c *goVpnClientClient) VpnGroupAdd(ctx context.Context, in *VpnGroupAddReq, opts ...grpc.CallOption) (*VpnGroupVo, error) {
  12290. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12291. out := new(VpnGroupVo)
  12292. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupAdd_FullMethodName, in, out, cOpts...)
  12293. if err != nil {
  12294. return nil, err
  12295. }
  12296. return out, nil
  12297. }
  12298. func (c *goVpnClientClient) VpnGroupUpdate(ctx context.Context, in *VpnGroupAddReq, opts ...grpc.CallOption) (*Empty, error) {
  12299. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12300. out := new(Empty)
  12301. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupUpdate_FullMethodName, in, out, cOpts...)
  12302. if err != nil {
  12303. return nil, err
  12304. }
  12305. return out, nil
  12306. }
  12307. func (c *goVpnClientClient) VpnGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12308. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12309. out := new(Empty)
  12310. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupDel_FullMethodName, in, out, cOpts...)
  12311. if err != nil {
  12312. return nil, err
  12313. }
  12314. return out, nil
  12315. }
  12316. func (c *goVpnClientClient) VpnGroupGet(ctx context.Context, in *VpnGroupGetReq, opts ...grpc.CallOption) (*VpnGroupVo, error) {
  12317. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12318. out := new(VpnGroupVo)
  12319. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupGet_FullMethodName, in, out, cOpts...)
  12320. if err != nil {
  12321. return nil, err
  12322. }
  12323. return out, nil
  12324. }
  12325. func (c *goVpnClientClient) VpnGroupList(ctx context.Context, in *VpnGroupListReq, opts ...grpc.CallOption) (*VpnGroupListResp, error) {
  12326. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12327. out := new(VpnGroupListResp)
  12328. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupList_FullMethodName, in, out, cOpts...)
  12329. if err != nil {
  12330. return nil, err
  12331. }
  12332. return out, nil
  12333. }
  12334. func (c *goVpnClientClient) VpnGroupBatchAdd(ctx context.Context, in *VpnGroupBatchAddReq, opts ...grpc.CallOption) (*VpnGroupBatchAddResp, error) {
  12335. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12336. out := new(VpnGroupBatchAddResp)
  12337. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupBatchAdd_FullMethodName, in, out, cOpts...)
  12338. if err != nil {
  12339. return nil, err
  12340. }
  12341. return out, nil
  12342. }
  12343. func (c *goVpnClientClient) VpnGroupBatchUpdate(ctx context.Context, in *VpnGroupBatchUpdateReq, opts ...grpc.CallOption) (*VpnGroupBatchUpdateResp, error) {
  12344. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12345. out := new(VpnGroupBatchUpdateResp)
  12346. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupBatchUpdate_FullMethodName, in, out, cOpts...)
  12347. if err != nil {
  12348. return nil, err
  12349. }
  12350. return out, nil
  12351. }
  12352. func (c *goVpnClientClient) VpnGroupTagAdd(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error) {
  12353. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12354. out := new(VpnGroupTagVo)
  12355. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupTagAdd_FullMethodName, in, out, cOpts...)
  12356. if err != nil {
  12357. return nil, err
  12358. }
  12359. return out, nil
  12360. }
  12361. func (c *goVpnClientClient) VpnGroupTagUpdate(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error) {
  12362. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12363. out := new(VpnGroupTagVo)
  12364. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupTagUpdate_FullMethodName, in, out, cOpts...)
  12365. if err != nil {
  12366. return nil, err
  12367. }
  12368. return out, nil
  12369. }
  12370. func (c *goVpnClientClient) VpnGroupTagDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12371. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12372. out := new(Empty)
  12373. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupTagDel_FullMethodName, in, out, cOpts...)
  12374. if err != nil {
  12375. return nil, err
  12376. }
  12377. return out, nil
  12378. }
  12379. func (c *goVpnClientClient) VpnGroupTagGet(ctx context.Context, in *VpnGroupTagVo, opts ...grpc.CallOption) (*VpnGroupTagVo, error) {
  12380. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12381. out := new(VpnGroupTagVo)
  12382. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupTagGet_FullMethodName, in, out, cOpts...)
  12383. if err != nil {
  12384. return nil, err
  12385. }
  12386. return out, nil
  12387. }
  12388. func (c *goVpnClientClient) VpnGroupTagList(ctx context.Context, in *VpnGroupTagListReq, opts ...grpc.CallOption) (*VpnGroupTagListResp, error) {
  12389. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12390. out := new(VpnGroupTagListResp)
  12391. err := c.cc.Invoke(ctx, GoVpnClient_VpnGroupTagList_FullMethodName, in, out, cOpts...)
  12392. if err != nil {
  12393. return nil, err
  12394. }
  12395. return out, nil
  12396. }
  12397. func (c *goVpnClientClient) VpnLocationAdd(ctx context.Context, in *VpnLocationVo, opts ...grpc.CallOption) (*VpnLocationVo, error) {
  12398. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12399. out := new(VpnLocationVo)
  12400. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationAdd_FullMethodName, in, out, cOpts...)
  12401. if err != nil {
  12402. return nil, err
  12403. }
  12404. return out, nil
  12405. }
  12406. func (c *goVpnClientClient) VpnLocationUpdate(ctx context.Context, in *VpnLocationVo, opts ...grpc.CallOption) (*Empty, error) {
  12407. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12408. out := new(Empty)
  12409. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationUpdate_FullMethodName, in, out, cOpts...)
  12410. if err != nil {
  12411. return nil, err
  12412. }
  12413. return out, nil
  12414. }
  12415. func (c *goVpnClientClient) VpnLocationDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12416. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12417. out := new(Empty)
  12418. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationDel_FullMethodName, in, out, cOpts...)
  12419. if err != nil {
  12420. return nil, err
  12421. }
  12422. return out, nil
  12423. }
  12424. func (c *goVpnClientClient) VpnLocationGet(ctx context.Context, in *VpnLocationGetReq, opts ...grpc.CallOption) (*VpnLocationVo, error) {
  12425. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12426. out := new(VpnLocationVo)
  12427. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationGet_FullMethodName, in, out, cOpts...)
  12428. if err != nil {
  12429. return nil, err
  12430. }
  12431. return out, nil
  12432. }
  12433. func (c *goVpnClientClient) VpnLocationList(ctx context.Context, in *VpnLocationListReq, opts ...grpc.CallOption) (*VpnLocationListResp, error) {
  12434. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12435. out := new(VpnLocationListResp)
  12436. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationList_FullMethodName, in, out, cOpts...)
  12437. if err != nil {
  12438. return nil, err
  12439. }
  12440. return out, nil
  12441. }
  12442. func (c *goVpnClientClient) VpnLocationBatchAdd(ctx context.Context, in *VpnLocationBatchAddReq, opts ...grpc.CallOption) (*VpnLocationBatchAddResp, error) {
  12443. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12444. out := new(VpnLocationBatchAddResp)
  12445. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationBatchAdd_FullMethodName, in, out, cOpts...)
  12446. if err != nil {
  12447. return nil, err
  12448. }
  12449. return out, nil
  12450. }
  12451. func (c *goVpnClientClient) VpnLocationBatchUpdate(ctx context.Context, in *VpnLocationBatchUpdateReq, opts ...grpc.CallOption) (*VpnLocationBatchUpdateResp, error) {
  12452. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12453. out := new(VpnLocationBatchUpdateResp)
  12454. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationBatchUpdate_FullMethodName, in, out, cOpts...)
  12455. if err != nil {
  12456. return nil, err
  12457. }
  12458. return out, nil
  12459. }
  12460. func (c *goVpnClientClient) VpnServerAdd(ctx context.Context, in *VpnServerAddReq, opts ...grpc.CallOption) (*VpnServerAddReq, error) {
  12461. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12462. out := new(VpnServerAddReq)
  12463. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerAdd_FullMethodName, in, out, cOpts...)
  12464. if err != nil {
  12465. return nil, err
  12466. }
  12467. return out, nil
  12468. }
  12469. func (c *goVpnClientClient) VpnServerUpdate(ctx context.Context, in *VpnServerAddReq, opts ...grpc.CallOption) (*VpnServerAddReq, error) {
  12470. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12471. out := new(VpnServerAddReq)
  12472. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerUpdate_FullMethodName, in, out, cOpts...)
  12473. if err != nil {
  12474. return nil, err
  12475. }
  12476. return out, nil
  12477. }
  12478. func (c *goVpnClientClient) VpnServerDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12479. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12480. out := new(Empty)
  12481. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerDel_FullMethodName, in, out, cOpts...)
  12482. if err != nil {
  12483. return nil, err
  12484. }
  12485. return out, nil
  12486. }
  12487. func (c *goVpnClientClient) VpnServerGet(ctx context.Context, in *VpnServerVo, opts ...grpc.CallOption) (*VpnServerVo, error) {
  12488. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12489. out := new(VpnServerVo)
  12490. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerGet_FullMethodName, in, out, cOpts...)
  12491. if err != nil {
  12492. return nil, err
  12493. }
  12494. return out, nil
  12495. }
  12496. func (c *goVpnClientClient) VpnServerExGet(ctx context.Context, in *VpnServerVo, opts ...grpc.CallOption) (*VpnServerExVo, error) {
  12497. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12498. out := new(VpnServerExVo)
  12499. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerExGet_FullMethodName, in, out, cOpts...)
  12500. if err != nil {
  12501. return nil, err
  12502. }
  12503. return out, nil
  12504. }
  12505. func (c *goVpnClientClient) VpnServerList(ctx context.Context, in *VpnServerListReq, opts ...grpc.CallOption) (*VpnServerListResp, error) {
  12506. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12507. out := new(VpnServerListResp)
  12508. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerList_FullMethodName, in, out, cOpts...)
  12509. if err != nil {
  12510. return nil, err
  12511. }
  12512. return out, nil
  12513. }
  12514. func (c *goVpnClientClient) VpnServerExList(ctx context.Context, in *VpnServerListReq, opts ...grpc.CallOption) (*VpnServerExListResp, error) {
  12515. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12516. out := new(VpnServerExListResp)
  12517. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerExList_FullMethodName, in, out, cOpts...)
  12518. if err != nil {
  12519. return nil, err
  12520. }
  12521. return out, nil
  12522. }
  12523. func (c *goVpnClientClient) VpnServerBatchAdd(ctx context.Context, in *VpnServerBatchAddReq, opts ...grpc.CallOption) (*VpnServerBatchAddResp, error) {
  12524. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12525. out := new(VpnServerBatchAddResp)
  12526. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerBatchAdd_FullMethodName, in, out, cOpts...)
  12527. if err != nil {
  12528. return nil, err
  12529. }
  12530. return out, nil
  12531. }
  12532. func (c *goVpnClientClient) VpnServerBatchUpdate(ctx context.Context, in *VpnServerBatchUpdateReq, opts ...grpc.CallOption) (*VpnServerBatchUpdateResp, error) {
  12533. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12534. out := new(VpnServerBatchUpdateResp)
  12535. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerBatchUpdate_FullMethodName, in, out, cOpts...)
  12536. if err != nil {
  12537. return nil, err
  12538. }
  12539. return out, nil
  12540. }
  12541. func (c *goVpnClientClient) VpnServerLocationAdd(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*VpnServerLocationVo, error) {
  12542. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12543. out := new(VpnServerLocationVo)
  12544. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerLocationAdd_FullMethodName, in, out, cOpts...)
  12545. if err != nil {
  12546. return nil, err
  12547. }
  12548. return out, nil
  12549. }
  12550. func (c *goVpnClientClient) VpnServerLocationUpdate(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*Empty, error) {
  12551. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12552. out := new(Empty)
  12553. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerLocationUpdate_FullMethodName, in, out, cOpts...)
  12554. if err != nil {
  12555. return nil, err
  12556. }
  12557. return out, nil
  12558. }
  12559. func (c *goVpnClientClient) VpnServerLocationDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12560. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12561. out := new(Empty)
  12562. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerLocationDel_FullMethodName, in, out, cOpts...)
  12563. if err != nil {
  12564. return nil, err
  12565. }
  12566. return out, nil
  12567. }
  12568. func (c *goVpnClientClient) VpnServerLocationGet(ctx context.Context, in *VpnServerLocationVo, opts ...grpc.CallOption) (*VpnServerLocationVo, error) {
  12569. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12570. out := new(VpnServerLocationVo)
  12571. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerLocationGet_FullMethodName, in, out, cOpts...)
  12572. if err != nil {
  12573. return nil, err
  12574. }
  12575. return out, nil
  12576. }
  12577. func (c *goVpnClientClient) VpnServerLocationList(ctx context.Context, in *VpnServerLocationListReq, opts ...grpc.CallOption) (*VpnServerLocationListResp, error) {
  12578. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12579. out := new(VpnServerLocationListResp)
  12580. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerLocationList_FullMethodName, in, out, cOpts...)
  12581. if err != nil {
  12582. return nil, err
  12583. }
  12584. return out, nil
  12585. }
  12586. func (c *goVpnClientClient) VpnWithIPAndPort(ctx context.Context, in *VpnWithIPAndPortReq, opts ...grpc.CallOption) (*VpnWithIPAndPortResp, error) {
  12587. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12588. out := new(VpnWithIPAndPortResp)
  12589. err := c.cc.Invoke(ctx, GoVpnClient_VpnWithIPAndPort_FullMethodName, in, out, cOpts...)
  12590. if err != nil {
  12591. return nil, err
  12592. }
  12593. return out, nil
  12594. }
  12595. func (c *goVpnClientClient) VpnLocationServerCount(ctx context.Context, in *VpnLocationServerCountReq, opts ...grpc.CallOption) (*VpnLocationServerCountResp, error) {
  12596. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12597. out := new(VpnLocationServerCountResp)
  12598. err := c.cc.Invoke(ctx, GoVpnClient_VpnLocationServerCount_FullMethodName, in, out, cOpts...)
  12599. if err != nil {
  12600. return nil, err
  12601. }
  12602. return out, nil
  12603. }
  12604. func (c *goVpnClientClient) VpnProbeTaskAdd(ctx context.Context, in *VpnProbeTaskVo, opts ...grpc.CallOption) (*VpnProbeTaskVo, error) {
  12605. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12606. out := new(VpnProbeTaskVo)
  12607. err := c.cc.Invoke(ctx, GoVpnClient_VpnProbeTaskAdd_FullMethodName, in, out, cOpts...)
  12608. if err != nil {
  12609. return nil, err
  12610. }
  12611. return out, nil
  12612. }
  12613. func (c *goVpnClientClient) VpnProbeTaskUpdate(ctx context.Context, in *VpnProbeTaskVo, opts ...grpc.CallOption) (*Empty, error) {
  12614. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12615. out := new(Empty)
  12616. err := c.cc.Invoke(ctx, GoVpnClient_VpnProbeTaskUpdate_FullMethodName, in, out, cOpts...)
  12617. if err != nil {
  12618. return nil, err
  12619. }
  12620. return out, nil
  12621. }
  12622. func (c *goVpnClientClient) VpnProbeTaskList(ctx context.Context, in *VpnProbeTaskListReq, opts ...grpc.CallOption) (*VpnProbeTaskListResp, error) {
  12623. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12624. out := new(VpnProbeTaskListResp)
  12625. err := c.cc.Invoke(ctx, GoVpnClient_VpnProbeTaskList_FullMethodName, in, out, cOpts...)
  12626. if err != nil {
  12627. return nil, err
  12628. }
  12629. return out, nil
  12630. }
  12631. func (c *goVpnClientClient) VpnipWalledAdd(ctx context.Context, in *VpnipWalledAddReq, opts ...grpc.CallOption) (*VpnipWalledAddResp, error) {
  12632. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12633. out := new(VpnipWalledAddResp)
  12634. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledAdd_FullMethodName, in, out, cOpts...)
  12635. if err != nil {
  12636. return nil, err
  12637. }
  12638. return out, nil
  12639. }
  12640. func (c *goVpnClientClient) VpnipWalledUpdate(ctx context.Context, in *VpnipWalledUpdateReq, opts ...grpc.CallOption) (*VpnipWalledUpdateResp, error) {
  12641. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12642. out := new(VpnipWalledUpdateResp)
  12643. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledUpdate_FullMethodName, in, out, cOpts...)
  12644. if err != nil {
  12645. return nil, err
  12646. }
  12647. return out, nil
  12648. }
  12649. func (c *goVpnClientClient) VpnipWalledDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12650. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12651. out := new(Empty)
  12652. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledDel_FullMethodName, in, out, cOpts...)
  12653. if err != nil {
  12654. return nil, err
  12655. }
  12656. return out, nil
  12657. }
  12658. func (c *goVpnClientClient) VpnipWalledGet(ctx context.Context, in *VpnipWalledGetReq, opts ...grpc.CallOption) (*VpnipWalledGetResp, error) {
  12659. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12660. out := new(VpnipWalledGetResp)
  12661. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledGet_FullMethodName, in, out, cOpts...)
  12662. if err != nil {
  12663. return nil, err
  12664. }
  12665. return out, nil
  12666. }
  12667. func (c *goVpnClientClient) VpnipWalledList(ctx context.Context, in *VpnipWalledListReq, opts ...grpc.CallOption) (*VpnipWalledListResp, error) {
  12668. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12669. out := new(VpnipWalledListResp)
  12670. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledList_FullMethodName, in, out, cOpts...)
  12671. if err != nil {
  12672. return nil, err
  12673. }
  12674. return out, nil
  12675. }
  12676. func (c *goVpnClientClient) VpnipWalledBatchAdd(ctx context.Context, in *VpnipWalledBatchAddReq, opts ...grpc.CallOption) (*VpnipWalledBatchAddResp, error) {
  12677. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12678. out := new(VpnipWalledBatchAddResp)
  12679. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledBatchAdd_FullMethodName, in, out, cOpts...)
  12680. if err != nil {
  12681. return nil, err
  12682. }
  12683. return out, nil
  12684. }
  12685. func (c *goVpnClientClient) VpnipWalledBatchUpdate(ctx context.Context, in *VpnipWalledBatchUpdateReq, opts ...grpc.CallOption) (*VpnipWalledBatchUpdateResp, error) {
  12686. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12687. out := new(VpnipWalledBatchUpdateResp)
  12688. err := c.cc.Invoke(ctx, GoVpnClient_VpnipWalledBatchUpdate_FullMethodName, in, out, cOpts...)
  12689. if err != nil {
  12690. return nil, err
  12691. }
  12692. return out, nil
  12693. }
  12694. func (c *goVpnClientClient) VpnipAdd(ctx context.Context, in *VpnipAddReq, opts ...grpc.CallOption) (*VpnipAddResp, error) {
  12695. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12696. out := new(VpnipAddResp)
  12697. err := c.cc.Invoke(ctx, GoVpnClient_VpnipAdd_FullMethodName, in, out, cOpts...)
  12698. if err != nil {
  12699. return nil, err
  12700. }
  12701. return out, nil
  12702. }
  12703. func (c *goVpnClientClient) VpnipExAdd(ctx context.Context, in *VpnipExAddReq, opts ...grpc.CallOption) (*VpnipExAddResp, error) {
  12704. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12705. out := new(VpnipExAddResp)
  12706. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExAdd_FullMethodName, in, out, cOpts...)
  12707. if err != nil {
  12708. return nil, err
  12709. }
  12710. return out, nil
  12711. }
  12712. func (c *goVpnClientClient) VpnipUpdate(ctx context.Context, in *VpnipUpdateReq, opts ...grpc.CallOption) (*VpnipUpdateResp, error) {
  12713. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12714. out := new(VpnipUpdateResp)
  12715. err := c.cc.Invoke(ctx, GoVpnClient_VpnipUpdate_FullMethodName, in, out, cOpts...)
  12716. if err != nil {
  12717. return nil, err
  12718. }
  12719. return out, nil
  12720. }
  12721. func (c *goVpnClientClient) VpnipExUpdate(ctx context.Context, in *VpnipExUpdateReq, opts ...grpc.CallOption) (*VpnipExUpdateResp, error) {
  12722. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12723. out := new(VpnipExUpdateResp)
  12724. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExUpdate_FullMethodName, in, out, cOpts...)
  12725. if err != nil {
  12726. return nil, err
  12727. }
  12728. return out, nil
  12729. }
  12730. func (c *goVpnClientClient) VpnipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12731. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12732. out := new(Empty)
  12733. err := c.cc.Invoke(ctx, GoVpnClient_VpnipDel_FullMethodName, in, out, cOpts...)
  12734. if err != nil {
  12735. return nil, err
  12736. }
  12737. return out, nil
  12738. }
  12739. func (c *goVpnClientClient) VpnipGet(ctx context.Context, in *VpnipGetReq, opts ...grpc.CallOption) (*VpnipGetResp, error) {
  12740. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12741. out := new(VpnipGetResp)
  12742. err := c.cc.Invoke(ctx, GoVpnClient_VpnipGet_FullMethodName, in, out, cOpts...)
  12743. if err != nil {
  12744. return nil, err
  12745. }
  12746. return out, nil
  12747. }
  12748. func (c *goVpnClientClient) VpnipExGet(ctx context.Context, in *VpnipGetReq, opts ...grpc.CallOption) (*VpnipExGetResp, error) {
  12749. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12750. out := new(VpnipExGetResp)
  12751. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExGet_FullMethodName, in, out, cOpts...)
  12752. if err != nil {
  12753. return nil, err
  12754. }
  12755. return out, nil
  12756. }
  12757. func (c *goVpnClientClient) VpnipList(ctx context.Context, in *VpnipListReq, opts ...grpc.CallOption) (*VpnipListResp, error) {
  12758. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12759. out := new(VpnipListResp)
  12760. err := c.cc.Invoke(ctx, GoVpnClient_VpnipList_FullMethodName, in, out, cOpts...)
  12761. if err != nil {
  12762. return nil, err
  12763. }
  12764. return out, nil
  12765. }
  12766. func (c *goVpnClientClient) VpnipExList(ctx context.Context, in *VpnipListReq, opts ...grpc.CallOption) (*VpnipExListResp, error) {
  12767. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12768. out := new(VpnipExListResp)
  12769. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExList_FullMethodName, in, out, cOpts...)
  12770. if err != nil {
  12771. return nil, err
  12772. }
  12773. return out, nil
  12774. }
  12775. func (c *goVpnClientClient) VpnipBatchAdd(ctx context.Context, in *VpnipBatchAddReq, opts ...grpc.CallOption) (*VpnipBatchAddResp, error) {
  12776. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12777. out := new(VpnipBatchAddResp)
  12778. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBatchAdd_FullMethodName, in, out, cOpts...)
  12779. if err != nil {
  12780. return nil, err
  12781. }
  12782. return out, nil
  12783. }
  12784. func (c *goVpnClientClient) VpnipBatchUpdate(ctx context.Context, in *VpnipBatchUpdateReq, opts ...grpc.CallOption) (*VpnipBatchUpdateResp, error) {
  12785. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12786. out := new(VpnipBatchUpdateResp)
  12787. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBatchUpdate_FullMethodName, in, out, cOpts...)
  12788. if err != nil {
  12789. return nil, err
  12790. }
  12791. return out, nil
  12792. }
  12793. func (c *goVpnClientClient) VpnipExBatchAdd(ctx context.Context, in *VpnipExBatchAddReq, opts ...grpc.CallOption) (*VpnipExBatchAddResp, error) {
  12794. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12795. out := new(VpnipExBatchAddResp)
  12796. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExBatchAdd_FullMethodName, in, out, cOpts...)
  12797. if err != nil {
  12798. return nil, err
  12799. }
  12800. return out, nil
  12801. }
  12802. func (c *goVpnClientClient) VpnipExBatchUpdate(ctx context.Context, in *VpnipExBatchUpdateReq, opts ...grpc.CallOption) (*VpnipExBatchUpdateResp, error) {
  12803. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12804. out := new(VpnipExBatchUpdateResp)
  12805. err := c.cc.Invoke(ctx, GoVpnClient_VpnipExBatchUpdate_FullMethodName, in, out, cOpts...)
  12806. if err != nil {
  12807. return nil, err
  12808. }
  12809. return out, nil
  12810. }
  12811. func (c *goVpnClientClient) VpnipRangeAdd(ctx context.Context, in *VpnipRangeAddReq, opts ...grpc.CallOption) (*VpnipRangeAddResp, error) {
  12812. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12813. out := new(VpnipRangeAddResp)
  12814. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeAdd_FullMethodName, in, out, cOpts...)
  12815. if err != nil {
  12816. return nil, err
  12817. }
  12818. return out, nil
  12819. }
  12820. func (c *goVpnClientClient) VpnipRangeExAdd(ctx context.Context, in *VpnipRangeExAddReq, opts ...grpc.CallOption) (*VpnipRangeExAddResp, error) {
  12821. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12822. out := new(VpnipRangeExAddResp)
  12823. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExAdd_FullMethodName, in, out, cOpts...)
  12824. if err != nil {
  12825. return nil, err
  12826. }
  12827. return out, nil
  12828. }
  12829. func (c *goVpnClientClient) VpnipRangeUpdate(ctx context.Context, in *VpnipRangeUpdateReq, opts ...grpc.CallOption) (*VpnipRangeUpdateResp, error) {
  12830. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12831. out := new(VpnipRangeUpdateResp)
  12832. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeUpdate_FullMethodName, in, out, cOpts...)
  12833. if err != nil {
  12834. return nil, err
  12835. }
  12836. return out, nil
  12837. }
  12838. func (c *goVpnClientClient) VpnipRangeExUpdate(ctx context.Context, in *VpnipRangeExUpdateReq, opts ...grpc.CallOption) (*VpnipRangeExUpdateResp, error) {
  12839. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12840. out := new(VpnipRangeExUpdateResp)
  12841. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExUpdate_FullMethodName, in, out, cOpts...)
  12842. if err != nil {
  12843. return nil, err
  12844. }
  12845. return out, nil
  12846. }
  12847. func (c *goVpnClientClient) VpnipRangeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12848. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12849. out := new(Empty)
  12850. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeDel_FullMethodName, in, out, cOpts...)
  12851. if err != nil {
  12852. return nil, err
  12853. }
  12854. return out, nil
  12855. }
  12856. func (c *goVpnClientClient) VpnipRangeGet(ctx context.Context, in *VpnipRangeGetReq, opts ...grpc.CallOption) (*VpnipRangeGetResp, error) {
  12857. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12858. out := new(VpnipRangeGetResp)
  12859. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeGet_FullMethodName, in, out, cOpts...)
  12860. if err != nil {
  12861. return nil, err
  12862. }
  12863. return out, nil
  12864. }
  12865. func (c *goVpnClientClient) VpnipRangeExGet(ctx context.Context, in *VpnipRangeGetReq, opts ...grpc.CallOption) (*VpnipRangeExGetResp, error) {
  12866. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12867. out := new(VpnipRangeExGetResp)
  12868. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExGet_FullMethodName, in, out, cOpts...)
  12869. if err != nil {
  12870. return nil, err
  12871. }
  12872. return out, nil
  12873. }
  12874. func (c *goVpnClientClient) VpnipRangeList(ctx context.Context, in *VpnipRangeListReq, opts ...grpc.CallOption) (*VpnipRangeListResp, error) {
  12875. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12876. out := new(VpnipRangeListResp)
  12877. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeList_FullMethodName, in, out, cOpts...)
  12878. if err != nil {
  12879. return nil, err
  12880. }
  12881. return out, nil
  12882. }
  12883. func (c *goVpnClientClient) VpnipRangeExList(ctx context.Context, in *VpnipRangeListReq, opts ...grpc.CallOption) (*VpnipRangeExListResp, error) {
  12884. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12885. out := new(VpnipRangeExListResp)
  12886. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExList_FullMethodName, in, out, cOpts...)
  12887. if err != nil {
  12888. return nil, err
  12889. }
  12890. return out, nil
  12891. }
  12892. func (c *goVpnClientClient) VpnipRangeBatchAdd(ctx context.Context, in *VpnipRangeBatchAddReq, opts ...grpc.CallOption) (*VpnipRangeBatchAddResp, error) {
  12893. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12894. out := new(VpnipRangeBatchAddResp)
  12895. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeBatchAdd_FullMethodName, in, out, cOpts...)
  12896. if err != nil {
  12897. return nil, err
  12898. }
  12899. return out, nil
  12900. }
  12901. func (c *goVpnClientClient) VpnipRangeExBatchAdd(ctx context.Context, in *VpnipRangeExBatchAddReq, opts ...grpc.CallOption) (*VpnipRangeExBatchAddResp, error) {
  12902. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12903. out := new(VpnipRangeExBatchAddResp)
  12904. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExBatchAdd_FullMethodName, in, out, cOpts...)
  12905. if err != nil {
  12906. return nil, err
  12907. }
  12908. return out, nil
  12909. }
  12910. func (c *goVpnClientClient) VpnipRangeBatchUpdate(ctx context.Context, in *VpnipRangeBatchUpdateReq, opts ...grpc.CallOption) (*VpnipRangeBatchUpdateResp, error) {
  12911. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12912. out := new(VpnipRangeBatchUpdateResp)
  12913. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeBatchUpdate_FullMethodName, in, out, cOpts...)
  12914. if err != nil {
  12915. return nil, err
  12916. }
  12917. return out, nil
  12918. }
  12919. func (c *goVpnClientClient) VpnipRangeExBatchUpdate(ctx context.Context, in *VpnipRangeExBatchUpdateReq, opts ...grpc.CallOption) (*VpnipRangeExBatchUpdateResp, error) {
  12920. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12921. out := new(VpnipRangeExBatchUpdateResp)
  12922. err := c.cc.Invoke(ctx, GoVpnClient_VpnipRangeExBatchUpdate_FullMethodName, in, out, cOpts...)
  12923. if err != nil {
  12924. return nil, err
  12925. }
  12926. return out, nil
  12927. }
  12928. func (c *goVpnClientClient) VpnipBindAdd(ctx context.Context, in *VpnipBindAddReq, opts ...grpc.CallOption) (*VpnipBindAddResp, error) {
  12929. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12930. out := new(VpnipBindAddResp)
  12931. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindAdd_FullMethodName, in, out, cOpts...)
  12932. if err != nil {
  12933. return nil, err
  12934. }
  12935. return out, nil
  12936. }
  12937. func (c *goVpnClientClient) VpnipBindUpdate(ctx context.Context, in *VpnipBindUpdateReq, opts ...grpc.CallOption) (*VpnipBindUpdateResp, error) {
  12938. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12939. out := new(VpnipBindUpdateResp)
  12940. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindUpdate_FullMethodName, in, out, cOpts...)
  12941. if err != nil {
  12942. return nil, err
  12943. }
  12944. return out, nil
  12945. }
  12946. func (c *goVpnClientClient) VpnipBindDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  12947. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12948. out := new(Empty)
  12949. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindDel_FullMethodName, in, out, cOpts...)
  12950. if err != nil {
  12951. return nil, err
  12952. }
  12953. return out, nil
  12954. }
  12955. func (c *goVpnClientClient) VpnipBindGet(ctx context.Context, in *VpnipBindGetReq, opts ...grpc.CallOption) (*VpnipBindGetResp, error) {
  12956. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12957. out := new(VpnipBindGetResp)
  12958. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindGet_FullMethodName, in, out, cOpts...)
  12959. if err != nil {
  12960. return nil, err
  12961. }
  12962. return out, nil
  12963. }
  12964. func (c *goVpnClientClient) VpnipBindList(ctx context.Context, in *VpnipBindListReq, opts ...grpc.CallOption) (*VpnipBindListResp, error) {
  12965. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12966. out := new(VpnipBindListResp)
  12967. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindList_FullMethodName, in, out, cOpts...)
  12968. if err != nil {
  12969. return nil, err
  12970. }
  12971. return out, nil
  12972. }
  12973. func (c *goVpnClientClient) VpnipBindBatchUpdate(ctx context.Context, in *VpnipBindBatchUpdateReq, opts ...grpc.CallOption) (*VpnipBindBatchUpdateResp, error) {
  12974. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12975. out := new(VpnipBindBatchUpdateResp)
  12976. err := c.cc.Invoke(ctx, GoVpnClient_VpnipBindBatchUpdate_FullMethodName, in, out, cOpts...)
  12977. if err != nil {
  12978. return nil, err
  12979. }
  12980. return out, nil
  12981. }
  12982. func (c *goVpnClientClient) VpnipsBindServer(ctx context.Context, in *VpnipBindBatchAddReq, opts ...grpc.CallOption) (*VpnipBindBatchAddResp, error) {
  12983. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12984. out := new(VpnipBindBatchAddResp)
  12985. err := c.cc.Invoke(ctx, GoVpnClient_VpnipsBindServer_FullMethodName, in, out, cOpts...)
  12986. if err != nil {
  12987. return nil, err
  12988. }
  12989. return out, nil
  12990. }
  12991. func (c *goVpnClientClient) VpnConfigTemplatePlanAdd(ctx context.Context, in *VpnConfigTemplatePlanAddReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanAddResp, error) {
  12992. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  12993. out := new(VpnConfigTemplatePlanAddResp)
  12994. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanAdd_FullMethodName, in, out, cOpts...)
  12995. if err != nil {
  12996. return nil, err
  12997. }
  12998. return out, nil
  12999. }
  13000. func (c *goVpnClientClient) VpnConfigTemplatePlanUpdate(ctx context.Context, in *VpnConfigTemplatePlanUpdateReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanUpdateResp, error) {
  13001. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13002. out := new(VpnConfigTemplatePlanUpdateResp)
  13003. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanUpdate_FullMethodName, in, out, cOpts...)
  13004. if err != nil {
  13005. return nil, err
  13006. }
  13007. return out, nil
  13008. }
  13009. func (c *goVpnClientClient) VpnConfigTemplatePlanDel(ctx context.Context, in *VpnConfigTemplatePlanDelReq, opts ...grpc.CallOption) (*Empty, error) {
  13010. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13011. out := new(Empty)
  13012. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDel_FullMethodName, in, out, cOpts...)
  13013. if err != nil {
  13014. return nil, err
  13015. }
  13016. return out, nil
  13017. }
  13018. func (c *goVpnClientClient) VpnConfigTemplatePlanGet(ctx context.Context, in *VpnConfigTemplatePlanGetReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanGetResp, error) {
  13019. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13020. out := new(VpnConfigTemplatePlanGetResp)
  13021. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanGet_FullMethodName, in, out, cOpts...)
  13022. if err != nil {
  13023. return nil, err
  13024. }
  13025. return out, nil
  13026. }
  13027. func (c *goVpnClientClient) VpnConfigTemplatePlanList(ctx context.Context, in *VpnConfigTemplatePlanListReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanListResp, error) {
  13028. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13029. out := new(VpnConfigTemplatePlanListResp)
  13030. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanList_FullMethodName, in, out, cOpts...)
  13031. if err != nil {
  13032. return nil, err
  13033. }
  13034. return out, nil
  13035. }
  13036. func (c *goVpnClientClient) VpnConfigTemplatePlanDetailAdd(ctx context.Context, in *VpnConfigTemplatePlanDetailAddReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailAddResp, error) {
  13037. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13038. out := new(VpnConfigTemplatePlanDetailAddResp)
  13039. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDetailAdd_FullMethodName, in, out, cOpts...)
  13040. if err != nil {
  13041. return nil, err
  13042. }
  13043. return out, nil
  13044. }
  13045. func (c *goVpnClientClient) VpnConfigTemplatePlanDetailUpdate(ctx context.Context, in *VpnConfigTemplatePlanDetailUpdateReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailUpdateResp, error) {
  13046. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13047. out := new(VpnConfigTemplatePlanDetailUpdateResp)
  13048. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDetailUpdate_FullMethodName, in, out, cOpts...)
  13049. if err != nil {
  13050. return nil, err
  13051. }
  13052. return out, nil
  13053. }
  13054. func (c *goVpnClientClient) VpnConfigTemplatePlanDetailDel(ctx context.Context, in *VpnConfigTemplatePlanDetailDelReq, opts ...grpc.CallOption) (*Empty, error) {
  13055. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13056. out := new(Empty)
  13057. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDetailDel_FullMethodName, in, out, cOpts...)
  13058. if err != nil {
  13059. return nil, err
  13060. }
  13061. return out, nil
  13062. }
  13063. func (c *goVpnClientClient) VpnConfigTemplatePlanDetailGet(ctx context.Context, in *VpnConfigTemplatePlanDetailGetReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailGetResp, error) {
  13064. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13065. out := new(VpnConfigTemplatePlanDetailGetResp)
  13066. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDetailGet_FullMethodName, in, out, cOpts...)
  13067. if err != nil {
  13068. return nil, err
  13069. }
  13070. return out, nil
  13071. }
  13072. func (c *goVpnClientClient) VpnConfigTemplatePlanDetailList(ctx context.Context, in *VpnConfigTemplatePlanDetailListReq, opts ...grpc.CallOption) (*VpnConfigTemplatePlanDetailListResp, error) {
  13073. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13074. out := new(VpnConfigTemplatePlanDetailListResp)
  13075. err := c.cc.Invoke(ctx, GoVpnClient_VpnConfigTemplatePlanDetailList_FullMethodName, in, out, cOpts...)
  13076. if err != nil {
  13077. return nil, err
  13078. }
  13079. return out, nil
  13080. }
  13081. func (c *goVpnClientClient) VpnServerPortAdd(ctx context.Context, in *VpnServerPortAddReq, opts ...grpc.CallOption) (*VpnServerPortAddResp, error) {
  13082. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13083. out := new(VpnServerPortAddResp)
  13084. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortAdd_FullMethodName, in, out, cOpts...)
  13085. if err != nil {
  13086. return nil, err
  13087. }
  13088. return out, nil
  13089. }
  13090. func (c *goVpnClientClient) VpnServerPortUpdate(ctx context.Context, in *VpnServerPortUpdateReq, opts ...grpc.CallOption) (*VpnServerPortUpdateResp, error) {
  13091. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13092. out := new(VpnServerPortUpdateResp)
  13093. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortUpdate_FullMethodName, in, out, cOpts...)
  13094. if err != nil {
  13095. return nil, err
  13096. }
  13097. return out, nil
  13098. }
  13099. func (c *goVpnClientClient) VpnServerPortDel(ctx context.Context, in *VpnServerPortDelReq, opts ...grpc.CallOption) (*Empty, error) {
  13100. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13101. out := new(Empty)
  13102. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortDel_FullMethodName, in, out, cOpts...)
  13103. if err != nil {
  13104. return nil, err
  13105. }
  13106. return out, nil
  13107. }
  13108. func (c *goVpnClientClient) VpnServerPortGet(ctx context.Context, in *VpnServerPortGetReq, opts ...grpc.CallOption) (*VpnServerPortGetResp, error) {
  13109. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13110. out := new(VpnServerPortGetResp)
  13111. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortGet_FullMethodName, in, out, cOpts...)
  13112. if err != nil {
  13113. return nil, err
  13114. }
  13115. return out, nil
  13116. }
  13117. func (c *goVpnClientClient) VpnServerPortList(ctx context.Context, in *VpnServerPortListReq, opts ...grpc.CallOption) (*VpnServerPortListResp, error) {
  13118. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13119. out := new(VpnServerPortListResp)
  13120. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortList_FullMethodName, in, out, cOpts...)
  13121. if err != nil {
  13122. return nil, err
  13123. }
  13124. return out, nil
  13125. }
  13126. func (c *goVpnClientClient) VpnServerPortBatchAdd(ctx context.Context, in *VpnServerPortBatchAddReq, opts ...grpc.CallOption) (*VpnServerPortBatchAddResp, error) {
  13127. cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
  13128. out := new(VpnServerPortBatchAddResp)
  13129. err := c.cc.Invoke(ctx, GoVpnClient_VpnServerPortBatchAdd_FullMethodName, in, out, cOpts...)
  13130. if err != nil {
  13131. return nil, err
  13132. }
  13133. return out, nil
  13134. }
  13135. // GoVpnClientServer is the server API for GoVpnClient service.
  13136. // All implementations must embed UnimplementedGoVpnClientServer
  13137. // for forward compatibility.
  13138. //
  13139. // govpn 模块,VPN相关服务
  13140. type GoVpnClientServer interface {
  13141. Ping(context.Context, *Request) (*Response, error)
  13142. // 表的事务操作
  13143. Transaction(context.Context, *TransactionReq) (*Empty, error)
  13144. // VpnTagAdd
  13145. VpnTagAdd(context.Context, *VpnTagVo) (*VpnTagVo, error)
  13146. VpnTagUpdate(context.Context, *VpnTagVo) (*VpnTagVo, error)
  13147. VpnTagDel(context.Context, *Ids) (*Empty, error)
  13148. VpnTagGet(context.Context, *VpnTagGetReq) (*VpnTagVo, error)
  13149. VpnTagList(context.Context, *VpnTagListReq) (*VpnTagListResp, error)
  13150. VpnTagBatchAdd(context.Context, *VpnTagBatchAddReq) (*VpnTagBatchAddResp, error)
  13151. VpnTagBatchUpdate(context.Context, *VpnTagBatchUpdateReq) (*VpnTagBatchUpdateResp, error)
  13152. // VpnGroupAdd
  13153. VpnGroupAdd(context.Context, *VpnGroupAddReq) (*VpnGroupVo, error)
  13154. VpnGroupUpdate(context.Context, *VpnGroupAddReq) (*Empty, error)
  13155. VpnGroupDel(context.Context, *Ids) (*Empty, error)
  13156. VpnGroupGet(context.Context, *VpnGroupGetReq) (*VpnGroupVo, error)
  13157. VpnGroupList(context.Context, *VpnGroupListReq) (*VpnGroupListResp, error)
  13158. VpnGroupBatchAdd(context.Context, *VpnGroupBatchAddReq) (*VpnGroupBatchAddResp, error)
  13159. VpnGroupBatchUpdate(context.Context, *VpnGroupBatchUpdateReq) (*VpnGroupBatchUpdateResp, error)
  13160. // VpnGroupTagAdd
  13161. VpnGroupTagAdd(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error)
  13162. VpnGroupTagUpdate(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error)
  13163. VpnGroupTagDel(context.Context, *Ids) (*Empty, error)
  13164. VpnGroupTagGet(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error)
  13165. VpnGroupTagList(context.Context, *VpnGroupTagListReq) (*VpnGroupTagListResp, error)
  13166. // VpnLocationAdd
  13167. VpnLocationAdd(context.Context, *VpnLocationVo) (*VpnLocationVo, error)
  13168. VpnLocationUpdate(context.Context, *VpnLocationVo) (*Empty, error)
  13169. VpnLocationDel(context.Context, *Ids) (*Empty, error)
  13170. VpnLocationGet(context.Context, *VpnLocationGetReq) (*VpnLocationVo, error)
  13171. VpnLocationList(context.Context, *VpnLocationListReq) (*VpnLocationListResp, error)
  13172. VpnLocationBatchAdd(context.Context, *VpnLocationBatchAddReq) (*VpnLocationBatchAddResp, error)
  13173. VpnLocationBatchUpdate(context.Context, *VpnLocationBatchUpdateReq) (*VpnLocationBatchUpdateResp, error)
  13174. // VpnServerAdd
  13175. VpnServerAdd(context.Context, *VpnServerAddReq) (*VpnServerAddReq, error)
  13176. VpnServerUpdate(context.Context, *VpnServerAddReq) (*VpnServerAddReq, error)
  13177. VpnServerDel(context.Context, *Ids) (*Empty, error)
  13178. VpnServerGet(context.Context, *VpnServerVo) (*VpnServerVo, error)
  13179. VpnServerExGet(context.Context, *VpnServerVo) (*VpnServerExVo, error)
  13180. VpnServerList(context.Context, *VpnServerListReq) (*VpnServerListResp, error)
  13181. VpnServerExList(context.Context, *VpnServerListReq) (*VpnServerExListResp, error)
  13182. VpnServerBatchAdd(context.Context, *VpnServerBatchAddReq) (*VpnServerBatchAddResp, error)
  13183. VpnServerBatchUpdate(context.Context, *VpnServerBatchUpdateReq) (*VpnServerBatchUpdateResp, error)
  13184. // VpnServerLocationAdd
  13185. VpnServerLocationAdd(context.Context, *VpnServerLocationVo) (*VpnServerLocationVo, error)
  13186. VpnServerLocationUpdate(context.Context, *VpnServerLocationVo) (*Empty, error)
  13187. VpnServerLocationDel(context.Context, *Ids) (*Empty, error)
  13188. VpnServerLocationGet(context.Context, *VpnServerLocationVo) (*VpnServerLocationVo, error)
  13189. VpnServerLocationList(context.Context, *VpnServerLocationListReq) (*VpnServerLocationListResp, error)
  13190. VpnWithIPAndPort(context.Context, *VpnWithIPAndPortReq) (*VpnWithIPAndPortResp, error)
  13191. // VpnLocationServerCount
  13192. VpnLocationServerCount(context.Context, *VpnLocationServerCountReq) (*VpnLocationServerCountResp, error)
  13193. // VpnProbeTaskAdd
  13194. VpnProbeTaskAdd(context.Context, *VpnProbeTaskVo) (*VpnProbeTaskVo, error)
  13195. VpnProbeTaskUpdate(context.Context, *VpnProbeTaskVo) (*Empty, error)
  13196. VpnProbeTaskList(context.Context, *VpnProbeTaskListReq) (*VpnProbeTaskListResp, error)
  13197. // VpnipWalledAdd
  13198. VpnipWalledAdd(context.Context, *VpnipWalledAddReq) (*VpnipWalledAddResp, error)
  13199. VpnipWalledUpdate(context.Context, *VpnipWalledUpdateReq) (*VpnipWalledUpdateResp, error)
  13200. VpnipWalledDel(context.Context, *Ids) (*Empty, error)
  13201. VpnipWalledGet(context.Context, *VpnipWalledGetReq) (*VpnipWalledGetResp, error)
  13202. VpnipWalledList(context.Context, *VpnipWalledListReq) (*VpnipWalledListResp, error)
  13203. VpnipWalledBatchAdd(context.Context, *VpnipWalledBatchAddReq) (*VpnipWalledBatchAddResp, error)
  13204. VpnipWalledBatchUpdate(context.Context, *VpnipWalledBatchUpdateReq) (*VpnipWalledBatchUpdateResp, error)
  13205. // VpnipAdd
  13206. VpnipAdd(context.Context, *VpnipAddReq) (*VpnipAddResp, error)
  13207. VpnipExAdd(context.Context, *VpnipExAddReq) (*VpnipExAddResp, error)
  13208. VpnipUpdate(context.Context, *VpnipUpdateReq) (*VpnipUpdateResp, error)
  13209. VpnipExUpdate(context.Context, *VpnipExUpdateReq) (*VpnipExUpdateResp, error)
  13210. VpnipDel(context.Context, *Ids) (*Empty, error)
  13211. VpnipGet(context.Context, *VpnipGetReq) (*VpnipGetResp, error)
  13212. VpnipExGet(context.Context, *VpnipGetReq) (*VpnipExGetResp, error)
  13213. VpnipList(context.Context, *VpnipListReq) (*VpnipListResp, error)
  13214. VpnipExList(context.Context, *VpnipListReq) (*VpnipExListResp, error)
  13215. VpnipBatchAdd(context.Context, *VpnipBatchAddReq) (*VpnipBatchAddResp, error)
  13216. VpnipBatchUpdate(context.Context, *VpnipBatchUpdateReq) (*VpnipBatchUpdateResp, error)
  13217. VpnipExBatchAdd(context.Context, *VpnipExBatchAddReq) (*VpnipExBatchAddResp, error)
  13218. VpnipExBatchUpdate(context.Context, *VpnipExBatchUpdateReq) (*VpnipExBatchUpdateResp, error)
  13219. // VpnipRangeAdd
  13220. VpnipRangeAdd(context.Context, *VpnipRangeAddReq) (*VpnipRangeAddResp, error)
  13221. // VpnipRangeExAdd 添加IP段及IP数据,如果IP数据已存在,会自动将已经存在的IP的 rangeId 更新为新增的IP段的ID
  13222. VpnipRangeExAdd(context.Context, *VpnipRangeExAddReq) (*VpnipRangeExAddResp, error)
  13223. VpnipRangeUpdate(context.Context, *VpnipRangeUpdateReq) (*VpnipRangeUpdateResp, error)
  13224. VpnipRangeExUpdate(context.Context, *VpnipRangeExUpdateReq) (*VpnipRangeExUpdateResp, error)
  13225. VpnipRangeDel(context.Context, *Ids) (*Empty, error)
  13226. VpnipRangeGet(context.Context, *VpnipRangeGetReq) (*VpnipRangeGetResp, error)
  13227. VpnipRangeExGet(context.Context, *VpnipRangeGetReq) (*VpnipRangeExGetResp, error)
  13228. VpnipRangeList(context.Context, *VpnipRangeListReq) (*VpnipRangeListResp, error)
  13229. VpnipRangeExList(context.Context, *VpnipRangeListReq) (*VpnipRangeExListResp, error)
  13230. VpnipRangeBatchAdd(context.Context, *VpnipRangeBatchAddReq) (*VpnipRangeBatchAddResp, error)
  13231. VpnipRangeExBatchAdd(context.Context, *VpnipRangeExBatchAddReq) (*VpnipRangeExBatchAddResp, error)
  13232. VpnipRangeBatchUpdate(context.Context, *VpnipRangeBatchUpdateReq) (*VpnipRangeBatchUpdateResp, error)
  13233. VpnipRangeExBatchUpdate(context.Context, *VpnipRangeExBatchUpdateReq) (*VpnipRangeExBatchUpdateResp, error)
  13234. // VpnipBindAdd
  13235. VpnipBindAdd(context.Context, *VpnipBindAddReq) (*VpnipBindAddResp, error)
  13236. VpnipBindUpdate(context.Context, *VpnipBindUpdateReq) (*VpnipBindUpdateResp, error)
  13237. VpnipBindDel(context.Context, *Ids) (*Empty, error)
  13238. VpnipBindGet(context.Context, *VpnipBindGetReq) (*VpnipBindGetResp, error)
  13239. VpnipBindList(context.Context, *VpnipBindListReq) (*VpnipBindListResp, error)
  13240. VpnipBindBatchUpdate(context.Context, *VpnipBindBatchUpdateReq) (*VpnipBindBatchUpdateResp, error)
  13241. // VpnipsBindServer 为一台服务器绑定一批新IP,会解绑上次绑定的IP,再绑定新的IP,仅需提供 ipId, serverId, Remark, createAt, updateAt 即可,其他字段会自动填充
  13242. VpnipsBindServer(context.Context, *VpnipBindBatchAddReq) (*VpnipBindBatchAddResp, error)
  13243. // VpnConfigTemplatePlanAdd 添加配置模板及模板详情
  13244. VpnConfigTemplatePlanAdd(context.Context, *VpnConfigTemplatePlanAddReq) (*VpnConfigTemplatePlanAddResp, error)
  13245. // VpnConfigTemplatePlanUpdate 更新配置模板(只更新模板,不更新模板详情,如果 withDetails 为 true,则返回结果中包含模板详情)
  13246. VpnConfigTemplatePlanUpdate(context.Context, *VpnConfigTemplatePlanUpdateReq) (*VpnConfigTemplatePlanUpdateResp, error)
  13247. // VpnConfigTemplatePlanDel 删除配置模板(会同时删除模板详情)
  13248. VpnConfigTemplatePlanDel(context.Context, *VpnConfigTemplatePlanDelReq) (*Empty, error)
  13249. // VpnConfigTemplatePlanGet 获取配置模板(如果 withDetails 为 true,则返回结果中包含模板详情)
  13250. VpnConfigTemplatePlanGet(context.Context, *VpnConfigTemplatePlanGetReq) (*VpnConfigTemplatePlanGetResp, error)
  13251. // VpnConfigTemplatePlanList 获取配置模板列表(如果 withDetails 为 true,则返回结果中包含模板详情)
  13252. VpnConfigTemplatePlanList(context.Context, *VpnConfigTemplatePlanListReq) (*VpnConfigTemplatePlanListResp, error)
  13253. // VpnConfigTemplatePlanDetailAdd 添加模板详情
  13254. VpnConfigTemplatePlanDetailAdd(context.Context, *VpnConfigTemplatePlanDetailAddReq) (*VpnConfigTemplatePlanDetailAddResp, error)
  13255. VpnConfigTemplatePlanDetailUpdate(context.Context, *VpnConfigTemplatePlanDetailUpdateReq) (*VpnConfigTemplatePlanDetailUpdateResp, error)
  13256. VpnConfigTemplatePlanDetailDel(context.Context, *VpnConfigTemplatePlanDetailDelReq) (*Empty, error)
  13257. VpnConfigTemplatePlanDetailGet(context.Context, *VpnConfigTemplatePlanDetailGetReq) (*VpnConfigTemplatePlanDetailGetResp, error)
  13258. VpnConfigTemplatePlanDetailList(context.Context, *VpnConfigTemplatePlanDetailListReq) (*VpnConfigTemplatePlanDetailListResp, error)
  13259. // VpnServerPortAdd
  13260. VpnServerPortAdd(context.Context, *VpnServerPortAddReq) (*VpnServerPortAddResp, error)
  13261. VpnServerPortUpdate(context.Context, *VpnServerPortUpdateReq) (*VpnServerPortUpdateResp, error)
  13262. VpnServerPortDel(context.Context, *VpnServerPortDelReq) (*Empty, error)
  13263. VpnServerPortGet(context.Context, *VpnServerPortGetReq) (*VpnServerPortGetResp, error)
  13264. VpnServerPortList(context.Context, *VpnServerPortListReq) (*VpnServerPortListResp, error)
  13265. VpnServerPortBatchAdd(context.Context, *VpnServerPortBatchAddReq) (*VpnServerPortBatchAddResp, error)
  13266. mustEmbedUnimplementedGoVpnClientServer()
  13267. }
  13268. // UnimplementedGoVpnClientServer must be embedded to have
  13269. // forward compatible implementations.
  13270. //
  13271. // NOTE: this should be embedded by value instead of pointer to avoid a nil
  13272. // pointer dereference when methods are called.
  13273. type UnimplementedGoVpnClientServer struct{}
  13274. func (UnimplementedGoVpnClientServer) Ping(context.Context, *Request) (*Response, error) {
  13275. return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
  13276. }
  13277. func (UnimplementedGoVpnClientServer) Transaction(context.Context, *TransactionReq) (*Empty, error) {
  13278. return nil, status.Errorf(codes.Unimplemented, "method Transaction not implemented")
  13279. }
  13280. func (UnimplementedGoVpnClientServer) VpnTagAdd(context.Context, *VpnTagVo) (*VpnTagVo, error) {
  13281. return nil, status.Errorf(codes.Unimplemented, "method VpnTagAdd not implemented")
  13282. }
  13283. func (UnimplementedGoVpnClientServer) VpnTagUpdate(context.Context, *VpnTagVo) (*VpnTagVo, error) {
  13284. return nil, status.Errorf(codes.Unimplemented, "method VpnTagUpdate not implemented")
  13285. }
  13286. func (UnimplementedGoVpnClientServer) VpnTagDel(context.Context, *Ids) (*Empty, error) {
  13287. return nil, status.Errorf(codes.Unimplemented, "method VpnTagDel not implemented")
  13288. }
  13289. func (UnimplementedGoVpnClientServer) VpnTagGet(context.Context, *VpnTagGetReq) (*VpnTagVo, error) {
  13290. return nil, status.Errorf(codes.Unimplemented, "method VpnTagGet not implemented")
  13291. }
  13292. func (UnimplementedGoVpnClientServer) VpnTagList(context.Context, *VpnTagListReq) (*VpnTagListResp, error) {
  13293. return nil, status.Errorf(codes.Unimplemented, "method VpnTagList not implemented")
  13294. }
  13295. func (UnimplementedGoVpnClientServer) VpnTagBatchAdd(context.Context, *VpnTagBatchAddReq) (*VpnTagBatchAddResp, error) {
  13296. return nil, status.Errorf(codes.Unimplemented, "method VpnTagBatchAdd not implemented")
  13297. }
  13298. func (UnimplementedGoVpnClientServer) VpnTagBatchUpdate(context.Context, *VpnTagBatchUpdateReq) (*VpnTagBatchUpdateResp, error) {
  13299. return nil, status.Errorf(codes.Unimplemented, "method VpnTagBatchUpdate not implemented")
  13300. }
  13301. func (UnimplementedGoVpnClientServer) VpnGroupAdd(context.Context, *VpnGroupAddReq) (*VpnGroupVo, error) {
  13302. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupAdd not implemented")
  13303. }
  13304. func (UnimplementedGoVpnClientServer) VpnGroupUpdate(context.Context, *VpnGroupAddReq) (*Empty, error) {
  13305. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupUpdate not implemented")
  13306. }
  13307. func (UnimplementedGoVpnClientServer) VpnGroupDel(context.Context, *Ids) (*Empty, error) {
  13308. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupDel not implemented")
  13309. }
  13310. func (UnimplementedGoVpnClientServer) VpnGroupGet(context.Context, *VpnGroupGetReq) (*VpnGroupVo, error) {
  13311. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupGet not implemented")
  13312. }
  13313. func (UnimplementedGoVpnClientServer) VpnGroupList(context.Context, *VpnGroupListReq) (*VpnGroupListResp, error) {
  13314. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupList not implemented")
  13315. }
  13316. func (UnimplementedGoVpnClientServer) VpnGroupBatchAdd(context.Context, *VpnGroupBatchAddReq) (*VpnGroupBatchAddResp, error) {
  13317. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupBatchAdd not implemented")
  13318. }
  13319. func (UnimplementedGoVpnClientServer) VpnGroupBatchUpdate(context.Context, *VpnGroupBatchUpdateReq) (*VpnGroupBatchUpdateResp, error) {
  13320. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupBatchUpdate not implemented")
  13321. }
  13322. func (UnimplementedGoVpnClientServer) VpnGroupTagAdd(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error) {
  13323. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupTagAdd not implemented")
  13324. }
  13325. func (UnimplementedGoVpnClientServer) VpnGroupTagUpdate(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error) {
  13326. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupTagUpdate not implemented")
  13327. }
  13328. func (UnimplementedGoVpnClientServer) VpnGroupTagDel(context.Context, *Ids) (*Empty, error) {
  13329. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupTagDel not implemented")
  13330. }
  13331. func (UnimplementedGoVpnClientServer) VpnGroupTagGet(context.Context, *VpnGroupTagVo) (*VpnGroupTagVo, error) {
  13332. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupTagGet not implemented")
  13333. }
  13334. func (UnimplementedGoVpnClientServer) VpnGroupTagList(context.Context, *VpnGroupTagListReq) (*VpnGroupTagListResp, error) {
  13335. return nil, status.Errorf(codes.Unimplemented, "method VpnGroupTagList not implemented")
  13336. }
  13337. func (UnimplementedGoVpnClientServer) VpnLocationAdd(context.Context, *VpnLocationVo) (*VpnLocationVo, error) {
  13338. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationAdd not implemented")
  13339. }
  13340. func (UnimplementedGoVpnClientServer) VpnLocationUpdate(context.Context, *VpnLocationVo) (*Empty, error) {
  13341. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationUpdate not implemented")
  13342. }
  13343. func (UnimplementedGoVpnClientServer) VpnLocationDel(context.Context, *Ids) (*Empty, error) {
  13344. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationDel not implemented")
  13345. }
  13346. func (UnimplementedGoVpnClientServer) VpnLocationGet(context.Context, *VpnLocationGetReq) (*VpnLocationVo, error) {
  13347. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationGet not implemented")
  13348. }
  13349. func (UnimplementedGoVpnClientServer) VpnLocationList(context.Context, *VpnLocationListReq) (*VpnLocationListResp, error) {
  13350. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationList not implemented")
  13351. }
  13352. func (UnimplementedGoVpnClientServer) VpnLocationBatchAdd(context.Context, *VpnLocationBatchAddReq) (*VpnLocationBatchAddResp, error) {
  13353. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationBatchAdd not implemented")
  13354. }
  13355. func (UnimplementedGoVpnClientServer) VpnLocationBatchUpdate(context.Context, *VpnLocationBatchUpdateReq) (*VpnLocationBatchUpdateResp, error) {
  13356. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationBatchUpdate not implemented")
  13357. }
  13358. func (UnimplementedGoVpnClientServer) VpnServerAdd(context.Context, *VpnServerAddReq) (*VpnServerAddReq, error) {
  13359. return nil, status.Errorf(codes.Unimplemented, "method VpnServerAdd not implemented")
  13360. }
  13361. func (UnimplementedGoVpnClientServer) VpnServerUpdate(context.Context, *VpnServerAddReq) (*VpnServerAddReq, error) {
  13362. return nil, status.Errorf(codes.Unimplemented, "method VpnServerUpdate not implemented")
  13363. }
  13364. func (UnimplementedGoVpnClientServer) VpnServerDel(context.Context, *Ids) (*Empty, error) {
  13365. return nil, status.Errorf(codes.Unimplemented, "method VpnServerDel not implemented")
  13366. }
  13367. func (UnimplementedGoVpnClientServer) VpnServerGet(context.Context, *VpnServerVo) (*VpnServerVo, error) {
  13368. return nil, status.Errorf(codes.Unimplemented, "method VpnServerGet not implemented")
  13369. }
  13370. func (UnimplementedGoVpnClientServer) VpnServerExGet(context.Context, *VpnServerVo) (*VpnServerExVo, error) {
  13371. return nil, status.Errorf(codes.Unimplemented, "method VpnServerExGet not implemented")
  13372. }
  13373. func (UnimplementedGoVpnClientServer) VpnServerList(context.Context, *VpnServerListReq) (*VpnServerListResp, error) {
  13374. return nil, status.Errorf(codes.Unimplemented, "method VpnServerList not implemented")
  13375. }
  13376. func (UnimplementedGoVpnClientServer) VpnServerExList(context.Context, *VpnServerListReq) (*VpnServerExListResp, error) {
  13377. return nil, status.Errorf(codes.Unimplemented, "method VpnServerExList not implemented")
  13378. }
  13379. func (UnimplementedGoVpnClientServer) VpnServerBatchAdd(context.Context, *VpnServerBatchAddReq) (*VpnServerBatchAddResp, error) {
  13380. return nil, status.Errorf(codes.Unimplemented, "method VpnServerBatchAdd not implemented")
  13381. }
  13382. func (UnimplementedGoVpnClientServer) VpnServerBatchUpdate(context.Context, *VpnServerBatchUpdateReq) (*VpnServerBatchUpdateResp, error) {
  13383. return nil, status.Errorf(codes.Unimplemented, "method VpnServerBatchUpdate not implemented")
  13384. }
  13385. func (UnimplementedGoVpnClientServer) VpnServerLocationAdd(context.Context, *VpnServerLocationVo) (*VpnServerLocationVo, error) {
  13386. return nil, status.Errorf(codes.Unimplemented, "method VpnServerLocationAdd not implemented")
  13387. }
  13388. func (UnimplementedGoVpnClientServer) VpnServerLocationUpdate(context.Context, *VpnServerLocationVo) (*Empty, error) {
  13389. return nil, status.Errorf(codes.Unimplemented, "method VpnServerLocationUpdate not implemented")
  13390. }
  13391. func (UnimplementedGoVpnClientServer) VpnServerLocationDel(context.Context, *Ids) (*Empty, error) {
  13392. return nil, status.Errorf(codes.Unimplemented, "method VpnServerLocationDel not implemented")
  13393. }
  13394. func (UnimplementedGoVpnClientServer) VpnServerLocationGet(context.Context, *VpnServerLocationVo) (*VpnServerLocationVo, error) {
  13395. return nil, status.Errorf(codes.Unimplemented, "method VpnServerLocationGet not implemented")
  13396. }
  13397. func (UnimplementedGoVpnClientServer) VpnServerLocationList(context.Context, *VpnServerLocationListReq) (*VpnServerLocationListResp, error) {
  13398. return nil, status.Errorf(codes.Unimplemented, "method VpnServerLocationList not implemented")
  13399. }
  13400. func (UnimplementedGoVpnClientServer) VpnWithIPAndPort(context.Context, *VpnWithIPAndPortReq) (*VpnWithIPAndPortResp, error) {
  13401. return nil, status.Errorf(codes.Unimplemented, "method VpnWithIPAndPort not implemented")
  13402. }
  13403. func (UnimplementedGoVpnClientServer) VpnLocationServerCount(context.Context, *VpnLocationServerCountReq) (*VpnLocationServerCountResp, error) {
  13404. return nil, status.Errorf(codes.Unimplemented, "method VpnLocationServerCount not implemented")
  13405. }
  13406. func (UnimplementedGoVpnClientServer) VpnProbeTaskAdd(context.Context, *VpnProbeTaskVo) (*VpnProbeTaskVo, error) {
  13407. return nil, status.Errorf(codes.Unimplemented, "method VpnProbeTaskAdd not implemented")
  13408. }
  13409. func (UnimplementedGoVpnClientServer) VpnProbeTaskUpdate(context.Context, *VpnProbeTaskVo) (*Empty, error) {
  13410. return nil, status.Errorf(codes.Unimplemented, "method VpnProbeTaskUpdate not implemented")
  13411. }
  13412. func (UnimplementedGoVpnClientServer) VpnProbeTaskList(context.Context, *VpnProbeTaskListReq) (*VpnProbeTaskListResp, error) {
  13413. return nil, status.Errorf(codes.Unimplemented, "method VpnProbeTaskList not implemented")
  13414. }
  13415. func (UnimplementedGoVpnClientServer) VpnipWalledAdd(context.Context, *VpnipWalledAddReq) (*VpnipWalledAddResp, error) {
  13416. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledAdd not implemented")
  13417. }
  13418. func (UnimplementedGoVpnClientServer) VpnipWalledUpdate(context.Context, *VpnipWalledUpdateReq) (*VpnipWalledUpdateResp, error) {
  13419. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledUpdate not implemented")
  13420. }
  13421. func (UnimplementedGoVpnClientServer) VpnipWalledDel(context.Context, *Ids) (*Empty, error) {
  13422. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledDel not implemented")
  13423. }
  13424. func (UnimplementedGoVpnClientServer) VpnipWalledGet(context.Context, *VpnipWalledGetReq) (*VpnipWalledGetResp, error) {
  13425. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledGet not implemented")
  13426. }
  13427. func (UnimplementedGoVpnClientServer) VpnipWalledList(context.Context, *VpnipWalledListReq) (*VpnipWalledListResp, error) {
  13428. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledList not implemented")
  13429. }
  13430. func (UnimplementedGoVpnClientServer) VpnipWalledBatchAdd(context.Context, *VpnipWalledBatchAddReq) (*VpnipWalledBatchAddResp, error) {
  13431. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledBatchAdd not implemented")
  13432. }
  13433. func (UnimplementedGoVpnClientServer) VpnipWalledBatchUpdate(context.Context, *VpnipWalledBatchUpdateReq) (*VpnipWalledBatchUpdateResp, error) {
  13434. return nil, status.Errorf(codes.Unimplemented, "method VpnipWalledBatchUpdate not implemented")
  13435. }
  13436. func (UnimplementedGoVpnClientServer) VpnipAdd(context.Context, *VpnipAddReq) (*VpnipAddResp, error) {
  13437. return nil, status.Errorf(codes.Unimplemented, "method VpnipAdd not implemented")
  13438. }
  13439. func (UnimplementedGoVpnClientServer) VpnipExAdd(context.Context, *VpnipExAddReq) (*VpnipExAddResp, error) {
  13440. return nil, status.Errorf(codes.Unimplemented, "method VpnipExAdd not implemented")
  13441. }
  13442. func (UnimplementedGoVpnClientServer) VpnipUpdate(context.Context, *VpnipUpdateReq) (*VpnipUpdateResp, error) {
  13443. return nil, status.Errorf(codes.Unimplemented, "method VpnipUpdate not implemented")
  13444. }
  13445. func (UnimplementedGoVpnClientServer) VpnipExUpdate(context.Context, *VpnipExUpdateReq) (*VpnipExUpdateResp, error) {
  13446. return nil, status.Errorf(codes.Unimplemented, "method VpnipExUpdate not implemented")
  13447. }
  13448. func (UnimplementedGoVpnClientServer) VpnipDel(context.Context, *Ids) (*Empty, error) {
  13449. return nil, status.Errorf(codes.Unimplemented, "method VpnipDel not implemented")
  13450. }
  13451. func (UnimplementedGoVpnClientServer) VpnipGet(context.Context, *VpnipGetReq) (*VpnipGetResp, error) {
  13452. return nil, status.Errorf(codes.Unimplemented, "method VpnipGet not implemented")
  13453. }
  13454. func (UnimplementedGoVpnClientServer) VpnipExGet(context.Context, *VpnipGetReq) (*VpnipExGetResp, error) {
  13455. return nil, status.Errorf(codes.Unimplemented, "method VpnipExGet not implemented")
  13456. }
  13457. func (UnimplementedGoVpnClientServer) VpnipList(context.Context, *VpnipListReq) (*VpnipListResp, error) {
  13458. return nil, status.Errorf(codes.Unimplemented, "method VpnipList not implemented")
  13459. }
  13460. func (UnimplementedGoVpnClientServer) VpnipExList(context.Context, *VpnipListReq) (*VpnipExListResp, error) {
  13461. return nil, status.Errorf(codes.Unimplemented, "method VpnipExList not implemented")
  13462. }
  13463. func (UnimplementedGoVpnClientServer) VpnipBatchAdd(context.Context, *VpnipBatchAddReq) (*VpnipBatchAddResp, error) {
  13464. return nil, status.Errorf(codes.Unimplemented, "method VpnipBatchAdd not implemented")
  13465. }
  13466. func (UnimplementedGoVpnClientServer) VpnipBatchUpdate(context.Context, *VpnipBatchUpdateReq) (*VpnipBatchUpdateResp, error) {
  13467. return nil, status.Errorf(codes.Unimplemented, "method VpnipBatchUpdate not implemented")
  13468. }
  13469. func (UnimplementedGoVpnClientServer) VpnipExBatchAdd(context.Context, *VpnipExBatchAddReq) (*VpnipExBatchAddResp, error) {
  13470. return nil, status.Errorf(codes.Unimplemented, "method VpnipExBatchAdd not implemented")
  13471. }
  13472. func (UnimplementedGoVpnClientServer) VpnipExBatchUpdate(context.Context, *VpnipExBatchUpdateReq) (*VpnipExBatchUpdateResp, error) {
  13473. return nil, status.Errorf(codes.Unimplemented, "method VpnipExBatchUpdate not implemented")
  13474. }
  13475. func (UnimplementedGoVpnClientServer) VpnipRangeAdd(context.Context, *VpnipRangeAddReq) (*VpnipRangeAddResp, error) {
  13476. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeAdd not implemented")
  13477. }
  13478. func (UnimplementedGoVpnClientServer) VpnipRangeExAdd(context.Context, *VpnipRangeExAddReq) (*VpnipRangeExAddResp, error) {
  13479. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExAdd not implemented")
  13480. }
  13481. func (UnimplementedGoVpnClientServer) VpnipRangeUpdate(context.Context, *VpnipRangeUpdateReq) (*VpnipRangeUpdateResp, error) {
  13482. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeUpdate not implemented")
  13483. }
  13484. func (UnimplementedGoVpnClientServer) VpnipRangeExUpdate(context.Context, *VpnipRangeExUpdateReq) (*VpnipRangeExUpdateResp, error) {
  13485. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExUpdate not implemented")
  13486. }
  13487. func (UnimplementedGoVpnClientServer) VpnipRangeDel(context.Context, *Ids) (*Empty, error) {
  13488. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeDel not implemented")
  13489. }
  13490. func (UnimplementedGoVpnClientServer) VpnipRangeGet(context.Context, *VpnipRangeGetReq) (*VpnipRangeGetResp, error) {
  13491. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeGet not implemented")
  13492. }
  13493. func (UnimplementedGoVpnClientServer) VpnipRangeExGet(context.Context, *VpnipRangeGetReq) (*VpnipRangeExGetResp, error) {
  13494. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExGet not implemented")
  13495. }
  13496. func (UnimplementedGoVpnClientServer) VpnipRangeList(context.Context, *VpnipRangeListReq) (*VpnipRangeListResp, error) {
  13497. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeList not implemented")
  13498. }
  13499. func (UnimplementedGoVpnClientServer) VpnipRangeExList(context.Context, *VpnipRangeListReq) (*VpnipRangeExListResp, error) {
  13500. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExList not implemented")
  13501. }
  13502. func (UnimplementedGoVpnClientServer) VpnipRangeBatchAdd(context.Context, *VpnipRangeBatchAddReq) (*VpnipRangeBatchAddResp, error) {
  13503. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeBatchAdd not implemented")
  13504. }
  13505. func (UnimplementedGoVpnClientServer) VpnipRangeExBatchAdd(context.Context, *VpnipRangeExBatchAddReq) (*VpnipRangeExBatchAddResp, error) {
  13506. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExBatchAdd not implemented")
  13507. }
  13508. func (UnimplementedGoVpnClientServer) VpnipRangeBatchUpdate(context.Context, *VpnipRangeBatchUpdateReq) (*VpnipRangeBatchUpdateResp, error) {
  13509. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeBatchUpdate not implemented")
  13510. }
  13511. func (UnimplementedGoVpnClientServer) VpnipRangeExBatchUpdate(context.Context, *VpnipRangeExBatchUpdateReq) (*VpnipRangeExBatchUpdateResp, error) {
  13512. return nil, status.Errorf(codes.Unimplemented, "method VpnipRangeExBatchUpdate not implemented")
  13513. }
  13514. func (UnimplementedGoVpnClientServer) VpnipBindAdd(context.Context, *VpnipBindAddReq) (*VpnipBindAddResp, error) {
  13515. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindAdd not implemented")
  13516. }
  13517. func (UnimplementedGoVpnClientServer) VpnipBindUpdate(context.Context, *VpnipBindUpdateReq) (*VpnipBindUpdateResp, error) {
  13518. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindUpdate not implemented")
  13519. }
  13520. func (UnimplementedGoVpnClientServer) VpnipBindDel(context.Context, *Ids) (*Empty, error) {
  13521. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindDel not implemented")
  13522. }
  13523. func (UnimplementedGoVpnClientServer) VpnipBindGet(context.Context, *VpnipBindGetReq) (*VpnipBindGetResp, error) {
  13524. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindGet not implemented")
  13525. }
  13526. func (UnimplementedGoVpnClientServer) VpnipBindList(context.Context, *VpnipBindListReq) (*VpnipBindListResp, error) {
  13527. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindList not implemented")
  13528. }
  13529. func (UnimplementedGoVpnClientServer) VpnipBindBatchUpdate(context.Context, *VpnipBindBatchUpdateReq) (*VpnipBindBatchUpdateResp, error) {
  13530. return nil, status.Errorf(codes.Unimplemented, "method VpnipBindBatchUpdate not implemented")
  13531. }
  13532. func (UnimplementedGoVpnClientServer) VpnipsBindServer(context.Context, *VpnipBindBatchAddReq) (*VpnipBindBatchAddResp, error) {
  13533. return nil, status.Errorf(codes.Unimplemented, "method VpnipsBindServer not implemented")
  13534. }
  13535. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanAdd(context.Context, *VpnConfigTemplatePlanAddReq) (*VpnConfigTemplatePlanAddResp, error) {
  13536. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanAdd not implemented")
  13537. }
  13538. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanUpdate(context.Context, *VpnConfigTemplatePlanUpdateReq) (*VpnConfigTemplatePlanUpdateResp, error) {
  13539. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanUpdate not implemented")
  13540. }
  13541. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDel(context.Context, *VpnConfigTemplatePlanDelReq) (*Empty, error) {
  13542. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDel not implemented")
  13543. }
  13544. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanGet(context.Context, *VpnConfigTemplatePlanGetReq) (*VpnConfigTemplatePlanGetResp, error) {
  13545. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanGet not implemented")
  13546. }
  13547. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanList(context.Context, *VpnConfigTemplatePlanListReq) (*VpnConfigTemplatePlanListResp, error) {
  13548. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanList not implemented")
  13549. }
  13550. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDetailAdd(context.Context, *VpnConfigTemplatePlanDetailAddReq) (*VpnConfigTemplatePlanDetailAddResp, error) {
  13551. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDetailAdd not implemented")
  13552. }
  13553. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDetailUpdate(context.Context, *VpnConfigTemplatePlanDetailUpdateReq) (*VpnConfigTemplatePlanDetailUpdateResp, error) {
  13554. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDetailUpdate not implemented")
  13555. }
  13556. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDetailDel(context.Context, *VpnConfigTemplatePlanDetailDelReq) (*Empty, error) {
  13557. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDetailDel not implemented")
  13558. }
  13559. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDetailGet(context.Context, *VpnConfigTemplatePlanDetailGetReq) (*VpnConfigTemplatePlanDetailGetResp, error) {
  13560. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDetailGet not implemented")
  13561. }
  13562. func (UnimplementedGoVpnClientServer) VpnConfigTemplatePlanDetailList(context.Context, *VpnConfigTemplatePlanDetailListReq) (*VpnConfigTemplatePlanDetailListResp, error) {
  13563. return nil, status.Errorf(codes.Unimplemented, "method VpnConfigTemplatePlanDetailList not implemented")
  13564. }
  13565. func (UnimplementedGoVpnClientServer) VpnServerPortAdd(context.Context, *VpnServerPortAddReq) (*VpnServerPortAddResp, error) {
  13566. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortAdd not implemented")
  13567. }
  13568. func (UnimplementedGoVpnClientServer) VpnServerPortUpdate(context.Context, *VpnServerPortUpdateReq) (*VpnServerPortUpdateResp, error) {
  13569. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortUpdate not implemented")
  13570. }
  13571. func (UnimplementedGoVpnClientServer) VpnServerPortDel(context.Context, *VpnServerPortDelReq) (*Empty, error) {
  13572. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortDel not implemented")
  13573. }
  13574. func (UnimplementedGoVpnClientServer) VpnServerPortGet(context.Context, *VpnServerPortGetReq) (*VpnServerPortGetResp, error) {
  13575. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortGet not implemented")
  13576. }
  13577. func (UnimplementedGoVpnClientServer) VpnServerPortList(context.Context, *VpnServerPortListReq) (*VpnServerPortListResp, error) {
  13578. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortList not implemented")
  13579. }
  13580. func (UnimplementedGoVpnClientServer) VpnServerPortBatchAdd(context.Context, *VpnServerPortBatchAddReq) (*VpnServerPortBatchAddResp, error) {
  13581. return nil, status.Errorf(codes.Unimplemented, "method VpnServerPortBatchAdd not implemented")
  13582. }
  13583. func (UnimplementedGoVpnClientServer) mustEmbedUnimplementedGoVpnClientServer() {}
  13584. func (UnimplementedGoVpnClientServer) testEmbeddedByValue() {}
  13585. // UnsafeGoVpnClientServer may be embedded to opt out of forward compatibility for this service.
  13586. // Use of this interface is not recommended, as added methods to GoVpnClientServer will
  13587. // result in compilation errors.
  13588. type UnsafeGoVpnClientServer interface {
  13589. mustEmbedUnimplementedGoVpnClientServer()
  13590. }
  13591. func RegisterGoVpnClientServer(s grpc.ServiceRegistrar, srv GoVpnClientServer) {
  13592. // If the following call pancis, it indicates UnimplementedGoVpnClientServer was
  13593. // embedded by pointer and is nil. This will cause panics if an
  13594. // unimplemented method is ever invoked, so we test this at initialization
  13595. // time to prevent it from happening at runtime later due to I/O.
  13596. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
  13597. t.testEmbeddedByValue()
  13598. }
  13599. s.RegisterService(&GoVpnClient_ServiceDesc, srv)
  13600. }
  13601. func _GoVpnClient_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13602. in := new(Request)
  13603. if err := dec(in); err != nil {
  13604. return nil, err
  13605. }
  13606. if interceptor == nil {
  13607. return srv.(GoVpnClientServer).Ping(ctx, in)
  13608. }
  13609. info := &grpc.UnaryServerInfo{
  13610. Server: srv,
  13611. FullMethod: GoVpnClient_Ping_FullMethodName,
  13612. }
  13613. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13614. return srv.(GoVpnClientServer).Ping(ctx, req.(*Request))
  13615. }
  13616. return interceptor(ctx, in, info, handler)
  13617. }
  13618. func _GoVpnClient_Transaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13619. in := new(TransactionReq)
  13620. if err := dec(in); err != nil {
  13621. return nil, err
  13622. }
  13623. if interceptor == nil {
  13624. return srv.(GoVpnClientServer).Transaction(ctx, in)
  13625. }
  13626. info := &grpc.UnaryServerInfo{
  13627. Server: srv,
  13628. FullMethod: GoVpnClient_Transaction_FullMethodName,
  13629. }
  13630. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13631. return srv.(GoVpnClientServer).Transaction(ctx, req.(*TransactionReq))
  13632. }
  13633. return interceptor(ctx, in, info, handler)
  13634. }
  13635. func _GoVpnClient_VpnTagAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13636. in := new(VpnTagVo)
  13637. if err := dec(in); err != nil {
  13638. return nil, err
  13639. }
  13640. if interceptor == nil {
  13641. return srv.(GoVpnClientServer).VpnTagAdd(ctx, in)
  13642. }
  13643. info := &grpc.UnaryServerInfo{
  13644. Server: srv,
  13645. FullMethod: GoVpnClient_VpnTagAdd_FullMethodName,
  13646. }
  13647. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13648. return srv.(GoVpnClientServer).VpnTagAdd(ctx, req.(*VpnTagVo))
  13649. }
  13650. return interceptor(ctx, in, info, handler)
  13651. }
  13652. func _GoVpnClient_VpnTagUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13653. in := new(VpnTagVo)
  13654. if err := dec(in); err != nil {
  13655. return nil, err
  13656. }
  13657. if interceptor == nil {
  13658. return srv.(GoVpnClientServer).VpnTagUpdate(ctx, in)
  13659. }
  13660. info := &grpc.UnaryServerInfo{
  13661. Server: srv,
  13662. FullMethod: GoVpnClient_VpnTagUpdate_FullMethodName,
  13663. }
  13664. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13665. return srv.(GoVpnClientServer).VpnTagUpdate(ctx, req.(*VpnTagVo))
  13666. }
  13667. return interceptor(ctx, in, info, handler)
  13668. }
  13669. func _GoVpnClient_VpnTagDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13670. in := new(Ids)
  13671. if err := dec(in); err != nil {
  13672. return nil, err
  13673. }
  13674. if interceptor == nil {
  13675. return srv.(GoVpnClientServer).VpnTagDel(ctx, in)
  13676. }
  13677. info := &grpc.UnaryServerInfo{
  13678. Server: srv,
  13679. FullMethod: GoVpnClient_VpnTagDel_FullMethodName,
  13680. }
  13681. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13682. return srv.(GoVpnClientServer).VpnTagDel(ctx, req.(*Ids))
  13683. }
  13684. return interceptor(ctx, in, info, handler)
  13685. }
  13686. func _GoVpnClient_VpnTagGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13687. in := new(VpnTagGetReq)
  13688. if err := dec(in); err != nil {
  13689. return nil, err
  13690. }
  13691. if interceptor == nil {
  13692. return srv.(GoVpnClientServer).VpnTagGet(ctx, in)
  13693. }
  13694. info := &grpc.UnaryServerInfo{
  13695. Server: srv,
  13696. FullMethod: GoVpnClient_VpnTagGet_FullMethodName,
  13697. }
  13698. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13699. return srv.(GoVpnClientServer).VpnTagGet(ctx, req.(*VpnTagGetReq))
  13700. }
  13701. return interceptor(ctx, in, info, handler)
  13702. }
  13703. func _GoVpnClient_VpnTagList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13704. in := new(VpnTagListReq)
  13705. if err := dec(in); err != nil {
  13706. return nil, err
  13707. }
  13708. if interceptor == nil {
  13709. return srv.(GoVpnClientServer).VpnTagList(ctx, in)
  13710. }
  13711. info := &grpc.UnaryServerInfo{
  13712. Server: srv,
  13713. FullMethod: GoVpnClient_VpnTagList_FullMethodName,
  13714. }
  13715. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13716. return srv.(GoVpnClientServer).VpnTagList(ctx, req.(*VpnTagListReq))
  13717. }
  13718. return interceptor(ctx, in, info, handler)
  13719. }
  13720. func _GoVpnClient_VpnTagBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13721. in := new(VpnTagBatchAddReq)
  13722. if err := dec(in); err != nil {
  13723. return nil, err
  13724. }
  13725. if interceptor == nil {
  13726. return srv.(GoVpnClientServer).VpnTagBatchAdd(ctx, in)
  13727. }
  13728. info := &grpc.UnaryServerInfo{
  13729. Server: srv,
  13730. FullMethod: GoVpnClient_VpnTagBatchAdd_FullMethodName,
  13731. }
  13732. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13733. return srv.(GoVpnClientServer).VpnTagBatchAdd(ctx, req.(*VpnTagBatchAddReq))
  13734. }
  13735. return interceptor(ctx, in, info, handler)
  13736. }
  13737. func _GoVpnClient_VpnTagBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13738. in := new(VpnTagBatchUpdateReq)
  13739. if err := dec(in); err != nil {
  13740. return nil, err
  13741. }
  13742. if interceptor == nil {
  13743. return srv.(GoVpnClientServer).VpnTagBatchUpdate(ctx, in)
  13744. }
  13745. info := &grpc.UnaryServerInfo{
  13746. Server: srv,
  13747. FullMethod: GoVpnClient_VpnTagBatchUpdate_FullMethodName,
  13748. }
  13749. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13750. return srv.(GoVpnClientServer).VpnTagBatchUpdate(ctx, req.(*VpnTagBatchUpdateReq))
  13751. }
  13752. return interceptor(ctx, in, info, handler)
  13753. }
  13754. func _GoVpnClient_VpnGroupAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13755. in := new(VpnGroupAddReq)
  13756. if err := dec(in); err != nil {
  13757. return nil, err
  13758. }
  13759. if interceptor == nil {
  13760. return srv.(GoVpnClientServer).VpnGroupAdd(ctx, in)
  13761. }
  13762. info := &grpc.UnaryServerInfo{
  13763. Server: srv,
  13764. FullMethod: GoVpnClient_VpnGroupAdd_FullMethodName,
  13765. }
  13766. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13767. return srv.(GoVpnClientServer).VpnGroupAdd(ctx, req.(*VpnGroupAddReq))
  13768. }
  13769. return interceptor(ctx, in, info, handler)
  13770. }
  13771. func _GoVpnClient_VpnGroupUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13772. in := new(VpnGroupAddReq)
  13773. if err := dec(in); err != nil {
  13774. return nil, err
  13775. }
  13776. if interceptor == nil {
  13777. return srv.(GoVpnClientServer).VpnGroupUpdate(ctx, in)
  13778. }
  13779. info := &grpc.UnaryServerInfo{
  13780. Server: srv,
  13781. FullMethod: GoVpnClient_VpnGroupUpdate_FullMethodName,
  13782. }
  13783. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13784. return srv.(GoVpnClientServer).VpnGroupUpdate(ctx, req.(*VpnGroupAddReq))
  13785. }
  13786. return interceptor(ctx, in, info, handler)
  13787. }
  13788. func _GoVpnClient_VpnGroupDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13789. in := new(Ids)
  13790. if err := dec(in); err != nil {
  13791. return nil, err
  13792. }
  13793. if interceptor == nil {
  13794. return srv.(GoVpnClientServer).VpnGroupDel(ctx, in)
  13795. }
  13796. info := &grpc.UnaryServerInfo{
  13797. Server: srv,
  13798. FullMethod: GoVpnClient_VpnGroupDel_FullMethodName,
  13799. }
  13800. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13801. return srv.(GoVpnClientServer).VpnGroupDel(ctx, req.(*Ids))
  13802. }
  13803. return interceptor(ctx, in, info, handler)
  13804. }
  13805. func _GoVpnClient_VpnGroupGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13806. in := new(VpnGroupGetReq)
  13807. if err := dec(in); err != nil {
  13808. return nil, err
  13809. }
  13810. if interceptor == nil {
  13811. return srv.(GoVpnClientServer).VpnGroupGet(ctx, in)
  13812. }
  13813. info := &grpc.UnaryServerInfo{
  13814. Server: srv,
  13815. FullMethod: GoVpnClient_VpnGroupGet_FullMethodName,
  13816. }
  13817. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13818. return srv.(GoVpnClientServer).VpnGroupGet(ctx, req.(*VpnGroupGetReq))
  13819. }
  13820. return interceptor(ctx, in, info, handler)
  13821. }
  13822. func _GoVpnClient_VpnGroupList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13823. in := new(VpnGroupListReq)
  13824. if err := dec(in); err != nil {
  13825. return nil, err
  13826. }
  13827. if interceptor == nil {
  13828. return srv.(GoVpnClientServer).VpnGroupList(ctx, in)
  13829. }
  13830. info := &grpc.UnaryServerInfo{
  13831. Server: srv,
  13832. FullMethod: GoVpnClient_VpnGroupList_FullMethodName,
  13833. }
  13834. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13835. return srv.(GoVpnClientServer).VpnGroupList(ctx, req.(*VpnGroupListReq))
  13836. }
  13837. return interceptor(ctx, in, info, handler)
  13838. }
  13839. func _GoVpnClient_VpnGroupBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13840. in := new(VpnGroupBatchAddReq)
  13841. if err := dec(in); err != nil {
  13842. return nil, err
  13843. }
  13844. if interceptor == nil {
  13845. return srv.(GoVpnClientServer).VpnGroupBatchAdd(ctx, in)
  13846. }
  13847. info := &grpc.UnaryServerInfo{
  13848. Server: srv,
  13849. FullMethod: GoVpnClient_VpnGroupBatchAdd_FullMethodName,
  13850. }
  13851. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13852. return srv.(GoVpnClientServer).VpnGroupBatchAdd(ctx, req.(*VpnGroupBatchAddReq))
  13853. }
  13854. return interceptor(ctx, in, info, handler)
  13855. }
  13856. func _GoVpnClient_VpnGroupBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13857. in := new(VpnGroupBatchUpdateReq)
  13858. if err := dec(in); err != nil {
  13859. return nil, err
  13860. }
  13861. if interceptor == nil {
  13862. return srv.(GoVpnClientServer).VpnGroupBatchUpdate(ctx, in)
  13863. }
  13864. info := &grpc.UnaryServerInfo{
  13865. Server: srv,
  13866. FullMethod: GoVpnClient_VpnGroupBatchUpdate_FullMethodName,
  13867. }
  13868. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13869. return srv.(GoVpnClientServer).VpnGroupBatchUpdate(ctx, req.(*VpnGroupBatchUpdateReq))
  13870. }
  13871. return interceptor(ctx, in, info, handler)
  13872. }
  13873. func _GoVpnClient_VpnGroupTagAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13874. in := new(VpnGroupTagVo)
  13875. if err := dec(in); err != nil {
  13876. return nil, err
  13877. }
  13878. if interceptor == nil {
  13879. return srv.(GoVpnClientServer).VpnGroupTagAdd(ctx, in)
  13880. }
  13881. info := &grpc.UnaryServerInfo{
  13882. Server: srv,
  13883. FullMethod: GoVpnClient_VpnGroupTagAdd_FullMethodName,
  13884. }
  13885. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13886. return srv.(GoVpnClientServer).VpnGroupTagAdd(ctx, req.(*VpnGroupTagVo))
  13887. }
  13888. return interceptor(ctx, in, info, handler)
  13889. }
  13890. func _GoVpnClient_VpnGroupTagUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13891. in := new(VpnGroupTagVo)
  13892. if err := dec(in); err != nil {
  13893. return nil, err
  13894. }
  13895. if interceptor == nil {
  13896. return srv.(GoVpnClientServer).VpnGroupTagUpdate(ctx, in)
  13897. }
  13898. info := &grpc.UnaryServerInfo{
  13899. Server: srv,
  13900. FullMethod: GoVpnClient_VpnGroupTagUpdate_FullMethodName,
  13901. }
  13902. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13903. return srv.(GoVpnClientServer).VpnGroupTagUpdate(ctx, req.(*VpnGroupTagVo))
  13904. }
  13905. return interceptor(ctx, in, info, handler)
  13906. }
  13907. func _GoVpnClient_VpnGroupTagDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13908. in := new(Ids)
  13909. if err := dec(in); err != nil {
  13910. return nil, err
  13911. }
  13912. if interceptor == nil {
  13913. return srv.(GoVpnClientServer).VpnGroupTagDel(ctx, in)
  13914. }
  13915. info := &grpc.UnaryServerInfo{
  13916. Server: srv,
  13917. FullMethod: GoVpnClient_VpnGroupTagDel_FullMethodName,
  13918. }
  13919. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13920. return srv.(GoVpnClientServer).VpnGroupTagDel(ctx, req.(*Ids))
  13921. }
  13922. return interceptor(ctx, in, info, handler)
  13923. }
  13924. func _GoVpnClient_VpnGroupTagGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13925. in := new(VpnGroupTagVo)
  13926. if err := dec(in); err != nil {
  13927. return nil, err
  13928. }
  13929. if interceptor == nil {
  13930. return srv.(GoVpnClientServer).VpnGroupTagGet(ctx, in)
  13931. }
  13932. info := &grpc.UnaryServerInfo{
  13933. Server: srv,
  13934. FullMethod: GoVpnClient_VpnGroupTagGet_FullMethodName,
  13935. }
  13936. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13937. return srv.(GoVpnClientServer).VpnGroupTagGet(ctx, req.(*VpnGroupTagVo))
  13938. }
  13939. return interceptor(ctx, in, info, handler)
  13940. }
  13941. func _GoVpnClient_VpnGroupTagList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13942. in := new(VpnGroupTagListReq)
  13943. if err := dec(in); err != nil {
  13944. return nil, err
  13945. }
  13946. if interceptor == nil {
  13947. return srv.(GoVpnClientServer).VpnGroupTagList(ctx, in)
  13948. }
  13949. info := &grpc.UnaryServerInfo{
  13950. Server: srv,
  13951. FullMethod: GoVpnClient_VpnGroupTagList_FullMethodName,
  13952. }
  13953. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13954. return srv.(GoVpnClientServer).VpnGroupTagList(ctx, req.(*VpnGroupTagListReq))
  13955. }
  13956. return interceptor(ctx, in, info, handler)
  13957. }
  13958. func _GoVpnClient_VpnLocationAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13959. in := new(VpnLocationVo)
  13960. if err := dec(in); err != nil {
  13961. return nil, err
  13962. }
  13963. if interceptor == nil {
  13964. return srv.(GoVpnClientServer).VpnLocationAdd(ctx, in)
  13965. }
  13966. info := &grpc.UnaryServerInfo{
  13967. Server: srv,
  13968. FullMethod: GoVpnClient_VpnLocationAdd_FullMethodName,
  13969. }
  13970. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13971. return srv.(GoVpnClientServer).VpnLocationAdd(ctx, req.(*VpnLocationVo))
  13972. }
  13973. return interceptor(ctx, in, info, handler)
  13974. }
  13975. func _GoVpnClient_VpnLocationUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13976. in := new(VpnLocationVo)
  13977. if err := dec(in); err != nil {
  13978. return nil, err
  13979. }
  13980. if interceptor == nil {
  13981. return srv.(GoVpnClientServer).VpnLocationUpdate(ctx, in)
  13982. }
  13983. info := &grpc.UnaryServerInfo{
  13984. Server: srv,
  13985. FullMethod: GoVpnClient_VpnLocationUpdate_FullMethodName,
  13986. }
  13987. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  13988. return srv.(GoVpnClientServer).VpnLocationUpdate(ctx, req.(*VpnLocationVo))
  13989. }
  13990. return interceptor(ctx, in, info, handler)
  13991. }
  13992. func _GoVpnClient_VpnLocationDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  13993. in := new(Ids)
  13994. if err := dec(in); err != nil {
  13995. return nil, err
  13996. }
  13997. if interceptor == nil {
  13998. return srv.(GoVpnClientServer).VpnLocationDel(ctx, in)
  13999. }
  14000. info := &grpc.UnaryServerInfo{
  14001. Server: srv,
  14002. FullMethod: GoVpnClient_VpnLocationDel_FullMethodName,
  14003. }
  14004. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14005. return srv.(GoVpnClientServer).VpnLocationDel(ctx, req.(*Ids))
  14006. }
  14007. return interceptor(ctx, in, info, handler)
  14008. }
  14009. func _GoVpnClient_VpnLocationGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14010. in := new(VpnLocationGetReq)
  14011. if err := dec(in); err != nil {
  14012. return nil, err
  14013. }
  14014. if interceptor == nil {
  14015. return srv.(GoVpnClientServer).VpnLocationGet(ctx, in)
  14016. }
  14017. info := &grpc.UnaryServerInfo{
  14018. Server: srv,
  14019. FullMethod: GoVpnClient_VpnLocationGet_FullMethodName,
  14020. }
  14021. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14022. return srv.(GoVpnClientServer).VpnLocationGet(ctx, req.(*VpnLocationGetReq))
  14023. }
  14024. return interceptor(ctx, in, info, handler)
  14025. }
  14026. func _GoVpnClient_VpnLocationList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14027. in := new(VpnLocationListReq)
  14028. if err := dec(in); err != nil {
  14029. return nil, err
  14030. }
  14031. if interceptor == nil {
  14032. return srv.(GoVpnClientServer).VpnLocationList(ctx, in)
  14033. }
  14034. info := &grpc.UnaryServerInfo{
  14035. Server: srv,
  14036. FullMethod: GoVpnClient_VpnLocationList_FullMethodName,
  14037. }
  14038. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14039. return srv.(GoVpnClientServer).VpnLocationList(ctx, req.(*VpnLocationListReq))
  14040. }
  14041. return interceptor(ctx, in, info, handler)
  14042. }
  14043. func _GoVpnClient_VpnLocationBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14044. in := new(VpnLocationBatchAddReq)
  14045. if err := dec(in); err != nil {
  14046. return nil, err
  14047. }
  14048. if interceptor == nil {
  14049. return srv.(GoVpnClientServer).VpnLocationBatchAdd(ctx, in)
  14050. }
  14051. info := &grpc.UnaryServerInfo{
  14052. Server: srv,
  14053. FullMethod: GoVpnClient_VpnLocationBatchAdd_FullMethodName,
  14054. }
  14055. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14056. return srv.(GoVpnClientServer).VpnLocationBatchAdd(ctx, req.(*VpnLocationBatchAddReq))
  14057. }
  14058. return interceptor(ctx, in, info, handler)
  14059. }
  14060. func _GoVpnClient_VpnLocationBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14061. in := new(VpnLocationBatchUpdateReq)
  14062. if err := dec(in); err != nil {
  14063. return nil, err
  14064. }
  14065. if interceptor == nil {
  14066. return srv.(GoVpnClientServer).VpnLocationBatchUpdate(ctx, in)
  14067. }
  14068. info := &grpc.UnaryServerInfo{
  14069. Server: srv,
  14070. FullMethod: GoVpnClient_VpnLocationBatchUpdate_FullMethodName,
  14071. }
  14072. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14073. return srv.(GoVpnClientServer).VpnLocationBatchUpdate(ctx, req.(*VpnLocationBatchUpdateReq))
  14074. }
  14075. return interceptor(ctx, in, info, handler)
  14076. }
  14077. func _GoVpnClient_VpnServerAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14078. in := new(VpnServerAddReq)
  14079. if err := dec(in); err != nil {
  14080. return nil, err
  14081. }
  14082. if interceptor == nil {
  14083. return srv.(GoVpnClientServer).VpnServerAdd(ctx, in)
  14084. }
  14085. info := &grpc.UnaryServerInfo{
  14086. Server: srv,
  14087. FullMethod: GoVpnClient_VpnServerAdd_FullMethodName,
  14088. }
  14089. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14090. return srv.(GoVpnClientServer).VpnServerAdd(ctx, req.(*VpnServerAddReq))
  14091. }
  14092. return interceptor(ctx, in, info, handler)
  14093. }
  14094. func _GoVpnClient_VpnServerUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14095. in := new(VpnServerAddReq)
  14096. if err := dec(in); err != nil {
  14097. return nil, err
  14098. }
  14099. if interceptor == nil {
  14100. return srv.(GoVpnClientServer).VpnServerUpdate(ctx, in)
  14101. }
  14102. info := &grpc.UnaryServerInfo{
  14103. Server: srv,
  14104. FullMethod: GoVpnClient_VpnServerUpdate_FullMethodName,
  14105. }
  14106. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14107. return srv.(GoVpnClientServer).VpnServerUpdate(ctx, req.(*VpnServerAddReq))
  14108. }
  14109. return interceptor(ctx, in, info, handler)
  14110. }
  14111. func _GoVpnClient_VpnServerDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14112. in := new(Ids)
  14113. if err := dec(in); err != nil {
  14114. return nil, err
  14115. }
  14116. if interceptor == nil {
  14117. return srv.(GoVpnClientServer).VpnServerDel(ctx, in)
  14118. }
  14119. info := &grpc.UnaryServerInfo{
  14120. Server: srv,
  14121. FullMethod: GoVpnClient_VpnServerDel_FullMethodName,
  14122. }
  14123. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14124. return srv.(GoVpnClientServer).VpnServerDel(ctx, req.(*Ids))
  14125. }
  14126. return interceptor(ctx, in, info, handler)
  14127. }
  14128. func _GoVpnClient_VpnServerGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14129. in := new(VpnServerVo)
  14130. if err := dec(in); err != nil {
  14131. return nil, err
  14132. }
  14133. if interceptor == nil {
  14134. return srv.(GoVpnClientServer).VpnServerGet(ctx, in)
  14135. }
  14136. info := &grpc.UnaryServerInfo{
  14137. Server: srv,
  14138. FullMethod: GoVpnClient_VpnServerGet_FullMethodName,
  14139. }
  14140. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14141. return srv.(GoVpnClientServer).VpnServerGet(ctx, req.(*VpnServerVo))
  14142. }
  14143. return interceptor(ctx, in, info, handler)
  14144. }
  14145. func _GoVpnClient_VpnServerExGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14146. in := new(VpnServerVo)
  14147. if err := dec(in); err != nil {
  14148. return nil, err
  14149. }
  14150. if interceptor == nil {
  14151. return srv.(GoVpnClientServer).VpnServerExGet(ctx, in)
  14152. }
  14153. info := &grpc.UnaryServerInfo{
  14154. Server: srv,
  14155. FullMethod: GoVpnClient_VpnServerExGet_FullMethodName,
  14156. }
  14157. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14158. return srv.(GoVpnClientServer).VpnServerExGet(ctx, req.(*VpnServerVo))
  14159. }
  14160. return interceptor(ctx, in, info, handler)
  14161. }
  14162. func _GoVpnClient_VpnServerList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14163. in := new(VpnServerListReq)
  14164. if err := dec(in); err != nil {
  14165. return nil, err
  14166. }
  14167. if interceptor == nil {
  14168. return srv.(GoVpnClientServer).VpnServerList(ctx, in)
  14169. }
  14170. info := &grpc.UnaryServerInfo{
  14171. Server: srv,
  14172. FullMethod: GoVpnClient_VpnServerList_FullMethodName,
  14173. }
  14174. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14175. return srv.(GoVpnClientServer).VpnServerList(ctx, req.(*VpnServerListReq))
  14176. }
  14177. return interceptor(ctx, in, info, handler)
  14178. }
  14179. func _GoVpnClient_VpnServerExList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14180. in := new(VpnServerListReq)
  14181. if err := dec(in); err != nil {
  14182. return nil, err
  14183. }
  14184. if interceptor == nil {
  14185. return srv.(GoVpnClientServer).VpnServerExList(ctx, in)
  14186. }
  14187. info := &grpc.UnaryServerInfo{
  14188. Server: srv,
  14189. FullMethod: GoVpnClient_VpnServerExList_FullMethodName,
  14190. }
  14191. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14192. return srv.(GoVpnClientServer).VpnServerExList(ctx, req.(*VpnServerListReq))
  14193. }
  14194. return interceptor(ctx, in, info, handler)
  14195. }
  14196. func _GoVpnClient_VpnServerBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14197. in := new(VpnServerBatchAddReq)
  14198. if err := dec(in); err != nil {
  14199. return nil, err
  14200. }
  14201. if interceptor == nil {
  14202. return srv.(GoVpnClientServer).VpnServerBatchAdd(ctx, in)
  14203. }
  14204. info := &grpc.UnaryServerInfo{
  14205. Server: srv,
  14206. FullMethod: GoVpnClient_VpnServerBatchAdd_FullMethodName,
  14207. }
  14208. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14209. return srv.(GoVpnClientServer).VpnServerBatchAdd(ctx, req.(*VpnServerBatchAddReq))
  14210. }
  14211. return interceptor(ctx, in, info, handler)
  14212. }
  14213. func _GoVpnClient_VpnServerBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14214. in := new(VpnServerBatchUpdateReq)
  14215. if err := dec(in); err != nil {
  14216. return nil, err
  14217. }
  14218. if interceptor == nil {
  14219. return srv.(GoVpnClientServer).VpnServerBatchUpdate(ctx, in)
  14220. }
  14221. info := &grpc.UnaryServerInfo{
  14222. Server: srv,
  14223. FullMethod: GoVpnClient_VpnServerBatchUpdate_FullMethodName,
  14224. }
  14225. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14226. return srv.(GoVpnClientServer).VpnServerBatchUpdate(ctx, req.(*VpnServerBatchUpdateReq))
  14227. }
  14228. return interceptor(ctx, in, info, handler)
  14229. }
  14230. func _GoVpnClient_VpnServerLocationAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14231. in := new(VpnServerLocationVo)
  14232. if err := dec(in); err != nil {
  14233. return nil, err
  14234. }
  14235. if interceptor == nil {
  14236. return srv.(GoVpnClientServer).VpnServerLocationAdd(ctx, in)
  14237. }
  14238. info := &grpc.UnaryServerInfo{
  14239. Server: srv,
  14240. FullMethod: GoVpnClient_VpnServerLocationAdd_FullMethodName,
  14241. }
  14242. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14243. return srv.(GoVpnClientServer).VpnServerLocationAdd(ctx, req.(*VpnServerLocationVo))
  14244. }
  14245. return interceptor(ctx, in, info, handler)
  14246. }
  14247. func _GoVpnClient_VpnServerLocationUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14248. in := new(VpnServerLocationVo)
  14249. if err := dec(in); err != nil {
  14250. return nil, err
  14251. }
  14252. if interceptor == nil {
  14253. return srv.(GoVpnClientServer).VpnServerLocationUpdate(ctx, in)
  14254. }
  14255. info := &grpc.UnaryServerInfo{
  14256. Server: srv,
  14257. FullMethod: GoVpnClient_VpnServerLocationUpdate_FullMethodName,
  14258. }
  14259. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14260. return srv.(GoVpnClientServer).VpnServerLocationUpdate(ctx, req.(*VpnServerLocationVo))
  14261. }
  14262. return interceptor(ctx, in, info, handler)
  14263. }
  14264. func _GoVpnClient_VpnServerLocationDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14265. in := new(Ids)
  14266. if err := dec(in); err != nil {
  14267. return nil, err
  14268. }
  14269. if interceptor == nil {
  14270. return srv.(GoVpnClientServer).VpnServerLocationDel(ctx, in)
  14271. }
  14272. info := &grpc.UnaryServerInfo{
  14273. Server: srv,
  14274. FullMethod: GoVpnClient_VpnServerLocationDel_FullMethodName,
  14275. }
  14276. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14277. return srv.(GoVpnClientServer).VpnServerLocationDel(ctx, req.(*Ids))
  14278. }
  14279. return interceptor(ctx, in, info, handler)
  14280. }
  14281. func _GoVpnClient_VpnServerLocationGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14282. in := new(VpnServerLocationVo)
  14283. if err := dec(in); err != nil {
  14284. return nil, err
  14285. }
  14286. if interceptor == nil {
  14287. return srv.(GoVpnClientServer).VpnServerLocationGet(ctx, in)
  14288. }
  14289. info := &grpc.UnaryServerInfo{
  14290. Server: srv,
  14291. FullMethod: GoVpnClient_VpnServerLocationGet_FullMethodName,
  14292. }
  14293. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14294. return srv.(GoVpnClientServer).VpnServerLocationGet(ctx, req.(*VpnServerLocationVo))
  14295. }
  14296. return interceptor(ctx, in, info, handler)
  14297. }
  14298. func _GoVpnClient_VpnServerLocationList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14299. in := new(VpnServerLocationListReq)
  14300. if err := dec(in); err != nil {
  14301. return nil, err
  14302. }
  14303. if interceptor == nil {
  14304. return srv.(GoVpnClientServer).VpnServerLocationList(ctx, in)
  14305. }
  14306. info := &grpc.UnaryServerInfo{
  14307. Server: srv,
  14308. FullMethod: GoVpnClient_VpnServerLocationList_FullMethodName,
  14309. }
  14310. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14311. return srv.(GoVpnClientServer).VpnServerLocationList(ctx, req.(*VpnServerLocationListReq))
  14312. }
  14313. return interceptor(ctx, in, info, handler)
  14314. }
  14315. func _GoVpnClient_VpnWithIPAndPort_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14316. in := new(VpnWithIPAndPortReq)
  14317. if err := dec(in); err != nil {
  14318. return nil, err
  14319. }
  14320. if interceptor == nil {
  14321. return srv.(GoVpnClientServer).VpnWithIPAndPort(ctx, in)
  14322. }
  14323. info := &grpc.UnaryServerInfo{
  14324. Server: srv,
  14325. FullMethod: GoVpnClient_VpnWithIPAndPort_FullMethodName,
  14326. }
  14327. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14328. return srv.(GoVpnClientServer).VpnWithIPAndPort(ctx, req.(*VpnWithIPAndPortReq))
  14329. }
  14330. return interceptor(ctx, in, info, handler)
  14331. }
  14332. func _GoVpnClient_VpnLocationServerCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14333. in := new(VpnLocationServerCountReq)
  14334. if err := dec(in); err != nil {
  14335. return nil, err
  14336. }
  14337. if interceptor == nil {
  14338. return srv.(GoVpnClientServer).VpnLocationServerCount(ctx, in)
  14339. }
  14340. info := &grpc.UnaryServerInfo{
  14341. Server: srv,
  14342. FullMethod: GoVpnClient_VpnLocationServerCount_FullMethodName,
  14343. }
  14344. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14345. return srv.(GoVpnClientServer).VpnLocationServerCount(ctx, req.(*VpnLocationServerCountReq))
  14346. }
  14347. return interceptor(ctx, in, info, handler)
  14348. }
  14349. func _GoVpnClient_VpnProbeTaskAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14350. in := new(VpnProbeTaskVo)
  14351. if err := dec(in); err != nil {
  14352. return nil, err
  14353. }
  14354. if interceptor == nil {
  14355. return srv.(GoVpnClientServer).VpnProbeTaskAdd(ctx, in)
  14356. }
  14357. info := &grpc.UnaryServerInfo{
  14358. Server: srv,
  14359. FullMethod: GoVpnClient_VpnProbeTaskAdd_FullMethodName,
  14360. }
  14361. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14362. return srv.(GoVpnClientServer).VpnProbeTaskAdd(ctx, req.(*VpnProbeTaskVo))
  14363. }
  14364. return interceptor(ctx, in, info, handler)
  14365. }
  14366. func _GoVpnClient_VpnProbeTaskUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14367. in := new(VpnProbeTaskVo)
  14368. if err := dec(in); err != nil {
  14369. return nil, err
  14370. }
  14371. if interceptor == nil {
  14372. return srv.(GoVpnClientServer).VpnProbeTaskUpdate(ctx, in)
  14373. }
  14374. info := &grpc.UnaryServerInfo{
  14375. Server: srv,
  14376. FullMethod: GoVpnClient_VpnProbeTaskUpdate_FullMethodName,
  14377. }
  14378. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14379. return srv.(GoVpnClientServer).VpnProbeTaskUpdate(ctx, req.(*VpnProbeTaskVo))
  14380. }
  14381. return interceptor(ctx, in, info, handler)
  14382. }
  14383. func _GoVpnClient_VpnProbeTaskList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14384. in := new(VpnProbeTaskListReq)
  14385. if err := dec(in); err != nil {
  14386. return nil, err
  14387. }
  14388. if interceptor == nil {
  14389. return srv.(GoVpnClientServer).VpnProbeTaskList(ctx, in)
  14390. }
  14391. info := &grpc.UnaryServerInfo{
  14392. Server: srv,
  14393. FullMethod: GoVpnClient_VpnProbeTaskList_FullMethodName,
  14394. }
  14395. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14396. return srv.(GoVpnClientServer).VpnProbeTaskList(ctx, req.(*VpnProbeTaskListReq))
  14397. }
  14398. return interceptor(ctx, in, info, handler)
  14399. }
  14400. func _GoVpnClient_VpnipWalledAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14401. in := new(VpnipWalledAddReq)
  14402. if err := dec(in); err != nil {
  14403. return nil, err
  14404. }
  14405. if interceptor == nil {
  14406. return srv.(GoVpnClientServer).VpnipWalledAdd(ctx, in)
  14407. }
  14408. info := &grpc.UnaryServerInfo{
  14409. Server: srv,
  14410. FullMethod: GoVpnClient_VpnipWalledAdd_FullMethodName,
  14411. }
  14412. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14413. return srv.(GoVpnClientServer).VpnipWalledAdd(ctx, req.(*VpnipWalledAddReq))
  14414. }
  14415. return interceptor(ctx, in, info, handler)
  14416. }
  14417. func _GoVpnClient_VpnipWalledUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14418. in := new(VpnipWalledUpdateReq)
  14419. if err := dec(in); err != nil {
  14420. return nil, err
  14421. }
  14422. if interceptor == nil {
  14423. return srv.(GoVpnClientServer).VpnipWalledUpdate(ctx, in)
  14424. }
  14425. info := &grpc.UnaryServerInfo{
  14426. Server: srv,
  14427. FullMethod: GoVpnClient_VpnipWalledUpdate_FullMethodName,
  14428. }
  14429. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14430. return srv.(GoVpnClientServer).VpnipWalledUpdate(ctx, req.(*VpnipWalledUpdateReq))
  14431. }
  14432. return interceptor(ctx, in, info, handler)
  14433. }
  14434. func _GoVpnClient_VpnipWalledDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14435. in := new(Ids)
  14436. if err := dec(in); err != nil {
  14437. return nil, err
  14438. }
  14439. if interceptor == nil {
  14440. return srv.(GoVpnClientServer).VpnipWalledDel(ctx, in)
  14441. }
  14442. info := &grpc.UnaryServerInfo{
  14443. Server: srv,
  14444. FullMethod: GoVpnClient_VpnipWalledDel_FullMethodName,
  14445. }
  14446. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14447. return srv.(GoVpnClientServer).VpnipWalledDel(ctx, req.(*Ids))
  14448. }
  14449. return interceptor(ctx, in, info, handler)
  14450. }
  14451. func _GoVpnClient_VpnipWalledGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14452. in := new(VpnipWalledGetReq)
  14453. if err := dec(in); err != nil {
  14454. return nil, err
  14455. }
  14456. if interceptor == nil {
  14457. return srv.(GoVpnClientServer).VpnipWalledGet(ctx, in)
  14458. }
  14459. info := &grpc.UnaryServerInfo{
  14460. Server: srv,
  14461. FullMethod: GoVpnClient_VpnipWalledGet_FullMethodName,
  14462. }
  14463. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14464. return srv.(GoVpnClientServer).VpnipWalledGet(ctx, req.(*VpnipWalledGetReq))
  14465. }
  14466. return interceptor(ctx, in, info, handler)
  14467. }
  14468. func _GoVpnClient_VpnipWalledList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14469. in := new(VpnipWalledListReq)
  14470. if err := dec(in); err != nil {
  14471. return nil, err
  14472. }
  14473. if interceptor == nil {
  14474. return srv.(GoVpnClientServer).VpnipWalledList(ctx, in)
  14475. }
  14476. info := &grpc.UnaryServerInfo{
  14477. Server: srv,
  14478. FullMethod: GoVpnClient_VpnipWalledList_FullMethodName,
  14479. }
  14480. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14481. return srv.(GoVpnClientServer).VpnipWalledList(ctx, req.(*VpnipWalledListReq))
  14482. }
  14483. return interceptor(ctx, in, info, handler)
  14484. }
  14485. func _GoVpnClient_VpnipWalledBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14486. in := new(VpnipWalledBatchAddReq)
  14487. if err := dec(in); err != nil {
  14488. return nil, err
  14489. }
  14490. if interceptor == nil {
  14491. return srv.(GoVpnClientServer).VpnipWalledBatchAdd(ctx, in)
  14492. }
  14493. info := &grpc.UnaryServerInfo{
  14494. Server: srv,
  14495. FullMethod: GoVpnClient_VpnipWalledBatchAdd_FullMethodName,
  14496. }
  14497. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14498. return srv.(GoVpnClientServer).VpnipWalledBatchAdd(ctx, req.(*VpnipWalledBatchAddReq))
  14499. }
  14500. return interceptor(ctx, in, info, handler)
  14501. }
  14502. func _GoVpnClient_VpnipWalledBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14503. in := new(VpnipWalledBatchUpdateReq)
  14504. if err := dec(in); err != nil {
  14505. return nil, err
  14506. }
  14507. if interceptor == nil {
  14508. return srv.(GoVpnClientServer).VpnipWalledBatchUpdate(ctx, in)
  14509. }
  14510. info := &grpc.UnaryServerInfo{
  14511. Server: srv,
  14512. FullMethod: GoVpnClient_VpnipWalledBatchUpdate_FullMethodName,
  14513. }
  14514. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14515. return srv.(GoVpnClientServer).VpnipWalledBatchUpdate(ctx, req.(*VpnipWalledBatchUpdateReq))
  14516. }
  14517. return interceptor(ctx, in, info, handler)
  14518. }
  14519. func _GoVpnClient_VpnipAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14520. in := new(VpnipAddReq)
  14521. if err := dec(in); err != nil {
  14522. return nil, err
  14523. }
  14524. if interceptor == nil {
  14525. return srv.(GoVpnClientServer).VpnipAdd(ctx, in)
  14526. }
  14527. info := &grpc.UnaryServerInfo{
  14528. Server: srv,
  14529. FullMethod: GoVpnClient_VpnipAdd_FullMethodName,
  14530. }
  14531. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14532. return srv.(GoVpnClientServer).VpnipAdd(ctx, req.(*VpnipAddReq))
  14533. }
  14534. return interceptor(ctx, in, info, handler)
  14535. }
  14536. func _GoVpnClient_VpnipExAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14537. in := new(VpnipExAddReq)
  14538. if err := dec(in); err != nil {
  14539. return nil, err
  14540. }
  14541. if interceptor == nil {
  14542. return srv.(GoVpnClientServer).VpnipExAdd(ctx, in)
  14543. }
  14544. info := &grpc.UnaryServerInfo{
  14545. Server: srv,
  14546. FullMethod: GoVpnClient_VpnipExAdd_FullMethodName,
  14547. }
  14548. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14549. return srv.(GoVpnClientServer).VpnipExAdd(ctx, req.(*VpnipExAddReq))
  14550. }
  14551. return interceptor(ctx, in, info, handler)
  14552. }
  14553. func _GoVpnClient_VpnipUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14554. in := new(VpnipUpdateReq)
  14555. if err := dec(in); err != nil {
  14556. return nil, err
  14557. }
  14558. if interceptor == nil {
  14559. return srv.(GoVpnClientServer).VpnipUpdate(ctx, in)
  14560. }
  14561. info := &grpc.UnaryServerInfo{
  14562. Server: srv,
  14563. FullMethod: GoVpnClient_VpnipUpdate_FullMethodName,
  14564. }
  14565. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14566. return srv.(GoVpnClientServer).VpnipUpdate(ctx, req.(*VpnipUpdateReq))
  14567. }
  14568. return interceptor(ctx, in, info, handler)
  14569. }
  14570. func _GoVpnClient_VpnipExUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14571. in := new(VpnipExUpdateReq)
  14572. if err := dec(in); err != nil {
  14573. return nil, err
  14574. }
  14575. if interceptor == nil {
  14576. return srv.(GoVpnClientServer).VpnipExUpdate(ctx, in)
  14577. }
  14578. info := &grpc.UnaryServerInfo{
  14579. Server: srv,
  14580. FullMethod: GoVpnClient_VpnipExUpdate_FullMethodName,
  14581. }
  14582. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14583. return srv.(GoVpnClientServer).VpnipExUpdate(ctx, req.(*VpnipExUpdateReq))
  14584. }
  14585. return interceptor(ctx, in, info, handler)
  14586. }
  14587. func _GoVpnClient_VpnipDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14588. in := new(Ids)
  14589. if err := dec(in); err != nil {
  14590. return nil, err
  14591. }
  14592. if interceptor == nil {
  14593. return srv.(GoVpnClientServer).VpnipDel(ctx, in)
  14594. }
  14595. info := &grpc.UnaryServerInfo{
  14596. Server: srv,
  14597. FullMethod: GoVpnClient_VpnipDel_FullMethodName,
  14598. }
  14599. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14600. return srv.(GoVpnClientServer).VpnipDel(ctx, req.(*Ids))
  14601. }
  14602. return interceptor(ctx, in, info, handler)
  14603. }
  14604. func _GoVpnClient_VpnipGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14605. in := new(VpnipGetReq)
  14606. if err := dec(in); err != nil {
  14607. return nil, err
  14608. }
  14609. if interceptor == nil {
  14610. return srv.(GoVpnClientServer).VpnipGet(ctx, in)
  14611. }
  14612. info := &grpc.UnaryServerInfo{
  14613. Server: srv,
  14614. FullMethod: GoVpnClient_VpnipGet_FullMethodName,
  14615. }
  14616. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14617. return srv.(GoVpnClientServer).VpnipGet(ctx, req.(*VpnipGetReq))
  14618. }
  14619. return interceptor(ctx, in, info, handler)
  14620. }
  14621. func _GoVpnClient_VpnipExGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14622. in := new(VpnipGetReq)
  14623. if err := dec(in); err != nil {
  14624. return nil, err
  14625. }
  14626. if interceptor == nil {
  14627. return srv.(GoVpnClientServer).VpnipExGet(ctx, in)
  14628. }
  14629. info := &grpc.UnaryServerInfo{
  14630. Server: srv,
  14631. FullMethod: GoVpnClient_VpnipExGet_FullMethodName,
  14632. }
  14633. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14634. return srv.(GoVpnClientServer).VpnipExGet(ctx, req.(*VpnipGetReq))
  14635. }
  14636. return interceptor(ctx, in, info, handler)
  14637. }
  14638. func _GoVpnClient_VpnipList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14639. in := new(VpnipListReq)
  14640. if err := dec(in); err != nil {
  14641. return nil, err
  14642. }
  14643. if interceptor == nil {
  14644. return srv.(GoVpnClientServer).VpnipList(ctx, in)
  14645. }
  14646. info := &grpc.UnaryServerInfo{
  14647. Server: srv,
  14648. FullMethod: GoVpnClient_VpnipList_FullMethodName,
  14649. }
  14650. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14651. return srv.(GoVpnClientServer).VpnipList(ctx, req.(*VpnipListReq))
  14652. }
  14653. return interceptor(ctx, in, info, handler)
  14654. }
  14655. func _GoVpnClient_VpnipExList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14656. in := new(VpnipListReq)
  14657. if err := dec(in); err != nil {
  14658. return nil, err
  14659. }
  14660. if interceptor == nil {
  14661. return srv.(GoVpnClientServer).VpnipExList(ctx, in)
  14662. }
  14663. info := &grpc.UnaryServerInfo{
  14664. Server: srv,
  14665. FullMethod: GoVpnClient_VpnipExList_FullMethodName,
  14666. }
  14667. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14668. return srv.(GoVpnClientServer).VpnipExList(ctx, req.(*VpnipListReq))
  14669. }
  14670. return interceptor(ctx, in, info, handler)
  14671. }
  14672. func _GoVpnClient_VpnipBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14673. in := new(VpnipBatchAddReq)
  14674. if err := dec(in); err != nil {
  14675. return nil, err
  14676. }
  14677. if interceptor == nil {
  14678. return srv.(GoVpnClientServer).VpnipBatchAdd(ctx, in)
  14679. }
  14680. info := &grpc.UnaryServerInfo{
  14681. Server: srv,
  14682. FullMethod: GoVpnClient_VpnipBatchAdd_FullMethodName,
  14683. }
  14684. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14685. return srv.(GoVpnClientServer).VpnipBatchAdd(ctx, req.(*VpnipBatchAddReq))
  14686. }
  14687. return interceptor(ctx, in, info, handler)
  14688. }
  14689. func _GoVpnClient_VpnipBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14690. in := new(VpnipBatchUpdateReq)
  14691. if err := dec(in); err != nil {
  14692. return nil, err
  14693. }
  14694. if interceptor == nil {
  14695. return srv.(GoVpnClientServer).VpnipBatchUpdate(ctx, in)
  14696. }
  14697. info := &grpc.UnaryServerInfo{
  14698. Server: srv,
  14699. FullMethod: GoVpnClient_VpnipBatchUpdate_FullMethodName,
  14700. }
  14701. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14702. return srv.(GoVpnClientServer).VpnipBatchUpdate(ctx, req.(*VpnipBatchUpdateReq))
  14703. }
  14704. return interceptor(ctx, in, info, handler)
  14705. }
  14706. func _GoVpnClient_VpnipExBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14707. in := new(VpnipExBatchAddReq)
  14708. if err := dec(in); err != nil {
  14709. return nil, err
  14710. }
  14711. if interceptor == nil {
  14712. return srv.(GoVpnClientServer).VpnipExBatchAdd(ctx, in)
  14713. }
  14714. info := &grpc.UnaryServerInfo{
  14715. Server: srv,
  14716. FullMethod: GoVpnClient_VpnipExBatchAdd_FullMethodName,
  14717. }
  14718. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14719. return srv.(GoVpnClientServer).VpnipExBatchAdd(ctx, req.(*VpnipExBatchAddReq))
  14720. }
  14721. return interceptor(ctx, in, info, handler)
  14722. }
  14723. func _GoVpnClient_VpnipExBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14724. in := new(VpnipExBatchUpdateReq)
  14725. if err := dec(in); err != nil {
  14726. return nil, err
  14727. }
  14728. if interceptor == nil {
  14729. return srv.(GoVpnClientServer).VpnipExBatchUpdate(ctx, in)
  14730. }
  14731. info := &grpc.UnaryServerInfo{
  14732. Server: srv,
  14733. FullMethod: GoVpnClient_VpnipExBatchUpdate_FullMethodName,
  14734. }
  14735. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14736. return srv.(GoVpnClientServer).VpnipExBatchUpdate(ctx, req.(*VpnipExBatchUpdateReq))
  14737. }
  14738. return interceptor(ctx, in, info, handler)
  14739. }
  14740. func _GoVpnClient_VpnipRangeAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14741. in := new(VpnipRangeAddReq)
  14742. if err := dec(in); err != nil {
  14743. return nil, err
  14744. }
  14745. if interceptor == nil {
  14746. return srv.(GoVpnClientServer).VpnipRangeAdd(ctx, in)
  14747. }
  14748. info := &grpc.UnaryServerInfo{
  14749. Server: srv,
  14750. FullMethod: GoVpnClient_VpnipRangeAdd_FullMethodName,
  14751. }
  14752. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14753. return srv.(GoVpnClientServer).VpnipRangeAdd(ctx, req.(*VpnipRangeAddReq))
  14754. }
  14755. return interceptor(ctx, in, info, handler)
  14756. }
  14757. func _GoVpnClient_VpnipRangeExAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14758. in := new(VpnipRangeExAddReq)
  14759. if err := dec(in); err != nil {
  14760. return nil, err
  14761. }
  14762. if interceptor == nil {
  14763. return srv.(GoVpnClientServer).VpnipRangeExAdd(ctx, in)
  14764. }
  14765. info := &grpc.UnaryServerInfo{
  14766. Server: srv,
  14767. FullMethod: GoVpnClient_VpnipRangeExAdd_FullMethodName,
  14768. }
  14769. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14770. return srv.(GoVpnClientServer).VpnipRangeExAdd(ctx, req.(*VpnipRangeExAddReq))
  14771. }
  14772. return interceptor(ctx, in, info, handler)
  14773. }
  14774. func _GoVpnClient_VpnipRangeUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14775. in := new(VpnipRangeUpdateReq)
  14776. if err := dec(in); err != nil {
  14777. return nil, err
  14778. }
  14779. if interceptor == nil {
  14780. return srv.(GoVpnClientServer).VpnipRangeUpdate(ctx, in)
  14781. }
  14782. info := &grpc.UnaryServerInfo{
  14783. Server: srv,
  14784. FullMethod: GoVpnClient_VpnipRangeUpdate_FullMethodName,
  14785. }
  14786. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14787. return srv.(GoVpnClientServer).VpnipRangeUpdate(ctx, req.(*VpnipRangeUpdateReq))
  14788. }
  14789. return interceptor(ctx, in, info, handler)
  14790. }
  14791. func _GoVpnClient_VpnipRangeExUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14792. in := new(VpnipRangeExUpdateReq)
  14793. if err := dec(in); err != nil {
  14794. return nil, err
  14795. }
  14796. if interceptor == nil {
  14797. return srv.(GoVpnClientServer).VpnipRangeExUpdate(ctx, in)
  14798. }
  14799. info := &grpc.UnaryServerInfo{
  14800. Server: srv,
  14801. FullMethod: GoVpnClient_VpnipRangeExUpdate_FullMethodName,
  14802. }
  14803. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14804. return srv.(GoVpnClientServer).VpnipRangeExUpdate(ctx, req.(*VpnipRangeExUpdateReq))
  14805. }
  14806. return interceptor(ctx, in, info, handler)
  14807. }
  14808. func _GoVpnClient_VpnipRangeDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14809. in := new(Ids)
  14810. if err := dec(in); err != nil {
  14811. return nil, err
  14812. }
  14813. if interceptor == nil {
  14814. return srv.(GoVpnClientServer).VpnipRangeDel(ctx, in)
  14815. }
  14816. info := &grpc.UnaryServerInfo{
  14817. Server: srv,
  14818. FullMethod: GoVpnClient_VpnipRangeDel_FullMethodName,
  14819. }
  14820. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14821. return srv.(GoVpnClientServer).VpnipRangeDel(ctx, req.(*Ids))
  14822. }
  14823. return interceptor(ctx, in, info, handler)
  14824. }
  14825. func _GoVpnClient_VpnipRangeGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14826. in := new(VpnipRangeGetReq)
  14827. if err := dec(in); err != nil {
  14828. return nil, err
  14829. }
  14830. if interceptor == nil {
  14831. return srv.(GoVpnClientServer).VpnipRangeGet(ctx, in)
  14832. }
  14833. info := &grpc.UnaryServerInfo{
  14834. Server: srv,
  14835. FullMethod: GoVpnClient_VpnipRangeGet_FullMethodName,
  14836. }
  14837. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14838. return srv.(GoVpnClientServer).VpnipRangeGet(ctx, req.(*VpnipRangeGetReq))
  14839. }
  14840. return interceptor(ctx, in, info, handler)
  14841. }
  14842. func _GoVpnClient_VpnipRangeExGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14843. in := new(VpnipRangeGetReq)
  14844. if err := dec(in); err != nil {
  14845. return nil, err
  14846. }
  14847. if interceptor == nil {
  14848. return srv.(GoVpnClientServer).VpnipRangeExGet(ctx, in)
  14849. }
  14850. info := &grpc.UnaryServerInfo{
  14851. Server: srv,
  14852. FullMethod: GoVpnClient_VpnipRangeExGet_FullMethodName,
  14853. }
  14854. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14855. return srv.(GoVpnClientServer).VpnipRangeExGet(ctx, req.(*VpnipRangeGetReq))
  14856. }
  14857. return interceptor(ctx, in, info, handler)
  14858. }
  14859. func _GoVpnClient_VpnipRangeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14860. in := new(VpnipRangeListReq)
  14861. if err := dec(in); err != nil {
  14862. return nil, err
  14863. }
  14864. if interceptor == nil {
  14865. return srv.(GoVpnClientServer).VpnipRangeList(ctx, in)
  14866. }
  14867. info := &grpc.UnaryServerInfo{
  14868. Server: srv,
  14869. FullMethod: GoVpnClient_VpnipRangeList_FullMethodName,
  14870. }
  14871. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14872. return srv.(GoVpnClientServer).VpnipRangeList(ctx, req.(*VpnipRangeListReq))
  14873. }
  14874. return interceptor(ctx, in, info, handler)
  14875. }
  14876. func _GoVpnClient_VpnipRangeExList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14877. in := new(VpnipRangeListReq)
  14878. if err := dec(in); err != nil {
  14879. return nil, err
  14880. }
  14881. if interceptor == nil {
  14882. return srv.(GoVpnClientServer).VpnipRangeExList(ctx, in)
  14883. }
  14884. info := &grpc.UnaryServerInfo{
  14885. Server: srv,
  14886. FullMethod: GoVpnClient_VpnipRangeExList_FullMethodName,
  14887. }
  14888. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14889. return srv.(GoVpnClientServer).VpnipRangeExList(ctx, req.(*VpnipRangeListReq))
  14890. }
  14891. return interceptor(ctx, in, info, handler)
  14892. }
  14893. func _GoVpnClient_VpnipRangeBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14894. in := new(VpnipRangeBatchAddReq)
  14895. if err := dec(in); err != nil {
  14896. return nil, err
  14897. }
  14898. if interceptor == nil {
  14899. return srv.(GoVpnClientServer).VpnipRangeBatchAdd(ctx, in)
  14900. }
  14901. info := &grpc.UnaryServerInfo{
  14902. Server: srv,
  14903. FullMethod: GoVpnClient_VpnipRangeBatchAdd_FullMethodName,
  14904. }
  14905. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14906. return srv.(GoVpnClientServer).VpnipRangeBatchAdd(ctx, req.(*VpnipRangeBatchAddReq))
  14907. }
  14908. return interceptor(ctx, in, info, handler)
  14909. }
  14910. func _GoVpnClient_VpnipRangeExBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14911. in := new(VpnipRangeExBatchAddReq)
  14912. if err := dec(in); err != nil {
  14913. return nil, err
  14914. }
  14915. if interceptor == nil {
  14916. return srv.(GoVpnClientServer).VpnipRangeExBatchAdd(ctx, in)
  14917. }
  14918. info := &grpc.UnaryServerInfo{
  14919. Server: srv,
  14920. FullMethod: GoVpnClient_VpnipRangeExBatchAdd_FullMethodName,
  14921. }
  14922. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14923. return srv.(GoVpnClientServer).VpnipRangeExBatchAdd(ctx, req.(*VpnipRangeExBatchAddReq))
  14924. }
  14925. return interceptor(ctx, in, info, handler)
  14926. }
  14927. func _GoVpnClient_VpnipRangeBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14928. in := new(VpnipRangeBatchUpdateReq)
  14929. if err := dec(in); err != nil {
  14930. return nil, err
  14931. }
  14932. if interceptor == nil {
  14933. return srv.(GoVpnClientServer).VpnipRangeBatchUpdate(ctx, in)
  14934. }
  14935. info := &grpc.UnaryServerInfo{
  14936. Server: srv,
  14937. FullMethod: GoVpnClient_VpnipRangeBatchUpdate_FullMethodName,
  14938. }
  14939. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14940. return srv.(GoVpnClientServer).VpnipRangeBatchUpdate(ctx, req.(*VpnipRangeBatchUpdateReq))
  14941. }
  14942. return interceptor(ctx, in, info, handler)
  14943. }
  14944. func _GoVpnClient_VpnipRangeExBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14945. in := new(VpnipRangeExBatchUpdateReq)
  14946. if err := dec(in); err != nil {
  14947. return nil, err
  14948. }
  14949. if interceptor == nil {
  14950. return srv.(GoVpnClientServer).VpnipRangeExBatchUpdate(ctx, in)
  14951. }
  14952. info := &grpc.UnaryServerInfo{
  14953. Server: srv,
  14954. FullMethod: GoVpnClient_VpnipRangeExBatchUpdate_FullMethodName,
  14955. }
  14956. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14957. return srv.(GoVpnClientServer).VpnipRangeExBatchUpdate(ctx, req.(*VpnipRangeExBatchUpdateReq))
  14958. }
  14959. return interceptor(ctx, in, info, handler)
  14960. }
  14961. func _GoVpnClient_VpnipBindAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14962. in := new(VpnipBindAddReq)
  14963. if err := dec(in); err != nil {
  14964. return nil, err
  14965. }
  14966. if interceptor == nil {
  14967. return srv.(GoVpnClientServer).VpnipBindAdd(ctx, in)
  14968. }
  14969. info := &grpc.UnaryServerInfo{
  14970. Server: srv,
  14971. FullMethod: GoVpnClient_VpnipBindAdd_FullMethodName,
  14972. }
  14973. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14974. return srv.(GoVpnClientServer).VpnipBindAdd(ctx, req.(*VpnipBindAddReq))
  14975. }
  14976. return interceptor(ctx, in, info, handler)
  14977. }
  14978. func _GoVpnClient_VpnipBindUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14979. in := new(VpnipBindUpdateReq)
  14980. if err := dec(in); err != nil {
  14981. return nil, err
  14982. }
  14983. if interceptor == nil {
  14984. return srv.(GoVpnClientServer).VpnipBindUpdate(ctx, in)
  14985. }
  14986. info := &grpc.UnaryServerInfo{
  14987. Server: srv,
  14988. FullMethod: GoVpnClient_VpnipBindUpdate_FullMethodName,
  14989. }
  14990. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  14991. return srv.(GoVpnClientServer).VpnipBindUpdate(ctx, req.(*VpnipBindUpdateReq))
  14992. }
  14993. return interceptor(ctx, in, info, handler)
  14994. }
  14995. func _GoVpnClient_VpnipBindDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  14996. in := new(Ids)
  14997. if err := dec(in); err != nil {
  14998. return nil, err
  14999. }
  15000. if interceptor == nil {
  15001. return srv.(GoVpnClientServer).VpnipBindDel(ctx, in)
  15002. }
  15003. info := &grpc.UnaryServerInfo{
  15004. Server: srv,
  15005. FullMethod: GoVpnClient_VpnipBindDel_FullMethodName,
  15006. }
  15007. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15008. return srv.(GoVpnClientServer).VpnipBindDel(ctx, req.(*Ids))
  15009. }
  15010. return interceptor(ctx, in, info, handler)
  15011. }
  15012. func _GoVpnClient_VpnipBindGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15013. in := new(VpnipBindGetReq)
  15014. if err := dec(in); err != nil {
  15015. return nil, err
  15016. }
  15017. if interceptor == nil {
  15018. return srv.(GoVpnClientServer).VpnipBindGet(ctx, in)
  15019. }
  15020. info := &grpc.UnaryServerInfo{
  15021. Server: srv,
  15022. FullMethod: GoVpnClient_VpnipBindGet_FullMethodName,
  15023. }
  15024. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15025. return srv.(GoVpnClientServer).VpnipBindGet(ctx, req.(*VpnipBindGetReq))
  15026. }
  15027. return interceptor(ctx, in, info, handler)
  15028. }
  15029. func _GoVpnClient_VpnipBindList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15030. in := new(VpnipBindListReq)
  15031. if err := dec(in); err != nil {
  15032. return nil, err
  15033. }
  15034. if interceptor == nil {
  15035. return srv.(GoVpnClientServer).VpnipBindList(ctx, in)
  15036. }
  15037. info := &grpc.UnaryServerInfo{
  15038. Server: srv,
  15039. FullMethod: GoVpnClient_VpnipBindList_FullMethodName,
  15040. }
  15041. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15042. return srv.(GoVpnClientServer).VpnipBindList(ctx, req.(*VpnipBindListReq))
  15043. }
  15044. return interceptor(ctx, in, info, handler)
  15045. }
  15046. func _GoVpnClient_VpnipBindBatchUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15047. in := new(VpnipBindBatchUpdateReq)
  15048. if err := dec(in); err != nil {
  15049. return nil, err
  15050. }
  15051. if interceptor == nil {
  15052. return srv.(GoVpnClientServer).VpnipBindBatchUpdate(ctx, in)
  15053. }
  15054. info := &grpc.UnaryServerInfo{
  15055. Server: srv,
  15056. FullMethod: GoVpnClient_VpnipBindBatchUpdate_FullMethodName,
  15057. }
  15058. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15059. return srv.(GoVpnClientServer).VpnipBindBatchUpdate(ctx, req.(*VpnipBindBatchUpdateReq))
  15060. }
  15061. return interceptor(ctx, in, info, handler)
  15062. }
  15063. func _GoVpnClient_VpnipsBindServer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15064. in := new(VpnipBindBatchAddReq)
  15065. if err := dec(in); err != nil {
  15066. return nil, err
  15067. }
  15068. if interceptor == nil {
  15069. return srv.(GoVpnClientServer).VpnipsBindServer(ctx, in)
  15070. }
  15071. info := &grpc.UnaryServerInfo{
  15072. Server: srv,
  15073. FullMethod: GoVpnClient_VpnipsBindServer_FullMethodName,
  15074. }
  15075. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15076. return srv.(GoVpnClientServer).VpnipsBindServer(ctx, req.(*VpnipBindBatchAddReq))
  15077. }
  15078. return interceptor(ctx, in, info, handler)
  15079. }
  15080. func _GoVpnClient_VpnConfigTemplatePlanAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15081. in := new(VpnConfigTemplatePlanAddReq)
  15082. if err := dec(in); err != nil {
  15083. return nil, err
  15084. }
  15085. if interceptor == nil {
  15086. return srv.(GoVpnClientServer).VpnConfigTemplatePlanAdd(ctx, in)
  15087. }
  15088. info := &grpc.UnaryServerInfo{
  15089. Server: srv,
  15090. FullMethod: GoVpnClient_VpnConfigTemplatePlanAdd_FullMethodName,
  15091. }
  15092. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15093. return srv.(GoVpnClientServer).VpnConfigTemplatePlanAdd(ctx, req.(*VpnConfigTemplatePlanAddReq))
  15094. }
  15095. return interceptor(ctx, in, info, handler)
  15096. }
  15097. func _GoVpnClient_VpnConfigTemplatePlanUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15098. in := new(VpnConfigTemplatePlanUpdateReq)
  15099. if err := dec(in); err != nil {
  15100. return nil, err
  15101. }
  15102. if interceptor == nil {
  15103. return srv.(GoVpnClientServer).VpnConfigTemplatePlanUpdate(ctx, in)
  15104. }
  15105. info := &grpc.UnaryServerInfo{
  15106. Server: srv,
  15107. FullMethod: GoVpnClient_VpnConfigTemplatePlanUpdate_FullMethodName,
  15108. }
  15109. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15110. return srv.(GoVpnClientServer).VpnConfigTemplatePlanUpdate(ctx, req.(*VpnConfigTemplatePlanUpdateReq))
  15111. }
  15112. return interceptor(ctx, in, info, handler)
  15113. }
  15114. func _GoVpnClient_VpnConfigTemplatePlanDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15115. in := new(VpnConfigTemplatePlanDelReq)
  15116. if err := dec(in); err != nil {
  15117. return nil, err
  15118. }
  15119. if interceptor == nil {
  15120. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDel(ctx, in)
  15121. }
  15122. info := &grpc.UnaryServerInfo{
  15123. Server: srv,
  15124. FullMethod: GoVpnClient_VpnConfigTemplatePlanDel_FullMethodName,
  15125. }
  15126. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15127. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDel(ctx, req.(*VpnConfigTemplatePlanDelReq))
  15128. }
  15129. return interceptor(ctx, in, info, handler)
  15130. }
  15131. func _GoVpnClient_VpnConfigTemplatePlanGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15132. in := new(VpnConfigTemplatePlanGetReq)
  15133. if err := dec(in); err != nil {
  15134. return nil, err
  15135. }
  15136. if interceptor == nil {
  15137. return srv.(GoVpnClientServer).VpnConfigTemplatePlanGet(ctx, in)
  15138. }
  15139. info := &grpc.UnaryServerInfo{
  15140. Server: srv,
  15141. FullMethod: GoVpnClient_VpnConfigTemplatePlanGet_FullMethodName,
  15142. }
  15143. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15144. return srv.(GoVpnClientServer).VpnConfigTemplatePlanGet(ctx, req.(*VpnConfigTemplatePlanGetReq))
  15145. }
  15146. return interceptor(ctx, in, info, handler)
  15147. }
  15148. func _GoVpnClient_VpnConfigTemplatePlanList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15149. in := new(VpnConfigTemplatePlanListReq)
  15150. if err := dec(in); err != nil {
  15151. return nil, err
  15152. }
  15153. if interceptor == nil {
  15154. return srv.(GoVpnClientServer).VpnConfigTemplatePlanList(ctx, in)
  15155. }
  15156. info := &grpc.UnaryServerInfo{
  15157. Server: srv,
  15158. FullMethod: GoVpnClient_VpnConfigTemplatePlanList_FullMethodName,
  15159. }
  15160. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15161. return srv.(GoVpnClientServer).VpnConfigTemplatePlanList(ctx, req.(*VpnConfigTemplatePlanListReq))
  15162. }
  15163. return interceptor(ctx, in, info, handler)
  15164. }
  15165. func _GoVpnClient_VpnConfigTemplatePlanDetailAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15166. in := new(VpnConfigTemplatePlanDetailAddReq)
  15167. if err := dec(in); err != nil {
  15168. return nil, err
  15169. }
  15170. if interceptor == nil {
  15171. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailAdd(ctx, in)
  15172. }
  15173. info := &grpc.UnaryServerInfo{
  15174. Server: srv,
  15175. FullMethod: GoVpnClient_VpnConfigTemplatePlanDetailAdd_FullMethodName,
  15176. }
  15177. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15178. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailAdd(ctx, req.(*VpnConfigTemplatePlanDetailAddReq))
  15179. }
  15180. return interceptor(ctx, in, info, handler)
  15181. }
  15182. func _GoVpnClient_VpnConfigTemplatePlanDetailUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15183. in := new(VpnConfigTemplatePlanDetailUpdateReq)
  15184. if err := dec(in); err != nil {
  15185. return nil, err
  15186. }
  15187. if interceptor == nil {
  15188. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailUpdate(ctx, in)
  15189. }
  15190. info := &grpc.UnaryServerInfo{
  15191. Server: srv,
  15192. FullMethod: GoVpnClient_VpnConfigTemplatePlanDetailUpdate_FullMethodName,
  15193. }
  15194. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15195. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailUpdate(ctx, req.(*VpnConfigTemplatePlanDetailUpdateReq))
  15196. }
  15197. return interceptor(ctx, in, info, handler)
  15198. }
  15199. func _GoVpnClient_VpnConfigTemplatePlanDetailDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15200. in := new(VpnConfigTemplatePlanDetailDelReq)
  15201. if err := dec(in); err != nil {
  15202. return nil, err
  15203. }
  15204. if interceptor == nil {
  15205. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailDel(ctx, in)
  15206. }
  15207. info := &grpc.UnaryServerInfo{
  15208. Server: srv,
  15209. FullMethod: GoVpnClient_VpnConfigTemplatePlanDetailDel_FullMethodName,
  15210. }
  15211. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15212. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailDel(ctx, req.(*VpnConfigTemplatePlanDetailDelReq))
  15213. }
  15214. return interceptor(ctx, in, info, handler)
  15215. }
  15216. func _GoVpnClient_VpnConfigTemplatePlanDetailGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15217. in := new(VpnConfigTemplatePlanDetailGetReq)
  15218. if err := dec(in); err != nil {
  15219. return nil, err
  15220. }
  15221. if interceptor == nil {
  15222. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailGet(ctx, in)
  15223. }
  15224. info := &grpc.UnaryServerInfo{
  15225. Server: srv,
  15226. FullMethod: GoVpnClient_VpnConfigTemplatePlanDetailGet_FullMethodName,
  15227. }
  15228. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15229. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailGet(ctx, req.(*VpnConfigTemplatePlanDetailGetReq))
  15230. }
  15231. return interceptor(ctx, in, info, handler)
  15232. }
  15233. func _GoVpnClient_VpnConfigTemplatePlanDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15234. in := new(VpnConfigTemplatePlanDetailListReq)
  15235. if err := dec(in); err != nil {
  15236. return nil, err
  15237. }
  15238. if interceptor == nil {
  15239. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailList(ctx, in)
  15240. }
  15241. info := &grpc.UnaryServerInfo{
  15242. Server: srv,
  15243. FullMethod: GoVpnClient_VpnConfigTemplatePlanDetailList_FullMethodName,
  15244. }
  15245. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15246. return srv.(GoVpnClientServer).VpnConfigTemplatePlanDetailList(ctx, req.(*VpnConfigTemplatePlanDetailListReq))
  15247. }
  15248. return interceptor(ctx, in, info, handler)
  15249. }
  15250. func _GoVpnClient_VpnServerPortAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15251. in := new(VpnServerPortAddReq)
  15252. if err := dec(in); err != nil {
  15253. return nil, err
  15254. }
  15255. if interceptor == nil {
  15256. return srv.(GoVpnClientServer).VpnServerPortAdd(ctx, in)
  15257. }
  15258. info := &grpc.UnaryServerInfo{
  15259. Server: srv,
  15260. FullMethod: GoVpnClient_VpnServerPortAdd_FullMethodName,
  15261. }
  15262. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15263. return srv.(GoVpnClientServer).VpnServerPortAdd(ctx, req.(*VpnServerPortAddReq))
  15264. }
  15265. return interceptor(ctx, in, info, handler)
  15266. }
  15267. func _GoVpnClient_VpnServerPortUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15268. in := new(VpnServerPortUpdateReq)
  15269. if err := dec(in); err != nil {
  15270. return nil, err
  15271. }
  15272. if interceptor == nil {
  15273. return srv.(GoVpnClientServer).VpnServerPortUpdate(ctx, in)
  15274. }
  15275. info := &grpc.UnaryServerInfo{
  15276. Server: srv,
  15277. FullMethod: GoVpnClient_VpnServerPortUpdate_FullMethodName,
  15278. }
  15279. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15280. return srv.(GoVpnClientServer).VpnServerPortUpdate(ctx, req.(*VpnServerPortUpdateReq))
  15281. }
  15282. return interceptor(ctx, in, info, handler)
  15283. }
  15284. func _GoVpnClient_VpnServerPortDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15285. in := new(VpnServerPortDelReq)
  15286. if err := dec(in); err != nil {
  15287. return nil, err
  15288. }
  15289. if interceptor == nil {
  15290. return srv.(GoVpnClientServer).VpnServerPortDel(ctx, in)
  15291. }
  15292. info := &grpc.UnaryServerInfo{
  15293. Server: srv,
  15294. FullMethod: GoVpnClient_VpnServerPortDel_FullMethodName,
  15295. }
  15296. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15297. return srv.(GoVpnClientServer).VpnServerPortDel(ctx, req.(*VpnServerPortDelReq))
  15298. }
  15299. return interceptor(ctx, in, info, handler)
  15300. }
  15301. func _GoVpnClient_VpnServerPortGet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15302. in := new(VpnServerPortGetReq)
  15303. if err := dec(in); err != nil {
  15304. return nil, err
  15305. }
  15306. if interceptor == nil {
  15307. return srv.(GoVpnClientServer).VpnServerPortGet(ctx, in)
  15308. }
  15309. info := &grpc.UnaryServerInfo{
  15310. Server: srv,
  15311. FullMethod: GoVpnClient_VpnServerPortGet_FullMethodName,
  15312. }
  15313. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15314. return srv.(GoVpnClientServer).VpnServerPortGet(ctx, req.(*VpnServerPortGetReq))
  15315. }
  15316. return interceptor(ctx, in, info, handler)
  15317. }
  15318. func _GoVpnClient_VpnServerPortList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15319. in := new(VpnServerPortListReq)
  15320. if err := dec(in); err != nil {
  15321. return nil, err
  15322. }
  15323. if interceptor == nil {
  15324. return srv.(GoVpnClientServer).VpnServerPortList(ctx, in)
  15325. }
  15326. info := &grpc.UnaryServerInfo{
  15327. Server: srv,
  15328. FullMethod: GoVpnClient_VpnServerPortList_FullMethodName,
  15329. }
  15330. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15331. return srv.(GoVpnClientServer).VpnServerPortList(ctx, req.(*VpnServerPortListReq))
  15332. }
  15333. return interceptor(ctx, in, info, handler)
  15334. }
  15335. func _GoVpnClient_VpnServerPortBatchAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  15336. in := new(VpnServerPortBatchAddReq)
  15337. if err := dec(in); err != nil {
  15338. return nil, err
  15339. }
  15340. if interceptor == nil {
  15341. return srv.(GoVpnClientServer).VpnServerPortBatchAdd(ctx, in)
  15342. }
  15343. info := &grpc.UnaryServerInfo{
  15344. Server: srv,
  15345. FullMethod: GoVpnClient_VpnServerPortBatchAdd_FullMethodName,
  15346. }
  15347. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  15348. return srv.(GoVpnClientServer).VpnServerPortBatchAdd(ctx, req.(*VpnServerPortBatchAddReq))
  15349. }
  15350. return interceptor(ctx, in, info, handler)
  15351. }
  15352. // GoVpnClient_ServiceDesc is the grpc.ServiceDesc for GoVpnClient service.
  15353. // It's only intended for direct use with grpc.RegisterService,
  15354. // and not to be introspected or modified (even as a copy)
  15355. var GoVpnClient_ServiceDesc = grpc.ServiceDesc{
  15356. ServiceName: "gorpc.GoVpnClient",
  15357. HandlerType: (*GoVpnClientServer)(nil),
  15358. Methods: []grpc.MethodDesc{
  15359. {
  15360. MethodName: "Ping",
  15361. Handler: _GoVpnClient_Ping_Handler,
  15362. },
  15363. {
  15364. MethodName: "Transaction",
  15365. Handler: _GoVpnClient_Transaction_Handler,
  15366. },
  15367. {
  15368. MethodName: "VpnTagAdd",
  15369. Handler: _GoVpnClient_VpnTagAdd_Handler,
  15370. },
  15371. {
  15372. MethodName: "VpnTagUpdate",
  15373. Handler: _GoVpnClient_VpnTagUpdate_Handler,
  15374. },
  15375. {
  15376. MethodName: "VpnTagDel",
  15377. Handler: _GoVpnClient_VpnTagDel_Handler,
  15378. },
  15379. {
  15380. MethodName: "VpnTagGet",
  15381. Handler: _GoVpnClient_VpnTagGet_Handler,
  15382. },
  15383. {
  15384. MethodName: "VpnTagList",
  15385. Handler: _GoVpnClient_VpnTagList_Handler,
  15386. },
  15387. {
  15388. MethodName: "VpnTagBatchAdd",
  15389. Handler: _GoVpnClient_VpnTagBatchAdd_Handler,
  15390. },
  15391. {
  15392. MethodName: "VpnTagBatchUpdate",
  15393. Handler: _GoVpnClient_VpnTagBatchUpdate_Handler,
  15394. },
  15395. {
  15396. MethodName: "VpnGroupAdd",
  15397. Handler: _GoVpnClient_VpnGroupAdd_Handler,
  15398. },
  15399. {
  15400. MethodName: "VpnGroupUpdate",
  15401. Handler: _GoVpnClient_VpnGroupUpdate_Handler,
  15402. },
  15403. {
  15404. MethodName: "VpnGroupDel",
  15405. Handler: _GoVpnClient_VpnGroupDel_Handler,
  15406. },
  15407. {
  15408. MethodName: "VpnGroupGet",
  15409. Handler: _GoVpnClient_VpnGroupGet_Handler,
  15410. },
  15411. {
  15412. MethodName: "VpnGroupList",
  15413. Handler: _GoVpnClient_VpnGroupList_Handler,
  15414. },
  15415. {
  15416. MethodName: "VpnGroupBatchAdd",
  15417. Handler: _GoVpnClient_VpnGroupBatchAdd_Handler,
  15418. },
  15419. {
  15420. MethodName: "VpnGroupBatchUpdate",
  15421. Handler: _GoVpnClient_VpnGroupBatchUpdate_Handler,
  15422. },
  15423. {
  15424. MethodName: "VpnGroupTagAdd",
  15425. Handler: _GoVpnClient_VpnGroupTagAdd_Handler,
  15426. },
  15427. {
  15428. MethodName: "VpnGroupTagUpdate",
  15429. Handler: _GoVpnClient_VpnGroupTagUpdate_Handler,
  15430. },
  15431. {
  15432. MethodName: "VpnGroupTagDel",
  15433. Handler: _GoVpnClient_VpnGroupTagDel_Handler,
  15434. },
  15435. {
  15436. MethodName: "VpnGroupTagGet",
  15437. Handler: _GoVpnClient_VpnGroupTagGet_Handler,
  15438. },
  15439. {
  15440. MethodName: "VpnGroupTagList",
  15441. Handler: _GoVpnClient_VpnGroupTagList_Handler,
  15442. },
  15443. {
  15444. MethodName: "VpnLocationAdd",
  15445. Handler: _GoVpnClient_VpnLocationAdd_Handler,
  15446. },
  15447. {
  15448. MethodName: "VpnLocationUpdate",
  15449. Handler: _GoVpnClient_VpnLocationUpdate_Handler,
  15450. },
  15451. {
  15452. MethodName: "VpnLocationDel",
  15453. Handler: _GoVpnClient_VpnLocationDel_Handler,
  15454. },
  15455. {
  15456. MethodName: "VpnLocationGet",
  15457. Handler: _GoVpnClient_VpnLocationGet_Handler,
  15458. },
  15459. {
  15460. MethodName: "VpnLocationList",
  15461. Handler: _GoVpnClient_VpnLocationList_Handler,
  15462. },
  15463. {
  15464. MethodName: "VpnLocationBatchAdd",
  15465. Handler: _GoVpnClient_VpnLocationBatchAdd_Handler,
  15466. },
  15467. {
  15468. MethodName: "VpnLocationBatchUpdate",
  15469. Handler: _GoVpnClient_VpnLocationBatchUpdate_Handler,
  15470. },
  15471. {
  15472. MethodName: "VpnServerAdd",
  15473. Handler: _GoVpnClient_VpnServerAdd_Handler,
  15474. },
  15475. {
  15476. MethodName: "VpnServerUpdate",
  15477. Handler: _GoVpnClient_VpnServerUpdate_Handler,
  15478. },
  15479. {
  15480. MethodName: "VpnServerDel",
  15481. Handler: _GoVpnClient_VpnServerDel_Handler,
  15482. },
  15483. {
  15484. MethodName: "VpnServerGet",
  15485. Handler: _GoVpnClient_VpnServerGet_Handler,
  15486. },
  15487. {
  15488. MethodName: "VpnServerExGet",
  15489. Handler: _GoVpnClient_VpnServerExGet_Handler,
  15490. },
  15491. {
  15492. MethodName: "VpnServerList",
  15493. Handler: _GoVpnClient_VpnServerList_Handler,
  15494. },
  15495. {
  15496. MethodName: "VpnServerExList",
  15497. Handler: _GoVpnClient_VpnServerExList_Handler,
  15498. },
  15499. {
  15500. MethodName: "VpnServerBatchAdd",
  15501. Handler: _GoVpnClient_VpnServerBatchAdd_Handler,
  15502. },
  15503. {
  15504. MethodName: "VpnServerBatchUpdate",
  15505. Handler: _GoVpnClient_VpnServerBatchUpdate_Handler,
  15506. },
  15507. {
  15508. MethodName: "VpnServerLocationAdd",
  15509. Handler: _GoVpnClient_VpnServerLocationAdd_Handler,
  15510. },
  15511. {
  15512. MethodName: "VpnServerLocationUpdate",
  15513. Handler: _GoVpnClient_VpnServerLocationUpdate_Handler,
  15514. },
  15515. {
  15516. MethodName: "VpnServerLocationDel",
  15517. Handler: _GoVpnClient_VpnServerLocationDel_Handler,
  15518. },
  15519. {
  15520. MethodName: "VpnServerLocationGet",
  15521. Handler: _GoVpnClient_VpnServerLocationGet_Handler,
  15522. },
  15523. {
  15524. MethodName: "VpnServerLocationList",
  15525. Handler: _GoVpnClient_VpnServerLocationList_Handler,
  15526. },
  15527. {
  15528. MethodName: "VpnWithIPAndPort",
  15529. Handler: _GoVpnClient_VpnWithIPAndPort_Handler,
  15530. },
  15531. {
  15532. MethodName: "VpnLocationServerCount",
  15533. Handler: _GoVpnClient_VpnLocationServerCount_Handler,
  15534. },
  15535. {
  15536. MethodName: "VpnProbeTaskAdd",
  15537. Handler: _GoVpnClient_VpnProbeTaskAdd_Handler,
  15538. },
  15539. {
  15540. MethodName: "VpnProbeTaskUpdate",
  15541. Handler: _GoVpnClient_VpnProbeTaskUpdate_Handler,
  15542. },
  15543. {
  15544. MethodName: "VpnProbeTaskList",
  15545. Handler: _GoVpnClient_VpnProbeTaskList_Handler,
  15546. },
  15547. {
  15548. MethodName: "VpnipWalledAdd",
  15549. Handler: _GoVpnClient_VpnipWalledAdd_Handler,
  15550. },
  15551. {
  15552. MethodName: "VpnipWalledUpdate",
  15553. Handler: _GoVpnClient_VpnipWalledUpdate_Handler,
  15554. },
  15555. {
  15556. MethodName: "VpnipWalledDel",
  15557. Handler: _GoVpnClient_VpnipWalledDel_Handler,
  15558. },
  15559. {
  15560. MethodName: "VpnipWalledGet",
  15561. Handler: _GoVpnClient_VpnipWalledGet_Handler,
  15562. },
  15563. {
  15564. MethodName: "VpnipWalledList",
  15565. Handler: _GoVpnClient_VpnipWalledList_Handler,
  15566. },
  15567. {
  15568. MethodName: "VpnipWalledBatchAdd",
  15569. Handler: _GoVpnClient_VpnipWalledBatchAdd_Handler,
  15570. },
  15571. {
  15572. MethodName: "VpnipWalledBatchUpdate",
  15573. Handler: _GoVpnClient_VpnipWalledBatchUpdate_Handler,
  15574. },
  15575. {
  15576. MethodName: "VpnipAdd",
  15577. Handler: _GoVpnClient_VpnipAdd_Handler,
  15578. },
  15579. {
  15580. MethodName: "VpnipExAdd",
  15581. Handler: _GoVpnClient_VpnipExAdd_Handler,
  15582. },
  15583. {
  15584. MethodName: "VpnipUpdate",
  15585. Handler: _GoVpnClient_VpnipUpdate_Handler,
  15586. },
  15587. {
  15588. MethodName: "VpnipExUpdate",
  15589. Handler: _GoVpnClient_VpnipExUpdate_Handler,
  15590. },
  15591. {
  15592. MethodName: "VpnipDel",
  15593. Handler: _GoVpnClient_VpnipDel_Handler,
  15594. },
  15595. {
  15596. MethodName: "VpnipGet",
  15597. Handler: _GoVpnClient_VpnipGet_Handler,
  15598. },
  15599. {
  15600. MethodName: "VpnipExGet",
  15601. Handler: _GoVpnClient_VpnipExGet_Handler,
  15602. },
  15603. {
  15604. MethodName: "VpnipList",
  15605. Handler: _GoVpnClient_VpnipList_Handler,
  15606. },
  15607. {
  15608. MethodName: "VpnipExList",
  15609. Handler: _GoVpnClient_VpnipExList_Handler,
  15610. },
  15611. {
  15612. MethodName: "VpnipBatchAdd",
  15613. Handler: _GoVpnClient_VpnipBatchAdd_Handler,
  15614. },
  15615. {
  15616. MethodName: "VpnipBatchUpdate",
  15617. Handler: _GoVpnClient_VpnipBatchUpdate_Handler,
  15618. },
  15619. {
  15620. MethodName: "VpnipExBatchAdd",
  15621. Handler: _GoVpnClient_VpnipExBatchAdd_Handler,
  15622. },
  15623. {
  15624. MethodName: "VpnipExBatchUpdate",
  15625. Handler: _GoVpnClient_VpnipExBatchUpdate_Handler,
  15626. },
  15627. {
  15628. MethodName: "VpnipRangeAdd",
  15629. Handler: _GoVpnClient_VpnipRangeAdd_Handler,
  15630. },
  15631. {
  15632. MethodName: "VpnipRangeExAdd",
  15633. Handler: _GoVpnClient_VpnipRangeExAdd_Handler,
  15634. },
  15635. {
  15636. MethodName: "VpnipRangeUpdate",
  15637. Handler: _GoVpnClient_VpnipRangeUpdate_Handler,
  15638. },
  15639. {
  15640. MethodName: "VpnipRangeExUpdate",
  15641. Handler: _GoVpnClient_VpnipRangeExUpdate_Handler,
  15642. },
  15643. {
  15644. MethodName: "VpnipRangeDel",
  15645. Handler: _GoVpnClient_VpnipRangeDel_Handler,
  15646. },
  15647. {
  15648. MethodName: "VpnipRangeGet",
  15649. Handler: _GoVpnClient_VpnipRangeGet_Handler,
  15650. },
  15651. {
  15652. MethodName: "VpnipRangeExGet",
  15653. Handler: _GoVpnClient_VpnipRangeExGet_Handler,
  15654. },
  15655. {
  15656. MethodName: "VpnipRangeList",
  15657. Handler: _GoVpnClient_VpnipRangeList_Handler,
  15658. },
  15659. {
  15660. MethodName: "VpnipRangeExList",
  15661. Handler: _GoVpnClient_VpnipRangeExList_Handler,
  15662. },
  15663. {
  15664. MethodName: "VpnipRangeBatchAdd",
  15665. Handler: _GoVpnClient_VpnipRangeBatchAdd_Handler,
  15666. },
  15667. {
  15668. MethodName: "VpnipRangeExBatchAdd",
  15669. Handler: _GoVpnClient_VpnipRangeExBatchAdd_Handler,
  15670. },
  15671. {
  15672. MethodName: "VpnipRangeBatchUpdate",
  15673. Handler: _GoVpnClient_VpnipRangeBatchUpdate_Handler,
  15674. },
  15675. {
  15676. MethodName: "VpnipRangeExBatchUpdate",
  15677. Handler: _GoVpnClient_VpnipRangeExBatchUpdate_Handler,
  15678. },
  15679. {
  15680. MethodName: "VpnipBindAdd",
  15681. Handler: _GoVpnClient_VpnipBindAdd_Handler,
  15682. },
  15683. {
  15684. MethodName: "VpnipBindUpdate",
  15685. Handler: _GoVpnClient_VpnipBindUpdate_Handler,
  15686. },
  15687. {
  15688. MethodName: "VpnipBindDel",
  15689. Handler: _GoVpnClient_VpnipBindDel_Handler,
  15690. },
  15691. {
  15692. MethodName: "VpnipBindGet",
  15693. Handler: _GoVpnClient_VpnipBindGet_Handler,
  15694. },
  15695. {
  15696. MethodName: "VpnipBindList",
  15697. Handler: _GoVpnClient_VpnipBindList_Handler,
  15698. },
  15699. {
  15700. MethodName: "VpnipBindBatchUpdate",
  15701. Handler: _GoVpnClient_VpnipBindBatchUpdate_Handler,
  15702. },
  15703. {
  15704. MethodName: "VpnipsBindServer",
  15705. Handler: _GoVpnClient_VpnipsBindServer_Handler,
  15706. },
  15707. {
  15708. MethodName: "VpnConfigTemplatePlanAdd",
  15709. Handler: _GoVpnClient_VpnConfigTemplatePlanAdd_Handler,
  15710. },
  15711. {
  15712. MethodName: "VpnConfigTemplatePlanUpdate",
  15713. Handler: _GoVpnClient_VpnConfigTemplatePlanUpdate_Handler,
  15714. },
  15715. {
  15716. MethodName: "VpnConfigTemplatePlanDel",
  15717. Handler: _GoVpnClient_VpnConfigTemplatePlanDel_Handler,
  15718. },
  15719. {
  15720. MethodName: "VpnConfigTemplatePlanGet",
  15721. Handler: _GoVpnClient_VpnConfigTemplatePlanGet_Handler,
  15722. },
  15723. {
  15724. MethodName: "VpnConfigTemplatePlanList",
  15725. Handler: _GoVpnClient_VpnConfigTemplatePlanList_Handler,
  15726. },
  15727. {
  15728. MethodName: "VpnConfigTemplatePlanDetailAdd",
  15729. Handler: _GoVpnClient_VpnConfigTemplatePlanDetailAdd_Handler,
  15730. },
  15731. {
  15732. MethodName: "VpnConfigTemplatePlanDetailUpdate",
  15733. Handler: _GoVpnClient_VpnConfigTemplatePlanDetailUpdate_Handler,
  15734. },
  15735. {
  15736. MethodName: "VpnConfigTemplatePlanDetailDel",
  15737. Handler: _GoVpnClient_VpnConfigTemplatePlanDetailDel_Handler,
  15738. },
  15739. {
  15740. MethodName: "VpnConfigTemplatePlanDetailGet",
  15741. Handler: _GoVpnClient_VpnConfigTemplatePlanDetailGet_Handler,
  15742. },
  15743. {
  15744. MethodName: "VpnConfigTemplatePlanDetailList",
  15745. Handler: _GoVpnClient_VpnConfigTemplatePlanDetailList_Handler,
  15746. },
  15747. {
  15748. MethodName: "VpnServerPortAdd",
  15749. Handler: _GoVpnClient_VpnServerPortAdd_Handler,
  15750. },
  15751. {
  15752. MethodName: "VpnServerPortUpdate",
  15753. Handler: _GoVpnClient_VpnServerPortUpdate_Handler,
  15754. },
  15755. {
  15756. MethodName: "VpnServerPortDel",
  15757. Handler: _GoVpnClient_VpnServerPortDel_Handler,
  15758. },
  15759. {
  15760. MethodName: "VpnServerPortGet",
  15761. Handler: _GoVpnClient_VpnServerPortGet_Handler,
  15762. },
  15763. {
  15764. MethodName: "VpnServerPortList",
  15765. Handler: _GoVpnClient_VpnServerPortList_Handler,
  15766. },
  15767. {
  15768. MethodName: "VpnServerPortBatchAdd",
  15769. Handler: _GoVpnClient_VpnServerPortBatchAdd_Handler,
  15770. },
  15771. },
  15772. Streams: []grpc.StreamDesc{},
  15773. Metadata: "gorpc.proto",
  15774. }