base_grpc.pb.go 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. package base
  3. import (
  4. context "context"
  5. grpc "google.golang.org/grpc"
  6. codes "google.golang.org/grpc/codes"
  7. status "google.golang.org/grpc/status"
  8. )
  9. // This is a compile-time assertion to ensure that this generated file
  10. // is compatible with the grpc package it is being compiled against.
  11. // Requires gRPC-Go v1.32.0 or later.
  12. const _ = grpc.SupportPackageIsVersion7
  13. // ApiClient is the client API for Api service.
  14. //
  15. // 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.
  16. type ApiClient interface {
  17. SignUp(ctx context.Context, in *SignUpRequest, opts ...grpc.CallOption) (*DefaultReply, error)
  18. SignIn(ctx context.Context, in *SignInRequest, opts ...grpc.CallOption) (*SignInReply, error)
  19. // rpc SignInWithPhone (SignInRequest) returns (SignInReply) {} // 缺少短信验证码接口
  20. SignOut(ctx context.Context, in *DefaultRequest, opts ...grpc.CallOption) (*DefaultReply, error)
  21. GenVerifyImage(ctx context.Context, in *GenVerifyImageRequest, opts ...grpc.CallOption) (*GenVerifyImageReply, error)
  22. // 下拉框接口
  23. SelectHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  24. AcrossUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  25. VipUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  26. TempVipUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  27. ShopSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  28. ManageableSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  29. ClassSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  30. ScreenSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  31. // 商家信息管理
  32. ManageableShopList(ctx context.Context, in *ShopListRequest, opts ...grpc.CallOption) (*ShopListReply, error)
  33. GetShopNavi(ctx context.Context, in *GetShopNaviRequest, opts ...grpc.CallOption) (*GetShopNaviReply, error)
  34. ShopGroupQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  35. ShopGroupAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  36. ShopGroupEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  37. ShopGroupStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  38. ShopGroupDetailsQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  39. ShopGroupDetailsAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  40. ShopVenueQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  41. ShopVenueAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  42. ShopVenueEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  43. ShopVenueStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  44. ShopVenueEquipQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  45. ShopVenueEquipAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  46. ShopVenueEquipEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  47. ShopVenueEquipStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  48. ShopVenueEquipStatusDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  49. ShopManagerQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  50. ShopManagerAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  51. ShopManagerEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  52. ShopManagerStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  53. ShopConfigQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  54. ShopConfigEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  55. // 商家会员管理
  56. ShopVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  57. ShopVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  58. ShopVipUserEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  59. ShopVipUserStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  60. AcrossVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  61. AcrossVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  62. AcrossVipUserDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  63. VipPhoneQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  64. VipMainPhoneCheck(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  65. VipOtherPhoneAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  66. VipOtherPhoneEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  67. VipOtherPhoneStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  68. TempVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  69. TempVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  70. TempVipUserEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  71. TempVipUserStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  72. VipHourEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  73. VipConsumeListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  74. VipConsumeDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  75. VipClassRelationEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  76. VipHourChgQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  77. GetOverlayImgQiNiuToken(ctx context.Context, in *GetOverlayImgRequest, opts ...grpc.CallOption) (*QiNiuTokenReply, error)
  78. GetSimpleQiNiuToken(ctx context.Context, in *DefaultRequest, opts ...grpc.CallOption) (*QiNiuTokenReply, error)
  79. // 商家课程管理
  80. ClassQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  81. ClassAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  82. ClassEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  83. ClassStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  84. ClassColorEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  85. ClassWxVisibleEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  86. ClassVipEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  87. SttPlanBasicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  88. SttPlanBasicAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  89. SttPlanBasicEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  90. SttPlanBasicShopEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  91. SttPlanBasicStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  92. SttPlanBasicPublish(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  93. SttPlanPreview(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  94. SttPlanCopy(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  95. SttPlanDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  96. SttPlanDetailBatchSave(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  97. STTBasicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  98. STTBasicAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  99. STTBasicEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  100. STTBasicStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  101. STTBasicPreview(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  102. STTBasicCopy(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  103. STTBasicOfflineEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  104. STTDetailListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  105. STTBasicDetailBatchSave(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  106. STTDetailAllowDelCheck(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  107. // 商家上下课管理
  108. CourseDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  109. // 商家预约管理
  110. OrderListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  111. OrderAddByManager(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  112. OrderCancelByManager(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  113. OrderStatistics(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  114. ClassOrderQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  115. VipUserOrderQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  116. // 心率
  117. HrSensorsPublicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  118. HrSensorsPvtQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  119. AddHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  120. AddPvtHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  121. EditHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  122. HrSensorsDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  123. PKGroupChg(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  124. BindHrSensor(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  125. UnBindHrSensor(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
  126. }
  127. type apiClient struct {
  128. cc grpc.ClientConnInterface
  129. }
  130. func NewApiClient(cc grpc.ClientConnInterface) ApiClient {
  131. return &apiClient{cc}
  132. }
  133. func (c *apiClient) SignUp(ctx context.Context, in *SignUpRequest, opts ...grpc.CallOption) (*DefaultReply, error) {
  134. out := new(DefaultReply)
  135. err := c.cc.Invoke(ctx, "/base.Api/SignUp", in, out, opts...)
  136. if err != nil {
  137. return nil, err
  138. }
  139. return out, nil
  140. }
  141. func (c *apiClient) SignIn(ctx context.Context, in *SignInRequest, opts ...grpc.CallOption) (*SignInReply, error) {
  142. out := new(SignInReply)
  143. err := c.cc.Invoke(ctx, "/base.Api/SignIn", in, out, opts...)
  144. if err != nil {
  145. return nil, err
  146. }
  147. return out, nil
  148. }
  149. func (c *apiClient) SignOut(ctx context.Context, in *DefaultRequest, opts ...grpc.CallOption) (*DefaultReply, error) {
  150. out := new(DefaultReply)
  151. err := c.cc.Invoke(ctx, "/base.Api/SignOut", in, out, opts...)
  152. if err != nil {
  153. return nil, err
  154. }
  155. return out, nil
  156. }
  157. func (c *apiClient) GenVerifyImage(ctx context.Context, in *GenVerifyImageRequest, opts ...grpc.CallOption) (*GenVerifyImageReply, error) {
  158. out := new(GenVerifyImageReply)
  159. err := c.cc.Invoke(ctx, "/base.Api/GenVerifyImage", in, out, opts...)
  160. if err != nil {
  161. return nil, err
  162. }
  163. return out, nil
  164. }
  165. func (c *apiClient) SelectHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  166. out := new(StandardReply)
  167. err := c.cc.Invoke(ctx, "/base.Api/SelectHrSensors", in, out, opts...)
  168. if err != nil {
  169. return nil, err
  170. }
  171. return out, nil
  172. }
  173. func (c *apiClient) AcrossUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  174. out := new(StandardReply)
  175. err := c.cc.Invoke(ctx, "/base.Api/AcrossUserSimpleQuery", in, out, opts...)
  176. if err != nil {
  177. return nil, err
  178. }
  179. return out, nil
  180. }
  181. func (c *apiClient) VipUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  182. out := new(StandardReply)
  183. err := c.cc.Invoke(ctx, "/base.Api/VipUserSimpleQuery", in, out, opts...)
  184. if err != nil {
  185. return nil, err
  186. }
  187. return out, nil
  188. }
  189. func (c *apiClient) TempVipUserSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  190. out := new(StandardReply)
  191. err := c.cc.Invoke(ctx, "/base.Api/TempVipUserSimpleQuery", in, out, opts...)
  192. if err != nil {
  193. return nil, err
  194. }
  195. return out, nil
  196. }
  197. func (c *apiClient) ShopSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  198. out := new(StandardReply)
  199. err := c.cc.Invoke(ctx, "/base.Api/ShopSimpleQuery", in, out, opts...)
  200. if err != nil {
  201. return nil, err
  202. }
  203. return out, nil
  204. }
  205. func (c *apiClient) ManageableSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  206. out := new(StandardReply)
  207. err := c.cc.Invoke(ctx, "/base.Api/ManageableSimpleQuery", in, out, opts...)
  208. if err != nil {
  209. return nil, err
  210. }
  211. return out, nil
  212. }
  213. func (c *apiClient) ClassSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  214. out := new(StandardReply)
  215. err := c.cc.Invoke(ctx, "/base.Api/ClassSimpleQuery", in, out, opts...)
  216. if err != nil {
  217. return nil, err
  218. }
  219. return out, nil
  220. }
  221. func (c *apiClient) ScreenSimpleQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  222. out := new(StandardReply)
  223. err := c.cc.Invoke(ctx, "/base.Api/ScreenSimpleQuery", in, out, opts...)
  224. if err != nil {
  225. return nil, err
  226. }
  227. return out, nil
  228. }
  229. func (c *apiClient) ManageableShopList(ctx context.Context, in *ShopListRequest, opts ...grpc.CallOption) (*ShopListReply, error) {
  230. out := new(ShopListReply)
  231. err := c.cc.Invoke(ctx, "/base.Api/ManageableShopList", in, out, opts...)
  232. if err != nil {
  233. return nil, err
  234. }
  235. return out, nil
  236. }
  237. func (c *apiClient) GetShopNavi(ctx context.Context, in *GetShopNaviRequest, opts ...grpc.CallOption) (*GetShopNaviReply, error) {
  238. out := new(GetShopNaviReply)
  239. err := c.cc.Invoke(ctx, "/base.Api/GetShopNavi", in, out, opts...)
  240. if err != nil {
  241. return nil, err
  242. }
  243. return out, nil
  244. }
  245. func (c *apiClient) ShopGroupQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  246. out := new(StandardReply)
  247. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupQuery", in, out, opts...)
  248. if err != nil {
  249. return nil, err
  250. }
  251. return out, nil
  252. }
  253. func (c *apiClient) ShopGroupAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  254. out := new(StandardReply)
  255. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupAdd", in, out, opts...)
  256. if err != nil {
  257. return nil, err
  258. }
  259. return out, nil
  260. }
  261. func (c *apiClient) ShopGroupEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  262. out := new(StandardReply)
  263. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupEdit", in, out, opts...)
  264. if err != nil {
  265. return nil, err
  266. }
  267. return out, nil
  268. }
  269. func (c *apiClient) ShopGroupStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  270. out := new(StandardReply)
  271. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupStatusEdit", in, out, opts...)
  272. if err != nil {
  273. return nil, err
  274. }
  275. return out, nil
  276. }
  277. func (c *apiClient) ShopGroupDetailsQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  278. out := new(StandardReply)
  279. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupDetailsQuery", in, out, opts...)
  280. if err != nil {
  281. return nil, err
  282. }
  283. return out, nil
  284. }
  285. func (c *apiClient) ShopGroupDetailsAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  286. out := new(StandardReply)
  287. err := c.cc.Invoke(ctx, "/base.Api/ShopGroupDetailsAdd", in, out, opts...)
  288. if err != nil {
  289. return nil, err
  290. }
  291. return out, nil
  292. }
  293. func (c *apiClient) ShopVenueQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  294. out := new(StandardReply)
  295. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueQuery", in, out, opts...)
  296. if err != nil {
  297. return nil, err
  298. }
  299. return out, nil
  300. }
  301. func (c *apiClient) ShopVenueAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  302. out := new(StandardReply)
  303. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueAdd", in, out, opts...)
  304. if err != nil {
  305. return nil, err
  306. }
  307. return out, nil
  308. }
  309. func (c *apiClient) ShopVenueEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  310. out := new(StandardReply)
  311. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEdit", in, out, opts...)
  312. if err != nil {
  313. return nil, err
  314. }
  315. return out, nil
  316. }
  317. func (c *apiClient) ShopVenueStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  318. out := new(StandardReply)
  319. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueStatusEdit", in, out, opts...)
  320. if err != nil {
  321. return nil, err
  322. }
  323. return out, nil
  324. }
  325. func (c *apiClient) ShopVenueEquipQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  326. out := new(StandardReply)
  327. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEquipQuery", in, out, opts...)
  328. if err != nil {
  329. return nil, err
  330. }
  331. return out, nil
  332. }
  333. func (c *apiClient) ShopVenueEquipAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  334. out := new(StandardReply)
  335. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEquipAdd", in, out, opts...)
  336. if err != nil {
  337. return nil, err
  338. }
  339. return out, nil
  340. }
  341. func (c *apiClient) ShopVenueEquipEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  342. out := new(StandardReply)
  343. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEquipEdit", in, out, opts...)
  344. if err != nil {
  345. return nil, err
  346. }
  347. return out, nil
  348. }
  349. func (c *apiClient) ShopVenueEquipStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  350. out := new(StandardReply)
  351. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEquipStatusEdit", in, out, opts...)
  352. if err != nil {
  353. return nil, err
  354. }
  355. return out, nil
  356. }
  357. func (c *apiClient) ShopVenueEquipStatusDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  358. out := new(StandardReply)
  359. err := c.cc.Invoke(ctx, "/base.Api/ShopVenueEquipStatusDel", in, out, opts...)
  360. if err != nil {
  361. return nil, err
  362. }
  363. return out, nil
  364. }
  365. func (c *apiClient) ShopManagerQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  366. out := new(StandardReply)
  367. err := c.cc.Invoke(ctx, "/base.Api/ShopManagerQuery", in, out, opts...)
  368. if err != nil {
  369. return nil, err
  370. }
  371. return out, nil
  372. }
  373. func (c *apiClient) ShopManagerAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  374. out := new(StandardReply)
  375. err := c.cc.Invoke(ctx, "/base.Api/ShopManagerAdd", in, out, opts...)
  376. if err != nil {
  377. return nil, err
  378. }
  379. return out, nil
  380. }
  381. func (c *apiClient) ShopManagerEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  382. out := new(StandardReply)
  383. err := c.cc.Invoke(ctx, "/base.Api/ShopManagerEdit", in, out, opts...)
  384. if err != nil {
  385. return nil, err
  386. }
  387. return out, nil
  388. }
  389. func (c *apiClient) ShopManagerStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  390. out := new(StandardReply)
  391. err := c.cc.Invoke(ctx, "/base.Api/ShopManagerStatusEdit", in, out, opts...)
  392. if err != nil {
  393. return nil, err
  394. }
  395. return out, nil
  396. }
  397. func (c *apiClient) ShopConfigQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  398. out := new(StandardReply)
  399. err := c.cc.Invoke(ctx, "/base.Api/ShopConfigQuery", in, out, opts...)
  400. if err != nil {
  401. return nil, err
  402. }
  403. return out, nil
  404. }
  405. func (c *apiClient) ShopConfigEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  406. out := new(StandardReply)
  407. err := c.cc.Invoke(ctx, "/base.Api/ShopConfigEdit", in, out, opts...)
  408. if err != nil {
  409. return nil, err
  410. }
  411. return out, nil
  412. }
  413. func (c *apiClient) ShopVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  414. out := new(StandardReply)
  415. err := c.cc.Invoke(ctx, "/base.Api/ShopVipUserQuery", in, out, opts...)
  416. if err != nil {
  417. return nil, err
  418. }
  419. return out, nil
  420. }
  421. func (c *apiClient) ShopVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  422. out := new(StandardReply)
  423. err := c.cc.Invoke(ctx, "/base.Api/ShopVipUserAdd", in, out, opts...)
  424. if err != nil {
  425. return nil, err
  426. }
  427. return out, nil
  428. }
  429. func (c *apiClient) ShopVipUserEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  430. out := new(StandardReply)
  431. err := c.cc.Invoke(ctx, "/base.Api/ShopVipUserEdit", in, out, opts...)
  432. if err != nil {
  433. return nil, err
  434. }
  435. return out, nil
  436. }
  437. func (c *apiClient) ShopVipUserStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  438. out := new(StandardReply)
  439. err := c.cc.Invoke(ctx, "/base.Api/ShopVipUserStatusEdit", in, out, opts...)
  440. if err != nil {
  441. return nil, err
  442. }
  443. return out, nil
  444. }
  445. func (c *apiClient) AcrossVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  446. out := new(StandardReply)
  447. err := c.cc.Invoke(ctx, "/base.Api/AcrossVipUserQuery", in, out, opts...)
  448. if err != nil {
  449. return nil, err
  450. }
  451. return out, nil
  452. }
  453. func (c *apiClient) AcrossVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  454. out := new(StandardReply)
  455. err := c.cc.Invoke(ctx, "/base.Api/AcrossVipUserAdd", in, out, opts...)
  456. if err != nil {
  457. return nil, err
  458. }
  459. return out, nil
  460. }
  461. func (c *apiClient) AcrossVipUserDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  462. out := new(StandardReply)
  463. err := c.cc.Invoke(ctx, "/base.Api/AcrossVipUserDel", in, out, opts...)
  464. if err != nil {
  465. return nil, err
  466. }
  467. return out, nil
  468. }
  469. func (c *apiClient) VipPhoneQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  470. out := new(StandardReply)
  471. err := c.cc.Invoke(ctx, "/base.Api/VipPhoneQuery", in, out, opts...)
  472. if err != nil {
  473. return nil, err
  474. }
  475. return out, nil
  476. }
  477. func (c *apiClient) VipMainPhoneCheck(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  478. out := new(StandardReply)
  479. err := c.cc.Invoke(ctx, "/base.Api/VipMainPhoneCheck", in, out, opts...)
  480. if err != nil {
  481. return nil, err
  482. }
  483. return out, nil
  484. }
  485. func (c *apiClient) VipOtherPhoneAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  486. out := new(StandardReply)
  487. err := c.cc.Invoke(ctx, "/base.Api/VipOtherPhoneAdd", in, out, opts...)
  488. if err != nil {
  489. return nil, err
  490. }
  491. return out, nil
  492. }
  493. func (c *apiClient) VipOtherPhoneEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  494. out := new(StandardReply)
  495. err := c.cc.Invoke(ctx, "/base.Api/VipOtherPhoneEdit", in, out, opts...)
  496. if err != nil {
  497. return nil, err
  498. }
  499. return out, nil
  500. }
  501. func (c *apiClient) VipOtherPhoneStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  502. out := new(StandardReply)
  503. err := c.cc.Invoke(ctx, "/base.Api/VipOtherPhoneStatusEdit", in, out, opts...)
  504. if err != nil {
  505. return nil, err
  506. }
  507. return out, nil
  508. }
  509. func (c *apiClient) TempVipUserQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  510. out := new(StandardReply)
  511. err := c.cc.Invoke(ctx, "/base.Api/TempVipUserQuery", in, out, opts...)
  512. if err != nil {
  513. return nil, err
  514. }
  515. return out, nil
  516. }
  517. func (c *apiClient) TempVipUserAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  518. out := new(StandardReply)
  519. err := c.cc.Invoke(ctx, "/base.Api/TempVipUserAdd", in, out, opts...)
  520. if err != nil {
  521. return nil, err
  522. }
  523. return out, nil
  524. }
  525. func (c *apiClient) TempVipUserEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  526. out := new(StandardReply)
  527. err := c.cc.Invoke(ctx, "/base.Api/TempVipUserEdit", in, out, opts...)
  528. if err != nil {
  529. return nil, err
  530. }
  531. return out, nil
  532. }
  533. func (c *apiClient) TempVipUserStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  534. out := new(StandardReply)
  535. err := c.cc.Invoke(ctx, "/base.Api/TempVipUserStatusEdit", in, out, opts...)
  536. if err != nil {
  537. return nil, err
  538. }
  539. return out, nil
  540. }
  541. func (c *apiClient) VipHourEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  542. out := new(StandardReply)
  543. err := c.cc.Invoke(ctx, "/base.Api/VipHourEdit", in, out, opts...)
  544. if err != nil {
  545. return nil, err
  546. }
  547. return out, nil
  548. }
  549. func (c *apiClient) VipConsumeListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  550. out := new(StandardReply)
  551. err := c.cc.Invoke(ctx, "/base.Api/VipConsumeListQuery", in, out, opts...)
  552. if err != nil {
  553. return nil, err
  554. }
  555. return out, nil
  556. }
  557. func (c *apiClient) VipConsumeDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  558. out := new(StandardReply)
  559. err := c.cc.Invoke(ctx, "/base.Api/VipConsumeDetailQuery", in, out, opts...)
  560. if err != nil {
  561. return nil, err
  562. }
  563. return out, nil
  564. }
  565. func (c *apiClient) VipClassRelationEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  566. out := new(StandardReply)
  567. err := c.cc.Invoke(ctx, "/base.Api/VipClassRelationEdit", in, out, opts...)
  568. if err != nil {
  569. return nil, err
  570. }
  571. return out, nil
  572. }
  573. func (c *apiClient) VipHourChgQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  574. out := new(StandardReply)
  575. err := c.cc.Invoke(ctx, "/base.Api/VipHourChgQuery", in, out, opts...)
  576. if err != nil {
  577. return nil, err
  578. }
  579. return out, nil
  580. }
  581. func (c *apiClient) GetOverlayImgQiNiuToken(ctx context.Context, in *GetOverlayImgRequest, opts ...grpc.CallOption) (*QiNiuTokenReply, error) {
  582. out := new(QiNiuTokenReply)
  583. err := c.cc.Invoke(ctx, "/base.Api/GetOverlayImgQiNiuToken", in, out, opts...)
  584. if err != nil {
  585. return nil, err
  586. }
  587. return out, nil
  588. }
  589. func (c *apiClient) GetSimpleQiNiuToken(ctx context.Context, in *DefaultRequest, opts ...grpc.CallOption) (*QiNiuTokenReply, error) {
  590. out := new(QiNiuTokenReply)
  591. err := c.cc.Invoke(ctx, "/base.Api/GetSimpleQiNiuToken", in, out, opts...)
  592. if err != nil {
  593. return nil, err
  594. }
  595. return out, nil
  596. }
  597. func (c *apiClient) ClassQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  598. out := new(StandardReply)
  599. err := c.cc.Invoke(ctx, "/base.Api/ClassQuery", in, out, opts...)
  600. if err != nil {
  601. return nil, err
  602. }
  603. return out, nil
  604. }
  605. func (c *apiClient) ClassAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  606. out := new(StandardReply)
  607. err := c.cc.Invoke(ctx, "/base.Api/ClassAdd", in, out, opts...)
  608. if err != nil {
  609. return nil, err
  610. }
  611. return out, nil
  612. }
  613. func (c *apiClient) ClassEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  614. out := new(StandardReply)
  615. err := c.cc.Invoke(ctx, "/base.Api/ClassEdit", in, out, opts...)
  616. if err != nil {
  617. return nil, err
  618. }
  619. return out, nil
  620. }
  621. func (c *apiClient) ClassStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  622. out := new(StandardReply)
  623. err := c.cc.Invoke(ctx, "/base.Api/ClassStatusEdit", in, out, opts...)
  624. if err != nil {
  625. return nil, err
  626. }
  627. return out, nil
  628. }
  629. func (c *apiClient) ClassColorEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  630. out := new(StandardReply)
  631. err := c.cc.Invoke(ctx, "/base.Api/ClassColorEdit", in, out, opts...)
  632. if err != nil {
  633. return nil, err
  634. }
  635. return out, nil
  636. }
  637. func (c *apiClient) ClassWxVisibleEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  638. out := new(StandardReply)
  639. err := c.cc.Invoke(ctx, "/base.Api/ClassWxVisibleEdit", in, out, opts...)
  640. if err != nil {
  641. return nil, err
  642. }
  643. return out, nil
  644. }
  645. func (c *apiClient) ClassVipEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  646. out := new(StandardReply)
  647. err := c.cc.Invoke(ctx, "/base.Api/ClassVipEdit", in, out, opts...)
  648. if err != nil {
  649. return nil, err
  650. }
  651. return out, nil
  652. }
  653. func (c *apiClient) SttPlanBasicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  654. out := new(StandardReply)
  655. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicQuery", in, out, opts...)
  656. if err != nil {
  657. return nil, err
  658. }
  659. return out, nil
  660. }
  661. func (c *apiClient) SttPlanBasicAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  662. out := new(StandardReply)
  663. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicAdd", in, out, opts...)
  664. if err != nil {
  665. return nil, err
  666. }
  667. return out, nil
  668. }
  669. func (c *apiClient) SttPlanBasicEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  670. out := new(StandardReply)
  671. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicEdit", in, out, opts...)
  672. if err != nil {
  673. return nil, err
  674. }
  675. return out, nil
  676. }
  677. func (c *apiClient) SttPlanBasicShopEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  678. out := new(StandardReply)
  679. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicShopEdit", in, out, opts...)
  680. if err != nil {
  681. return nil, err
  682. }
  683. return out, nil
  684. }
  685. func (c *apiClient) SttPlanBasicStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  686. out := new(StandardReply)
  687. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicStatusEdit", in, out, opts...)
  688. if err != nil {
  689. return nil, err
  690. }
  691. return out, nil
  692. }
  693. func (c *apiClient) SttPlanBasicPublish(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  694. out := new(StandardReply)
  695. err := c.cc.Invoke(ctx, "/base.Api/SttPlanBasicPublish", in, out, opts...)
  696. if err != nil {
  697. return nil, err
  698. }
  699. return out, nil
  700. }
  701. func (c *apiClient) SttPlanPreview(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  702. out := new(StandardReply)
  703. err := c.cc.Invoke(ctx, "/base.Api/SttPlanPreview", in, out, opts...)
  704. if err != nil {
  705. return nil, err
  706. }
  707. return out, nil
  708. }
  709. func (c *apiClient) SttPlanCopy(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  710. out := new(StandardReply)
  711. err := c.cc.Invoke(ctx, "/base.Api/SttPlanCopy", in, out, opts...)
  712. if err != nil {
  713. return nil, err
  714. }
  715. return out, nil
  716. }
  717. func (c *apiClient) SttPlanDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  718. out := new(StandardReply)
  719. err := c.cc.Invoke(ctx, "/base.Api/SttPlanDetailQuery", in, out, opts...)
  720. if err != nil {
  721. return nil, err
  722. }
  723. return out, nil
  724. }
  725. func (c *apiClient) SttPlanDetailBatchSave(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  726. out := new(StandardReply)
  727. err := c.cc.Invoke(ctx, "/base.Api/SttPlanDetailBatchSave", in, out, opts...)
  728. if err != nil {
  729. return nil, err
  730. }
  731. return out, nil
  732. }
  733. func (c *apiClient) STTBasicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  734. out := new(StandardReply)
  735. err := c.cc.Invoke(ctx, "/base.Api/STTBasicQuery", in, out, opts...)
  736. if err != nil {
  737. return nil, err
  738. }
  739. return out, nil
  740. }
  741. func (c *apiClient) STTBasicAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  742. out := new(StandardReply)
  743. err := c.cc.Invoke(ctx, "/base.Api/STTBasicAdd", in, out, opts...)
  744. if err != nil {
  745. return nil, err
  746. }
  747. return out, nil
  748. }
  749. func (c *apiClient) STTBasicEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  750. out := new(StandardReply)
  751. err := c.cc.Invoke(ctx, "/base.Api/STTBasicEdit", in, out, opts...)
  752. if err != nil {
  753. return nil, err
  754. }
  755. return out, nil
  756. }
  757. func (c *apiClient) STTBasicStatusEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  758. out := new(StandardReply)
  759. err := c.cc.Invoke(ctx, "/base.Api/STTBasicStatusEdit", in, out, opts...)
  760. if err != nil {
  761. return nil, err
  762. }
  763. return out, nil
  764. }
  765. func (c *apiClient) STTBasicPreview(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  766. out := new(StandardReply)
  767. err := c.cc.Invoke(ctx, "/base.Api/STTBasicPreview", in, out, opts...)
  768. if err != nil {
  769. return nil, err
  770. }
  771. return out, nil
  772. }
  773. func (c *apiClient) STTBasicCopy(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  774. out := new(StandardReply)
  775. err := c.cc.Invoke(ctx, "/base.Api/STTBasicCopy", in, out, opts...)
  776. if err != nil {
  777. return nil, err
  778. }
  779. return out, nil
  780. }
  781. func (c *apiClient) STTBasicOfflineEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  782. out := new(StandardReply)
  783. err := c.cc.Invoke(ctx, "/base.Api/STTBasicOfflineEdit", in, out, opts...)
  784. if err != nil {
  785. return nil, err
  786. }
  787. return out, nil
  788. }
  789. func (c *apiClient) STTDetailListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  790. out := new(StandardReply)
  791. err := c.cc.Invoke(ctx, "/base.Api/STTDetailListQuery", in, out, opts...)
  792. if err != nil {
  793. return nil, err
  794. }
  795. return out, nil
  796. }
  797. func (c *apiClient) STTBasicDetailBatchSave(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  798. out := new(StandardReply)
  799. err := c.cc.Invoke(ctx, "/base.Api/STTBasicDetailBatchSave", in, out, opts...)
  800. if err != nil {
  801. return nil, err
  802. }
  803. return out, nil
  804. }
  805. func (c *apiClient) STTDetailAllowDelCheck(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  806. out := new(StandardReply)
  807. err := c.cc.Invoke(ctx, "/base.Api/STTDetailAllowDelCheck", in, out, opts...)
  808. if err != nil {
  809. return nil, err
  810. }
  811. return out, nil
  812. }
  813. func (c *apiClient) CourseDetailQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  814. out := new(StandardReply)
  815. err := c.cc.Invoke(ctx, "/base.Api/CourseDetailQuery", in, out, opts...)
  816. if err != nil {
  817. return nil, err
  818. }
  819. return out, nil
  820. }
  821. func (c *apiClient) OrderListQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  822. out := new(StandardReply)
  823. err := c.cc.Invoke(ctx, "/base.Api/OrderListQuery", in, out, opts...)
  824. if err != nil {
  825. return nil, err
  826. }
  827. return out, nil
  828. }
  829. func (c *apiClient) OrderAddByManager(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  830. out := new(StandardReply)
  831. err := c.cc.Invoke(ctx, "/base.Api/OrderAddByManager", in, out, opts...)
  832. if err != nil {
  833. return nil, err
  834. }
  835. return out, nil
  836. }
  837. func (c *apiClient) OrderCancelByManager(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  838. out := new(StandardReply)
  839. err := c.cc.Invoke(ctx, "/base.Api/OrderCancelByManager", in, out, opts...)
  840. if err != nil {
  841. return nil, err
  842. }
  843. return out, nil
  844. }
  845. func (c *apiClient) OrderStatistics(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  846. out := new(StandardReply)
  847. err := c.cc.Invoke(ctx, "/base.Api/OrderStatistics", in, out, opts...)
  848. if err != nil {
  849. return nil, err
  850. }
  851. return out, nil
  852. }
  853. func (c *apiClient) ClassOrderQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  854. out := new(StandardReply)
  855. err := c.cc.Invoke(ctx, "/base.Api/ClassOrderQuery", in, out, opts...)
  856. if err != nil {
  857. return nil, err
  858. }
  859. return out, nil
  860. }
  861. func (c *apiClient) VipUserOrderQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  862. out := new(StandardReply)
  863. err := c.cc.Invoke(ctx, "/base.Api/VipUserOrderQuery", in, out, opts...)
  864. if err != nil {
  865. return nil, err
  866. }
  867. return out, nil
  868. }
  869. func (c *apiClient) HrSensorsPublicQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  870. out := new(StandardReply)
  871. err := c.cc.Invoke(ctx, "/base.Api/HrSensorsPublicQuery", in, out, opts...)
  872. if err != nil {
  873. return nil, err
  874. }
  875. return out, nil
  876. }
  877. func (c *apiClient) HrSensorsPvtQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  878. out := new(StandardReply)
  879. err := c.cc.Invoke(ctx, "/base.Api/HrSensorsPvtQuery", in, out, opts...)
  880. if err != nil {
  881. return nil, err
  882. }
  883. return out, nil
  884. }
  885. func (c *apiClient) AddHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  886. out := new(StandardReply)
  887. err := c.cc.Invoke(ctx, "/base.Api/AddHrSensors", in, out, opts...)
  888. if err != nil {
  889. return nil, err
  890. }
  891. return out, nil
  892. }
  893. func (c *apiClient) AddPvtHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  894. out := new(StandardReply)
  895. err := c.cc.Invoke(ctx, "/base.Api/AddPvtHrSensors", in, out, opts...)
  896. if err != nil {
  897. return nil, err
  898. }
  899. return out, nil
  900. }
  901. func (c *apiClient) EditHrSensors(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  902. out := new(StandardReply)
  903. err := c.cc.Invoke(ctx, "/base.Api/EditHrSensors", in, out, opts...)
  904. if err != nil {
  905. return nil, err
  906. }
  907. return out, nil
  908. }
  909. func (c *apiClient) HrSensorsDel(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  910. out := new(StandardReply)
  911. err := c.cc.Invoke(ctx, "/base.Api/HrSensorsDel", in, out, opts...)
  912. if err != nil {
  913. return nil, err
  914. }
  915. return out, nil
  916. }
  917. func (c *apiClient) PKGroupChg(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  918. out := new(StandardReply)
  919. err := c.cc.Invoke(ctx, "/base.Api/PKGroupChg", in, out, opts...)
  920. if err != nil {
  921. return nil, err
  922. }
  923. return out, nil
  924. }
  925. func (c *apiClient) BindHrSensor(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  926. out := new(StandardReply)
  927. err := c.cc.Invoke(ctx, "/base.Api/BindHrSensor", in, out, opts...)
  928. if err != nil {
  929. return nil, err
  930. }
  931. return out, nil
  932. }
  933. func (c *apiClient) UnBindHrSensor(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
  934. out := new(StandardReply)
  935. err := c.cc.Invoke(ctx, "/base.Api/UnBindHrSensor", in, out, opts...)
  936. if err != nil {
  937. return nil, err
  938. }
  939. return out, nil
  940. }
  941. // ApiServer is the server API for Api service.
  942. // All implementations must embed UnimplementedApiServer
  943. // for forward compatibility
  944. type ApiServer interface {
  945. SignUp(context.Context, *SignUpRequest) (*DefaultReply, error)
  946. SignIn(context.Context, *SignInRequest) (*SignInReply, error)
  947. // rpc SignInWithPhone (SignInRequest) returns (SignInReply) {} // 缺少短信验证码接口
  948. SignOut(context.Context, *DefaultRequest) (*DefaultReply, error)
  949. GenVerifyImage(context.Context, *GenVerifyImageRequest) (*GenVerifyImageReply, error)
  950. // 下拉框接口
  951. SelectHrSensors(context.Context, *StandardRequest) (*StandardReply, error)
  952. AcrossUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  953. VipUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  954. TempVipUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  955. ShopSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  956. ManageableSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  957. ClassSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  958. ScreenSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error)
  959. // 商家信息管理
  960. ManageableShopList(context.Context, *ShopListRequest) (*ShopListReply, error)
  961. GetShopNavi(context.Context, *GetShopNaviRequest) (*GetShopNaviReply, error)
  962. ShopGroupQuery(context.Context, *StandardRequest) (*StandardReply, error)
  963. ShopGroupAdd(context.Context, *StandardRequest) (*StandardReply, error)
  964. ShopGroupEdit(context.Context, *StandardRequest) (*StandardReply, error)
  965. ShopGroupStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  966. ShopGroupDetailsQuery(context.Context, *StandardRequest) (*StandardReply, error)
  967. ShopGroupDetailsAdd(context.Context, *StandardRequest) (*StandardReply, error)
  968. ShopVenueQuery(context.Context, *StandardRequest) (*StandardReply, error)
  969. ShopVenueAdd(context.Context, *StandardRequest) (*StandardReply, error)
  970. ShopVenueEdit(context.Context, *StandardRequest) (*StandardReply, error)
  971. ShopVenueStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  972. ShopVenueEquipQuery(context.Context, *StandardRequest) (*StandardReply, error)
  973. ShopVenueEquipAdd(context.Context, *StandardRequest) (*StandardReply, error)
  974. ShopVenueEquipEdit(context.Context, *StandardRequest) (*StandardReply, error)
  975. ShopVenueEquipStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  976. ShopVenueEquipStatusDel(context.Context, *StandardRequest) (*StandardReply, error)
  977. ShopManagerQuery(context.Context, *StandardRequest) (*StandardReply, error)
  978. ShopManagerAdd(context.Context, *StandardRequest) (*StandardReply, error)
  979. ShopManagerEdit(context.Context, *StandardRequest) (*StandardReply, error)
  980. ShopManagerStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  981. ShopConfigQuery(context.Context, *StandardRequest) (*StandardReply, error)
  982. ShopConfigEdit(context.Context, *StandardRequest) (*StandardReply, error)
  983. // 商家会员管理
  984. ShopVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error)
  985. ShopVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error)
  986. ShopVipUserEdit(context.Context, *StandardRequest) (*StandardReply, error)
  987. ShopVipUserStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  988. AcrossVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error)
  989. AcrossVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error)
  990. AcrossVipUserDel(context.Context, *StandardRequest) (*StandardReply, error)
  991. VipPhoneQuery(context.Context, *StandardRequest) (*StandardReply, error)
  992. VipMainPhoneCheck(context.Context, *StandardRequest) (*StandardReply, error)
  993. VipOtherPhoneAdd(context.Context, *StandardRequest) (*StandardReply, error)
  994. VipOtherPhoneEdit(context.Context, *StandardRequest) (*StandardReply, error)
  995. VipOtherPhoneStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  996. TempVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error)
  997. TempVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error)
  998. TempVipUserEdit(context.Context, *StandardRequest) (*StandardReply, error)
  999. TempVipUserStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1000. VipHourEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1001. VipConsumeListQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1002. VipConsumeDetailQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1003. VipClassRelationEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1004. VipHourChgQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1005. GetOverlayImgQiNiuToken(context.Context, *GetOverlayImgRequest) (*QiNiuTokenReply, error)
  1006. GetSimpleQiNiuToken(context.Context, *DefaultRequest) (*QiNiuTokenReply, error)
  1007. // 商家课程管理
  1008. ClassQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1009. ClassAdd(context.Context, *StandardRequest) (*StandardReply, error)
  1010. ClassEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1011. ClassStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1012. ClassColorEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1013. ClassWxVisibleEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1014. ClassVipEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1015. SttPlanBasicQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1016. SttPlanBasicAdd(context.Context, *StandardRequest) (*StandardReply, error)
  1017. SttPlanBasicEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1018. SttPlanBasicShopEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1019. SttPlanBasicStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1020. SttPlanBasicPublish(context.Context, *StandardRequest) (*StandardReply, error)
  1021. SttPlanPreview(context.Context, *StandardRequest) (*StandardReply, error)
  1022. SttPlanCopy(context.Context, *StandardRequest) (*StandardReply, error)
  1023. SttPlanDetailQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1024. SttPlanDetailBatchSave(context.Context, *StandardRequest) (*StandardReply, error)
  1025. STTBasicQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1026. STTBasicAdd(context.Context, *StandardRequest) (*StandardReply, error)
  1027. STTBasicEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1028. STTBasicStatusEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1029. STTBasicPreview(context.Context, *StandardRequest) (*StandardReply, error)
  1030. STTBasicCopy(context.Context, *StandardRequest) (*StandardReply, error)
  1031. STTBasicOfflineEdit(context.Context, *StandardRequest) (*StandardReply, error)
  1032. STTDetailListQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1033. STTBasicDetailBatchSave(context.Context, *StandardRequest) (*StandardReply, error)
  1034. STTDetailAllowDelCheck(context.Context, *StandardRequest) (*StandardReply, error)
  1035. // 商家上下课管理
  1036. CourseDetailQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1037. // 商家预约管理
  1038. OrderListQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1039. OrderAddByManager(context.Context, *StandardRequest) (*StandardReply, error)
  1040. OrderCancelByManager(context.Context, *StandardRequest) (*StandardReply, error)
  1041. OrderStatistics(context.Context, *StandardRequest) (*StandardReply, error)
  1042. ClassOrderQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1043. VipUserOrderQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1044. // 心率
  1045. HrSensorsPublicQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1046. HrSensorsPvtQuery(context.Context, *StandardRequest) (*StandardReply, error)
  1047. AddHrSensors(context.Context, *StandardRequest) (*StandardReply, error)
  1048. AddPvtHrSensors(context.Context, *StandardRequest) (*StandardReply, error)
  1049. EditHrSensors(context.Context, *StandardRequest) (*StandardReply, error)
  1050. HrSensorsDel(context.Context, *StandardRequest) (*StandardReply, error)
  1051. PKGroupChg(context.Context, *StandardRequest) (*StandardReply, error)
  1052. BindHrSensor(context.Context, *StandardRequest) (*StandardReply, error)
  1053. UnBindHrSensor(context.Context, *StandardRequest) (*StandardReply, error)
  1054. mustEmbedUnimplementedApiServer()
  1055. }
  1056. // UnimplementedApiServer must be embedded to have forward compatible implementations.
  1057. type UnimplementedApiServer struct {
  1058. }
  1059. func (UnimplementedApiServer) SignUp(context.Context, *SignUpRequest) (*DefaultReply, error) {
  1060. return nil, status.Errorf(codes.Unimplemented, "method SignUp not implemented")
  1061. }
  1062. func (UnimplementedApiServer) SignIn(context.Context, *SignInRequest) (*SignInReply, error) {
  1063. return nil, status.Errorf(codes.Unimplemented, "method SignIn not implemented")
  1064. }
  1065. func (UnimplementedApiServer) SignOut(context.Context, *DefaultRequest) (*DefaultReply, error) {
  1066. return nil, status.Errorf(codes.Unimplemented, "method SignOut not implemented")
  1067. }
  1068. func (UnimplementedApiServer) GenVerifyImage(context.Context, *GenVerifyImageRequest) (*GenVerifyImageReply, error) {
  1069. return nil, status.Errorf(codes.Unimplemented, "method GenVerifyImage not implemented")
  1070. }
  1071. func (UnimplementedApiServer) SelectHrSensors(context.Context, *StandardRequest) (*StandardReply, error) {
  1072. return nil, status.Errorf(codes.Unimplemented, "method SelectHrSensors not implemented")
  1073. }
  1074. func (UnimplementedApiServer) AcrossUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1075. return nil, status.Errorf(codes.Unimplemented, "method AcrossUserSimpleQuery not implemented")
  1076. }
  1077. func (UnimplementedApiServer) VipUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1078. return nil, status.Errorf(codes.Unimplemented, "method VipUserSimpleQuery not implemented")
  1079. }
  1080. func (UnimplementedApiServer) TempVipUserSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1081. return nil, status.Errorf(codes.Unimplemented, "method TempVipUserSimpleQuery not implemented")
  1082. }
  1083. func (UnimplementedApiServer) ShopSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1084. return nil, status.Errorf(codes.Unimplemented, "method ShopSimpleQuery not implemented")
  1085. }
  1086. func (UnimplementedApiServer) ManageableSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1087. return nil, status.Errorf(codes.Unimplemented, "method ManageableSimpleQuery not implemented")
  1088. }
  1089. func (UnimplementedApiServer) ClassSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1090. return nil, status.Errorf(codes.Unimplemented, "method ClassSimpleQuery not implemented")
  1091. }
  1092. func (UnimplementedApiServer) ScreenSimpleQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1093. return nil, status.Errorf(codes.Unimplemented, "method ScreenSimpleQuery not implemented")
  1094. }
  1095. func (UnimplementedApiServer) ManageableShopList(context.Context, *ShopListRequest) (*ShopListReply, error) {
  1096. return nil, status.Errorf(codes.Unimplemented, "method ManageableShopList not implemented")
  1097. }
  1098. func (UnimplementedApiServer) GetShopNavi(context.Context, *GetShopNaviRequest) (*GetShopNaviReply, error) {
  1099. return nil, status.Errorf(codes.Unimplemented, "method GetShopNavi not implemented")
  1100. }
  1101. func (UnimplementedApiServer) ShopGroupQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1102. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupQuery not implemented")
  1103. }
  1104. func (UnimplementedApiServer) ShopGroupAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1105. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupAdd not implemented")
  1106. }
  1107. func (UnimplementedApiServer) ShopGroupEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1108. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupEdit not implemented")
  1109. }
  1110. func (UnimplementedApiServer) ShopGroupStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1111. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupStatusEdit not implemented")
  1112. }
  1113. func (UnimplementedApiServer) ShopGroupDetailsQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1114. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupDetailsQuery not implemented")
  1115. }
  1116. func (UnimplementedApiServer) ShopGroupDetailsAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1117. return nil, status.Errorf(codes.Unimplemented, "method ShopGroupDetailsAdd not implemented")
  1118. }
  1119. func (UnimplementedApiServer) ShopVenueQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1120. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueQuery not implemented")
  1121. }
  1122. func (UnimplementedApiServer) ShopVenueAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1123. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueAdd not implemented")
  1124. }
  1125. func (UnimplementedApiServer) ShopVenueEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1126. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEdit not implemented")
  1127. }
  1128. func (UnimplementedApiServer) ShopVenueStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1129. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueStatusEdit not implemented")
  1130. }
  1131. func (UnimplementedApiServer) ShopVenueEquipQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1132. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEquipQuery not implemented")
  1133. }
  1134. func (UnimplementedApiServer) ShopVenueEquipAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1135. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEquipAdd not implemented")
  1136. }
  1137. func (UnimplementedApiServer) ShopVenueEquipEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1138. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEquipEdit not implemented")
  1139. }
  1140. func (UnimplementedApiServer) ShopVenueEquipStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1141. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEquipStatusEdit not implemented")
  1142. }
  1143. func (UnimplementedApiServer) ShopVenueEquipStatusDel(context.Context, *StandardRequest) (*StandardReply, error) {
  1144. return nil, status.Errorf(codes.Unimplemented, "method ShopVenueEquipStatusDel not implemented")
  1145. }
  1146. func (UnimplementedApiServer) ShopManagerQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1147. return nil, status.Errorf(codes.Unimplemented, "method ShopManagerQuery not implemented")
  1148. }
  1149. func (UnimplementedApiServer) ShopManagerAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1150. return nil, status.Errorf(codes.Unimplemented, "method ShopManagerAdd not implemented")
  1151. }
  1152. func (UnimplementedApiServer) ShopManagerEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1153. return nil, status.Errorf(codes.Unimplemented, "method ShopManagerEdit not implemented")
  1154. }
  1155. func (UnimplementedApiServer) ShopManagerStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1156. return nil, status.Errorf(codes.Unimplemented, "method ShopManagerStatusEdit not implemented")
  1157. }
  1158. func (UnimplementedApiServer) ShopConfigQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1159. return nil, status.Errorf(codes.Unimplemented, "method ShopConfigQuery not implemented")
  1160. }
  1161. func (UnimplementedApiServer) ShopConfigEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1162. return nil, status.Errorf(codes.Unimplemented, "method ShopConfigEdit not implemented")
  1163. }
  1164. func (UnimplementedApiServer) ShopVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1165. return nil, status.Errorf(codes.Unimplemented, "method ShopVipUserQuery not implemented")
  1166. }
  1167. func (UnimplementedApiServer) ShopVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1168. return nil, status.Errorf(codes.Unimplemented, "method ShopVipUserAdd not implemented")
  1169. }
  1170. func (UnimplementedApiServer) ShopVipUserEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1171. return nil, status.Errorf(codes.Unimplemented, "method ShopVipUserEdit not implemented")
  1172. }
  1173. func (UnimplementedApiServer) ShopVipUserStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1174. return nil, status.Errorf(codes.Unimplemented, "method ShopVipUserStatusEdit not implemented")
  1175. }
  1176. func (UnimplementedApiServer) AcrossVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1177. return nil, status.Errorf(codes.Unimplemented, "method AcrossVipUserQuery not implemented")
  1178. }
  1179. func (UnimplementedApiServer) AcrossVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1180. return nil, status.Errorf(codes.Unimplemented, "method AcrossVipUserAdd not implemented")
  1181. }
  1182. func (UnimplementedApiServer) AcrossVipUserDel(context.Context, *StandardRequest) (*StandardReply, error) {
  1183. return nil, status.Errorf(codes.Unimplemented, "method AcrossVipUserDel not implemented")
  1184. }
  1185. func (UnimplementedApiServer) VipPhoneQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1186. return nil, status.Errorf(codes.Unimplemented, "method VipPhoneQuery not implemented")
  1187. }
  1188. func (UnimplementedApiServer) VipMainPhoneCheck(context.Context, *StandardRequest) (*StandardReply, error) {
  1189. return nil, status.Errorf(codes.Unimplemented, "method VipMainPhoneCheck not implemented")
  1190. }
  1191. func (UnimplementedApiServer) VipOtherPhoneAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1192. return nil, status.Errorf(codes.Unimplemented, "method VipOtherPhoneAdd not implemented")
  1193. }
  1194. func (UnimplementedApiServer) VipOtherPhoneEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1195. return nil, status.Errorf(codes.Unimplemented, "method VipOtherPhoneEdit not implemented")
  1196. }
  1197. func (UnimplementedApiServer) VipOtherPhoneStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1198. return nil, status.Errorf(codes.Unimplemented, "method VipOtherPhoneStatusEdit not implemented")
  1199. }
  1200. func (UnimplementedApiServer) TempVipUserQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1201. return nil, status.Errorf(codes.Unimplemented, "method TempVipUserQuery not implemented")
  1202. }
  1203. func (UnimplementedApiServer) TempVipUserAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1204. return nil, status.Errorf(codes.Unimplemented, "method TempVipUserAdd not implemented")
  1205. }
  1206. func (UnimplementedApiServer) TempVipUserEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1207. return nil, status.Errorf(codes.Unimplemented, "method TempVipUserEdit not implemented")
  1208. }
  1209. func (UnimplementedApiServer) TempVipUserStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1210. return nil, status.Errorf(codes.Unimplemented, "method TempVipUserStatusEdit not implemented")
  1211. }
  1212. func (UnimplementedApiServer) VipHourEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1213. return nil, status.Errorf(codes.Unimplemented, "method VipHourEdit not implemented")
  1214. }
  1215. func (UnimplementedApiServer) VipConsumeListQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1216. return nil, status.Errorf(codes.Unimplemented, "method VipConsumeListQuery not implemented")
  1217. }
  1218. func (UnimplementedApiServer) VipConsumeDetailQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1219. return nil, status.Errorf(codes.Unimplemented, "method VipConsumeDetailQuery not implemented")
  1220. }
  1221. func (UnimplementedApiServer) VipClassRelationEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1222. return nil, status.Errorf(codes.Unimplemented, "method VipClassRelationEdit not implemented")
  1223. }
  1224. func (UnimplementedApiServer) VipHourChgQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1225. return nil, status.Errorf(codes.Unimplemented, "method VipHourChgQuery not implemented")
  1226. }
  1227. func (UnimplementedApiServer) GetOverlayImgQiNiuToken(context.Context, *GetOverlayImgRequest) (*QiNiuTokenReply, error) {
  1228. return nil, status.Errorf(codes.Unimplemented, "method GetOverlayImgQiNiuToken not implemented")
  1229. }
  1230. func (UnimplementedApiServer) GetSimpleQiNiuToken(context.Context, *DefaultRequest) (*QiNiuTokenReply, error) {
  1231. return nil, status.Errorf(codes.Unimplemented, "method GetSimpleQiNiuToken not implemented")
  1232. }
  1233. func (UnimplementedApiServer) ClassQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1234. return nil, status.Errorf(codes.Unimplemented, "method ClassQuery not implemented")
  1235. }
  1236. func (UnimplementedApiServer) ClassAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1237. return nil, status.Errorf(codes.Unimplemented, "method ClassAdd not implemented")
  1238. }
  1239. func (UnimplementedApiServer) ClassEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1240. return nil, status.Errorf(codes.Unimplemented, "method ClassEdit not implemented")
  1241. }
  1242. func (UnimplementedApiServer) ClassStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1243. return nil, status.Errorf(codes.Unimplemented, "method ClassStatusEdit not implemented")
  1244. }
  1245. func (UnimplementedApiServer) ClassColorEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1246. return nil, status.Errorf(codes.Unimplemented, "method ClassColorEdit not implemented")
  1247. }
  1248. func (UnimplementedApiServer) ClassWxVisibleEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1249. return nil, status.Errorf(codes.Unimplemented, "method ClassWxVisibleEdit not implemented")
  1250. }
  1251. func (UnimplementedApiServer) ClassVipEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1252. return nil, status.Errorf(codes.Unimplemented, "method ClassVipEdit not implemented")
  1253. }
  1254. func (UnimplementedApiServer) SttPlanBasicQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1255. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicQuery not implemented")
  1256. }
  1257. func (UnimplementedApiServer) SttPlanBasicAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1258. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicAdd not implemented")
  1259. }
  1260. func (UnimplementedApiServer) SttPlanBasicEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1261. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicEdit not implemented")
  1262. }
  1263. func (UnimplementedApiServer) SttPlanBasicShopEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1264. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicShopEdit not implemented")
  1265. }
  1266. func (UnimplementedApiServer) SttPlanBasicStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1267. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicStatusEdit not implemented")
  1268. }
  1269. func (UnimplementedApiServer) SttPlanBasicPublish(context.Context, *StandardRequest) (*StandardReply, error) {
  1270. return nil, status.Errorf(codes.Unimplemented, "method SttPlanBasicPublish not implemented")
  1271. }
  1272. func (UnimplementedApiServer) SttPlanPreview(context.Context, *StandardRequest) (*StandardReply, error) {
  1273. return nil, status.Errorf(codes.Unimplemented, "method SttPlanPreview not implemented")
  1274. }
  1275. func (UnimplementedApiServer) SttPlanCopy(context.Context, *StandardRequest) (*StandardReply, error) {
  1276. return nil, status.Errorf(codes.Unimplemented, "method SttPlanCopy not implemented")
  1277. }
  1278. func (UnimplementedApiServer) SttPlanDetailQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1279. return nil, status.Errorf(codes.Unimplemented, "method SttPlanDetailQuery not implemented")
  1280. }
  1281. func (UnimplementedApiServer) SttPlanDetailBatchSave(context.Context, *StandardRequest) (*StandardReply, error) {
  1282. return nil, status.Errorf(codes.Unimplemented, "method SttPlanDetailBatchSave not implemented")
  1283. }
  1284. func (UnimplementedApiServer) STTBasicQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1285. return nil, status.Errorf(codes.Unimplemented, "method STTBasicQuery not implemented")
  1286. }
  1287. func (UnimplementedApiServer) STTBasicAdd(context.Context, *StandardRequest) (*StandardReply, error) {
  1288. return nil, status.Errorf(codes.Unimplemented, "method STTBasicAdd not implemented")
  1289. }
  1290. func (UnimplementedApiServer) STTBasicEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1291. return nil, status.Errorf(codes.Unimplemented, "method STTBasicEdit not implemented")
  1292. }
  1293. func (UnimplementedApiServer) STTBasicStatusEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1294. return nil, status.Errorf(codes.Unimplemented, "method STTBasicStatusEdit not implemented")
  1295. }
  1296. func (UnimplementedApiServer) STTBasicPreview(context.Context, *StandardRequest) (*StandardReply, error) {
  1297. return nil, status.Errorf(codes.Unimplemented, "method STTBasicPreview not implemented")
  1298. }
  1299. func (UnimplementedApiServer) STTBasicCopy(context.Context, *StandardRequest) (*StandardReply, error) {
  1300. return nil, status.Errorf(codes.Unimplemented, "method STTBasicCopy not implemented")
  1301. }
  1302. func (UnimplementedApiServer) STTBasicOfflineEdit(context.Context, *StandardRequest) (*StandardReply, error) {
  1303. return nil, status.Errorf(codes.Unimplemented, "method STTBasicOfflineEdit not implemented")
  1304. }
  1305. func (UnimplementedApiServer) STTDetailListQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1306. return nil, status.Errorf(codes.Unimplemented, "method STTDetailListQuery not implemented")
  1307. }
  1308. func (UnimplementedApiServer) STTBasicDetailBatchSave(context.Context, *StandardRequest) (*StandardReply, error) {
  1309. return nil, status.Errorf(codes.Unimplemented, "method STTBasicDetailBatchSave not implemented")
  1310. }
  1311. func (UnimplementedApiServer) STTDetailAllowDelCheck(context.Context, *StandardRequest) (*StandardReply, error) {
  1312. return nil, status.Errorf(codes.Unimplemented, "method STTDetailAllowDelCheck not implemented")
  1313. }
  1314. func (UnimplementedApiServer) CourseDetailQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1315. return nil, status.Errorf(codes.Unimplemented, "method CourseDetailQuery not implemented")
  1316. }
  1317. func (UnimplementedApiServer) OrderListQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1318. return nil, status.Errorf(codes.Unimplemented, "method OrderListQuery not implemented")
  1319. }
  1320. func (UnimplementedApiServer) OrderAddByManager(context.Context, *StandardRequest) (*StandardReply, error) {
  1321. return nil, status.Errorf(codes.Unimplemented, "method OrderAddByManager not implemented")
  1322. }
  1323. func (UnimplementedApiServer) OrderCancelByManager(context.Context, *StandardRequest) (*StandardReply, error) {
  1324. return nil, status.Errorf(codes.Unimplemented, "method OrderCancelByManager not implemented")
  1325. }
  1326. func (UnimplementedApiServer) OrderStatistics(context.Context, *StandardRequest) (*StandardReply, error) {
  1327. return nil, status.Errorf(codes.Unimplemented, "method OrderStatistics not implemented")
  1328. }
  1329. func (UnimplementedApiServer) ClassOrderQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1330. return nil, status.Errorf(codes.Unimplemented, "method ClassOrderQuery not implemented")
  1331. }
  1332. func (UnimplementedApiServer) VipUserOrderQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1333. return nil, status.Errorf(codes.Unimplemented, "method VipUserOrderQuery not implemented")
  1334. }
  1335. func (UnimplementedApiServer) HrSensorsPublicQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1336. return nil, status.Errorf(codes.Unimplemented, "method HrSensorsPublicQuery not implemented")
  1337. }
  1338. func (UnimplementedApiServer) HrSensorsPvtQuery(context.Context, *StandardRequest) (*StandardReply, error) {
  1339. return nil, status.Errorf(codes.Unimplemented, "method HrSensorsPvtQuery not implemented")
  1340. }
  1341. func (UnimplementedApiServer) AddHrSensors(context.Context, *StandardRequest) (*StandardReply, error) {
  1342. return nil, status.Errorf(codes.Unimplemented, "method AddHrSensors not implemented")
  1343. }
  1344. func (UnimplementedApiServer) AddPvtHrSensors(context.Context, *StandardRequest) (*StandardReply, error) {
  1345. return nil, status.Errorf(codes.Unimplemented, "method AddPvtHrSensors not implemented")
  1346. }
  1347. func (UnimplementedApiServer) EditHrSensors(context.Context, *StandardRequest) (*StandardReply, error) {
  1348. return nil, status.Errorf(codes.Unimplemented, "method EditHrSensors not implemented")
  1349. }
  1350. func (UnimplementedApiServer) HrSensorsDel(context.Context, *StandardRequest) (*StandardReply, error) {
  1351. return nil, status.Errorf(codes.Unimplemented, "method HrSensorsDel not implemented")
  1352. }
  1353. func (UnimplementedApiServer) PKGroupChg(context.Context, *StandardRequest) (*StandardReply, error) {
  1354. return nil, status.Errorf(codes.Unimplemented, "method PKGroupChg not implemented")
  1355. }
  1356. func (UnimplementedApiServer) BindHrSensor(context.Context, *StandardRequest) (*StandardReply, error) {
  1357. return nil, status.Errorf(codes.Unimplemented, "method BindHrSensor not implemented")
  1358. }
  1359. func (UnimplementedApiServer) UnBindHrSensor(context.Context, *StandardRequest) (*StandardReply, error) {
  1360. return nil, status.Errorf(codes.Unimplemented, "method UnBindHrSensor not implemented")
  1361. }
  1362. func (UnimplementedApiServer) mustEmbedUnimplementedApiServer() {}
  1363. // UnsafeApiServer may be embedded to opt out of forward compatibility for this service.
  1364. // Use of this interface is not recommended, as added methods to ApiServer will
  1365. // result in compilation errors.
  1366. type UnsafeApiServer interface {
  1367. mustEmbedUnimplementedApiServer()
  1368. }
  1369. func RegisterApiServer(s grpc.ServiceRegistrar, srv ApiServer) {
  1370. s.RegisterService(&Api_ServiceDesc, srv)
  1371. }
  1372. func _Api_SignUp_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1373. in := new(SignUpRequest)
  1374. if err := dec(in); err != nil {
  1375. return nil, err
  1376. }
  1377. if interceptor == nil {
  1378. return srv.(ApiServer).SignUp(ctx, in)
  1379. }
  1380. info := &grpc.UnaryServerInfo{
  1381. Server: srv,
  1382. FullMethod: "/base.Api/SignUp",
  1383. }
  1384. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1385. return srv.(ApiServer).SignUp(ctx, req.(*SignUpRequest))
  1386. }
  1387. return interceptor(ctx, in, info, handler)
  1388. }
  1389. func _Api_SignIn_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1390. in := new(SignInRequest)
  1391. if err := dec(in); err != nil {
  1392. return nil, err
  1393. }
  1394. if interceptor == nil {
  1395. return srv.(ApiServer).SignIn(ctx, in)
  1396. }
  1397. info := &grpc.UnaryServerInfo{
  1398. Server: srv,
  1399. FullMethod: "/base.Api/SignIn",
  1400. }
  1401. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1402. return srv.(ApiServer).SignIn(ctx, req.(*SignInRequest))
  1403. }
  1404. return interceptor(ctx, in, info, handler)
  1405. }
  1406. func _Api_SignOut_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1407. in := new(DefaultRequest)
  1408. if err := dec(in); err != nil {
  1409. return nil, err
  1410. }
  1411. if interceptor == nil {
  1412. return srv.(ApiServer).SignOut(ctx, in)
  1413. }
  1414. info := &grpc.UnaryServerInfo{
  1415. Server: srv,
  1416. FullMethod: "/base.Api/SignOut",
  1417. }
  1418. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1419. return srv.(ApiServer).SignOut(ctx, req.(*DefaultRequest))
  1420. }
  1421. return interceptor(ctx, in, info, handler)
  1422. }
  1423. func _Api_GenVerifyImage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1424. in := new(GenVerifyImageRequest)
  1425. if err := dec(in); err != nil {
  1426. return nil, err
  1427. }
  1428. if interceptor == nil {
  1429. return srv.(ApiServer).GenVerifyImage(ctx, in)
  1430. }
  1431. info := &grpc.UnaryServerInfo{
  1432. Server: srv,
  1433. FullMethod: "/base.Api/GenVerifyImage",
  1434. }
  1435. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1436. return srv.(ApiServer).GenVerifyImage(ctx, req.(*GenVerifyImageRequest))
  1437. }
  1438. return interceptor(ctx, in, info, handler)
  1439. }
  1440. func _Api_SelectHrSensors_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1441. in := new(StandardRequest)
  1442. if err := dec(in); err != nil {
  1443. return nil, err
  1444. }
  1445. if interceptor == nil {
  1446. return srv.(ApiServer).SelectHrSensors(ctx, in)
  1447. }
  1448. info := &grpc.UnaryServerInfo{
  1449. Server: srv,
  1450. FullMethod: "/base.Api/SelectHrSensors",
  1451. }
  1452. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1453. return srv.(ApiServer).SelectHrSensors(ctx, req.(*StandardRequest))
  1454. }
  1455. return interceptor(ctx, in, info, handler)
  1456. }
  1457. func _Api_AcrossUserSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1458. in := new(StandardRequest)
  1459. if err := dec(in); err != nil {
  1460. return nil, err
  1461. }
  1462. if interceptor == nil {
  1463. return srv.(ApiServer).AcrossUserSimpleQuery(ctx, in)
  1464. }
  1465. info := &grpc.UnaryServerInfo{
  1466. Server: srv,
  1467. FullMethod: "/base.Api/AcrossUserSimpleQuery",
  1468. }
  1469. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1470. return srv.(ApiServer).AcrossUserSimpleQuery(ctx, req.(*StandardRequest))
  1471. }
  1472. return interceptor(ctx, in, info, handler)
  1473. }
  1474. func _Api_VipUserSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1475. in := new(StandardRequest)
  1476. if err := dec(in); err != nil {
  1477. return nil, err
  1478. }
  1479. if interceptor == nil {
  1480. return srv.(ApiServer).VipUserSimpleQuery(ctx, in)
  1481. }
  1482. info := &grpc.UnaryServerInfo{
  1483. Server: srv,
  1484. FullMethod: "/base.Api/VipUserSimpleQuery",
  1485. }
  1486. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1487. return srv.(ApiServer).VipUserSimpleQuery(ctx, req.(*StandardRequest))
  1488. }
  1489. return interceptor(ctx, in, info, handler)
  1490. }
  1491. func _Api_TempVipUserSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1492. in := new(StandardRequest)
  1493. if err := dec(in); err != nil {
  1494. return nil, err
  1495. }
  1496. if interceptor == nil {
  1497. return srv.(ApiServer).TempVipUserSimpleQuery(ctx, in)
  1498. }
  1499. info := &grpc.UnaryServerInfo{
  1500. Server: srv,
  1501. FullMethod: "/base.Api/TempVipUserSimpleQuery",
  1502. }
  1503. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1504. return srv.(ApiServer).TempVipUserSimpleQuery(ctx, req.(*StandardRequest))
  1505. }
  1506. return interceptor(ctx, in, info, handler)
  1507. }
  1508. func _Api_ShopSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1509. in := new(StandardRequest)
  1510. if err := dec(in); err != nil {
  1511. return nil, err
  1512. }
  1513. if interceptor == nil {
  1514. return srv.(ApiServer).ShopSimpleQuery(ctx, in)
  1515. }
  1516. info := &grpc.UnaryServerInfo{
  1517. Server: srv,
  1518. FullMethod: "/base.Api/ShopSimpleQuery",
  1519. }
  1520. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1521. return srv.(ApiServer).ShopSimpleQuery(ctx, req.(*StandardRequest))
  1522. }
  1523. return interceptor(ctx, in, info, handler)
  1524. }
  1525. func _Api_ManageableSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1526. in := new(StandardRequest)
  1527. if err := dec(in); err != nil {
  1528. return nil, err
  1529. }
  1530. if interceptor == nil {
  1531. return srv.(ApiServer).ManageableSimpleQuery(ctx, in)
  1532. }
  1533. info := &grpc.UnaryServerInfo{
  1534. Server: srv,
  1535. FullMethod: "/base.Api/ManageableSimpleQuery",
  1536. }
  1537. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1538. return srv.(ApiServer).ManageableSimpleQuery(ctx, req.(*StandardRequest))
  1539. }
  1540. return interceptor(ctx, in, info, handler)
  1541. }
  1542. func _Api_ClassSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1543. in := new(StandardRequest)
  1544. if err := dec(in); err != nil {
  1545. return nil, err
  1546. }
  1547. if interceptor == nil {
  1548. return srv.(ApiServer).ClassSimpleQuery(ctx, in)
  1549. }
  1550. info := &grpc.UnaryServerInfo{
  1551. Server: srv,
  1552. FullMethod: "/base.Api/ClassSimpleQuery",
  1553. }
  1554. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1555. return srv.(ApiServer).ClassSimpleQuery(ctx, req.(*StandardRequest))
  1556. }
  1557. return interceptor(ctx, in, info, handler)
  1558. }
  1559. func _Api_ScreenSimpleQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1560. in := new(StandardRequest)
  1561. if err := dec(in); err != nil {
  1562. return nil, err
  1563. }
  1564. if interceptor == nil {
  1565. return srv.(ApiServer).ScreenSimpleQuery(ctx, in)
  1566. }
  1567. info := &grpc.UnaryServerInfo{
  1568. Server: srv,
  1569. FullMethod: "/base.Api/ScreenSimpleQuery",
  1570. }
  1571. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1572. return srv.(ApiServer).ScreenSimpleQuery(ctx, req.(*StandardRequest))
  1573. }
  1574. return interceptor(ctx, in, info, handler)
  1575. }
  1576. func _Api_ManageableShopList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1577. in := new(ShopListRequest)
  1578. if err := dec(in); err != nil {
  1579. return nil, err
  1580. }
  1581. if interceptor == nil {
  1582. return srv.(ApiServer).ManageableShopList(ctx, in)
  1583. }
  1584. info := &grpc.UnaryServerInfo{
  1585. Server: srv,
  1586. FullMethod: "/base.Api/ManageableShopList",
  1587. }
  1588. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1589. return srv.(ApiServer).ManageableShopList(ctx, req.(*ShopListRequest))
  1590. }
  1591. return interceptor(ctx, in, info, handler)
  1592. }
  1593. func _Api_GetShopNavi_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1594. in := new(GetShopNaviRequest)
  1595. if err := dec(in); err != nil {
  1596. return nil, err
  1597. }
  1598. if interceptor == nil {
  1599. return srv.(ApiServer).GetShopNavi(ctx, in)
  1600. }
  1601. info := &grpc.UnaryServerInfo{
  1602. Server: srv,
  1603. FullMethod: "/base.Api/GetShopNavi",
  1604. }
  1605. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1606. return srv.(ApiServer).GetShopNavi(ctx, req.(*GetShopNaviRequest))
  1607. }
  1608. return interceptor(ctx, in, info, handler)
  1609. }
  1610. func _Api_ShopGroupQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1611. in := new(StandardRequest)
  1612. if err := dec(in); err != nil {
  1613. return nil, err
  1614. }
  1615. if interceptor == nil {
  1616. return srv.(ApiServer).ShopGroupQuery(ctx, in)
  1617. }
  1618. info := &grpc.UnaryServerInfo{
  1619. Server: srv,
  1620. FullMethod: "/base.Api/ShopGroupQuery",
  1621. }
  1622. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1623. return srv.(ApiServer).ShopGroupQuery(ctx, req.(*StandardRequest))
  1624. }
  1625. return interceptor(ctx, in, info, handler)
  1626. }
  1627. func _Api_ShopGroupAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1628. in := new(StandardRequest)
  1629. if err := dec(in); err != nil {
  1630. return nil, err
  1631. }
  1632. if interceptor == nil {
  1633. return srv.(ApiServer).ShopGroupAdd(ctx, in)
  1634. }
  1635. info := &grpc.UnaryServerInfo{
  1636. Server: srv,
  1637. FullMethod: "/base.Api/ShopGroupAdd",
  1638. }
  1639. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1640. return srv.(ApiServer).ShopGroupAdd(ctx, req.(*StandardRequest))
  1641. }
  1642. return interceptor(ctx, in, info, handler)
  1643. }
  1644. func _Api_ShopGroupEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1645. in := new(StandardRequest)
  1646. if err := dec(in); err != nil {
  1647. return nil, err
  1648. }
  1649. if interceptor == nil {
  1650. return srv.(ApiServer).ShopGroupEdit(ctx, in)
  1651. }
  1652. info := &grpc.UnaryServerInfo{
  1653. Server: srv,
  1654. FullMethod: "/base.Api/ShopGroupEdit",
  1655. }
  1656. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1657. return srv.(ApiServer).ShopGroupEdit(ctx, req.(*StandardRequest))
  1658. }
  1659. return interceptor(ctx, in, info, handler)
  1660. }
  1661. func _Api_ShopGroupStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1662. in := new(StandardRequest)
  1663. if err := dec(in); err != nil {
  1664. return nil, err
  1665. }
  1666. if interceptor == nil {
  1667. return srv.(ApiServer).ShopGroupStatusEdit(ctx, in)
  1668. }
  1669. info := &grpc.UnaryServerInfo{
  1670. Server: srv,
  1671. FullMethod: "/base.Api/ShopGroupStatusEdit",
  1672. }
  1673. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1674. return srv.(ApiServer).ShopGroupStatusEdit(ctx, req.(*StandardRequest))
  1675. }
  1676. return interceptor(ctx, in, info, handler)
  1677. }
  1678. func _Api_ShopGroupDetailsQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1679. in := new(StandardRequest)
  1680. if err := dec(in); err != nil {
  1681. return nil, err
  1682. }
  1683. if interceptor == nil {
  1684. return srv.(ApiServer).ShopGroupDetailsQuery(ctx, in)
  1685. }
  1686. info := &grpc.UnaryServerInfo{
  1687. Server: srv,
  1688. FullMethod: "/base.Api/ShopGroupDetailsQuery",
  1689. }
  1690. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1691. return srv.(ApiServer).ShopGroupDetailsQuery(ctx, req.(*StandardRequest))
  1692. }
  1693. return interceptor(ctx, in, info, handler)
  1694. }
  1695. func _Api_ShopGroupDetailsAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1696. in := new(StandardRequest)
  1697. if err := dec(in); err != nil {
  1698. return nil, err
  1699. }
  1700. if interceptor == nil {
  1701. return srv.(ApiServer).ShopGroupDetailsAdd(ctx, in)
  1702. }
  1703. info := &grpc.UnaryServerInfo{
  1704. Server: srv,
  1705. FullMethod: "/base.Api/ShopGroupDetailsAdd",
  1706. }
  1707. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1708. return srv.(ApiServer).ShopGroupDetailsAdd(ctx, req.(*StandardRequest))
  1709. }
  1710. return interceptor(ctx, in, info, handler)
  1711. }
  1712. func _Api_ShopVenueQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1713. in := new(StandardRequest)
  1714. if err := dec(in); err != nil {
  1715. return nil, err
  1716. }
  1717. if interceptor == nil {
  1718. return srv.(ApiServer).ShopVenueQuery(ctx, in)
  1719. }
  1720. info := &grpc.UnaryServerInfo{
  1721. Server: srv,
  1722. FullMethod: "/base.Api/ShopVenueQuery",
  1723. }
  1724. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1725. return srv.(ApiServer).ShopVenueQuery(ctx, req.(*StandardRequest))
  1726. }
  1727. return interceptor(ctx, in, info, handler)
  1728. }
  1729. func _Api_ShopVenueAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1730. in := new(StandardRequest)
  1731. if err := dec(in); err != nil {
  1732. return nil, err
  1733. }
  1734. if interceptor == nil {
  1735. return srv.(ApiServer).ShopVenueAdd(ctx, in)
  1736. }
  1737. info := &grpc.UnaryServerInfo{
  1738. Server: srv,
  1739. FullMethod: "/base.Api/ShopVenueAdd",
  1740. }
  1741. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1742. return srv.(ApiServer).ShopVenueAdd(ctx, req.(*StandardRequest))
  1743. }
  1744. return interceptor(ctx, in, info, handler)
  1745. }
  1746. func _Api_ShopVenueEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1747. in := new(StandardRequest)
  1748. if err := dec(in); err != nil {
  1749. return nil, err
  1750. }
  1751. if interceptor == nil {
  1752. return srv.(ApiServer).ShopVenueEdit(ctx, in)
  1753. }
  1754. info := &grpc.UnaryServerInfo{
  1755. Server: srv,
  1756. FullMethod: "/base.Api/ShopVenueEdit",
  1757. }
  1758. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1759. return srv.(ApiServer).ShopVenueEdit(ctx, req.(*StandardRequest))
  1760. }
  1761. return interceptor(ctx, in, info, handler)
  1762. }
  1763. func _Api_ShopVenueStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1764. in := new(StandardRequest)
  1765. if err := dec(in); err != nil {
  1766. return nil, err
  1767. }
  1768. if interceptor == nil {
  1769. return srv.(ApiServer).ShopVenueStatusEdit(ctx, in)
  1770. }
  1771. info := &grpc.UnaryServerInfo{
  1772. Server: srv,
  1773. FullMethod: "/base.Api/ShopVenueStatusEdit",
  1774. }
  1775. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1776. return srv.(ApiServer).ShopVenueStatusEdit(ctx, req.(*StandardRequest))
  1777. }
  1778. return interceptor(ctx, in, info, handler)
  1779. }
  1780. func _Api_ShopVenueEquipQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1781. in := new(StandardRequest)
  1782. if err := dec(in); err != nil {
  1783. return nil, err
  1784. }
  1785. if interceptor == nil {
  1786. return srv.(ApiServer).ShopVenueEquipQuery(ctx, in)
  1787. }
  1788. info := &grpc.UnaryServerInfo{
  1789. Server: srv,
  1790. FullMethod: "/base.Api/ShopVenueEquipQuery",
  1791. }
  1792. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1793. return srv.(ApiServer).ShopVenueEquipQuery(ctx, req.(*StandardRequest))
  1794. }
  1795. return interceptor(ctx, in, info, handler)
  1796. }
  1797. func _Api_ShopVenueEquipAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1798. in := new(StandardRequest)
  1799. if err := dec(in); err != nil {
  1800. return nil, err
  1801. }
  1802. if interceptor == nil {
  1803. return srv.(ApiServer).ShopVenueEquipAdd(ctx, in)
  1804. }
  1805. info := &grpc.UnaryServerInfo{
  1806. Server: srv,
  1807. FullMethod: "/base.Api/ShopVenueEquipAdd",
  1808. }
  1809. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1810. return srv.(ApiServer).ShopVenueEquipAdd(ctx, req.(*StandardRequest))
  1811. }
  1812. return interceptor(ctx, in, info, handler)
  1813. }
  1814. func _Api_ShopVenueEquipEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1815. in := new(StandardRequest)
  1816. if err := dec(in); err != nil {
  1817. return nil, err
  1818. }
  1819. if interceptor == nil {
  1820. return srv.(ApiServer).ShopVenueEquipEdit(ctx, in)
  1821. }
  1822. info := &grpc.UnaryServerInfo{
  1823. Server: srv,
  1824. FullMethod: "/base.Api/ShopVenueEquipEdit",
  1825. }
  1826. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1827. return srv.(ApiServer).ShopVenueEquipEdit(ctx, req.(*StandardRequest))
  1828. }
  1829. return interceptor(ctx, in, info, handler)
  1830. }
  1831. func _Api_ShopVenueEquipStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1832. in := new(StandardRequest)
  1833. if err := dec(in); err != nil {
  1834. return nil, err
  1835. }
  1836. if interceptor == nil {
  1837. return srv.(ApiServer).ShopVenueEquipStatusEdit(ctx, in)
  1838. }
  1839. info := &grpc.UnaryServerInfo{
  1840. Server: srv,
  1841. FullMethod: "/base.Api/ShopVenueEquipStatusEdit",
  1842. }
  1843. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1844. return srv.(ApiServer).ShopVenueEquipStatusEdit(ctx, req.(*StandardRequest))
  1845. }
  1846. return interceptor(ctx, in, info, handler)
  1847. }
  1848. func _Api_ShopVenueEquipStatusDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1849. in := new(StandardRequest)
  1850. if err := dec(in); err != nil {
  1851. return nil, err
  1852. }
  1853. if interceptor == nil {
  1854. return srv.(ApiServer).ShopVenueEquipStatusDel(ctx, in)
  1855. }
  1856. info := &grpc.UnaryServerInfo{
  1857. Server: srv,
  1858. FullMethod: "/base.Api/ShopVenueEquipStatusDel",
  1859. }
  1860. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1861. return srv.(ApiServer).ShopVenueEquipStatusDel(ctx, req.(*StandardRequest))
  1862. }
  1863. return interceptor(ctx, in, info, handler)
  1864. }
  1865. func _Api_ShopManagerQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1866. in := new(StandardRequest)
  1867. if err := dec(in); err != nil {
  1868. return nil, err
  1869. }
  1870. if interceptor == nil {
  1871. return srv.(ApiServer).ShopManagerQuery(ctx, in)
  1872. }
  1873. info := &grpc.UnaryServerInfo{
  1874. Server: srv,
  1875. FullMethod: "/base.Api/ShopManagerQuery",
  1876. }
  1877. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1878. return srv.(ApiServer).ShopManagerQuery(ctx, req.(*StandardRequest))
  1879. }
  1880. return interceptor(ctx, in, info, handler)
  1881. }
  1882. func _Api_ShopManagerAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1883. in := new(StandardRequest)
  1884. if err := dec(in); err != nil {
  1885. return nil, err
  1886. }
  1887. if interceptor == nil {
  1888. return srv.(ApiServer).ShopManagerAdd(ctx, in)
  1889. }
  1890. info := &grpc.UnaryServerInfo{
  1891. Server: srv,
  1892. FullMethod: "/base.Api/ShopManagerAdd",
  1893. }
  1894. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1895. return srv.(ApiServer).ShopManagerAdd(ctx, req.(*StandardRequest))
  1896. }
  1897. return interceptor(ctx, in, info, handler)
  1898. }
  1899. func _Api_ShopManagerEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1900. in := new(StandardRequest)
  1901. if err := dec(in); err != nil {
  1902. return nil, err
  1903. }
  1904. if interceptor == nil {
  1905. return srv.(ApiServer).ShopManagerEdit(ctx, in)
  1906. }
  1907. info := &grpc.UnaryServerInfo{
  1908. Server: srv,
  1909. FullMethod: "/base.Api/ShopManagerEdit",
  1910. }
  1911. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1912. return srv.(ApiServer).ShopManagerEdit(ctx, req.(*StandardRequest))
  1913. }
  1914. return interceptor(ctx, in, info, handler)
  1915. }
  1916. func _Api_ShopManagerStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1917. in := new(StandardRequest)
  1918. if err := dec(in); err != nil {
  1919. return nil, err
  1920. }
  1921. if interceptor == nil {
  1922. return srv.(ApiServer).ShopManagerStatusEdit(ctx, in)
  1923. }
  1924. info := &grpc.UnaryServerInfo{
  1925. Server: srv,
  1926. FullMethod: "/base.Api/ShopManagerStatusEdit",
  1927. }
  1928. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1929. return srv.(ApiServer).ShopManagerStatusEdit(ctx, req.(*StandardRequest))
  1930. }
  1931. return interceptor(ctx, in, info, handler)
  1932. }
  1933. func _Api_ShopConfigQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1934. in := new(StandardRequest)
  1935. if err := dec(in); err != nil {
  1936. return nil, err
  1937. }
  1938. if interceptor == nil {
  1939. return srv.(ApiServer).ShopConfigQuery(ctx, in)
  1940. }
  1941. info := &grpc.UnaryServerInfo{
  1942. Server: srv,
  1943. FullMethod: "/base.Api/ShopConfigQuery",
  1944. }
  1945. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1946. return srv.(ApiServer).ShopConfigQuery(ctx, req.(*StandardRequest))
  1947. }
  1948. return interceptor(ctx, in, info, handler)
  1949. }
  1950. func _Api_ShopConfigEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1951. in := new(StandardRequest)
  1952. if err := dec(in); err != nil {
  1953. return nil, err
  1954. }
  1955. if interceptor == nil {
  1956. return srv.(ApiServer).ShopConfigEdit(ctx, in)
  1957. }
  1958. info := &grpc.UnaryServerInfo{
  1959. Server: srv,
  1960. FullMethod: "/base.Api/ShopConfigEdit",
  1961. }
  1962. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1963. return srv.(ApiServer).ShopConfigEdit(ctx, req.(*StandardRequest))
  1964. }
  1965. return interceptor(ctx, in, info, handler)
  1966. }
  1967. func _Api_ShopVipUserQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1968. in := new(StandardRequest)
  1969. if err := dec(in); err != nil {
  1970. return nil, err
  1971. }
  1972. if interceptor == nil {
  1973. return srv.(ApiServer).ShopVipUserQuery(ctx, in)
  1974. }
  1975. info := &grpc.UnaryServerInfo{
  1976. Server: srv,
  1977. FullMethod: "/base.Api/ShopVipUserQuery",
  1978. }
  1979. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1980. return srv.(ApiServer).ShopVipUserQuery(ctx, req.(*StandardRequest))
  1981. }
  1982. return interceptor(ctx, in, info, handler)
  1983. }
  1984. func _Api_ShopVipUserAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1985. in := new(StandardRequest)
  1986. if err := dec(in); err != nil {
  1987. return nil, err
  1988. }
  1989. if interceptor == nil {
  1990. return srv.(ApiServer).ShopVipUserAdd(ctx, in)
  1991. }
  1992. info := &grpc.UnaryServerInfo{
  1993. Server: srv,
  1994. FullMethod: "/base.Api/ShopVipUserAdd",
  1995. }
  1996. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1997. return srv.(ApiServer).ShopVipUserAdd(ctx, req.(*StandardRequest))
  1998. }
  1999. return interceptor(ctx, in, info, handler)
  2000. }
  2001. func _Api_ShopVipUserEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2002. in := new(StandardRequest)
  2003. if err := dec(in); err != nil {
  2004. return nil, err
  2005. }
  2006. if interceptor == nil {
  2007. return srv.(ApiServer).ShopVipUserEdit(ctx, in)
  2008. }
  2009. info := &grpc.UnaryServerInfo{
  2010. Server: srv,
  2011. FullMethod: "/base.Api/ShopVipUserEdit",
  2012. }
  2013. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2014. return srv.(ApiServer).ShopVipUserEdit(ctx, req.(*StandardRequest))
  2015. }
  2016. return interceptor(ctx, in, info, handler)
  2017. }
  2018. func _Api_ShopVipUserStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2019. in := new(StandardRequest)
  2020. if err := dec(in); err != nil {
  2021. return nil, err
  2022. }
  2023. if interceptor == nil {
  2024. return srv.(ApiServer).ShopVipUserStatusEdit(ctx, in)
  2025. }
  2026. info := &grpc.UnaryServerInfo{
  2027. Server: srv,
  2028. FullMethod: "/base.Api/ShopVipUserStatusEdit",
  2029. }
  2030. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2031. return srv.(ApiServer).ShopVipUserStatusEdit(ctx, req.(*StandardRequest))
  2032. }
  2033. return interceptor(ctx, in, info, handler)
  2034. }
  2035. func _Api_AcrossVipUserQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2036. in := new(StandardRequest)
  2037. if err := dec(in); err != nil {
  2038. return nil, err
  2039. }
  2040. if interceptor == nil {
  2041. return srv.(ApiServer).AcrossVipUserQuery(ctx, in)
  2042. }
  2043. info := &grpc.UnaryServerInfo{
  2044. Server: srv,
  2045. FullMethod: "/base.Api/AcrossVipUserQuery",
  2046. }
  2047. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2048. return srv.(ApiServer).AcrossVipUserQuery(ctx, req.(*StandardRequest))
  2049. }
  2050. return interceptor(ctx, in, info, handler)
  2051. }
  2052. func _Api_AcrossVipUserAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2053. in := new(StandardRequest)
  2054. if err := dec(in); err != nil {
  2055. return nil, err
  2056. }
  2057. if interceptor == nil {
  2058. return srv.(ApiServer).AcrossVipUserAdd(ctx, in)
  2059. }
  2060. info := &grpc.UnaryServerInfo{
  2061. Server: srv,
  2062. FullMethod: "/base.Api/AcrossVipUserAdd",
  2063. }
  2064. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2065. return srv.(ApiServer).AcrossVipUserAdd(ctx, req.(*StandardRequest))
  2066. }
  2067. return interceptor(ctx, in, info, handler)
  2068. }
  2069. func _Api_AcrossVipUserDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2070. in := new(StandardRequest)
  2071. if err := dec(in); err != nil {
  2072. return nil, err
  2073. }
  2074. if interceptor == nil {
  2075. return srv.(ApiServer).AcrossVipUserDel(ctx, in)
  2076. }
  2077. info := &grpc.UnaryServerInfo{
  2078. Server: srv,
  2079. FullMethod: "/base.Api/AcrossVipUserDel",
  2080. }
  2081. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2082. return srv.(ApiServer).AcrossVipUserDel(ctx, req.(*StandardRequest))
  2083. }
  2084. return interceptor(ctx, in, info, handler)
  2085. }
  2086. func _Api_VipPhoneQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2087. in := new(StandardRequest)
  2088. if err := dec(in); err != nil {
  2089. return nil, err
  2090. }
  2091. if interceptor == nil {
  2092. return srv.(ApiServer).VipPhoneQuery(ctx, in)
  2093. }
  2094. info := &grpc.UnaryServerInfo{
  2095. Server: srv,
  2096. FullMethod: "/base.Api/VipPhoneQuery",
  2097. }
  2098. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2099. return srv.(ApiServer).VipPhoneQuery(ctx, req.(*StandardRequest))
  2100. }
  2101. return interceptor(ctx, in, info, handler)
  2102. }
  2103. func _Api_VipMainPhoneCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2104. in := new(StandardRequest)
  2105. if err := dec(in); err != nil {
  2106. return nil, err
  2107. }
  2108. if interceptor == nil {
  2109. return srv.(ApiServer).VipMainPhoneCheck(ctx, in)
  2110. }
  2111. info := &grpc.UnaryServerInfo{
  2112. Server: srv,
  2113. FullMethod: "/base.Api/VipMainPhoneCheck",
  2114. }
  2115. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2116. return srv.(ApiServer).VipMainPhoneCheck(ctx, req.(*StandardRequest))
  2117. }
  2118. return interceptor(ctx, in, info, handler)
  2119. }
  2120. func _Api_VipOtherPhoneAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2121. in := new(StandardRequest)
  2122. if err := dec(in); err != nil {
  2123. return nil, err
  2124. }
  2125. if interceptor == nil {
  2126. return srv.(ApiServer).VipOtherPhoneAdd(ctx, in)
  2127. }
  2128. info := &grpc.UnaryServerInfo{
  2129. Server: srv,
  2130. FullMethod: "/base.Api/VipOtherPhoneAdd",
  2131. }
  2132. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2133. return srv.(ApiServer).VipOtherPhoneAdd(ctx, req.(*StandardRequest))
  2134. }
  2135. return interceptor(ctx, in, info, handler)
  2136. }
  2137. func _Api_VipOtherPhoneEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2138. in := new(StandardRequest)
  2139. if err := dec(in); err != nil {
  2140. return nil, err
  2141. }
  2142. if interceptor == nil {
  2143. return srv.(ApiServer).VipOtherPhoneEdit(ctx, in)
  2144. }
  2145. info := &grpc.UnaryServerInfo{
  2146. Server: srv,
  2147. FullMethod: "/base.Api/VipOtherPhoneEdit",
  2148. }
  2149. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2150. return srv.(ApiServer).VipOtherPhoneEdit(ctx, req.(*StandardRequest))
  2151. }
  2152. return interceptor(ctx, in, info, handler)
  2153. }
  2154. func _Api_VipOtherPhoneStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2155. in := new(StandardRequest)
  2156. if err := dec(in); err != nil {
  2157. return nil, err
  2158. }
  2159. if interceptor == nil {
  2160. return srv.(ApiServer).VipOtherPhoneStatusEdit(ctx, in)
  2161. }
  2162. info := &grpc.UnaryServerInfo{
  2163. Server: srv,
  2164. FullMethod: "/base.Api/VipOtherPhoneStatusEdit",
  2165. }
  2166. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2167. return srv.(ApiServer).VipOtherPhoneStatusEdit(ctx, req.(*StandardRequest))
  2168. }
  2169. return interceptor(ctx, in, info, handler)
  2170. }
  2171. func _Api_TempVipUserQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2172. in := new(StandardRequest)
  2173. if err := dec(in); err != nil {
  2174. return nil, err
  2175. }
  2176. if interceptor == nil {
  2177. return srv.(ApiServer).TempVipUserQuery(ctx, in)
  2178. }
  2179. info := &grpc.UnaryServerInfo{
  2180. Server: srv,
  2181. FullMethod: "/base.Api/TempVipUserQuery",
  2182. }
  2183. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2184. return srv.(ApiServer).TempVipUserQuery(ctx, req.(*StandardRequest))
  2185. }
  2186. return interceptor(ctx, in, info, handler)
  2187. }
  2188. func _Api_TempVipUserAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2189. in := new(StandardRequest)
  2190. if err := dec(in); err != nil {
  2191. return nil, err
  2192. }
  2193. if interceptor == nil {
  2194. return srv.(ApiServer).TempVipUserAdd(ctx, in)
  2195. }
  2196. info := &grpc.UnaryServerInfo{
  2197. Server: srv,
  2198. FullMethod: "/base.Api/TempVipUserAdd",
  2199. }
  2200. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2201. return srv.(ApiServer).TempVipUserAdd(ctx, req.(*StandardRequest))
  2202. }
  2203. return interceptor(ctx, in, info, handler)
  2204. }
  2205. func _Api_TempVipUserEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2206. in := new(StandardRequest)
  2207. if err := dec(in); err != nil {
  2208. return nil, err
  2209. }
  2210. if interceptor == nil {
  2211. return srv.(ApiServer).TempVipUserEdit(ctx, in)
  2212. }
  2213. info := &grpc.UnaryServerInfo{
  2214. Server: srv,
  2215. FullMethod: "/base.Api/TempVipUserEdit",
  2216. }
  2217. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2218. return srv.(ApiServer).TempVipUserEdit(ctx, req.(*StandardRequest))
  2219. }
  2220. return interceptor(ctx, in, info, handler)
  2221. }
  2222. func _Api_TempVipUserStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2223. in := new(StandardRequest)
  2224. if err := dec(in); err != nil {
  2225. return nil, err
  2226. }
  2227. if interceptor == nil {
  2228. return srv.(ApiServer).TempVipUserStatusEdit(ctx, in)
  2229. }
  2230. info := &grpc.UnaryServerInfo{
  2231. Server: srv,
  2232. FullMethod: "/base.Api/TempVipUserStatusEdit",
  2233. }
  2234. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2235. return srv.(ApiServer).TempVipUserStatusEdit(ctx, req.(*StandardRequest))
  2236. }
  2237. return interceptor(ctx, in, info, handler)
  2238. }
  2239. func _Api_VipHourEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2240. in := new(StandardRequest)
  2241. if err := dec(in); err != nil {
  2242. return nil, err
  2243. }
  2244. if interceptor == nil {
  2245. return srv.(ApiServer).VipHourEdit(ctx, in)
  2246. }
  2247. info := &grpc.UnaryServerInfo{
  2248. Server: srv,
  2249. FullMethod: "/base.Api/VipHourEdit",
  2250. }
  2251. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2252. return srv.(ApiServer).VipHourEdit(ctx, req.(*StandardRequest))
  2253. }
  2254. return interceptor(ctx, in, info, handler)
  2255. }
  2256. func _Api_VipConsumeListQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2257. in := new(StandardRequest)
  2258. if err := dec(in); err != nil {
  2259. return nil, err
  2260. }
  2261. if interceptor == nil {
  2262. return srv.(ApiServer).VipConsumeListQuery(ctx, in)
  2263. }
  2264. info := &grpc.UnaryServerInfo{
  2265. Server: srv,
  2266. FullMethod: "/base.Api/VipConsumeListQuery",
  2267. }
  2268. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2269. return srv.(ApiServer).VipConsumeListQuery(ctx, req.(*StandardRequest))
  2270. }
  2271. return interceptor(ctx, in, info, handler)
  2272. }
  2273. func _Api_VipConsumeDetailQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2274. in := new(StandardRequest)
  2275. if err := dec(in); err != nil {
  2276. return nil, err
  2277. }
  2278. if interceptor == nil {
  2279. return srv.(ApiServer).VipConsumeDetailQuery(ctx, in)
  2280. }
  2281. info := &grpc.UnaryServerInfo{
  2282. Server: srv,
  2283. FullMethod: "/base.Api/VipConsumeDetailQuery",
  2284. }
  2285. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2286. return srv.(ApiServer).VipConsumeDetailQuery(ctx, req.(*StandardRequest))
  2287. }
  2288. return interceptor(ctx, in, info, handler)
  2289. }
  2290. func _Api_VipClassRelationEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2291. in := new(StandardRequest)
  2292. if err := dec(in); err != nil {
  2293. return nil, err
  2294. }
  2295. if interceptor == nil {
  2296. return srv.(ApiServer).VipClassRelationEdit(ctx, in)
  2297. }
  2298. info := &grpc.UnaryServerInfo{
  2299. Server: srv,
  2300. FullMethod: "/base.Api/VipClassRelationEdit",
  2301. }
  2302. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2303. return srv.(ApiServer).VipClassRelationEdit(ctx, req.(*StandardRequest))
  2304. }
  2305. return interceptor(ctx, in, info, handler)
  2306. }
  2307. func _Api_VipHourChgQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2308. in := new(StandardRequest)
  2309. if err := dec(in); err != nil {
  2310. return nil, err
  2311. }
  2312. if interceptor == nil {
  2313. return srv.(ApiServer).VipHourChgQuery(ctx, in)
  2314. }
  2315. info := &grpc.UnaryServerInfo{
  2316. Server: srv,
  2317. FullMethod: "/base.Api/VipHourChgQuery",
  2318. }
  2319. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2320. return srv.(ApiServer).VipHourChgQuery(ctx, req.(*StandardRequest))
  2321. }
  2322. return interceptor(ctx, in, info, handler)
  2323. }
  2324. func _Api_GetOverlayImgQiNiuToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2325. in := new(GetOverlayImgRequest)
  2326. if err := dec(in); err != nil {
  2327. return nil, err
  2328. }
  2329. if interceptor == nil {
  2330. return srv.(ApiServer).GetOverlayImgQiNiuToken(ctx, in)
  2331. }
  2332. info := &grpc.UnaryServerInfo{
  2333. Server: srv,
  2334. FullMethod: "/base.Api/GetOverlayImgQiNiuToken",
  2335. }
  2336. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2337. return srv.(ApiServer).GetOverlayImgQiNiuToken(ctx, req.(*GetOverlayImgRequest))
  2338. }
  2339. return interceptor(ctx, in, info, handler)
  2340. }
  2341. func _Api_GetSimpleQiNiuToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2342. in := new(DefaultRequest)
  2343. if err := dec(in); err != nil {
  2344. return nil, err
  2345. }
  2346. if interceptor == nil {
  2347. return srv.(ApiServer).GetSimpleQiNiuToken(ctx, in)
  2348. }
  2349. info := &grpc.UnaryServerInfo{
  2350. Server: srv,
  2351. FullMethod: "/base.Api/GetSimpleQiNiuToken",
  2352. }
  2353. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2354. return srv.(ApiServer).GetSimpleQiNiuToken(ctx, req.(*DefaultRequest))
  2355. }
  2356. return interceptor(ctx, in, info, handler)
  2357. }
  2358. func _Api_ClassQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2359. in := new(StandardRequest)
  2360. if err := dec(in); err != nil {
  2361. return nil, err
  2362. }
  2363. if interceptor == nil {
  2364. return srv.(ApiServer).ClassQuery(ctx, in)
  2365. }
  2366. info := &grpc.UnaryServerInfo{
  2367. Server: srv,
  2368. FullMethod: "/base.Api/ClassQuery",
  2369. }
  2370. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2371. return srv.(ApiServer).ClassQuery(ctx, req.(*StandardRequest))
  2372. }
  2373. return interceptor(ctx, in, info, handler)
  2374. }
  2375. func _Api_ClassAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2376. in := new(StandardRequest)
  2377. if err := dec(in); err != nil {
  2378. return nil, err
  2379. }
  2380. if interceptor == nil {
  2381. return srv.(ApiServer).ClassAdd(ctx, in)
  2382. }
  2383. info := &grpc.UnaryServerInfo{
  2384. Server: srv,
  2385. FullMethod: "/base.Api/ClassAdd",
  2386. }
  2387. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2388. return srv.(ApiServer).ClassAdd(ctx, req.(*StandardRequest))
  2389. }
  2390. return interceptor(ctx, in, info, handler)
  2391. }
  2392. func _Api_ClassEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2393. in := new(StandardRequest)
  2394. if err := dec(in); err != nil {
  2395. return nil, err
  2396. }
  2397. if interceptor == nil {
  2398. return srv.(ApiServer).ClassEdit(ctx, in)
  2399. }
  2400. info := &grpc.UnaryServerInfo{
  2401. Server: srv,
  2402. FullMethod: "/base.Api/ClassEdit",
  2403. }
  2404. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2405. return srv.(ApiServer).ClassEdit(ctx, req.(*StandardRequest))
  2406. }
  2407. return interceptor(ctx, in, info, handler)
  2408. }
  2409. func _Api_ClassStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2410. in := new(StandardRequest)
  2411. if err := dec(in); err != nil {
  2412. return nil, err
  2413. }
  2414. if interceptor == nil {
  2415. return srv.(ApiServer).ClassStatusEdit(ctx, in)
  2416. }
  2417. info := &grpc.UnaryServerInfo{
  2418. Server: srv,
  2419. FullMethod: "/base.Api/ClassStatusEdit",
  2420. }
  2421. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2422. return srv.(ApiServer).ClassStatusEdit(ctx, req.(*StandardRequest))
  2423. }
  2424. return interceptor(ctx, in, info, handler)
  2425. }
  2426. func _Api_ClassColorEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2427. in := new(StandardRequest)
  2428. if err := dec(in); err != nil {
  2429. return nil, err
  2430. }
  2431. if interceptor == nil {
  2432. return srv.(ApiServer).ClassColorEdit(ctx, in)
  2433. }
  2434. info := &grpc.UnaryServerInfo{
  2435. Server: srv,
  2436. FullMethod: "/base.Api/ClassColorEdit",
  2437. }
  2438. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2439. return srv.(ApiServer).ClassColorEdit(ctx, req.(*StandardRequest))
  2440. }
  2441. return interceptor(ctx, in, info, handler)
  2442. }
  2443. func _Api_ClassWxVisibleEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2444. in := new(StandardRequest)
  2445. if err := dec(in); err != nil {
  2446. return nil, err
  2447. }
  2448. if interceptor == nil {
  2449. return srv.(ApiServer).ClassWxVisibleEdit(ctx, in)
  2450. }
  2451. info := &grpc.UnaryServerInfo{
  2452. Server: srv,
  2453. FullMethod: "/base.Api/ClassWxVisibleEdit",
  2454. }
  2455. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2456. return srv.(ApiServer).ClassWxVisibleEdit(ctx, req.(*StandardRequest))
  2457. }
  2458. return interceptor(ctx, in, info, handler)
  2459. }
  2460. func _Api_ClassVipEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2461. in := new(StandardRequest)
  2462. if err := dec(in); err != nil {
  2463. return nil, err
  2464. }
  2465. if interceptor == nil {
  2466. return srv.(ApiServer).ClassVipEdit(ctx, in)
  2467. }
  2468. info := &grpc.UnaryServerInfo{
  2469. Server: srv,
  2470. FullMethod: "/base.Api/ClassVipEdit",
  2471. }
  2472. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2473. return srv.(ApiServer).ClassVipEdit(ctx, req.(*StandardRequest))
  2474. }
  2475. return interceptor(ctx, in, info, handler)
  2476. }
  2477. func _Api_SttPlanBasicQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2478. in := new(StandardRequest)
  2479. if err := dec(in); err != nil {
  2480. return nil, err
  2481. }
  2482. if interceptor == nil {
  2483. return srv.(ApiServer).SttPlanBasicQuery(ctx, in)
  2484. }
  2485. info := &grpc.UnaryServerInfo{
  2486. Server: srv,
  2487. FullMethod: "/base.Api/SttPlanBasicQuery",
  2488. }
  2489. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2490. return srv.(ApiServer).SttPlanBasicQuery(ctx, req.(*StandardRequest))
  2491. }
  2492. return interceptor(ctx, in, info, handler)
  2493. }
  2494. func _Api_SttPlanBasicAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2495. in := new(StandardRequest)
  2496. if err := dec(in); err != nil {
  2497. return nil, err
  2498. }
  2499. if interceptor == nil {
  2500. return srv.(ApiServer).SttPlanBasicAdd(ctx, in)
  2501. }
  2502. info := &grpc.UnaryServerInfo{
  2503. Server: srv,
  2504. FullMethod: "/base.Api/SttPlanBasicAdd",
  2505. }
  2506. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2507. return srv.(ApiServer).SttPlanBasicAdd(ctx, req.(*StandardRequest))
  2508. }
  2509. return interceptor(ctx, in, info, handler)
  2510. }
  2511. func _Api_SttPlanBasicEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2512. in := new(StandardRequest)
  2513. if err := dec(in); err != nil {
  2514. return nil, err
  2515. }
  2516. if interceptor == nil {
  2517. return srv.(ApiServer).SttPlanBasicEdit(ctx, in)
  2518. }
  2519. info := &grpc.UnaryServerInfo{
  2520. Server: srv,
  2521. FullMethod: "/base.Api/SttPlanBasicEdit",
  2522. }
  2523. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2524. return srv.(ApiServer).SttPlanBasicEdit(ctx, req.(*StandardRequest))
  2525. }
  2526. return interceptor(ctx, in, info, handler)
  2527. }
  2528. func _Api_SttPlanBasicShopEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2529. in := new(StandardRequest)
  2530. if err := dec(in); err != nil {
  2531. return nil, err
  2532. }
  2533. if interceptor == nil {
  2534. return srv.(ApiServer).SttPlanBasicShopEdit(ctx, in)
  2535. }
  2536. info := &grpc.UnaryServerInfo{
  2537. Server: srv,
  2538. FullMethod: "/base.Api/SttPlanBasicShopEdit",
  2539. }
  2540. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2541. return srv.(ApiServer).SttPlanBasicShopEdit(ctx, req.(*StandardRequest))
  2542. }
  2543. return interceptor(ctx, in, info, handler)
  2544. }
  2545. func _Api_SttPlanBasicStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2546. in := new(StandardRequest)
  2547. if err := dec(in); err != nil {
  2548. return nil, err
  2549. }
  2550. if interceptor == nil {
  2551. return srv.(ApiServer).SttPlanBasicStatusEdit(ctx, in)
  2552. }
  2553. info := &grpc.UnaryServerInfo{
  2554. Server: srv,
  2555. FullMethod: "/base.Api/SttPlanBasicStatusEdit",
  2556. }
  2557. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2558. return srv.(ApiServer).SttPlanBasicStatusEdit(ctx, req.(*StandardRequest))
  2559. }
  2560. return interceptor(ctx, in, info, handler)
  2561. }
  2562. func _Api_SttPlanBasicPublish_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2563. in := new(StandardRequest)
  2564. if err := dec(in); err != nil {
  2565. return nil, err
  2566. }
  2567. if interceptor == nil {
  2568. return srv.(ApiServer).SttPlanBasicPublish(ctx, in)
  2569. }
  2570. info := &grpc.UnaryServerInfo{
  2571. Server: srv,
  2572. FullMethod: "/base.Api/SttPlanBasicPublish",
  2573. }
  2574. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2575. return srv.(ApiServer).SttPlanBasicPublish(ctx, req.(*StandardRequest))
  2576. }
  2577. return interceptor(ctx, in, info, handler)
  2578. }
  2579. func _Api_SttPlanPreview_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2580. in := new(StandardRequest)
  2581. if err := dec(in); err != nil {
  2582. return nil, err
  2583. }
  2584. if interceptor == nil {
  2585. return srv.(ApiServer).SttPlanPreview(ctx, in)
  2586. }
  2587. info := &grpc.UnaryServerInfo{
  2588. Server: srv,
  2589. FullMethod: "/base.Api/SttPlanPreview",
  2590. }
  2591. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2592. return srv.(ApiServer).SttPlanPreview(ctx, req.(*StandardRequest))
  2593. }
  2594. return interceptor(ctx, in, info, handler)
  2595. }
  2596. func _Api_SttPlanCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2597. in := new(StandardRequest)
  2598. if err := dec(in); err != nil {
  2599. return nil, err
  2600. }
  2601. if interceptor == nil {
  2602. return srv.(ApiServer).SttPlanCopy(ctx, in)
  2603. }
  2604. info := &grpc.UnaryServerInfo{
  2605. Server: srv,
  2606. FullMethod: "/base.Api/SttPlanCopy",
  2607. }
  2608. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2609. return srv.(ApiServer).SttPlanCopy(ctx, req.(*StandardRequest))
  2610. }
  2611. return interceptor(ctx, in, info, handler)
  2612. }
  2613. func _Api_SttPlanDetailQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2614. in := new(StandardRequest)
  2615. if err := dec(in); err != nil {
  2616. return nil, err
  2617. }
  2618. if interceptor == nil {
  2619. return srv.(ApiServer).SttPlanDetailQuery(ctx, in)
  2620. }
  2621. info := &grpc.UnaryServerInfo{
  2622. Server: srv,
  2623. FullMethod: "/base.Api/SttPlanDetailQuery",
  2624. }
  2625. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2626. return srv.(ApiServer).SttPlanDetailQuery(ctx, req.(*StandardRequest))
  2627. }
  2628. return interceptor(ctx, in, info, handler)
  2629. }
  2630. func _Api_SttPlanDetailBatchSave_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2631. in := new(StandardRequest)
  2632. if err := dec(in); err != nil {
  2633. return nil, err
  2634. }
  2635. if interceptor == nil {
  2636. return srv.(ApiServer).SttPlanDetailBatchSave(ctx, in)
  2637. }
  2638. info := &grpc.UnaryServerInfo{
  2639. Server: srv,
  2640. FullMethod: "/base.Api/SttPlanDetailBatchSave",
  2641. }
  2642. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2643. return srv.(ApiServer).SttPlanDetailBatchSave(ctx, req.(*StandardRequest))
  2644. }
  2645. return interceptor(ctx, in, info, handler)
  2646. }
  2647. func _Api_STTBasicQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2648. in := new(StandardRequest)
  2649. if err := dec(in); err != nil {
  2650. return nil, err
  2651. }
  2652. if interceptor == nil {
  2653. return srv.(ApiServer).STTBasicQuery(ctx, in)
  2654. }
  2655. info := &grpc.UnaryServerInfo{
  2656. Server: srv,
  2657. FullMethod: "/base.Api/STTBasicQuery",
  2658. }
  2659. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2660. return srv.(ApiServer).STTBasicQuery(ctx, req.(*StandardRequest))
  2661. }
  2662. return interceptor(ctx, in, info, handler)
  2663. }
  2664. func _Api_STTBasicAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2665. in := new(StandardRequest)
  2666. if err := dec(in); err != nil {
  2667. return nil, err
  2668. }
  2669. if interceptor == nil {
  2670. return srv.(ApiServer).STTBasicAdd(ctx, in)
  2671. }
  2672. info := &grpc.UnaryServerInfo{
  2673. Server: srv,
  2674. FullMethod: "/base.Api/STTBasicAdd",
  2675. }
  2676. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2677. return srv.(ApiServer).STTBasicAdd(ctx, req.(*StandardRequest))
  2678. }
  2679. return interceptor(ctx, in, info, handler)
  2680. }
  2681. func _Api_STTBasicEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2682. in := new(StandardRequest)
  2683. if err := dec(in); err != nil {
  2684. return nil, err
  2685. }
  2686. if interceptor == nil {
  2687. return srv.(ApiServer).STTBasicEdit(ctx, in)
  2688. }
  2689. info := &grpc.UnaryServerInfo{
  2690. Server: srv,
  2691. FullMethod: "/base.Api/STTBasicEdit",
  2692. }
  2693. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2694. return srv.(ApiServer).STTBasicEdit(ctx, req.(*StandardRequest))
  2695. }
  2696. return interceptor(ctx, in, info, handler)
  2697. }
  2698. func _Api_STTBasicStatusEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2699. in := new(StandardRequest)
  2700. if err := dec(in); err != nil {
  2701. return nil, err
  2702. }
  2703. if interceptor == nil {
  2704. return srv.(ApiServer).STTBasicStatusEdit(ctx, in)
  2705. }
  2706. info := &grpc.UnaryServerInfo{
  2707. Server: srv,
  2708. FullMethod: "/base.Api/STTBasicStatusEdit",
  2709. }
  2710. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2711. return srv.(ApiServer).STTBasicStatusEdit(ctx, req.(*StandardRequest))
  2712. }
  2713. return interceptor(ctx, in, info, handler)
  2714. }
  2715. func _Api_STTBasicPreview_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2716. in := new(StandardRequest)
  2717. if err := dec(in); err != nil {
  2718. return nil, err
  2719. }
  2720. if interceptor == nil {
  2721. return srv.(ApiServer).STTBasicPreview(ctx, in)
  2722. }
  2723. info := &grpc.UnaryServerInfo{
  2724. Server: srv,
  2725. FullMethod: "/base.Api/STTBasicPreview",
  2726. }
  2727. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2728. return srv.(ApiServer).STTBasicPreview(ctx, req.(*StandardRequest))
  2729. }
  2730. return interceptor(ctx, in, info, handler)
  2731. }
  2732. func _Api_STTBasicCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2733. in := new(StandardRequest)
  2734. if err := dec(in); err != nil {
  2735. return nil, err
  2736. }
  2737. if interceptor == nil {
  2738. return srv.(ApiServer).STTBasicCopy(ctx, in)
  2739. }
  2740. info := &grpc.UnaryServerInfo{
  2741. Server: srv,
  2742. FullMethod: "/base.Api/STTBasicCopy",
  2743. }
  2744. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2745. return srv.(ApiServer).STTBasicCopy(ctx, req.(*StandardRequest))
  2746. }
  2747. return interceptor(ctx, in, info, handler)
  2748. }
  2749. func _Api_STTBasicOfflineEdit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2750. in := new(StandardRequest)
  2751. if err := dec(in); err != nil {
  2752. return nil, err
  2753. }
  2754. if interceptor == nil {
  2755. return srv.(ApiServer).STTBasicOfflineEdit(ctx, in)
  2756. }
  2757. info := &grpc.UnaryServerInfo{
  2758. Server: srv,
  2759. FullMethod: "/base.Api/STTBasicOfflineEdit",
  2760. }
  2761. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2762. return srv.(ApiServer).STTBasicOfflineEdit(ctx, req.(*StandardRequest))
  2763. }
  2764. return interceptor(ctx, in, info, handler)
  2765. }
  2766. func _Api_STTDetailListQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2767. in := new(StandardRequest)
  2768. if err := dec(in); err != nil {
  2769. return nil, err
  2770. }
  2771. if interceptor == nil {
  2772. return srv.(ApiServer).STTDetailListQuery(ctx, in)
  2773. }
  2774. info := &grpc.UnaryServerInfo{
  2775. Server: srv,
  2776. FullMethod: "/base.Api/STTDetailListQuery",
  2777. }
  2778. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2779. return srv.(ApiServer).STTDetailListQuery(ctx, req.(*StandardRequest))
  2780. }
  2781. return interceptor(ctx, in, info, handler)
  2782. }
  2783. func _Api_STTBasicDetailBatchSave_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2784. in := new(StandardRequest)
  2785. if err := dec(in); err != nil {
  2786. return nil, err
  2787. }
  2788. if interceptor == nil {
  2789. return srv.(ApiServer).STTBasicDetailBatchSave(ctx, in)
  2790. }
  2791. info := &grpc.UnaryServerInfo{
  2792. Server: srv,
  2793. FullMethod: "/base.Api/STTBasicDetailBatchSave",
  2794. }
  2795. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2796. return srv.(ApiServer).STTBasicDetailBatchSave(ctx, req.(*StandardRequest))
  2797. }
  2798. return interceptor(ctx, in, info, handler)
  2799. }
  2800. func _Api_STTDetailAllowDelCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2801. in := new(StandardRequest)
  2802. if err := dec(in); err != nil {
  2803. return nil, err
  2804. }
  2805. if interceptor == nil {
  2806. return srv.(ApiServer).STTDetailAllowDelCheck(ctx, in)
  2807. }
  2808. info := &grpc.UnaryServerInfo{
  2809. Server: srv,
  2810. FullMethod: "/base.Api/STTDetailAllowDelCheck",
  2811. }
  2812. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2813. return srv.(ApiServer).STTDetailAllowDelCheck(ctx, req.(*StandardRequest))
  2814. }
  2815. return interceptor(ctx, in, info, handler)
  2816. }
  2817. func _Api_CourseDetailQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2818. in := new(StandardRequest)
  2819. if err := dec(in); err != nil {
  2820. return nil, err
  2821. }
  2822. if interceptor == nil {
  2823. return srv.(ApiServer).CourseDetailQuery(ctx, in)
  2824. }
  2825. info := &grpc.UnaryServerInfo{
  2826. Server: srv,
  2827. FullMethod: "/base.Api/CourseDetailQuery",
  2828. }
  2829. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2830. return srv.(ApiServer).CourseDetailQuery(ctx, req.(*StandardRequest))
  2831. }
  2832. return interceptor(ctx, in, info, handler)
  2833. }
  2834. func _Api_OrderListQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2835. in := new(StandardRequest)
  2836. if err := dec(in); err != nil {
  2837. return nil, err
  2838. }
  2839. if interceptor == nil {
  2840. return srv.(ApiServer).OrderListQuery(ctx, in)
  2841. }
  2842. info := &grpc.UnaryServerInfo{
  2843. Server: srv,
  2844. FullMethod: "/base.Api/OrderListQuery",
  2845. }
  2846. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2847. return srv.(ApiServer).OrderListQuery(ctx, req.(*StandardRequest))
  2848. }
  2849. return interceptor(ctx, in, info, handler)
  2850. }
  2851. func _Api_OrderAddByManager_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2852. in := new(StandardRequest)
  2853. if err := dec(in); err != nil {
  2854. return nil, err
  2855. }
  2856. if interceptor == nil {
  2857. return srv.(ApiServer).OrderAddByManager(ctx, in)
  2858. }
  2859. info := &grpc.UnaryServerInfo{
  2860. Server: srv,
  2861. FullMethod: "/base.Api/OrderAddByManager",
  2862. }
  2863. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2864. return srv.(ApiServer).OrderAddByManager(ctx, req.(*StandardRequest))
  2865. }
  2866. return interceptor(ctx, in, info, handler)
  2867. }
  2868. func _Api_OrderCancelByManager_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2869. in := new(StandardRequest)
  2870. if err := dec(in); err != nil {
  2871. return nil, err
  2872. }
  2873. if interceptor == nil {
  2874. return srv.(ApiServer).OrderCancelByManager(ctx, in)
  2875. }
  2876. info := &grpc.UnaryServerInfo{
  2877. Server: srv,
  2878. FullMethod: "/base.Api/OrderCancelByManager",
  2879. }
  2880. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2881. return srv.(ApiServer).OrderCancelByManager(ctx, req.(*StandardRequest))
  2882. }
  2883. return interceptor(ctx, in, info, handler)
  2884. }
  2885. func _Api_OrderStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2886. in := new(StandardRequest)
  2887. if err := dec(in); err != nil {
  2888. return nil, err
  2889. }
  2890. if interceptor == nil {
  2891. return srv.(ApiServer).OrderStatistics(ctx, in)
  2892. }
  2893. info := &grpc.UnaryServerInfo{
  2894. Server: srv,
  2895. FullMethod: "/base.Api/OrderStatistics",
  2896. }
  2897. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2898. return srv.(ApiServer).OrderStatistics(ctx, req.(*StandardRequest))
  2899. }
  2900. return interceptor(ctx, in, info, handler)
  2901. }
  2902. func _Api_ClassOrderQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2903. in := new(StandardRequest)
  2904. if err := dec(in); err != nil {
  2905. return nil, err
  2906. }
  2907. if interceptor == nil {
  2908. return srv.(ApiServer).ClassOrderQuery(ctx, in)
  2909. }
  2910. info := &grpc.UnaryServerInfo{
  2911. Server: srv,
  2912. FullMethod: "/base.Api/ClassOrderQuery",
  2913. }
  2914. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2915. return srv.(ApiServer).ClassOrderQuery(ctx, req.(*StandardRequest))
  2916. }
  2917. return interceptor(ctx, in, info, handler)
  2918. }
  2919. func _Api_VipUserOrderQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2920. in := new(StandardRequest)
  2921. if err := dec(in); err != nil {
  2922. return nil, err
  2923. }
  2924. if interceptor == nil {
  2925. return srv.(ApiServer).VipUserOrderQuery(ctx, in)
  2926. }
  2927. info := &grpc.UnaryServerInfo{
  2928. Server: srv,
  2929. FullMethod: "/base.Api/VipUserOrderQuery",
  2930. }
  2931. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2932. return srv.(ApiServer).VipUserOrderQuery(ctx, req.(*StandardRequest))
  2933. }
  2934. return interceptor(ctx, in, info, handler)
  2935. }
  2936. func _Api_HrSensorsPublicQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2937. in := new(StandardRequest)
  2938. if err := dec(in); err != nil {
  2939. return nil, err
  2940. }
  2941. if interceptor == nil {
  2942. return srv.(ApiServer).HrSensorsPublicQuery(ctx, in)
  2943. }
  2944. info := &grpc.UnaryServerInfo{
  2945. Server: srv,
  2946. FullMethod: "/base.Api/HrSensorsPublicQuery",
  2947. }
  2948. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2949. return srv.(ApiServer).HrSensorsPublicQuery(ctx, req.(*StandardRequest))
  2950. }
  2951. return interceptor(ctx, in, info, handler)
  2952. }
  2953. func _Api_HrSensorsPvtQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2954. in := new(StandardRequest)
  2955. if err := dec(in); err != nil {
  2956. return nil, err
  2957. }
  2958. if interceptor == nil {
  2959. return srv.(ApiServer).HrSensorsPvtQuery(ctx, in)
  2960. }
  2961. info := &grpc.UnaryServerInfo{
  2962. Server: srv,
  2963. FullMethod: "/base.Api/HrSensorsPvtQuery",
  2964. }
  2965. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2966. return srv.(ApiServer).HrSensorsPvtQuery(ctx, req.(*StandardRequest))
  2967. }
  2968. return interceptor(ctx, in, info, handler)
  2969. }
  2970. func _Api_AddHrSensors_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2971. in := new(StandardRequest)
  2972. if err := dec(in); err != nil {
  2973. return nil, err
  2974. }
  2975. if interceptor == nil {
  2976. return srv.(ApiServer).AddHrSensors(ctx, in)
  2977. }
  2978. info := &grpc.UnaryServerInfo{
  2979. Server: srv,
  2980. FullMethod: "/base.Api/AddHrSensors",
  2981. }
  2982. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2983. return srv.(ApiServer).AddHrSensors(ctx, req.(*StandardRequest))
  2984. }
  2985. return interceptor(ctx, in, info, handler)
  2986. }
  2987. func _Api_AddPvtHrSensors_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2988. in := new(StandardRequest)
  2989. if err := dec(in); err != nil {
  2990. return nil, err
  2991. }
  2992. if interceptor == nil {
  2993. return srv.(ApiServer).AddPvtHrSensors(ctx, in)
  2994. }
  2995. info := &grpc.UnaryServerInfo{
  2996. Server: srv,
  2997. FullMethod: "/base.Api/AddPvtHrSensors",
  2998. }
  2999. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3000. return srv.(ApiServer).AddPvtHrSensors(ctx, req.(*StandardRequest))
  3001. }
  3002. return interceptor(ctx, in, info, handler)
  3003. }
  3004. func _Api_EditHrSensors_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3005. in := new(StandardRequest)
  3006. if err := dec(in); err != nil {
  3007. return nil, err
  3008. }
  3009. if interceptor == nil {
  3010. return srv.(ApiServer).EditHrSensors(ctx, in)
  3011. }
  3012. info := &grpc.UnaryServerInfo{
  3013. Server: srv,
  3014. FullMethod: "/base.Api/EditHrSensors",
  3015. }
  3016. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3017. return srv.(ApiServer).EditHrSensors(ctx, req.(*StandardRequest))
  3018. }
  3019. return interceptor(ctx, in, info, handler)
  3020. }
  3021. func _Api_HrSensorsDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3022. in := new(StandardRequest)
  3023. if err := dec(in); err != nil {
  3024. return nil, err
  3025. }
  3026. if interceptor == nil {
  3027. return srv.(ApiServer).HrSensorsDel(ctx, in)
  3028. }
  3029. info := &grpc.UnaryServerInfo{
  3030. Server: srv,
  3031. FullMethod: "/base.Api/HrSensorsDel",
  3032. }
  3033. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3034. return srv.(ApiServer).HrSensorsDel(ctx, req.(*StandardRequest))
  3035. }
  3036. return interceptor(ctx, in, info, handler)
  3037. }
  3038. func _Api_PKGroupChg_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3039. in := new(StandardRequest)
  3040. if err := dec(in); err != nil {
  3041. return nil, err
  3042. }
  3043. if interceptor == nil {
  3044. return srv.(ApiServer).PKGroupChg(ctx, in)
  3045. }
  3046. info := &grpc.UnaryServerInfo{
  3047. Server: srv,
  3048. FullMethod: "/base.Api/PKGroupChg",
  3049. }
  3050. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3051. return srv.(ApiServer).PKGroupChg(ctx, req.(*StandardRequest))
  3052. }
  3053. return interceptor(ctx, in, info, handler)
  3054. }
  3055. func _Api_BindHrSensor_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3056. in := new(StandardRequest)
  3057. if err := dec(in); err != nil {
  3058. return nil, err
  3059. }
  3060. if interceptor == nil {
  3061. return srv.(ApiServer).BindHrSensor(ctx, in)
  3062. }
  3063. info := &grpc.UnaryServerInfo{
  3064. Server: srv,
  3065. FullMethod: "/base.Api/BindHrSensor",
  3066. }
  3067. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3068. return srv.(ApiServer).BindHrSensor(ctx, req.(*StandardRequest))
  3069. }
  3070. return interceptor(ctx, in, info, handler)
  3071. }
  3072. func _Api_UnBindHrSensor_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3073. in := new(StandardRequest)
  3074. if err := dec(in); err != nil {
  3075. return nil, err
  3076. }
  3077. if interceptor == nil {
  3078. return srv.(ApiServer).UnBindHrSensor(ctx, in)
  3079. }
  3080. info := &grpc.UnaryServerInfo{
  3081. Server: srv,
  3082. FullMethod: "/base.Api/UnBindHrSensor",
  3083. }
  3084. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3085. return srv.(ApiServer).UnBindHrSensor(ctx, req.(*StandardRequest))
  3086. }
  3087. return interceptor(ctx, in, info, handler)
  3088. }
  3089. // Api_ServiceDesc is the grpc.ServiceDesc for Api service.
  3090. // It's only intended for direct use with grpc.RegisterService,
  3091. // and not to be introspected or modified (even as a copy)
  3092. var Api_ServiceDesc = grpc.ServiceDesc{
  3093. ServiceName: "base.Api",
  3094. HandlerType: (*ApiServer)(nil),
  3095. Methods: []grpc.MethodDesc{
  3096. {
  3097. MethodName: "SignUp",
  3098. Handler: _Api_SignUp_Handler,
  3099. },
  3100. {
  3101. MethodName: "SignIn",
  3102. Handler: _Api_SignIn_Handler,
  3103. },
  3104. {
  3105. MethodName: "SignOut",
  3106. Handler: _Api_SignOut_Handler,
  3107. },
  3108. {
  3109. MethodName: "GenVerifyImage",
  3110. Handler: _Api_GenVerifyImage_Handler,
  3111. },
  3112. {
  3113. MethodName: "SelectHrSensors",
  3114. Handler: _Api_SelectHrSensors_Handler,
  3115. },
  3116. {
  3117. MethodName: "AcrossUserSimpleQuery",
  3118. Handler: _Api_AcrossUserSimpleQuery_Handler,
  3119. },
  3120. {
  3121. MethodName: "VipUserSimpleQuery",
  3122. Handler: _Api_VipUserSimpleQuery_Handler,
  3123. },
  3124. {
  3125. MethodName: "TempVipUserSimpleQuery",
  3126. Handler: _Api_TempVipUserSimpleQuery_Handler,
  3127. },
  3128. {
  3129. MethodName: "ShopSimpleQuery",
  3130. Handler: _Api_ShopSimpleQuery_Handler,
  3131. },
  3132. {
  3133. MethodName: "ManageableSimpleQuery",
  3134. Handler: _Api_ManageableSimpleQuery_Handler,
  3135. },
  3136. {
  3137. MethodName: "ClassSimpleQuery",
  3138. Handler: _Api_ClassSimpleQuery_Handler,
  3139. },
  3140. {
  3141. MethodName: "ScreenSimpleQuery",
  3142. Handler: _Api_ScreenSimpleQuery_Handler,
  3143. },
  3144. {
  3145. MethodName: "ManageableShopList",
  3146. Handler: _Api_ManageableShopList_Handler,
  3147. },
  3148. {
  3149. MethodName: "GetShopNavi",
  3150. Handler: _Api_GetShopNavi_Handler,
  3151. },
  3152. {
  3153. MethodName: "ShopGroupQuery",
  3154. Handler: _Api_ShopGroupQuery_Handler,
  3155. },
  3156. {
  3157. MethodName: "ShopGroupAdd",
  3158. Handler: _Api_ShopGroupAdd_Handler,
  3159. },
  3160. {
  3161. MethodName: "ShopGroupEdit",
  3162. Handler: _Api_ShopGroupEdit_Handler,
  3163. },
  3164. {
  3165. MethodName: "ShopGroupStatusEdit",
  3166. Handler: _Api_ShopGroupStatusEdit_Handler,
  3167. },
  3168. {
  3169. MethodName: "ShopGroupDetailsQuery",
  3170. Handler: _Api_ShopGroupDetailsQuery_Handler,
  3171. },
  3172. {
  3173. MethodName: "ShopGroupDetailsAdd",
  3174. Handler: _Api_ShopGroupDetailsAdd_Handler,
  3175. },
  3176. {
  3177. MethodName: "ShopVenueQuery",
  3178. Handler: _Api_ShopVenueQuery_Handler,
  3179. },
  3180. {
  3181. MethodName: "ShopVenueAdd",
  3182. Handler: _Api_ShopVenueAdd_Handler,
  3183. },
  3184. {
  3185. MethodName: "ShopVenueEdit",
  3186. Handler: _Api_ShopVenueEdit_Handler,
  3187. },
  3188. {
  3189. MethodName: "ShopVenueStatusEdit",
  3190. Handler: _Api_ShopVenueStatusEdit_Handler,
  3191. },
  3192. {
  3193. MethodName: "ShopVenueEquipQuery",
  3194. Handler: _Api_ShopVenueEquipQuery_Handler,
  3195. },
  3196. {
  3197. MethodName: "ShopVenueEquipAdd",
  3198. Handler: _Api_ShopVenueEquipAdd_Handler,
  3199. },
  3200. {
  3201. MethodName: "ShopVenueEquipEdit",
  3202. Handler: _Api_ShopVenueEquipEdit_Handler,
  3203. },
  3204. {
  3205. MethodName: "ShopVenueEquipStatusEdit",
  3206. Handler: _Api_ShopVenueEquipStatusEdit_Handler,
  3207. },
  3208. {
  3209. MethodName: "ShopVenueEquipStatusDel",
  3210. Handler: _Api_ShopVenueEquipStatusDel_Handler,
  3211. },
  3212. {
  3213. MethodName: "ShopManagerQuery",
  3214. Handler: _Api_ShopManagerQuery_Handler,
  3215. },
  3216. {
  3217. MethodName: "ShopManagerAdd",
  3218. Handler: _Api_ShopManagerAdd_Handler,
  3219. },
  3220. {
  3221. MethodName: "ShopManagerEdit",
  3222. Handler: _Api_ShopManagerEdit_Handler,
  3223. },
  3224. {
  3225. MethodName: "ShopManagerStatusEdit",
  3226. Handler: _Api_ShopManagerStatusEdit_Handler,
  3227. },
  3228. {
  3229. MethodName: "ShopConfigQuery",
  3230. Handler: _Api_ShopConfigQuery_Handler,
  3231. },
  3232. {
  3233. MethodName: "ShopConfigEdit",
  3234. Handler: _Api_ShopConfigEdit_Handler,
  3235. },
  3236. {
  3237. MethodName: "ShopVipUserQuery",
  3238. Handler: _Api_ShopVipUserQuery_Handler,
  3239. },
  3240. {
  3241. MethodName: "ShopVipUserAdd",
  3242. Handler: _Api_ShopVipUserAdd_Handler,
  3243. },
  3244. {
  3245. MethodName: "ShopVipUserEdit",
  3246. Handler: _Api_ShopVipUserEdit_Handler,
  3247. },
  3248. {
  3249. MethodName: "ShopVipUserStatusEdit",
  3250. Handler: _Api_ShopVipUserStatusEdit_Handler,
  3251. },
  3252. {
  3253. MethodName: "AcrossVipUserQuery",
  3254. Handler: _Api_AcrossVipUserQuery_Handler,
  3255. },
  3256. {
  3257. MethodName: "AcrossVipUserAdd",
  3258. Handler: _Api_AcrossVipUserAdd_Handler,
  3259. },
  3260. {
  3261. MethodName: "AcrossVipUserDel",
  3262. Handler: _Api_AcrossVipUserDel_Handler,
  3263. },
  3264. {
  3265. MethodName: "VipPhoneQuery",
  3266. Handler: _Api_VipPhoneQuery_Handler,
  3267. },
  3268. {
  3269. MethodName: "VipMainPhoneCheck",
  3270. Handler: _Api_VipMainPhoneCheck_Handler,
  3271. },
  3272. {
  3273. MethodName: "VipOtherPhoneAdd",
  3274. Handler: _Api_VipOtherPhoneAdd_Handler,
  3275. },
  3276. {
  3277. MethodName: "VipOtherPhoneEdit",
  3278. Handler: _Api_VipOtherPhoneEdit_Handler,
  3279. },
  3280. {
  3281. MethodName: "VipOtherPhoneStatusEdit",
  3282. Handler: _Api_VipOtherPhoneStatusEdit_Handler,
  3283. },
  3284. {
  3285. MethodName: "TempVipUserQuery",
  3286. Handler: _Api_TempVipUserQuery_Handler,
  3287. },
  3288. {
  3289. MethodName: "TempVipUserAdd",
  3290. Handler: _Api_TempVipUserAdd_Handler,
  3291. },
  3292. {
  3293. MethodName: "TempVipUserEdit",
  3294. Handler: _Api_TempVipUserEdit_Handler,
  3295. },
  3296. {
  3297. MethodName: "TempVipUserStatusEdit",
  3298. Handler: _Api_TempVipUserStatusEdit_Handler,
  3299. },
  3300. {
  3301. MethodName: "VipHourEdit",
  3302. Handler: _Api_VipHourEdit_Handler,
  3303. },
  3304. {
  3305. MethodName: "VipConsumeListQuery",
  3306. Handler: _Api_VipConsumeListQuery_Handler,
  3307. },
  3308. {
  3309. MethodName: "VipConsumeDetailQuery",
  3310. Handler: _Api_VipConsumeDetailQuery_Handler,
  3311. },
  3312. {
  3313. MethodName: "VipClassRelationEdit",
  3314. Handler: _Api_VipClassRelationEdit_Handler,
  3315. },
  3316. {
  3317. MethodName: "VipHourChgQuery",
  3318. Handler: _Api_VipHourChgQuery_Handler,
  3319. },
  3320. {
  3321. MethodName: "GetOverlayImgQiNiuToken",
  3322. Handler: _Api_GetOverlayImgQiNiuToken_Handler,
  3323. },
  3324. {
  3325. MethodName: "GetSimpleQiNiuToken",
  3326. Handler: _Api_GetSimpleQiNiuToken_Handler,
  3327. },
  3328. {
  3329. MethodName: "ClassQuery",
  3330. Handler: _Api_ClassQuery_Handler,
  3331. },
  3332. {
  3333. MethodName: "ClassAdd",
  3334. Handler: _Api_ClassAdd_Handler,
  3335. },
  3336. {
  3337. MethodName: "ClassEdit",
  3338. Handler: _Api_ClassEdit_Handler,
  3339. },
  3340. {
  3341. MethodName: "ClassStatusEdit",
  3342. Handler: _Api_ClassStatusEdit_Handler,
  3343. },
  3344. {
  3345. MethodName: "ClassColorEdit",
  3346. Handler: _Api_ClassColorEdit_Handler,
  3347. },
  3348. {
  3349. MethodName: "ClassWxVisibleEdit",
  3350. Handler: _Api_ClassWxVisibleEdit_Handler,
  3351. },
  3352. {
  3353. MethodName: "ClassVipEdit",
  3354. Handler: _Api_ClassVipEdit_Handler,
  3355. },
  3356. {
  3357. MethodName: "SttPlanBasicQuery",
  3358. Handler: _Api_SttPlanBasicQuery_Handler,
  3359. },
  3360. {
  3361. MethodName: "SttPlanBasicAdd",
  3362. Handler: _Api_SttPlanBasicAdd_Handler,
  3363. },
  3364. {
  3365. MethodName: "SttPlanBasicEdit",
  3366. Handler: _Api_SttPlanBasicEdit_Handler,
  3367. },
  3368. {
  3369. MethodName: "SttPlanBasicShopEdit",
  3370. Handler: _Api_SttPlanBasicShopEdit_Handler,
  3371. },
  3372. {
  3373. MethodName: "SttPlanBasicStatusEdit",
  3374. Handler: _Api_SttPlanBasicStatusEdit_Handler,
  3375. },
  3376. {
  3377. MethodName: "SttPlanBasicPublish",
  3378. Handler: _Api_SttPlanBasicPublish_Handler,
  3379. },
  3380. {
  3381. MethodName: "SttPlanPreview",
  3382. Handler: _Api_SttPlanPreview_Handler,
  3383. },
  3384. {
  3385. MethodName: "SttPlanCopy",
  3386. Handler: _Api_SttPlanCopy_Handler,
  3387. },
  3388. {
  3389. MethodName: "SttPlanDetailQuery",
  3390. Handler: _Api_SttPlanDetailQuery_Handler,
  3391. },
  3392. {
  3393. MethodName: "SttPlanDetailBatchSave",
  3394. Handler: _Api_SttPlanDetailBatchSave_Handler,
  3395. },
  3396. {
  3397. MethodName: "STTBasicQuery",
  3398. Handler: _Api_STTBasicQuery_Handler,
  3399. },
  3400. {
  3401. MethodName: "STTBasicAdd",
  3402. Handler: _Api_STTBasicAdd_Handler,
  3403. },
  3404. {
  3405. MethodName: "STTBasicEdit",
  3406. Handler: _Api_STTBasicEdit_Handler,
  3407. },
  3408. {
  3409. MethodName: "STTBasicStatusEdit",
  3410. Handler: _Api_STTBasicStatusEdit_Handler,
  3411. },
  3412. {
  3413. MethodName: "STTBasicPreview",
  3414. Handler: _Api_STTBasicPreview_Handler,
  3415. },
  3416. {
  3417. MethodName: "STTBasicCopy",
  3418. Handler: _Api_STTBasicCopy_Handler,
  3419. },
  3420. {
  3421. MethodName: "STTBasicOfflineEdit",
  3422. Handler: _Api_STTBasicOfflineEdit_Handler,
  3423. },
  3424. {
  3425. MethodName: "STTDetailListQuery",
  3426. Handler: _Api_STTDetailListQuery_Handler,
  3427. },
  3428. {
  3429. MethodName: "STTBasicDetailBatchSave",
  3430. Handler: _Api_STTBasicDetailBatchSave_Handler,
  3431. },
  3432. {
  3433. MethodName: "STTDetailAllowDelCheck",
  3434. Handler: _Api_STTDetailAllowDelCheck_Handler,
  3435. },
  3436. {
  3437. MethodName: "CourseDetailQuery",
  3438. Handler: _Api_CourseDetailQuery_Handler,
  3439. },
  3440. {
  3441. MethodName: "OrderListQuery",
  3442. Handler: _Api_OrderListQuery_Handler,
  3443. },
  3444. {
  3445. MethodName: "OrderAddByManager",
  3446. Handler: _Api_OrderAddByManager_Handler,
  3447. },
  3448. {
  3449. MethodName: "OrderCancelByManager",
  3450. Handler: _Api_OrderCancelByManager_Handler,
  3451. },
  3452. {
  3453. MethodName: "OrderStatistics",
  3454. Handler: _Api_OrderStatistics_Handler,
  3455. },
  3456. {
  3457. MethodName: "ClassOrderQuery",
  3458. Handler: _Api_ClassOrderQuery_Handler,
  3459. },
  3460. {
  3461. MethodName: "VipUserOrderQuery",
  3462. Handler: _Api_VipUserOrderQuery_Handler,
  3463. },
  3464. {
  3465. MethodName: "HrSensorsPublicQuery",
  3466. Handler: _Api_HrSensorsPublicQuery_Handler,
  3467. },
  3468. {
  3469. MethodName: "HrSensorsPvtQuery",
  3470. Handler: _Api_HrSensorsPvtQuery_Handler,
  3471. },
  3472. {
  3473. MethodName: "AddHrSensors",
  3474. Handler: _Api_AddHrSensors_Handler,
  3475. },
  3476. {
  3477. MethodName: "AddPvtHrSensors",
  3478. Handler: _Api_AddPvtHrSensors_Handler,
  3479. },
  3480. {
  3481. MethodName: "EditHrSensors",
  3482. Handler: _Api_EditHrSensors_Handler,
  3483. },
  3484. {
  3485. MethodName: "HrSensorsDel",
  3486. Handler: _Api_HrSensorsDel_Handler,
  3487. },
  3488. {
  3489. MethodName: "PKGroupChg",
  3490. Handler: _Api_PKGroupChg_Handler,
  3491. },
  3492. {
  3493. MethodName: "BindHrSensor",
  3494. Handler: _Api_BindHrSensor_Handler,
  3495. },
  3496. {
  3497. MethodName: "UnBindHrSensor",
  3498. Handler: _Api_UnBindHrSensor_Handler,
  3499. },
  3500. },
  3501. Streams: []grpc.StreamDesc{},
  3502. Metadata: "base.proto",
  3503. }