user.pb.go 439 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: user.proto
  3. package gapi
  4. import (
  5. context "context"
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. grpc "google.golang.org/grpc"
  9. codes "google.golang.org/grpc/codes"
  10. status "google.golang.org/grpc/status"
  11. math "math"
  12. )
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  22. //用户信息
  23. type User struct {
  24. Userid int32 `protobuf:"varint,1,opt,name=userid,proto3" json:"userid,omitempty"`
  25. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
  26. Realname string `protobuf:"bytes,3,opt,name=realname,proto3" json:"realname,omitempty"`
  27. Mobile string `protobuf:"bytes,4,opt,name=mobile,proto3" json:"mobile,omitempty"`
  28. Idtype int32 `protobuf:"varint,5,opt,name=idtype,proto3" json:"idtype,omitempty"`
  29. Idno string `protobuf:"bytes,6,opt,name=idno,proto3" json:"idno,omitempty"`
  30. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"`
  31. Age int32 `protobuf:"varint,8,opt,name=age,proto3" json:"age,omitempty"`
  32. Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar,omitempty"`
  33. Birthday string `protobuf:"bytes,10,opt,name=birthday,proto3" json:"birthday,omitempty"`
  34. Createtime int64 `protobuf:"varint,11,opt,name=createtime,proto3" json:"createtime,omitempty"`
  35. Registerip string `protobuf:"bytes,12,opt,name=registerip,proto3" json:"registerip,omitempty"`
  36. Usertype int32 `protobuf:"varint,13,opt,name=usertype,proto3" json:"usertype,omitempty"`
  37. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  38. XXX_unrecognized []byte `json:"-"`
  39. XXX_sizecache int32 `json:"-"`
  40. }
  41. func (m *User) Reset() { *m = User{} }
  42. func (m *User) String() string { return proto.CompactTextString(m) }
  43. func (*User) ProtoMessage() {}
  44. func (*User) Descriptor() ([]byte, []int) {
  45. return fileDescriptor_116e343673f7ffaf, []int{0}
  46. }
  47. func (m *User) XXX_Unmarshal(b []byte) error {
  48. return xxx_messageInfo_User.Unmarshal(m, b)
  49. }
  50. func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  51. return xxx_messageInfo_User.Marshal(b, m, deterministic)
  52. }
  53. func (m *User) XXX_Merge(src proto.Message) {
  54. xxx_messageInfo_User.Merge(m, src)
  55. }
  56. func (m *User) XXX_Size() int {
  57. return xxx_messageInfo_User.Size(m)
  58. }
  59. func (m *User) XXX_DiscardUnknown() {
  60. xxx_messageInfo_User.DiscardUnknown(m)
  61. }
  62. var xxx_messageInfo_User proto.InternalMessageInfo
  63. func (m *User) GetUserid() int32 {
  64. if m != nil {
  65. return m.Userid
  66. }
  67. return 0
  68. }
  69. func (m *User) GetUsername() string {
  70. if m != nil {
  71. return m.Username
  72. }
  73. return ""
  74. }
  75. func (m *User) GetRealname() string {
  76. if m != nil {
  77. return m.Realname
  78. }
  79. return ""
  80. }
  81. func (m *User) GetMobile() string {
  82. if m != nil {
  83. return m.Mobile
  84. }
  85. return ""
  86. }
  87. func (m *User) GetIdtype() int32 {
  88. if m != nil {
  89. return m.Idtype
  90. }
  91. return 0
  92. }
  93. func (m *User) GetIdno() string {
  94. if m != nil {
  95. return m.Idno
  96. }
  97. return ""
  98. }
  99. func (m *User) GetSex() int32 {
  100. if m != nil {
  101. return m.Sex
  102. }
  103. return 0
  104. }
  105. func (m *User) GetAge() int32 {
  106. if m != nil {
  107. return m.Age
  108. }
  109. return 0
  110. }
  111. func (m *User) GetAvatar() string {
  112. if m != nil {
  113. return m.Avatar
  114. }
  115. return ""
  116. }
  117. func (m *User) GetBirthday() string {
  118. if m != nil {
  119. return m.Birthday
  120. }
  121. return ""
  122. }
  123. func (m *User) GetCreatetime() int64 {
  124. if m != nil {
  125. return m.Createtime
  126. }
  127. return 0
  128. }
  129. func (m *User) GetRegisterip() string {
  130. if m != nil {
  131. return m.Registerip
  132. }
  133. return ""
  134. }
  135. func (m *User) GetUsertype() int32 {
  136. if m != nil {
  137. return m.Usertype
  138. }
  139. return 0
  140. }
  141. //银行卡信息
  142. type BankCard struct {
  143. BankCardId int32 `protobuf:"varint,1,opt,name=bankCardId,proto3" json:"bankCardId,omitempty"`
  144. BankName string `protobuf:"bytes,2,opt,name=bankName,proto3" json:"bankName,omitempty"`
  145. Logo string `protobuf:"bytes,3,opt,name=logo,proto3" json:"logo,omitempty"`
  146. CardNo string `protobuf:"bytes,4,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  147. Type int32 `protobuf:"varint,5,opt,name=type,proto3" json:"type,omitempty"`
  148. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  149. XXX_unrecognized []byte `json:"-"`
  150. XXX_sizecache int32 `json:"-"`
  151. }
  152. func (m *BankCard) Reset() { *m = BankCard{} }
  153. func (m *BankCard) String() string { return proto.CompactTextString(m) }
  154. func (*BankCard) ProtoMessage() {}
  155. func (*BankCard) Descriptor() ([]byte, []int) {
  156. return fileDescriptor_116e343673f7ffaf, []int{1}
  157. }
  158. func (m *BankCard) XXX_Unmarshal(b []byte) error {
  159. return xxx_messageInfo_BankCard.Unmarshal(m, b)
  160. }
  161. func (m *BankCard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  162. return xxx_messageInfo_BankCard.Marshal(b, m, deterministic)
  163. }
  164. func (m *BankCard) XXX_Merge(src proto.Message) {
  165. xxx_messageInfo_BankCard.Merge(m, src)
  166. }
  167. func (m *BankCard) XXX_Size() int {
  168. return xxx_messageInfo_BankCard.Size(m)
  169. }
  170. func (m *BankCard) XXX_DiscardUnknown() {
  171. xxx_messageInfo_BankCard.DiscardUnknown(m)
  172. }
  173. var xxx_messageInfo_BankCard proto.InternalMessageInfo
  174. func (m *BankCard) GetBankCardId() int32 {
  175. if m != nil {
  176. return m.BankCardId
  177. }
  178. return 0
  179. }
  180. func (m *BankCard) GetBankName() string {
  181. if m != nil {
  182. return m.BankName
  183. }
  184. return ""
  185. }
  186. func (m *BankCard) GetLogo() string {
  187. if m != nil {
  188. return m.Logo
  189. }
  190. return ""
  191. }
  192. func (m *BankCard) GetCardNo() string {
  193. if m != nil {
  194. return m.CardNo
  195. }
  196. return ""
  197. }
  198. func (m *BankCard) GetType() int32 {
  199. if m != nil {
  200. return m.Type
  201. }
  202. return 0
  203. }
  204. //明细信息
  205. type AccountDetail struct {
  206. DetailId int32 `protobuf:"varint,1,opt,name=detailId,proto3" json:"detailId,omitempty"`
  207. Balance float64 `protobuf:"fixed64,2,opt,name=balance,proto3" json:"balance,omitempty"`
  208. Amount float64 `protobuf:"fixed64,3,opt,name=amount,proto3" json:"amount,omitempty"`
  209. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
  210. CreateTime int64 `protobuf:"varint,5,opt,name=createTime,proto3" json:"createTime,omitempty"`
  211. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  212. XXX_unrecognized []byte `json:"-"`
  213. XXX_sizecache int32 `json:"-"`
  214. }
  215. func (m *AccountDetail) Reset() { *m = AccountDetail{} }
  216. func (m *AccountDetail) String() string { return proto.CompactTextString(m) }
  217. func (*AccountDetail) ProtoMessage() {}
  218. func (*AccountDetail) Descriptor() ([]byte, []int) {
  219. return fileDescriptor_116e343673f7ffaf, []int{2}
  220. }
  221. func (m *AccountDetail) XXX_Unmarshal(b []byte) error {
  222. return xxx_messageInfo_AccountDetail.Unmarshal(m, b)
  223. }
  224. func (m *AccountDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  225. return xxx_messageInfo_AccountDetail.Marshal(b, m, deterministic)
  226. }
  227. func (m *AccountDetail) XXX_Merge(src proto.Message) {
  228. xxx_messageInfo_AccountDetail.Merge(m, src)
  229. }
  230. func (m *AccountDetail) XXX_Size() int {
  231. return xxx_messageInfo_AccountDetail.Size(m)
  232. }
  233. func (m *AccountDetail) XXX_DiscardUnknown() {
  234. xxx_messageInfo_AccountDetail.DiscardUnknown(m)
  235. }
  236. var xxx_messageInfo_AccountDetail proto.InternalMessageInfo
  237. func (m *AccountDetail) GetDetailId() int32 {
  238. if m != nil {
  239. return m.DetailId
  240. }
  241. return 0
  242. }
  243. func (m *AccountDetail) GetBalance() float64 {
  244. if m != nil {
  245. return m.Balance
  246. }
  247. return 0
  248. }
  249. func (m *AccountDetail) GetAmount() float64 {
  250. if m != nil {
  251. return m.Amount
  252. }
  253. return 0
  254. }
  255. func (m *AccountDetail) GetTitle() string {
  256. if m != nil {
  257. return m.Title
  258. }
  259. return ""
  260. }
  261. func (m *AccountDetail) GetCreateTime() int64 {
  262. if m != nil {
  263. return m.CreateTime
  264. }
  265. return 0
  266. }
  267. //获取微信小程序登录 token
  268. type GetWxAppTokenRequest struct {
  269. NickName string `protobuf:"bytes,1,opt,name=nickName,proto3" json:"nickName,omitempty"`
  270. Gender int32 `protobuf:"varint,2,opt,name=gender,proto3" json:"gender,omitempty"`
  271. Language string `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
  272. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city,omitempty"`
  273. Province string `protobuf:"bytes,5,opt,name=province,proto3" json:"province,omitempty"`
  274. Country string `protobuf:"bytes,6,opt,name=country,proto3" json:"country,omitempty"`
  275. AvatarUrl string `protobuf:"bytes,7,opt,name=avatarUrl,proto3" json:"avatarUrl,omitempty"`
  276. Openid string `protobuf:"bytes,8,opt,name=openid,proto3" json:"openid,omitempty"`
  277. SessionKey string `protobuf:"bytes,9,opt,name=sessionKey,proto3" json:"sessionKey,omitempty"`
  278. Unionid string `protobuf:"bytes,10,opt,name=unionid,proto3" json:"unionid,omitempty"`
  279. ExpiresIn int32 `protobuf:"varint,11,opt,name=expiresIn,proto3" json:"expiresIn,omitempty"`
  280. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  281. XXX_unrecognized []byte `json:"-"`
  282. XXX_sizecache int32 `json:"-"`
  283. }
  284. func (m *GetWxAppTokenRequest) Reset() { *m = GetWxAppTokenRequest{} }
  285. func (m *GetWxAppTokenRequest) String() string { return proto.CompactTextString(m) }
  286. func (*GetWxAppTokenRequest) ProtoMessage() {}
  287. func (*GetWxAppTokenRequest) Descriptor() ([]byte, []int) {
  288. return fileDescriptor_116e343673f7ffaf, []int{3}
  289. }
  290. func (m *GetWxAppTokenRequest) XXX_Unmarshal(b []byte) error {
  291. return xxx_messageInfo_GetWxAppTokenRequest.Unmarshal(m, b)
  292. }
  293. func (m *GetWxAppTokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  294. return xxx_messageInfo_GetWxAppTokenRequest.Marshal(b, m, deterministic)
  295. }
  296. func (m *GetWxAppTokenRequest) XXX_Merge(src proto.Message) {
  297. xxx_messageInfo_GetWxAppTokenRequest.Merge(m, src)
  298. }
  299. func (m *GetWxAppTokenRequest) XXX_Size() int {
  300. return xxx_messageInfo_GetWxAppTokenRequest.Size(m)
  301. }
  302. func (m *GetWxAppTokenRequest) XXX_DiscardUnknown() {
  303. xxx_messageInfo_GetWxAppTokenRequest.DiscardUnknown(m)
  304. }
  305. var xxx_messageInfo_GetWxAppTokenRequest proto.InternalMessageInfo
  306. func (m *GetWxAppTokenRequest) GetNickName() string {
  307. if m != nil {
  308. return m.NickName
  309. }
  310. return ""
  311. }
  312. func (m *GetWxAppTokenRequest) GetGender() int32 {
  313. if m != nil {
  314. return m.Gender
  315. }
  316. return 0
  317. }
  318. func (m *GetWxAppTokenRequest) GetLanguage() string {
  319. if m != nil {
  320. return m.Language
  321. }
  322. return ""
  323. }
  324. func (m *GetWxAppTokenRequest) GetCity() string {
  325. if m != nil {
  326. return m.City
  327. }
  328. return ""
  329. }
  330. func (m *GetWxAppTokenRequest) GetProvince() string {
  331. if m != nil {
  332. return m.Province
  333. }
  334. return ""
  335. }
  336. func (m *GetWxAppTokenRequest) GetCountry() string {
  337. if m != nil {
  338. return m.Country
  339. }
  340. return ""
  341. }
  342. func (m *GetWxAppTokenRequest) GetAvatarUrl() string {
  343. if m != nil {
  344. return m.AvatarUrl
  345. }
  346. return ""
  347. }
  348. func (m *GetWxAppTokenRequest) GetOpenid() string {
  349. if m != nil {
  350. return m.Openid
  351. }
  352. return ""
  353. }
  354. func (m *GetWxAppTokenRequest) GetSessionKey() string {
  355. if m != nil {
  356. return m.SessionKey
  357. }
  358. return ""
  359. }
  360. func (m *GetWxAppTokenRequest) GetUnionid() string {
  361. if m != nil {
  362. return m.Unionid
  363. }
  364. return ""
  365. }
  366. func (m *GetWxAppTokenRequest) GetExpiresIn() int32 {
  367. if m != nil {
  368. return m.ExpiresIn
  369. }
  370. return 0
  371. }
  372. //获取微信小程序登录 token
  373. type GetWxAppTokenResponse struct {
  374. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  375. IsUnion int32 `protobuf:"varint,2,opt,name=isUnion,proto3" json:"isUnion,omitempty"`
  376. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  377. SessionId string `protobuf:"bytes,4,opt,name=sessionId,proto3" json:"sessionId,omitempty"`
  378. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  379. XXX_unrecognized []byte `json:"-"`
  380. XXX_sizecache int32 `json:"-"`
  381. }
  382. func (m *GetWxAppTokenResponse) Reset() { *m = GetWxAppTokenResponse{} }
  383. func (m *GetWxAppTokenResponse) String() string { return proto.CompactTextString(m) }
  384. func (*GetWxAppTokenResponse) ProtoMessage() {}
  385. func (*GetWxAppTokenResponse) Descriptor() ([]byte, []int) {
  386. return fileDescriptor_116e343673f7ffaf, []int{4}
  387. }
  388. func (m *GetWxAppTokenResponse) XXX_Unmarshal(b []byte) error {
  389. return xxx_messageInfo_GetWxAppTokenResponse.Unmarshal(m, b)
  390. }
  391. func (m *GetWxAppTokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  392. return xxx_messageInfo_GetWxAppTokenResponse.Marshal(b, m, deterministic)
  393. }
  394. func (m *GetWxAppTokenResponse) XXX_Merge(src proto.Message) {
  395. xxx_messageInfo_GetWxAppTokenResponse.Merge(m, src)
  396. }
  397. func (m *GetWxAppTokenResponse) XXX_Size() int {
  398. return xxx_messageInfo_GetWxAppTokenResponse.Size(m)
  399. }
  400. func (m *GetWxAppTokenResponse) XXX_DiscardUnknown() {
  401. xxx_messageInfo_GetWxAppTokenResponse.DiscardUnknown(m)
  402. }
  403. var xxx_messageInfo_GetWxAppTokenResponse proto.InternalMessageInfo
  404. func (m *GetWxAppTokenResponse) GetResult() *Result {
  405. if m != nil {
  406. return m.Result
  407. }
  408. return nil
  409. }
  410. func (m *GetWxAppTokenResponse) GetIsUnion() int32 {
  411. if m != nil {
  412. return m.IsUnion
  413. }
  414. return 0
  415. }
  416. func (m *GetWxAppTokenResponse) GetUserId() int32 {
  417. if m != nil {
  418. return m.UserId
  419. }
  420. return 0
  421. }
  422. func (m *GetWxAppTokenResponse) GetSessionId() string {
  423. if m != nil {
  424. return m.SessionId
  425. }
  426. return ""
  427. }
  428. //微信号关联手机号码
  429. type BindWxAppMobileRequest struct {
  430. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  431. OpenId string `protobuf:"bytes,2,opt,name=openId,proto3" json:"openId,omitempty"`
  432. Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
  433. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  434. XXX_unrecognized []byte `json:"-"`
  435. XXX_sizecache int32 `json:"-"`
  436. }
  437. func (m *BindWxAppMobileRequest) Reset() { *m = BindWxAppMobileRequest{} }
  438. func (m *BindWxAppMobileRequest) String() string { return proto.CompactTextString(m) }
  439. func (*BindWxAppMobileRequest) ProtoMessage() {}
  440. func (*BindWxAppMobileRequest) Descriptor() ([]byte, []int) {
  441. return fileDescriptor_116e343673f7ffaf, []int{5}
  442. }
  443. func (m *BindWxAppMobileRequest) XXX_Unmarshal(b []byte) error {
  444. return xxx_messageInfo_BindWxAppMobileRequest.Unmarshal(m, b)
  445. }
  446. func (m *BindWxAppMobileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  447. return xxx_messageInfo_BindWxAppMobileRequest.Marshal(b, m, deterministic)
  448. }
  449. func (m *BindWxAppMobileRequest) XXX_Merge(src proto.Message) {
  450. xxx_messageInfo_BindWxAppMobileRequest.Merge(m, src)
  451. }
  452. func (m *BindWxAppMobileRequest) XXX_Size() int {
  453. return xxx_messageInfo_BindWxAppMobileRequest.Size(m)
  454. }
  455. func (m *BindWxAppMobileRequest) XXX_DiscardUnknown() {
  456. xxx_messageInfo_BindWxAppMobileRequest.DiscardUnknown(m)
  457. }
  458. var xxx_messageInfo_BindWxAppMobileRequest proto.InternalMessageInfo
  459. func (m *BindWxAppMobileRequest) GetMobile() string {
  460. if m != nil {
  461. return m.Mobile
  462. }
  463. return ""
  464. }
  465. func (m *BindWxAppMobileRequest) GetOpenId() string {
  466. if m != nil {
  467. return m.OpenId
  468. }
  469. return ""
  470. }
  471. func (m *BindWxAppMobileRequest) GetIp() string {
  472. if m != nil {
  473. return m.Ip
  474. }
  475. return ""
  476. }
  477. type UserRequest struct {
  478. Userid int32 `protobuf:"varint,1,opt,name=userid,proto3" json:"userid,omitempty"`
  479. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  480. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  481. XXX_unrecognized []byte `json:"-"`
  482. XXX_sizecache int32 `json:"-"`
  483. }
  484. func (m *UserRequest) Reset() { *m = UserRequest{} }
  485. func (m *UserRequest) String() string { return proto.CompactTextString(m) }
  486. func (*UserRequest) ProtoMessage() {}
  487. func (*UserRequest) Descriptor() ([]byte, []int) {
  488. return fileDescriptor_116e343673f7ffaf, []int{6}
  489. }
  490. func (m *UserRequest) XXX_Unmarshal(b []byte) error {
  491. return xxx_messageInfo_UserRequest.Unmarshal(m, b)
  492. }
  493. func (m *UserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  494. return xxx_messageInfo_UserRequest.Marshal(b, m, deterministic)
  495. }
  496. func (m *UserRequest) XXX_Merge(src proto.Message) {
  497. xxx_messageInfo_UserRequest.Merge(m, src)
  498. }
  499. func (m *UserRequest) XXX_Size() int {
  500. return xxx_messageInfo_UserRequest.Size(m)
  501. }
  502. func (m *UserRequest) XXX_DiscardUnknown() {
  503. xxx_messageInfo_UserRequest.DiscardUnknown(m)
  504. }
  505. var xxx_messageInfo_UserRequest proto.InternalMessageInfo
  506. func (m *UserRequest) GetUserid() int32 {
  507. if m != nil {
  508. return m.Userid
  509. }
  510. return 0
  511. }
  512. func (m *UserRequest) GetPhone() string {
  513. if m != nil {
  514. return m.Phone
  515. }
  516. return ""
  517. }
  518. type UserResponse struct {
  519. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  520. User *User `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
  521. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  522. XXX_unrecognized []byte `json:"-"`
  523. XXX_sizecache int32 `json:"-"`
  524. }
  525. func (m *UserResponse) Reset() { *m = UserResponse{} }
  526. func (m *UserResponse) String() string { return proto.CompactTextString(m) }
  527. func (*UserResponse) ProtoMessage() {}
  528. func (*UserResponse) Descriptor() ([]byte, []int) {
  529. return fileDescriptor_116e343673f7ffaf, []int{7}
  530. }
  531. func (m *UserResponse) XXX_Unmarshal(b []byte) error {
  532. return xxx_messageInfo_UserResponse.Unmarshal(m, b)
  533. }
  534. func (m *UserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  535. return xxx_messageInfo_UserResponse.Marshal(b, m, deterministic)
  536. }
  537. func (m *UserResponse) XXX_Merge(src proto.Message) {
  538. xxx_messageInfo_UserResponse.Merge(m, src)
  539. }
  540. func (m *UserResponse) XXX_Size() int {
  541. return xxx_messageInfo_UserResponse.Size(m)
  542. }
  543. func (m *UserResponse) XXX_DiscardUnknown() {
  544. xxx_messageInfo_UserResponse.DiscardUnknown(m)
  545. }
  546. var xxx_messageInfo_UserResponse proto.InternalMessageInfo
  547. func (m *UserResponse) GetResult() *Result {
  548. if m != nil {
  549. return m.Result
  550. }
  551. return nil
  552. }
  553. func (m *UserResponse) GetUser() *User {
  554. if m != nil {
  555. return m.User
  556. }
  557. return nil
  558. }
  559. type AddBankCardRequest struct {
  560. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  561. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  562. CardNo string `protobuf:"bytes,3,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  563. BankName string `protobuf:"bytes,4,opt,name=bankName,proto3" json:"bankName,omitempty"`
  564. CardType int32 `protobuf:"varint,5,opt,name=cardType,proto3" json:"cardType,omitempty"`
  565. Mobile string `protobuf:"bytes,6,opt,name=mobile,proto3" json:"mobile,omitempty"`
  566. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  567. XXX_unrecognized []byte `json:"-"`
  568. XXX_sizecache int32 `json:"-"`
  569. }
  570. func (m *AddBankCardRequest) Reset() { *m = AddBankCardRequest{} }
  571. func (m *AddBankCardRequest) String() string { return proto.CompactTextString(m) }
  572. func (*AddBankCardRequest) ProtoMessage() {}
  573. func (*AddBankCardRequest) Descriptor() ([]byte, []int) {
  574. return fileDescriptor_116e343673f7ffaf, []int{8}
  575. }
  576. func (m *AddBankCardRequest) XXX_Unmarshal(b []byte) error {
  577. return xxx_messageInfo_AddBankCardRequest.Unmarshal(m, b)
  578. }
  579. func (m *AddBankCardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  580. return xxx_messageInfo_AddBankCardRequest.Marshal(b, m, deterministic)
  581. }
  582. func (m *AddBankCardRequest) XXX_Merge(src proto.Message) {
  583. xxx_messageInfo_AddBankCardRequest.Merge(m, src)
  584. }
  585. func (m *AddBankCardRequest) XXX_Size() int {
  586. return xxx_messageInfo_AddBankCardRequest.Size(m)
  587. }
  588. func (m *AddBankCardRequest) XXX_DiscardUnknown() {
  589. xxx_messageInfo_AddBankCardRequest.DiscardUnknown(m)
  590. }
  591. var xxx_messageInfo_AddBankCardRequest proto.InternalMessageInfo
  592. func (m *AddBankCardRequest) GetUserId() int32 {
  593. if m != nil {
  594. return m.UserId
  595. }
  596. return 0
  597. }
  598. func (m *AddBankCardRequest) GetName() string {
  599. if m != nil {
  600. return m.Name
  601. }
  602. return ""
  603. }
  604. func (m *AddBankCardRequest) GetCardNo() string {
  605. if m != nil {
  606. return m.CardNo
  607. }
  608. return ""
  609. }
  610. func (m *AddBankCardRequest) GetBankName() string {
  611. if m != nil {
  612. return m.BankName
  613. }
  614. return ""
  615. }
  616. func (m *AddBankCardRequest) GetCardType() int32 {
  617. if m != nil {
  618. return m.CardType
  619. }
  620. return 0
  621. }
  622. func (m *AddBankCardRequest) GetMobile() string {
  623. if m != nil {
  624. return m.Mobile
  625. }
  626. return ""
  627. }
  628. type AddBankCardResponse struct {
  629. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  630. CardId int32 `protobuf:"varint,2,opt,name=cardId,proto3" json:"cardId,omitempty"`
  631. CardNo string `protobuf:"bytes,3,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  632. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  633. XXX_unrecognized []byte `json:"-"`
  634. XXX_sizecache int32 `json:"-"`
  635. }
  636. func (m *AddBankCardResponse) Reset() { *m = AddBankCardResponse{} }
  637. func (m *AddBankCardResponse) String() string { return proto.CompactTextString(m) }
  638. func (*AddBankCardResponse) ProtoMessage() {}
  639. func (*AddBankCardResponse) Descriptor() ([]byte, []int) {
  640. return fileDescriptor_116e343673f7ffaf, []int{9}
  641. }
  642. func (m *AddBankCardResponse) XXX_Unmarshal(b []byte) error {
  643. return xxx_messageInfo_AddBankCardResponse.Unmarshal(m, b)
  644. }
  645. func (m *AddBankCardResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  646. return xxx_messageInfo_AddBankCardResponse.Marshal(b, m, deterministic)
  647. }
  648. func (m *AddBankCardResponse) XXX_Merge(src proto.Message) {
  649. xxx_messageInfo_AddBankCardResponse.Merge(m, src)
  650. }
  651. func (m *AddBankCardResponse) XXX_Size() int {
  652. return xxx_messageInfo_AddBankCardResponse.Size(m)
  653. }
  654. func (m *AddBankCardResponse) XXX_DiscardUnknown() {
  655. xxx_messageInfo_AddBankCardResponse.DiscardUnknown(m)
  656. }
  657. var xxx_messageInfo_AddBankCardResponse proto.InternalMessageInfo
  658. func (m *AddBankCardResponse) GetResult() *Result {
  659. if m != nil {
  660. return m.Result
  661. }
  662. return nil
  663. }
  664. func (m *AddBankCardResponse) GetCardId() int32 {
  665. if m != nil {
  666. return m.CardId
  667. }
  668. return 0
  669. }
  670. func (m *AddBankCardResponse) GetCardNo() string {
  671. if m != nil {
  672. return m.CardNo
  673. }
  674. return ""
  675. }
  676. type BankCardListRequest struct {
  677. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  678. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  679. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  680. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  681. XXX_unrecognized []byte `json:"-"`
  682. XXX_sizecache int32 `json:"-"`
  683. }
  684. func (m *BankCardListRequest) Reset() { *m = BankCardListRequest{} }
  685. func (m *BankCardListRequest) String() string { return proto.CompactTextString(m) }
  686. func (*BankCardListRequest) ProtoMessage() {}
  687. func (*BankCardListRequest) Descriptor() ([]byte, []int) {
  688. return fileDescriptor_116e343673f7ffaf, []int{10}
  689. }
  690. func (m *BankCardListRequest) XXX_Unmarshal(b []byte) error {
  691. return xxx_messageInfo_BankCardListRequest.Unmarshal(m, b)
  692. }
  693. func (m *BankCardListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  694. return xxx_messageInfo_BankCardListRequest.Marshal(b, m, deterministic)
  695. }
  696. func (m *BankCardListRequest) XXX_Merge(src proto.Message) {
  697. xxx_messageInfo_BankCardListRequest.Merge(m, src)
  698. }
  699. func (m *BankCardListRequest) XXX_Size() int {
  700. return xxx_messageInfo_BankCardListRequest.Size(m)
  701. }
  702. func (m *BankCardListRequest) XXX_DiscardUnknown() {
  703. xxx_messageInfo_BankCardListRequest.DiscardUnknown(m)
  704. }
  705. var xxx_messageInfo_BankCardListRequest proto.InternalMessageInfo
  706. func (m *BankCardListRequest) GetDoctorId() int32 {
  707. if m != nil {
  708. return m.DoctorId
  709. }
  710. return 0
  711. }
  712. func (m *BankCardListRequest) GetPageIndex() int32 {
  713. if m != nil {
  714. return m.PageIndex
  715. }
  716. return 0
  717. }
  718. func (m *BankCardListRequest) GetPageSize() int32 {
  719. if m != nil {
  720. return m.PageSize
  721. }
  722. return 0
  723. }
  724. type BankCardListResponse struct {
  725. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  726. BankCardList []*BankCard `protobuf:"bytes,2,rep,name=bankCardList,proto3" json:"bankCardList,omitempty"`
  727. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  728. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  729. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  730. XXX_unrecognized []byte `json:"-"`
  731. XXX_sizecache int32 `json:"-"`
  732. }
  733. func (m *BankCardListResponse) Reset() { *m = BankCardListResponse{} }
  734. func (m *BankCardListResponse) String() string { return proto.CompactTextString(m) }
  735. func (*BankCardListResponse) ProtoMessage() {}
  736. func (*BankCardListResponse) Descriptor() ([]byte, []int) {
  737. return fileDescriptor_116e343673f7ffaf, []int{11}
  738. }
  739. func (m *BankCardListResponse) XXX_Unmarshal(b []byte) error {
  740. return xxx_messageInfo_BankCardListResponse.Unmarshal(m, b)
  741. }
  742. func (m *BankCardListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  743. return xxx_messageInfo_BankCardListResponse.Marshal(b, m, deterministic)
  744. }
  745. func (m *BankCardListResponse) XXX_Merge(src proto.Message) {
  746. xxx_messageInfo_BankCardListResponse.Merge(m, src)
  747. }
  748. func (m *BankCardListResponse) XXX_Size() int {
  749. return xxx_messageInfo_BankCardListResponse.Size(m)
  750. }
  751. func (m *BankCardListResponse) XXX_DiscardUnknown() {
  752. xxx_messageInfo_BankCardListResponse.DiscardUnknown(m)
  753. }
  754. var xxx_messageInfo_BankCardListResponse proto.InternalMessageInfo
  755. func (m *BankCardListResponse) GetResult() *Result {
  756. if m != nil {
  757. return m.Result
  758. }
  759. return nil
  760. }
  761. func (m *BankCardListResponse) GetBankCardList() []*BankCard {
  762. if m != nil {
  763. return m.BankCardList
  764. }
  765. return nil
  766. }
  767. func (m *BankCardListResponse) GetCount() int32 {
  768. if m != nil {
  769. return m.Count
  770. }
  771. return 0
  772. }
  773. func (m *BankCardListResponse) GetTotalPages() int32 {
  774. if m != nil {
  775. return m.TotalPages
  776. }
  777. return 0
  778. }
  779. type AccountBalanceRequest struct {
  780. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  781. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  782. XXX_unrecognized []byte `json:"-"`
  783. XXX_sizecache int32 `json:"-"`
  784. }
  785. func (m *AccountBalanceRequest) Reset() { *m = AccountBalanceRequest{} }
  786. func (m *AccountBalanceRequest) String() string { return proto.CompactTextString(m) }
  787. func (*AccountBalanceRequest) ProtoMessage() {}
  788. func (*AccountBalanceRequest) Descriptor() ([]byte, []int) {
  789. return fileDescriptor_116e343673f7ffaf, []int{12}
  790. }
  791. func (m *AccountBalanceRequest) XXX_Unmarshal(b []byte) error {
  792. return xxx_messageInfo_AccountBalanceRequest.Unmarshal(m, b)
  793. }
  794. func (m *AccountBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  795. return xxx_messageInfo_AccountBalanceRequest.Marshal(b, m, deterministic)
  796. }
  797. func (m *AccountBalanceRequest) XXX_Merge(src proto.Message) {
  798. xxx_messageInfo_AccountBalanceRequest.Merge(m, src)
  799. }
  800. func (m *AccountBalanceRequest) XXX_Size() int {
  801. return xxx_messageInfo_AccountBalanceRequest.Size(m)
  802. }
  803. func (m *AccountBalanceRequest) XXX_DiscardUnknown() {
  804. xxx_messageInfo_AccountBalanceRequest.DiscardUnknown(m)
  805. }
  806. var xxx_messageInfo_AccountBalanceRequest proto.InternalMessageInfo
  807. func (m *AccountBalanceRequest) GetUserId() int32 {
  808. if m != nil {
  809. return m.UserId
  810. }
  811. return 0
  812. }
  813. type AccountBalanceResponse struct {
  814. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  815. TotalBalance float64 `protobuf:"fixed64,2,opt,name=totalBalance,proto3" json:"totalBalance,omitempty"`
  816. WithdrawableBalance float64 `protobuf:"fixed64,3,opt,name=withdrawableBalance,proto3" json:"withdrawableBalance,omitempty"`
  817. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  818. XXX_unrecognized []byte `json:"-"`
  819. XXX_sizecache int32 `json:"-"`
  820. }
  821. func (m *AccountBalanceResponse) Reset() { *m = AccountBalanceResponse{} }
  822. func (m *AccountBalanceResponse) String() string { return proto.CompactTextString(m) }
  823. func (*AccountBalanceResponse) ProtoMessage() {}
  824. func (*AccountBalanceResponse) Descriptor() ([]byte, []int) {
  825. return fileDescriptor_116e343673f7ffaf, []int{13}
  826. }
  827. func (m *AccountBalanceResponse) XXX_Unmarshal(b []byte) error {
  828. return xxx_messageInfo_AccountBalanceResponse.Unmarshal(m, b)
  829. }
  830. func (m *AccountBalanceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  831. return xxx_messageInfo_AccountBalanceResponse.Marshal(b, m, deterministic)
  832. }
  833. func (m *AccountBalanceResponse) XXX_Merge(src proto.Message) {
  834. xxx_messageInfo_AccountBalanceResponse.Merge(m, src)
  835. }
  836. func (m *AccountBalanceResponse) XXX_Size() int {
  837. return xxx_messageInfo_AccountBalanceResponse.Size(m)
  838. }
  839. func (m *AccountBalanceResponse) XXX_DiscardUnknown() {
  840. xxx_messageInfo_AccountBalanceResponse.DiscardUnknown(m)
  841. }
  842. var xxx_messageInfo_AccountBalanceResponse proto.InternalMessageInfo
  843. func (m *AccountBalanceResponse) GetResult() *Result {
  844. if m != nil {
  845. return m.Result
  846. }
  847. return nil
  848. }
  849. func (m *AccountBalanceResponse) GetTotalBalance() float64 {
  850. if m != nil {
  851. return m.TotalBalance
  852. }
  853. return 0
  854. }
  855. func (m *AccountBalanceResponse) GetWithdrawableBalance() float64 {
  856. if m != nil {
  857. return m.WithdrawableBalance
  858. }
  859. return 0
  860. }
  861. type AccountDetailListRequest struct {
  862. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  863. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  864. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  865. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  866. XXX_unrecognized []byte `json:"-"`
  867. XXX_sizecache int32 `json:"-"`
  868. }
  869. func (m *AccountDetailListRequest) Reset() { *m = AccountDetailListRequest{} }
  870. func (m *AccountDetailListRequest) String() string { return proto.CompactTextString(m) }
  871. func (*AccountDetailListRequest) ProtoMessage() {}
  872. func (*AccountDetailListRequest) Descriptor() ([]byte, []int) {
  873. return fileDescriptor_116e343673f7ffaf, []int{14}
  874. }
  875. func (m *AccountDetailListRequest) XXX_Unmarshal(b []byte) error {
  876. return xxx_messageInfo_AccountDetailListRequest.Unmarshal(m, b)
  877. }
  878. func (m *AccountDetailListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  879. return xxx_messageInfo_AccountDetailListRequest.Marshal(b, m, deterministic)
  880. }
  881. func (m *AccountDetailListRequest) XXX_Merge(src proto.Message) {
  882. xxx_messageInfo_AccountDetailListRequest.Merge(m, src)
  883. }
  884. func (m *AccountDetailListRequest) XXX_Size() int {
  885. return xxx_messageInfo_AccountDetailListRequest.Size(m)
  886. }
  887. func (m *AccountDetailListRequest) XXX_DiscardUnknown() {
  888. xxx_messageInfo_AccountDetailListRequest.DiscardUnknown(m)
  889. }
  890. var xxx_messageInfo_AccountDetailListRequest proto.InternalMessageInfo
  891. func (m *AccountDetailListRequest) GetDoctorId() int32 {
  892. if m != nil {
  893. return m.DoctorId
  894. }
  895. return 0
  896. }
  897. func (m *AccountDetailListRequest) GetPageIndex() int32 {
  898. if m != nil {
  899. return m.PageIndex
  900. }
  901. return 0
  902. }
  903. func (m *AccountDetailListRequest) GetPageSize() int32 {
  904. if m != nil {
  905. return m.PageSize
  906. }
  907. return 0
  908. }
  909. //账户明细列表
  910. type AccountDetailListResponse struct {
  911. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  912. DetailList []*AccountDetail `protobuf:"bytes,2,rep,name=detailList,proto3" json:"detailList,omitempty"`
  913. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  914. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  915. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  916. XXX_unrecognized []byte `json:"-"`
  917. XXX_sizecache int32 `json:"-"`
  918. }
  919. func (m *AccountDetailListResponse) Reset() { *m = AccountDetailListResponse{} }
  920. func (m *AccountDetailListResponse) String() string { return proto.CompactTextString(m) }
  921. func (*AccountDetailListResponse) ProtoMessage() {}
  922. func (*AccountDetailListResponse) Descriptor() ([]byte, []int) {
  923. return fileDescriptor_116e343673f7ffaf, []int{15}
  924. }
  925. func (m *AccountDetailListResponse) XXX_Unmarshal(b []byte) error {
  926. return xxx_messageInfo_AccountDetailListResponse.Unmarshal(m, b)
  927. }
  928. func (m *AccountDetailListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  929. return xxx_messageInfo_AccountDetailListResponse.Marshal(b, m, deterministic)
  930. }
  931. func (m *AccountDetailListResponse) XXX_Merge(src proto.Message) {
  932. xxx_messageInfo_AccountDetailListResponse.Merge(m, src)
  933. }
  934. func (m *AccountDetailListResponse) XXX_Size() int {
  935. return xxx_messageInfo_AccountDetailListResponse.Size(m)
  936. }
  937. func (m *AccountDetailListResponse) XXX_DiscardUnknown() {
  938. xxx_messageInfo_AccountDetailListResponse.DiscardUnknown(m)
  939. }
  940. var xxx_messageInfo_AccountDetailListResponse proto.InternalMessageInfo
  941. func (m *AccountDetailListResponse) GetResult() *Result {
  942. if m != nil {
  943. return m.Result
  944. }
  945. return nil
  946. }
  947. func (m *AccountDetailListResponse) GetDetailList() []*AccountDetail {
  948. if m != nil {
  949. return m.DetailList
  950. }
  951. return nil
  952. }
  953. func (m *AccountDetailListResponse) GetCount() int32 {
  954. if m != nil {
  955. return m.Count
  956. }
  957. return 0
  958. }
  959. func (m *AccountDetailListResponse) GetTotalPages() int32 {
  960. if m != nil {
  961. return m.TotalPages
  962. }
  963. return 0
  964. }
  965. type WithdrawRequest struct {
  966. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  967. Amount float64 `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
  968. CardId int32 `protobuf:"varint,3,opt,name=cardId,proto3" json:"cardId,omitempty"`
  969. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  970. XXX_unrecognized []byte `json:"-"`
  971. XXX_sizecache int32 `json:"-"`
  972. }
  973. func (m *WithdrawRequest) Reset() { *m = WithdrawRequest{} }
  974. func (m *WithdrawRequest) String() string { return proto.CompactTextString(m) }
  975. func (*WithdrawRequest) ProtoMessage() {}
  976. func (*WithdrawRequest) Descriptor() ([]byte, []int) {
  977. return fileDescriptor_116e343673f7ffaf, []int{16}
  978. }
  979. func (m *WithdrawRequest) XXX_Unmarshal(b []byte) error {
  980. return xxx_messageInfo_WithdrawRequest.Unmarshal(m, b)
  981. }
  982. func (m *WithdrawRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  983. return xxx_messageInfo_WithdrawRequest.Marshal(b, m, deterministic)
  984. }
  985. func (m *WithdrawRequest) XXX_Merge(src proto.Message) {
  986. xxx_messageInfo_WithdrawRequest.Merge(m, src)
  987. }
  988. func (m *WithdrawRequest) XXX_Size() int {
  989. return xxx_messageInfo_WithdrawRequest.Size(m)
  990. }
  991. func (m *WithdrawRequest) XXX_DiscardUnknown() {
  992. xxx_messageInfo_WithdrawRequest.DiscardUnknown(m)
  993. }
  994. var xxx_messageInfo_WithdrawRequest proto.InternalMessageInfo
  995. func (m *WithdrawRequest) GetDoctorId() int32 {
  996. if m != nil {
  997. return m.DoctorId
  998. }
  999. return 0
  1000. }
  1001. func (m *WithdrawRequest) GetAmount() float64 {
  1002. if m != nil {
  1003. return m.Amount
  1004. }
  1005. return 0
  1006. }
  1007. func (m *WithdrawRequest) GetCardId() int32 {
  1008. if m != nil {
  1009. return m.CardId
  1010. }
  1011. return 0
  1012. }
  1013. type FeedbackRequest struct {
  1014. Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  1015. Origin int32 `protobuf:"varint,2,opt,name=origin,proto3" json:"origin,omitempty"`
  1016. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  1017. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1018. XXX_unrecognized []byte `json:"-"`
  1019. XXX_sizecache int32 `json:"-"`
  1020. }
  1021. func (m *FeedbackRequest) Reset() { *m = FeedbackRequest{} }
  1022. func (m *FeedbackRequest) String() string { return proto.CompactTextString(m) }
  1023. func (*FeedbackRequest) ProtoMessage() {}
  1024. func (*FeedbackRequest) Descriptor() ([]byte, []int) {
  1025. return fileDescriptor_116e343673f7ffaf, []int{17}
  1026. }
  1027. func (m *FeedbackRequest) XXX_Unmarshal(b []byte) error {
  1028. return xxx_messageInfo_FeedbackRequest.Unmarshal(m, b)
  1029. }
  1030. func (m *FeedbackRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1031. return xxx_messageInfo_FeedbackRequest.Marshal(b, m, deterministic)
  1032. }
  1033. func (m *FeedbackRequest) XXX_Merge(src proto.Message) {
  1034. xxx_messageInfo_FeedbackRequest.Merge(m, src)
  1035. }
  1036. func (m *FeedbackRequest) XXX_Size() int {
  1037. return xxx_messageInfo_FeedbackRequest.Size(m)
  1038. }
  1039. func (m *FeedbackRequest) XXX_DiscardUnknown() {
  1040. xxx_messageInfo_FeedbackRequest.DiscardUnknown(m)
  1041. }
  1042. var xxx_messageInfo_FeedbackRequest proto.InternalMessageInfo
  1043. func (m *FeedbackRequest) GetContent() string {
  1044. if m != nil {
  1045. return m.Content
  1046. }
  1047. return ""
  1048. }
  1049. func (m *FeedbackRequest) GetOrigin() int32 {
  1050. if m != nil {
  1051. return m.Origin
  1052. }
  1053. return 0
  1054. }
  1055. func (m *FeedbackRequest) GetUserId() int32 {
  1056. if m != nil {
  1057. return m.UserId
  1058. }
  1059. return 0
  1060. }
  1061. type WithdrawRecord struct {
  1062. RecordId int32 `protobuf:"varint,1,opt,name=recordId,proto3" json:"recordId,omitempty"`
  1063. Amount float64 `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
  1064. CreateTime int64 `protobuf:"varint,3,opt,name=createTime,proto3" json:"createTime,omitempty"`
  1065. CardId int32 `protobuf:"varint,4,opt,name=cardId,proto3" json:"cardId,omitempty"`
  1066. CardNo string `protobuf:"bytes,5,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  1067. Status int32 `protobuf:"varint,6,opt,name=status,proto3" json:"status,omitempty"`
  1068. UpdateTime int64 `protobuf:"varint,7,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
  1069. AuditStatus int32 `protobuf:"varint,8,opt,name=auditStatus,proto3" json:"auditStatus,omitempty"`
  1070. UserId int32 `protobuf:"varint,9,opt,name=userId,proto3" json:"userId,omitempty"`
  1071. Remark string `protobuf:"bytes,10,opt,name=remark,proto3" json:"remark,omitempty"`
  1072. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1073. XXX_unrecognized []byte `json:"-"`
  1074. XXX_sizecache int32 `json:"-"`
  1075. }
  1076. func (m *WithdrawRecord) Reset() { *m = WithdrawRecord{} }
  1077. func (m *WithdrawRecord) String() string { return proto.CompactTextString(m) }
  1078. func (*WithdrawRecord) ProtoMessage() {}
  1079. func (*WithdrawRecord) Descriptor() ([]byte, []int) {
  1080. return fileDescriptor_116e343673f7ffaf, []int{18}
  1081. }
  1082. func (m *WithdrawRecord) XXX_Unmarshal(b []byte) error {
  1083. return xxx_messageInfo_WithdrawRecord.Unmarshal(m, b)
  1084. }
  1085. func (m *WithdrawRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1086. return xxx_messageInfo_WithdrawRecord.Marshal(b, m, deterministic)
  1087. }
  1088. func (m *WithdrawRecord) XXX_Merge(src proto.Message) {
  1089. xxx_messageInfo_WithdrawRecord.Merge(m, src)
  1090. }
  1091. func (m *WithdrawRecord) XXX_Size() int {
  1092. return xxx_messageInfo_WithdrawRecord.Size(m)
  1093. }
  1094. func (m *WithdrawRecord) XXX_DiscardUnknown() {
  1095. xxx_messageInfo_WithdrawRecord.DiscardUnknown(m)
  1096. }
  1097. var xxx_messageInfo_WithdrawRecord proto.InternalMessageInfo
  1098. func (m *WithdrawRecord) GetRecordId() int32 {
  1099. if m != nil {
  1100. return m.RecordId
  1101. }
  1102. return 0
  1103. }
  1104. func (m *WithdrawRecord) GetAmount() float64 {
  1105. if m != nil {
  1106. return m.Amount
  1107. }
  1108. return 0
  1109. }
  1110. func (m *WithdrawRecord) GetCreateTime() int64 {
  1111. if m != nil {
  1112. return m.CreateTime
  1113. }
  1114. return 0
  1115. }
  1116. func (m *WithdrawRecord) GetCardId() int32 {
  1117. if m != nil {
  1118. return m.CardId
  1119. }
  1120. return 0
  1121. }
  1122. func (m *WithdrawRecord) GetCardNo() string {
  1123. if m != nil {
  1124. return m.CardNo
  1125. }
  1126. return ""
  1127. }
  1128. func (m *WithdrawRecord) GetStatus() int32 {
  1129. if m != nil {
  1130. return m.Status
  1131. }
  1132. return 0
  1133. }
  1134. func (m *WithdrawRecord) GetUpdateTime() int64 {
  1135. if m != nil {
  1136. return m.UpdateTime
  1137. }
  1138. return 0
  1139. }
  1140. func (m *WithdrawRecord) GetAuditStatus() int32 {
  1141. if m != nil {
  1142. return m.AuditStatus
  1143. }
  1144. return 0
  1145. }
  1146. func (m *WithdrawRecord) GetUserId() int32 {
  1147. if m != nil {
  1148. return m.UserId
  1149. }
  1150. return 0
  1151. }
  1152. func (m *WithdrawRecord) GetRemark() string {
  1153. if m != nil {
  1154. return m.Remark
  1155. }
  1156. return ""
  1157. }
  1158. type WithdrawRecordListRequest struct {
  1159. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  1160. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  1161. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  1162. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  1163. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1164. XXX_unrecognized []byte `json:"-"`
  1165. XXX_sizecache int32 `json:"-"`
  1166. }
  1167. func (m *WithdrawRecordListRequest) Reset() { *m = WithdrawRecordListRequest{} }
  1168. func (m *WithdrawRecordListRequest) String() string { return proto.CompactTextString(m) }
  1169. func (*WithdrawRecordListRequest) ProtoMessage() {}
  1170. func (*WithdrawRecordListRequest) Descriptor() ([]byte, []int) {
  1171. return fileDescriptor_116e343673f7ffaf, []int{19}
  1172. }
  1173. func (m *WithdrawRecordListRequest) XXX_Unmarshal(b []byte) error {
  1174. return xxx_messageInfo_WithdrawRecordListRequest.Unmarshal(m, b)
  1175. }
  1176. func (m *WithdrawRecordListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1177. return xxx_messageInfo_WithdrawRecordListRequest.Marshal(b, m, deterministic)
  1178. }
  1179. func (m *WithdrawRecordListRequest) XXX_Merge(src proto.Message) {
  1180. xxx_messageInfo_WithdrawRecordListRequest.Merge(m, src)
  1181. }
  1182. func (m *WithdrawRecordListRequest) XXX_Size() int {
  1183. return xxx_messageInfo_WithdrawRecordListRequest.Size(m)
  1184. }
  1185. func (m *WithdrawRecordListRequest) XXX_DiscardUnknown() {
  1186. xxx_messageInfo_WithdrawRecordListRequest.DiscardUnknown(m)
  1187. }
  1188. var xxx_messageInfo_WithdrawRecordListRequest proto.InternalMessageInfo
  1189. func (m *WithdrawRecordListRequest) GetDoctorId() int32 {
  1190. if m != nil {
  1191. return m.DoctorId
  1192. }
  1193. return 0
  1194. }
  1195. func (m *WithdrawRecordListRequest) GetPageIndex() int32 {
  1196. if m != nil {
  1197. return m.PageIndex
  1198. }
  1199. return 0
  1200. }
  1201. func (m *WithdrawRecordListRequest) GetPageSize() int32 {
  1202. if m != nil {
  1203. return m.PageSize
  1204. }
  1205. return 0
  1206. }
  1207. func (m *WithdrawRecordListRequest) GetStatus() int32 {
  1208. if m != nil {
  1209. return m.Status
  1210. }
  1211. return 0
  1212. }
  1213. type WithdrawRecordListResponse struct {
  1214. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  1215. RecordList []*WithdrawRecord `protobuf:"bytes,2,rep,name=recordList,proto3" json:"recordList,omitempty"`
  1216. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  1217. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  1218. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1219. XXX_unrecognized []byte `json:"-"`
  1220. XXX_sizecache int32 `json:"-"`
  1221. }
  1222. func (m *WithdrawRecordListResponse) Reset() { *m = WithdrawRecordListResponse{} }
  1223. func (m *WithdrawRecordListResponse) String() string { return proto.CompactTextString(m) }
  1224. func (*WithdrawRecordListResponse) ProtoMessage() {}
  1225. func (*WithdrawRecordListResponse) Descriptor() ([]byte, []int) {
  1226. return fileDescriptor_116e343673f7ffaf, []int{20}
  1227. }
  1228. func (m *WithdrawRecordListResponse) XXX_Unmarshal(b []byte) error {
  1229. return xxx_messageInfo_WithdrawRecordListResponse.Unmarshal(m, b)
  1230. }
  1231. func (m *WithdrawRecordListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1232. return xxx_messageInfo_WithdrawRecordListResponse.Marshal(b, m, deterministic)
  1233. }
  1234. func (m *WithdrawRecordListResponse) XXX_Merge(src proto.Message) {
  1235. xxx_messageInfo_WithdrawRecordListResponse.Merge(m, src)
  1236. }
  1237. func (m *WithdrawRecordListResponse) XXX_Size() int {
  1238. return xxx_messageInfo_WithdrawRecordListResponse.Size(m)
  1239. }
  1240. func (m *WithdrawRecordListResponse) XXX_DiscardUnknown() {
  1241. xxx_messageInfo_WithdrawRecordListResponse.DiscardUnknown(m)
  1242. }
  1243. var xxx_messageInfo_WithdrawRecordListResponse proto.InternalMessageInfo
  1244. func (m *WithdrawRecordListResponse) GetResult() *Result {
  1245. if m != nil {
  1246. return m.Result
  1247. }
  1248. return nil
  1249. }
  1250. func (m *WithdrawRecordListResponse) GetRecordList() []*WithdrawRecord {
  1251. if m != nil {
  1252. return m.RecordList
  1253. }
  1254. return nil
  1255. }
  1256. func (m *WithdrawRecordListResponse) GetCount() int32 {
  1257. if m != nil {
  1258. return m.Count
  1259. }
  1260. return 0
  1261. }
  1262. func (m *WithdrawRecordListResponse) GetTotalPages() int32 {
  1263. if m != nil {
  1264. return m.TotalPages
  1265. }
  1266. return 0
  1267. }
  1268. //删除银行卡请求
  1269. type DelBankCardRequest struct {
  1270. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  1271. CardId int32 `protobuf:"varint,2,opt,name=cardId,proto3" json:"cardId,omitempty"`
  1272. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1273. XXX_unrecognized []byte `json:"-"`
  1274. XXX_sizecache int32 `json:"-"`
  1275. }
  1276. func (m *DelBankCardRequest) Reset() { *m = DelBankCardRequest{} }
  1277. func (m *DelBankCardRequest) String() string { return proto.CompactTextString(m) }
  1278. func (*DelBankCardRequest) ProtoMessage() {}
  1279. func (*DelBankCardRequest) Descriptor() ([]byte, []int) {
  1280. return fileDescriptor_116e343673f7ffaf, []int{21}
  1281. }
  1282. func (m *DelBankCardRequest) XXX_Unmarshal(b []byte) error {
  1283. return xxx_messageInfo_DelBankCardRequest.Unmarshal(m, b)
  1284. }
  1285. func (m *DelBankCardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1286. return xxx_messageInfo_DelBankCardRequest.Marshal(b, m, deterministic)
  1287. }
  1288. func (m *DelBankCardRequest) XXX_Merge(src proto.Message) {
  1289. xxx_messageInfo_DelBankCardRequest.Merge(m, src)
  1290. }
  1291. func (m *DelBankCardRequest) XXX_Size() int {
  1292. return xxx_messageInfo_DelBankCardRequest.Size(m)
  1293. }
  1294. func (m *DelBankCardRequest) XXX_DiscardUnknown() {
  1295. xxx_messageInfo_DelBankCardRequest.DiscardUnknown(m)
  1296. }
  1297. var xxx_messageInfo_DelBankCardRequest proto.InternalMessageInfo
  1298. func (m *DelBankCardRequest) GetDoctorId() int32 {
  1299. if m != nil {
  1300. return m.DoctorId
  1301. }
  1302. return 0
  1303. }
  1304. func (m *DelBankCardRequest) GetCardId() int32 {
  1305. if m != nil {
  1306. return m.CardId
  1307. }
  1308. return 0
  1309. }
  1310. // 第三方账户信息
  1311. type SnsUser struct {
  1312. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1313. OpenId string `protobuf:"bytes,2,opt,name=openId,proto3" json:"openId,omitempty"`
  1314. UnionId string `protobuf:"bytes,3,opt,name=unionId,proto3" json:"unionId,omitempty"`
  1315. UserId int32 `protobuf:"varint,4,opt,name=userId,proto3" json:"userId,omitempty"`
  1316. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  1317. Sex int32 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex,omitempty"`
  1318. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province,omitempty"`
  1319. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city,omitempty"`
  1320. Country string `protobuf:"bytes,9,opt,name=country,proto3" json:"country,omitempty"`
  1321. Avatar string `protobuf:"bytes,10,opt,name=avatar,proto3" json:"avatar,omitempty"`
  1322. Language string `protobuf:"bytes,11,opt,name=language,proto3" json:"language,omitempty"`
  1323. SnsType int32 `protobuf:"varint,12,opt,name=snsType,proto3" json:"snsType,omitempty"`
  1324. Status int32 `protobuf:"varint,13,opt,name=status,proto3" json:"status,omitempty"`
  1325. CreateTime int64 `protobuf:"varint,14,opt,name=createTime,proto3" json:"createTime,omitempty"`
  1326. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1327. XXX_unrecognized []byte `json:"-"`
  1328. XXX_sizecache int32 `json:"-"`
  1329. }
  1330. func (m *SnsUser) Reset() { *m = SnsUser{} }
  1331. func (m *SnsUser) String() string { return proto.CompactTextString(m) }
  1332. func (*SnsUser) ProtoMessage() {}
  1333. func (*SnsUser) Descriptor() ([]byte, []int) {
  1334. return fileDescriptor_116e343673f7ffaf, []int{22}
  1335. }
  1336. func (m *SnsUser) XXX_Unmarshal(b []byte) error {
  1337. return xxx_messageInfo_SnsUser.Unmarshal(m, b)
  1338. }
  1339. func (m *SnsUser) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1340. return xxx_messageInfo_SnsUser.Marshal(b, m, deterministic)
  1341. }
  1342. func (m *SnsUser) XXX_Merge(src proto.Message) {
  1343. xxx_messageInfo_SnsUser.Merge(m, src)
  1344. }
  1345. func (m *SnsUser) XXX_Size() int {
  1346. return xxx_messageInfo_SnsUser.Size(m)
  1347. }
  1348. func (m *SnsUser) XXX_DiscardUnknown() {
  1349. xxx_messageInfo_SnsUser.DiscardUnknown(m)
  1350. }
  1351. var xxx_messageInfo_SnsUser proto.InternalMessageInfo
  1352. func (m *SnsUser) GetId() int32 {
  1353. if m != nil {
  1354. return m.Id
  1355. }
  1356. return 0
  1357. }
  1358. func (m *SnsUser) GetOpenId() string {
  1359. if m != nil {
  1360. return m.OpenId
  1361. }
  1362. return ""
  1363. }
  1364. func (m *SnsUser) GetUnionId() string {
  1365. if m != nil {
  1366. return m.UnionId
  1367. }
  1368. return ""
  1369. }
  1370. func (m *SnsUser) GetUserId() int32 {
  1371. if m != nil {
  1372. return m.UserId
  1373. }
  1374. return 0
  1375. }
  1376. func (m *SnsUser) GetNickname() string {
  1377. if m != nil {
  1378. return m.Nickname
  1379. }
  1380. return ""
  1381. }
  1382. func (m *SnsUser) GetSex() int32 {
  1383. if m != nil {
  1384. return m.Sex
  1385. }
  1386. return 0
  1387. }
  1388. func (m *SnsUser) GetProvince() string {
  1389. if m != nil {
  1390. return m.Province
  1391. }
  1392. return ""
  1393. }
  1394. func (m *SnsUser) GetCity() string {
  1395. if m != nil {
  1396. return m.City
  1397. }
  1398. return ""
  1399. }
  1400. func (m *SnsUser) GetCountry() string {
  1401. if m != nil {
  1402. return m.Country
  1403. }
  1404. return ""
  1405. }
  1406. func (m *SnsUser) GetAvatar() string {
  1407. if m != nil {
  1408. return m.Avatar
  1409. }
  1410. return ""
  1411. }
  1412. func (m *SnsUser) GetLanguage() string {
  1413. if m != nil {
  1414. return m.Language
  1415. }
  1416. return ""
  1417. }
  1418. func (m *SnsUser) GetSnsType() int32 {
  1419. if m != nil {
  1420. return m.SnsType
  1421. }
  1422. return 0
  1423. }
  1424. func (m *SnsUser) GetStatus() int32 {
  1425. if m != nil {
  1426. return m.Status
  1427. }
  1428. return 0
  1429. }
  1430. func (m *SnsUser) GetCreateTime() int64 {
  1431. if m != nil {
  1432. return m.CreateTime
  1433. }
  1434. return 0
  1435. }
  1436. type GetSnsUserRequest struct {
  1437. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  1438. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  1439. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  1440. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1441. XXX_unrecognized []byte `json:"-"`
  1442. XXX_sizecache int32 `json:"-"`
  1443. }
  1444. func (m *GetSnsUserRequest) Reset() { *m = GetSnsUserRequest{} }
  1445. func (m *GetSnsUserRequest) String() string { return proto.CompactTextString(m) }
  1446. func (*GetSnsUserRequest) ProtoMessage() {}
  1447. func (*GetSnsUserRequest) Descriptor() ([]byte, []int) {
  1448. return fileDescriptor_116e343673f7ffaf, []int{23}
  1449. }
  1450. func (m *GetSnsUserRequest) XXX_Unmarshal(b []byte) error {
  1451. return xxx_messageInfo_GetSnsUserRequest.Unmarshal(m, b)
  1452. }
  1453. func (m *GetSnsUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1454. return xxx_messageInfo_GetSnsUserRequest.Marshal(b, m, deterministic)
  1455. }
  1456. func (m *GetSnsUserRequest) XXX_Merge(src proto.Message) {
  1457. xxx_messageInfo_GetSnsUserRequest.Merge(m, src)
  1458. }
  1459. func (m *GetSnsUserRequest) XXX_Size() int {
  1460. return xxx_messageInfo_GetSnsUserRequest.Size(m)
  1461. }
  1462. func (m *GetSnsUserRequest) XXX_DiscardUnknown() {
  1463. xxx_messageInfo_GetSnsUserRequest.DiscardUnknown(m)
  1464. }
  1465. var xxx_messageInfo_GetSnsUserRequest proto.InternalMessageInfo
  1466. func (m *GetSnsUserRequest) GetOpenId() string {
  1467. if m != nil {
  1468. return m.OpenId
  1469. }
  1470. return ""
  1471. }
  1472. func (m *GetSnsUserRequest) GetUnionId() string {
  1473. if m != nil {
  1474. return m.UnionId
  1475. }
  1476. return ""
  1477. }
  1478. func (m *GetSnsUserRequest) GetUserId() int32 {
  1479. if m != nil {
  1480. return m.UserId
  1481. }
  1482. return 0
  1483. }
  1484. type GetSnsUserByOpenIdRequest struct {
  1485. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  1486. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1487. XXX_unrecognized []byte `json:"-"`
  1488. XXX_sizecache int32 `json:"-"`
  1489. }
  1490. func (m *GetSnsUserByOpenIdRequest) Reset() { *m = GetSnsUserByOpenIdRequest{} }
  1491. func (m *GetSnsUserByOpenIdRequest) String() string { return proto.CompactTextString(m) }
  1492. func (*GetSnsUserByOpenIdRequest) ProtoMessage() {}
  1493. func (*GetSnsUserByOpenIdRequest) Descriptor() ([]byte, []int) {
  1494. return fileDescriptor_116e343673f7ffaf, []int{24}
  1495. }
  1496. func (m *GetSnsUserByOpenIdRequest) XXX_Unmarshal(b []byte) error {
  1497. return xxx_messageInfo_GetSnsUserByOpenIdRequest.Unmarshal(m, b)
  1498. }
  1499. func (m *GetSnsUserByOpenIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1500. return xxx_messageInfo_GetSnsUserByOpenIdRequest.Marshal(b, m, deterministic)
  1501. }
  1502. func (m *GetSnsUserByOpenIdRequest) XXX_Merge(src proto.Message) {
  1503. xxx_messageInfo_GetSnsUserByOpenIdRequest.Merge(m, src)
  1504. }
  1505. func (m *GetSnsUserByOpenIdRequest) XXX_Size() int {
  1506. return xxx_messageInfo_GetSnsUserByOpenIdRequest.Size(m)
  1507. }
  1508. func (m *GetSnsUserByOpenIdRequest) XXX_DiscardUnknown() {
  1509. xxx_messageInfo_GetSnsUserByOpenIdRequest.DiscardUnknown(m)
  1510. }
  1511. var xxx_messageInfo_GetSnsUserByOpenIdRequest proto.InternalMessageInfo
  1512. func (m *GetSnsUserByOpenIdRequest) GetOpenId() string {
  1513. if m != nil {
  1514. return m.OpenId
  1515. }
  1516. return ""
  1517. }
  1518. type GetSnsUserByUserIdRequest struct {
  1519. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  1520. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1521. XXX_unrecognized []byte `json:"-"`
  1522. XXX_sizecache int32 `json:"-"`
  1523. }
  1524. func (m *GetSnsUserByUserIdRequest) Reset() { *m = GetSnsUserByUserIdRequest{} }
  1525. func (m *GetSnsUserByUserIdRequest) String() string { return proto.CompactTextString(m) }
  1526. func (*GetSnsUserByUserIdRequest) ProtoMessage() {}
  1527. func (*GetSnsUserByUserIdRequest) Descriptor() ([]byte, []int) {
  1528. return fileDescriptor_116e343673f7ffaf, []int{25}
  1529. }
  1530. func (m *GetSnsUserByUserIdRequest) XXX_Unmarshal(b []byte) error {
  1531. return xxx_messageInfo_GetSnsUserByUserIdRequest.Unmarshal(m, b)
  1532. }
  1533. func (m *GetSnsUserByUserIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1534. return xxx_messageInfo_GetSnsUserByUserIdRequest.Marshal(b, m, deterministic)
  1535. }
  1536. func (m *GetSnsUserByUserIdRequest) XXX_Merge(src proto.Message) {
  1537. xxx_messageInfo_GetSnsUserByUserIdRequest.Merge(m, src)
  1538. }
  1539. func (m *GetSnsUserByUserIdRequest) XXX_Size() int {
  1540. return xxx_messageInfo_GetSnsUserByUserIdRequest.Size(m)
  1541. }
  1542. func (m *GetSnsUserByUserIdRequest) XXX_DiscardUnknown() {
  1543. xxx_messageInfo_GetSnsUserByUserIdRequest.DiscardUnknown(m)
  1544. }
  1545. var xxx_messageInfo_GetSnsUserByUserIdRequest proto.InternalMessageInfo
  1546. func (m *GetSnsUserByUserIdRequest) GetUserId() int32 {
  1547. if m != nil {
  1548. return m.UserId
  1549. }
  1550. return 0
  1551. }
  1552. type GetSnsUserResponse struct {
  1553. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  1554. SnsUser *SnsUser `protobuf:"bytes,2,opt,name=snsUser,proto3" json:"snsUser,omitempty"`
  1555. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1556. XXX_unrecognized []byte `json:"-"`
  1557. XXX_sizecache int32 `json:"-"`
  1558. }
  1559. func (m *GetSnsUserResponse) Reset() { *m = GetSnsUserResponse{} }
  1560. func (m *GetSnsUserResponse) String() string { return proto.CompactTextString(m) }
  1561. func (*GetSnsUserResponse) ProtoMessage() {}
  1562. func (*GetSnsUserResponse) Descriptor() ([]byte, []int) {
  1563. return fileDescriptor_116e343673f7ffaf, []int{26}
  1564. }
  1565. func (m *GetSnsUserResponse) XXX_Unmarshal(b []byte) error {
  1566. return xxx_messageInfo_GetSnsUserResponse.Unmarshal(m, b)
  1567. }
  1568. func (m *GetSnsUserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1569. return xxx_messageInfo_GetSnsUserResponse.Marshal(b, m, deterministic)
  1570. }
  1571. func (m *GetSnsUserResponse) XXX_Merge(src proto.Message) {
  1572. xxx_messageInfo_GetSnsUserResponse.Merge(m, src)
  1573. }
  1574. func (m *GetSnsUserResponse) XXX_Size() int {
  1575. return xxx_messageInfo_GetSnsUserResponse.Size(m)
  1576. }
  1577. func (m *GetSnsUserResponse) XXX_DiscardUnknown() {
  1578. xxx_messageInfo_GetSnsUserResponse.DiscardUnknown(m)
  1579. }
  1580. var xxx_messageInfo_GetSnsUserResponse proto.InternalMessageInfo
  1581. func (m *GetSnsUserResponse) GetResult() *Result {
  1582. if m != nil {
  1583. return m.Result
  1584. }
  1585. return nil
  1586. }
  1587. func (m *GetSnsUserResponse) GetSnsUser() *SnsUser {
  1588. if m != nil {
  1589. return m.SnsUser
  1590. }
  1591. return nil
  1592. }
  1593. //诊疗卡
  1594. type MedicalCard struct {
  1595. PatientId string `protobuf:"bytes,1,opt,name=patientId,proto3" json:"patientId,omitempty"`
  1596. PatientName string `protobuf:"bytes,2,opt,name=patientName,proto3" json:"patientName,omitempty"`
  1597. Sex int32 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex,omitempty"`
  1598. Birthday string `protobuf:"bytes,4,opt,name=birthday,proto3" json:"birthday,omitempty"`
  1599. TelephoneNo string `protobuf:"bytes,5,opt,name=telephoneNo,proto3" json:"telephoneNo,omitempty"`
  1600. Mobile string `protobuf:"bytes,6,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1601. DocumentId string `protobuf:"bytes,7,opt,name=documentId,proto3" json:"documentId,omitempty"`
  1602. Address string `protobuf:"bytes,8,opt,name=address,proto3" json:"address,omitempty"`
  1603. IdTypeCode string `protobuf:"bytes,9,opt,name=idTypeCode,proto3" json:"idTypeCode,omitempty"`
  1604. IdTypeDesc string `protobuf:"bytes,10,opt,name=idTypeDesc,proto3" json:"idTypeDesc,omitempty"`
  1605. IdNo string `protobuf:"bytes,11,opt,name=idNo,proto3" json:"idNo,omitempty"`
  1606. InsureCardNo string `protobuf:"bytes,12,opt,name=insureCardNo,proto3" json:"insureCardNo,omitempty"`
  1607. AccInfo string `protobuf:"bytes,13,opt,name=accInfo,proto3" json:"accInfo,omitempty"`
  1608. CardNo string `protobuf:"bytes,14,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  1609. CardType string `protobuf:"bytes,15,opt,name=cardType,proto3" json:"cardType,omitempty"`
  1610. PatientType string `protobuf:"bytes,16,opt,name=patientType,proto3" json:"patientType,omitempty"`
  1611. Balance int32 `protobuf:"varint,17,opt,name=balance,proto3" json:"balance,omitempty"`
  1612. UserId int32 `protobuf:"varint,18,opt,name=userId,proto3" json:"userId,omitempty"`
  1613. HospitalId int32 `protobuf:"varint,19,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  1614. CardId int32 `protobuf:"varint,20,opt,name=cardId,proto3" json:"cardId,omitempty"`
  1615. HospitalName string `protobuf:"bytes,21,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  1616. HisPatientId string `protobuf:"bytes,22,opt,name=hisPatientId,proto3" json:"hisPatientId,omitempty"`
  1617. Guardian string `protobuf:"bytes,23,opt,name=guardian,proto3" json:"guardian,omitempty"`
  1618. Flag int32 `protobuf:"varint,24,opt,name=flag,proto3" json:"flag,omitempty"`
  1619. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1620. XXX_unrecognized []byte `json:"-"`
  1621. XXX_sizecache int32 `json:"-"`
  1622. }
  1623. func (m *MedicalCard) Reset() { *m = MedicalCard{} }
  1624. func (m *MedicalCard) String() string { return proto.CompactTextString(m) }
  1625. func (*MedicalCard) ProtoMessage() {}
  1626. func (*MedicalCard) Descriptor() ([]byte, []int) {
  1627. return fileDescriptor_116e343673f7ffaf, []int{27}
  1628. }
  1629. func (m *MedicalCard) XXX_Unmarshal(b []byte) error {
  1630. return xxx_messageInfo_MedicalCard.Unmarshal(m, b)
  1631. }
  1632. func (m *MedicalCard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1633. return xxx_messageInfo_MedicalCard.Marshal(b, m, deterministic)
  1634. }
  1635. func (m *MedicalCard) XXX_Merge(src proto.Message) {
  1636. xxx_messageInfo_MedicalCard.Merge(m, src)
  1637. }
  1638. func (m *MedicalCard) XXX_Size() int {
  1639. return xxx_messageInfo_MedicalCard.Size(m)
  1640. }
  1641. func (m *MedicalCard) XXX_DiscardUnknown() {
  1642. xxx_messageInfo_MedicalCard.DiscardUnknown(m)
  1643. }
  1644. var xxx_messageInfo_MedicalCard proto.InternalMessageInfo
  1645. func (m *MedicalCard) GetPatientId() string {
  1646. if m != nil {
  1647. return m.PatientId
  1648. }
  1649. return ""
  1650. }
  1651. func (m *MedicalCard) GetPatientName() string {
  1652. if m != nil {
  1653. return m.PatientName
  1654. }
  1655. return ""
  1656. }
  1657. func (m *MedicalCard) GetSex() int32 {
  1658. if m != nil {
  1659. return m.Sex
  1660. }
  1661. return 0
  1662. }
  1663. func (m *MedicalCard) GetBirthday() string {
  1664. if m != nil {
  1665. return m.Birthday
  1666. }
  1667. return ""
  1668. }
  1669. func (m *MedicalCard) GetTelephoneNo() string {
  1670. if m != nil {
  1671. return m.TelephoneNo
  1672. }
  1673. return ""
  1674. }
  1675. func (m *MedicalCard) GetMobile() string {
  1676. if m != nil {
  1677. return m.Mobile
  1678. }
  1679. return ""
  1680. }
  1681. func (m *MedicalCard) GetDocumentId() string {
  1682. if m != nil {
  1683. return m.DocumentId
  1684. }
  1685. return ""
  1686. }
  1687. func (m *MedicalCard) GetAddress() string {
  1688. if m != nil {
  1689. return m.Address
  1690. }
  1691. return ""
  1692. }
  1693. func (m *MedicalCard) GetIdTypeCode() string {
  1694. if m != nil {
  1695. return m.IdTypeCode
  1696. }
  1697. return ""
  1698. }
  1699. func (m *MedicalCard) GetIdTypeDesc() string {
  1700. if m != nil {
  1701. return m.IdTypeDesc
  1702. }
  1703. return ""
  1704. }
  1705. func (m *MedicalCard) GetIdNo() string {
  1706. if m != nil {
  1707. return m.IdNo
  1708. }
  1709. return ""
  1710. }
  1711. func (m *MedicalCard) GetInsureCardNo() string {
  1712. if m != nil {
  1713. return m.InsureCardNo
  1714. }
  1715. return ""
  1716. }
  1717. func (m *MedicalCard) GetAccInfo() string {
  1718. if m != nil {
  1719. return m.AccInfo
  1720. }
  1721. return ""
  1722. }
  1723. func (m *MedicalCard) GetCardNo() string {
  1724. if m != nil {
  1725. return m.CardNo
  1726. }
  1727. return ""
  1728. }
  1729. func (m *MedicalCard) GetCardType() string {
  1730. if m != nil {
  1731. return m.CardType
  1732. }
  1733. return ""
  1734. }
  1735. func (m *MedicalCard) GetPatientType() string {
  1736. if m != nil {
  1737. return m.PatientType
  1738. }
  1739. return ""
  1740. }
  1741. func (m *MedicalCard) GetBalance() int32 {
  1742. if m != nil {
  1743. return m.Balance
  1744. }
  1745. return 0
  1746. }
  1747. func (m *MedicalCard) GetUserId() int32 {
  1748. if m != nil {
  1749. return m.UserId
  1750. }
  1751. return 0
  1752. }
  1753. func (m *MedicalCard) GetHospitalId() int32 {
  1754. if m != nil {
  1755. return m.HospitalId
  1756. }
  1757. return 0
  1758. }
  1759. func (m *MedicalCard) GetCardId() int32 {
  1760. if m != nil {
  1761. return m.CardId
  1762. }
  1763. return 0
  1764. }
  1765. func (m *MedicalCard) GetHospitalName() string {
  1766. if m != nil {
  1767. return m.HospitalName
  1768. }
  1769. return ""
  1770. }
  1771. func (m *MedicalCard) GetHisPatientId() string {
  1772. if m != nil {
  1773. return m.HisPatientId
  1774. }
  1775. return ""
  1776. }
  1777. func (m *MedicalCard) GetGuardian() string {
  1778. if m != nil {
  1779. return m.Guardian
  1780. }
  1781. return ""
  1782. }
  1783. func (m *MedicalCard) GetFlag() int32 {
  1784. if m != nil {
  1785. return m.Flag
  1786. }
  1787. return 0
  1788. }
  1789. //绑定诊疗卡请求
  1790. type AddMedicalCardRequest struct {
  1791. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  1792. HospitalId int32 `protobuf:"varint,2,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  1793. CardNo string `protobuf:"bytes,3,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  1794. RealName string `protobuf:"bytes,4,opt,name=realName,proto3" json:"realName,omitempty"`
  1795. Mobile string `protobuf:"bytes,5,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1796. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1797. XXX_unrecognized []byte `json:"-"`
  1798. XXX_sizecache int32 `json:"-"`
  1799. }
  1800. func (m *AddMedicalCardRequest) Reset() { *m = AddMedicalCardRequest{} }
  1801. func (m *AddMedicalCardRequest) String() string { return proto.CompactTextString(m) }
  1802. func (*AddMedicalCardRequest) ProtoMessage() {}
  1803. func (*AddMedicalCardRequest) Descriptor() ([]byte, []int) {
  1804. return fileDescriptor_116e343673f7ffaf, []int{28}
  1805. }
  1806. func (m *AddMedicalCardRequest) XXX_Unmarshal(b []byte) error {
  1807. return xxx_messageInfo_AddMedicalCardRequest.Unmarshal(m, b)
  1808. }
  1809. func (m *AddMedicalCardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1810. return xxx_messageInfo_AddMedicalCardRequest.Marshal(b, m, deterministic)
  1811. }
  1812. func (m *AddMedicalCardRequest) XXX_Merge(src proto.Message) {
  1813. xxx_messageInfo_AddMedicalCardRequest.Merge(m, src)
  1814. }
  1815. func (m *AddMedicalCardRequest) XXX_Size() int {
  1816. return xxx_messageInfo_AddMedicalCardRequest.Size(m)
  1817. }
  1818. func (m *AddMedicalCardRequest) XXX_DiscardUnknown() {
  1819. xxx_messageInfo_AddMedicalCardRequest.DiscardUnknown(m)
  1820. }
  1821. var xxx_messageInfo_AddMedicalCardRequest proto.InternalMessageInfo
  1822. func (m *AddMedicalCardRequest) GetUserId() int32 {
  1823. if m != nil {
  1824. return m.UserId
  1825. }
  1826. return 0
  1827. }
  1828. func (m *AddMedicalCardRequest) GetHospitalId() int32 {
  1829. if m != nil {
  1830. return m.HospitalId
  1831. }
  1832. return 0
  1833. }
  1834. func (m *AddMedicalCardRequest) GetCardNo() string {
  1835. if m != nil {
  1836. return m.CardNo
  1837. }
  1838. return ""
  1839. }
  1840. func (m *AddMedicalCardRequest) GetRealName() string {
  1841. if m != nil {
  1842. return m.RealName
  1843. }
  1844. return ""
  1845. }
  1846. func (m *AddMedicalCardRequest) GetMobile() string {
  1847. if m != nil {
  1848. return m.Mobile
  1849. }
  1850. return ""
  1851. }
  1852. //获取诊疗卡列表请求
  1853. type GetMedicalCardListRequest struct {
  1854. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  1855. HospitalId int32 `protobuf:"varint,2,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  1856. Flag int32 `protobuf:"varint,3,opt,name=flag,proto3" json:"flag,omitempty"`
  1857. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1858. XXX_unrecognized []byte `json:"-"`
  1859. XXX_sizecache int32 `json:"-"`
  1860. }
  1861. func (m *GetMedicalCardListRequest) Reset() { *m = GetMedicalCardListRequest{} }
  1862. func (m *GetMedicalCardListRequest) String() string { return proto.CompactTextString(m) }
  1863. func (*GetMedicalCardListRequest) ProtoMessage() {}
  1864. func (*GetMedicalCardListRequest) Descriptor() ([]byte, []int) {
  1865. return fileDescriptor_116e343673f7ffaf, []int{29}
  1866. }
  1867. func (m *GetMedicalCardListRequest) XXX_Unmarshal(b []byte) error {
  1868. return xxx_messageInfo_GetMedicalCardListRequest.Unmarshal(m, b)
  1869. }
  1870. func (m *GetMedicalCardListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1871. return xxx_messageInfo_GetMedicalCardListRequest.Marshal(b, m, deterministic)
  1872. }
  1873. func (m *GetMedicalCardListRequest) XXX_Merge(src proto.Message) {
  1874. xxx_messageInfo_GetMedicalCardListRequest.Merge(m, src)
  1875. }
  1876. func (m *GetMedicalCardListRequest) XXX_Size() int {
  1877. return xxx_messageInfo_GetMedicalCardListRequest.Size(m)
  1878. }
  1879. func (m *GetMedicalCardListRequest) XXX_DiscardUnknown() {
  1880. xxx_messageInfo_GetMedicalCardListRequest.DiscardUnknown(m)
  1881. }
  1882. var xxx_messageInfo_GetMedicalCardListRequest proto.InternalMessageInfo
  1883. func (m *GetMedicalCardListRequest) GetUserId() int32 {
  1884. if m != nil {
  1885. return m.UserId
  1886. }
  1887. return 0
  1888. }
  1889. func (m *GetMedicalCardListRequest) GetHospitalId() int32 {
  1890. if m != nil {
  1891. return m.HospitalId
  1892. }
  1893. return 0
  1894. }
  1895. func (m *GetMedicalCardListRequest) GetFlag() int32 {
  1896. if m != nil {
  1897. return m.Flag
  1898. }
  1899. return 0
  1900. }
  1901. //获取诊疗卡列表响应
  1902. type GetMedicalCardListResponse struct {
  1903. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  1904. MedicalCards []*MedicalCard `protobuf:"bytes,2,rep,name=medicalCards,proto3" json:"medicalCards,omitempty"`
  1905. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1906. XXX_unrecognized []byte `json:"-"`
  1907. XXX_sizecache int32 `json:"-"`
  1908. }
  1909. func (m *GetMedicalCardListResponse) Reset() { *m = GetMedicalCardListResponse{} }
  1910. func (m *GetMedicalCardListResponse) String() string { return proto.CompactTextString(m) }
  1911. func (*GetMedicalCardListResponse) ProtoMessage() {}
  1912. func (*GetMedicalCardListResponse) Descriptor() ([]byte, []int) {
  1913. return fileDescriptor_116e343673f7ffaf, []int{30}
  1914. }
  1915. func (m *GetMedicalCardListResponse) XXX_Unmarshal(b []byte) error {
  1916. return xxx_messageInfo_GetMedicalCardListResponse.Unmarshal(m, b)
  1917. }
  1918. func (m *GetMedicalCardListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1919. return xxx_messageInfo_GetMedicalCardListResponse.Marshal(b, m, deterministic)
  1920. }
  1921. func (m *GetMedicalCardListResponse) XXX_Merge(src proto.Message) {
  1922. xxx_messageInfo_GetMedicalCardListResponse.Merge(m, src)
  1923. }
  1924. func (m *GetMedicalCardListResponse) XXX_Size() int {
  1925. return xxx_messageInfo_GetMedicalCardListResponse.Size(m)
  1926. }
  1927. func (m *GetMedicalCardListResponse) XXX_DiscardUnknown() {
  1928. xxx_messageInfo_GetMedicalCardListResponse.DiscardUnknown(m)
  1929. }
  1930. var xxx_messageInfo_GetMedicalCardListResponse proto.InternalMessageInfo
  1931. func (m *GetMedicalCardListResponse) GetResult() *Result {
  1932. if m != nil {
  1933. return m.Result
  1934. }
  1935. return nil
  1936. }
  1937. func (m *GetMedicalCardListResponse) GetMedicalCards() []*MedicalCard {
  1938. if m != nil {
  1939. return m.MedicalCards
  1940. }
  1941. return nil
  1942. }
  1943. //用户登录信息
  1944. type UserLoginInfo struct {
  1945. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  1946. UserName string `protobuf:"bytes,2,opt,name=userName,proto3" json:"userName,omitempty"`
  1947. RealName string `protobuf:"bytes,3,opt,name=realName,proto3" json:"realName,omitempty"`
  1948. Mobile string `protobuf:"bytes,4,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1949. IdType int32 `protobuf:"varint,5,opt,name=idType,proto3" json:"idType,omitempty"`
  1950. IdNo string `protobuf:"bytes,6,opt,name=idNo,proto3" json:"idNo,omitempty"`
  1951. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"`
  1952. Age int32 `protobuf:"varint,8,opt,name=age,proto3" json:"age,omitempty"`
  1953. Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar,omitempty"`
  1954. Birthday string `protobuf:"bytes,10,opt,name=birthday,proto3" json:"birthday,omitempty"`
  1955. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime,omitempty"`
  1956. RegisterIp string `protobuf:"bytes,12,opt,name=registerIp,proto3" json:"registerIp,omitempty"`
  1957. UserType int32 `protobuf:"varint,13,opt,name=userType,proto3" json:"userType,omitempty"`
  1958. Title string `protobuf:"bytes,14,opt,name=title,proto3" json:"title,omitempty"`
  1959. Specialty string `protobuf:"bytes,15,opt,name=specialty,proto3" json:"specialty,omitempty"`
  1960. BriefIntro string `protobuf:"bytes,16,opt,name=briefIntro,proto3" json:"briefIntro,omitempty"`
  1961. HospitalName string `protobuf:"bytes,17,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  1962. DeptName string `protobuf:"bytes,18,opt,name=deptName,proto3" json:"deptName,omitempty"`
  1963. City string `protobuf:"bytes,19,opt,name=city,proto3" json:"city,omitempty"`
  1964. Status int32 `protobuf:"varint,20,opt,name=status,proto3" json:"status,omitempty"`
  1965. Province string `protobuf:"bytes,21,opt,name=province,proto3" json:"province,omitempty"`
  1966. Area string `protobuf:"bytes,22,opt,name=area,proto3" json:"area,omitempty"`
  1967. HospitalIds string `protobuf:"bytes,23,opt,name=hospitalIds,proto3" json:"hospitalIds,omitempty"`
  1968. DeptIds string `protobuf:"bytes,24,opt,name=deptIds,proto3" json:"deptIds,omitempty"`
  1969. QrCodeUrl string `protobuf:"bytes,25,opt,name=qrCodeUrl,proto3" json:"qrCodeUrl,omitempty"`
  1970. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1971. XXX_unrecognized []byte `json:"-"`
  1972. XXX_sizecache int32 `json:"-"`
  1973. }
  1974. func (m *UserLoginInfo) Reset() { *m = UserLoginInfo{} }
  1975. func (m *UserLoginInfo) String() string { return proto.CompactTextString(m) }
  1976. func (*UserLoginInfo) ProtoMessage() {}
  1977. func (*UserLoginInfo) Descriptor() ([]byte, []int) {
  1978. return fileDescriptor_116e343673f7ffaf, []int{31}
  1979. }
  1980. func (m *UserLoginInfo) XXX_Unmarshal(b []byte) error {
  1981. return xxx_messageInfo_UserLoginInfo.Unmarshal(m, b)
  1982. }
  1983. func (m *UserLoginInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1984. return xxx_messageInfo_UserLoginInfo.Marshal(b, m, deterministic)
  1985. }
  1986. func (m *UserLoginInfo) XXX_Merge(src proto.Message) {
  1987. xxx_messageInfo_UserLoginInfo.Merge(m, src)
  1988. }
  1989. func (m *UserLoginInfo) XXX_Size() int {
  1990. return xxx_messageInfo_UserLoginInfo.Size(m)
  1991. }
  1992. func (m *UserLoginInfo) XXX_DiscardUnknown() {
  1993. xxx_messageInfo_UserLoginInfo.DiscardUnknown(m)
  1994. }
  1995. var xxx_messageInfo_UserLoginInfo proto.InternalMessageInfo
  1996. func (m *UserLoginInfo) GetUserId() int32 {
  1997. if m != nil {
  1998. return m.UserId
  1999. }
  2000. return 0
  2001. }
  2002. func (m *UserLoginInfo) GetUserName() string {
  2003. if m != nil {
  2004. return m.UserName
  2005. }
  2006. return ""
  2007. }
  2008. func (m *UserLoginInfo) GetRealName() string {
  2009. if m != nil {
  2010. return m.RealName
  2011. }
  2012. return ""
  2013. }
  2014. func (m *UserLoginInfo) GetMobile() string {
  2015. if m != nil {
  2016. return m.Mobile
  2017. }
  2018. return ""
  2019. }
  2020. func (m *UserLoginInfo) GetIdType() int32 {
  2021. if m != nil {
  2022. return m.IdType
  2023. }
  2024. return 0
  2025. }
  2026. func (m *UserLoginInfo) GetIdNo() string {
  2027. if m != nil {
  2028. return m.IdNo
  2029. }
  2030. return ""
  2031. }
  2032. func (m *UserLoginInfo) GetSex() int32 {
  2033. if m != nil {
  2034. return m.Sex
  2035. }
  2036. return 0
  2037. }
  2038. func (m *UserLoginInfo) GetAge() int32 {
  2039. if m != nil {
  2040. return m.Age
  2041. }
  2042. return 0
  2043. }
  2044. func (m *UserLoginInfo) GetAvatar() string {
  2045. if m != nil {
  2046. return m.Avatar
  2047. }
  2048. return ""
  2049. }
  2050. func (m *UserLoginInfo) GetBirthday() string {
  2051. if m != nil {
  2052. return m.Birthday
  2053. }
  2054. return ""
  2055. }
  2056. func (m *UserLoginInfo) GetCreateTime() int64 {
  2057. if m != nil {
  2058. return m.CreateTime
  2059. }
  2060. return 0
  2061. }
  2062. func (m *UserLoginInfo) GetRegisterIp() string {
  2063. if m != nil {
  2064. return m.RegisterIp
  2065. }
  2066. return ""
  2067. }
  2068. func (m *UserLoginInfo) GetUserType() int32 {
  2069. if m != nil {
  2070. return m.UserType
  2071. }
  2072. return 0
  2073. }
  2074. func (m *UserLoginInfo) GetTitle() string {
  2075. if m != nil {
  2076. return m.Title
  2077. }
  2078. return ""
  2079. }
  2080. func (m *UserLoginInfo) GetSpecialty() string {
  2081. if m != nil {
  2082. return m.Specialty
  2083. }
  2084. return ""
  2085. }
  2086. func (m *UserLoginInfo) GetBriefIntro() string {
  2087. if m != nil {
  2088. return m.BriefIntro
  2089. }
  2090. return ""
  2091. }
  2092. func (m *UserLoginInfo) GetHospitalName() string {
  2093. if m != nil {
  2094. return m.HospitalName
  2095. }
  2096. return ""
  2097. }
  2098. func (m *UserLoginInfo) GetDeptName() string {
  2099. if m != nil {
  2100. return m.DeptName
  2101. }
  2102. return ""
  2103. }
  2104. func (m *UserLoginInfo) GetCity() string {
  2105. if m != nil {
  2106. return m.City
  2107. }
  2108. return ""
  2109. }
  2110. func (m *UserLoginInfo) GetStatus() int32 {
  2111. if m != nil {
  2112. return m.Status
  2113. }
  2114. return 0
  2115. }
  2116. func (m *UserLoginInfo) GetProvince() string {
  2117. if m != nil {
  2118. return m.Province
  2119. }
  2120. return ""
  2121. }
  2122. func (m *UserLoginInfo) GetArea() string {
  2123. if m != nil {
  2124. return m.Area
  2125. }
  2126. return ""
  2127. }
  2128. func (m *UserLoginInfo) GetHospitalIds() string {
  2129. if m != nil {
  2130. return m.HospitalIds
  2131. }
  2132. return ""
  2133. }
  2134. func (m *UserLoginInfo) GetDeptIds() string {
  2135. if m != nil {
  2136. return m.DeptIds
  2137. }
  2138. return ""
  2139. }
  2140. func (m *UserLoginInfo) GetQrCodeUrl() string {
  2141. if m != nil {
  2142. return m.QrCodeUrl
  2143. }
  2144. return ""
  2145. }
  2146. //通过手机号码登录请求
  2147. type LoginByMobileRequest struct {
  2148. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  2149. UserType int32 `protobuf:"varint,2,opt,name=userType,proto3" json:"userType,omitempty"`
  2150. Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
  2151. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2152. XXX_unrecognized []byte `json:"-"`
  2153. XXX_sizecache int32 `json:"-"`
  2154. }
  2155. func (m *LoginByMobileRequest) Reset() { *m = LoginByMobileRequest{} }
  2156. func (m *LoginByMobileRequest) String() string { return proto.CompactTextString(m) }
  2157. func (*LoginByMobileRequest) ProtoMessage() {}
  2158. func (*LoginByMobileRequest) Descriptor() ([]byte, []int) {
  2159. return fileDescriptor_116e343673f7ffaf, []int{32}
  2160. }
  2161. func (m *LoginByMobileRequest) XXX_Unmarshal(b []byte) error {
  2162. return xxx_messageInfo_LoginByMobileRequest.Unmarshal(m, b)
  2163. }
  2164. func (m *LoginByMobileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2165. return xxx_messageInfo_LoginByMobileRequest.Marshal(b, m, deterministic)
  2166. }
  2167. func (m *LoginByMobileRequest) XXX_Merge(src proto.Message) {
  2168. xxx_messageInfo_LoginByMobileRequest.Merge(m, src)
  2169. }
  2170. func (m *LoginByMobileRequest) XXX_Size() int {
  2171. return xxx_messageInfo_LoginByMobileRequest.Size(m)
  2172. }
  2173. func (m *LoginByMobileRequest) XXX_DiscardUnknown() {
  2174. xxx_messageInfo_LoginByMobileRequest.DiscardUnknown(m)
  2175. }
  2176. var xxx_messageInfo_LoginByMobileRequest proto.InternalMessageInfo
  2177. func (m *LoginByMobileRequest) GetMobile() string {
  2178. if m != nil {
  2179. return m.Mobile
  2180. }
  2181. return ""
  2182. }
  2183. func (m *LoginByMobileRequest) GetUserType() int32 {
  2184. if m != nil {
  2185. return m.UserType
  2186. }
  2187. return 0
  2188. }
  2189. func (m *LoginByMobileRequest) GetIp() string {
  2190. if m != nil {
  2191. return m.Ip
  2192. }
  2193. return ""
  2194. }
  2195. //通过用户名+密码登录请求
  2196. type LoginByUserNameRequest struct {
  2197. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  2198. Pwd string `protobuf:"bytes,2,opt,name=pwd,proto3" json:"pwd,omitempty"`
  2199. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2200. XXX_unrecognized []byte `json:"-"`
  2201. XXX_sizecache int32 `json:"-"`
  2202. }
  2203. func (m *LoginByUserNameRequest) Reset() { *m = LoginByUserNameRequest{} }
  2204. func (m *LoginByUserNameRequest) String() string { return proto.CompactTextString(m) }
  2205. func (*LoginByUserNameRequest) ProtoMessage() {}
  2206. func (*LoginByUserNameRequest) Descriptor() ([]byte, []int) {
  2207. return fileDescriptor_116e343673f7ffaf, []int{33}
  2208. }
  2209. func (m *LoginByUserNameRequest) XXX_Unmarshal(b []byte) error {
  2210. return xxx_messageInfo_LoginByUserNameRequest.Unmarshal(m, b)
  2211. }
  2212. func (m *LoginByUserNameRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2213. return xxx_messageInfo_LoginByUserNameRequest.Marshal(b, m, deterministic)
  2214. }
  2215. func (m *LoginByUserNameRequest) XXX_Merge(src proto.Message) {
  2216. xxx_messageInfo_LoginByUserNameRequest.Merge(m, src)
  2217. }
  2218. func (m *LoginByUserNameRequest) XXX_Size() int {
  2219. return xxx_messageInfo_LoginByUserNameRequest.Size(m)
  2220. }
  2221. func (m *LoginByUserNameRequest) XXX_DiscardUnknown() {
  2222. xxx_messageInfo_LoginByUserNameRequest.DiscardUnknown(m)
  2223. }
  2224. var xxx_messageInfo_LoginByUserNameRequest proto.InternalMessageInfo
  2225. func (m *LoginByUserNameRequest) GetUsername() string {
  2226. if m != nil {
  2227. return m.Username
  2228. }
  2229. return ""
  2230. }
  2231. func (m *LoginByUserNameRequest) GetPwd() string {
  2232. if m != nil {
  2233. return m.Pwd
  2234. }
  2235. return ""
  2236. }
  2237. //登录响应
  2238. type LoginResponse struct {
  2239. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  2240. UserLoginInfo *UserLoginInfo `protobuf:"bytes,2,opt,name=userLoginInfo,proto3" json:"userLoginInfo,omitempty"`
  2241. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2242. XXX_unrecognized []byte `json:"-"`
  2243. XXX_sizecache int32 `json:"-"`
  2244. }
  2245. func (m *LoginResponse) Reset() { *m = LoginResponse{} }
  2246. func (m *LoginResponse) String() string { return proto.CompactTextString(m) }
  2247. func (*LoginResponse) ProtoMessage() {}
  2248. func (*LoginResponse) Descriptor() ([]byte, []int) {
  2249. return fileDescriptor_116e343673f7ffaf, []int{34}
  2250. }
  2251. func (m *LoginResponse) XXX_Unmarshal(b []byte) error {
  2252. return xxx_messageInfo_LoginResponse.Unmarshal(m, b)
  2253. }
  2254. func (m *LoginResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2255. return xxx_messageInfo_LoginResponse.Marshal(b, m, deterministic)
  2256. }
  2257. func (m *LoginResponse) XXX_Merge(src proto.Message) {
  2258. xxx_messageInfo_LoginResponse.Merge(m, src)
  2259. }
  2260. func (m *LoginResponse) XXX_Size() int {
  2261. return xxx_messageInfo_LoginResponse.Size(m)
  2262. }
  2263. func (m *LoginResponse) XXX_DiscardUnknown() {
  2264. xxx_messageInfo_LoginResponse.DiscardUnknown(m)
  2265. }
  2266. var xxx_messageInfo_LoginResponse proto.InternalMessageInfo
  2267. func (m *LoginResponse) GetResult() *Result {
  2268. if m != nil {
  2269. return m.Result
  2270. }
  2271. return nil
  2272. }
  2273. func (m *LoginResponse) GetUserLoginInfo() *UserLoginInfo {
  2274. if m != nil {
  2275. return m.UserLoginInfo
  2276. }
  2277. return nil
  2278. }
  2279. type MedicalRecordsImage struct {
  2280. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2281. DoctorId int32 `protobuf:"varint,2,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  2282. PatientId int32 `protobuf:"varint,3,opt,name=patientId,proto3" json:"patientId,omitempty"`
  2283. ImageUrl string `protobuf:"bytes,4,opt,name=imageUrl,proto3" json:"imageUrl,omitempty"`
  2284. CreateTime int64 `protobuf:"varint,5,opt,name=createTime,proto3" json:"createTime,omitempty"`
  2285. OrderId int32 `protobuf:"varint,6,opt,name=orderId,proto3" json:"orderId,omitempty"`
  2286. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2287. XXX_unrecognized []byte `json:"-"`
  2288. XXX_sizecache int32 `json:"-"`
  2289. }
  2290. func (m *MedicalRecordsImage) Reset() { *m = MedicalRecordsImage{} }
  2291. func (m *MedicalRecordsImage) String() string { return proto.CompactTextString(m) }
  2292. func (*MedicalRecordsImage) ProtoMessage() {}
  2293. func (*MedicalRecordsImage) Descriptor() ([]byte, []int) {
  2294. return fileDescriptor_116e343673f7ffaf, []int{35}
  2295. }
  2296. func (m *MedicalRecordsImage) XXX_Unmarshal(b []byte) error {
  2297. return xxx_messageInfo_MedicalRecordsImage.Unmarshal(m, b)
  2298. }
  2299. func (m *MedicalRecordsImage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2300. return xxx_messageInfo_MedicalRecordsImage.Marshal(b, m, deterministic)
  2301. }
  2302. func (m *MedicalRecordsImage) XXX_Merge(src proto.Message) {
  2303. xxx_messageInfo_MedicalRecordsImage.Merge(m, src)
  2304. }
  2305. func (m *MedicalRecordsImage) XXX_Size() int {
  2306. return xxx_messageInfo_MedicalRecordsImage.Size(m)
  2307. }
  2308. func (m *MedicalRecordsImage) XXX_DiscardUnknown() {
  2309. xxx_messageInfo_MedicalRecordsImage.DiscardUnknown(m)
  2310. }
  2311. var xxx_messageInfo_MedicalRecordsImage proto.InternalMessageInfo
  2312. func (m *MedicalRecordsImage) GetId() int32 {
  2313. if m != nil {
  2314. return m.Id
  2315. }
  2316. return 0
  2317. }
  2318. func (m *MedicalRecordsImage) GetDoctorId() int32 {
  2319. if m != nil {
  2320. return m.DoctorId
  2321. }
  2322. return 0
  2323. }
  2324. func (m *MedicalRecordsImage) GetPatientId() int32 {
  2325. if m != nil {
  2326. return m.PatientId
  2327. }
  2328. return 0
  2329. }
  2330. func (m *MedicalRecordsImage) GetImageUrl() string {
  2331. if m != nil {
  2332. return m.ImageUrl
  2333. }
  2334. return ""
  2335. }
  2336. func (m *MedicalRecordsImage) GetCreateTime() int64 {
  2337. if m != nil {
  2338. return m.CreateTime
  2339. }
  2340. return 0
  2341. }
  2342. func (m *MedicalRecordsImage) GetOrderId() int32 {
  2343. if m != nil {
  2344. return m.OrderId
  2345. }
  2346. return 0
  2347. }
  2348. //删除诊疗卡请求
  2349. type DeleteMedicalCardRequest struct {
  2350. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  2351. CardId int32 `protobuf:"varint,2,opt,name=cardId,proto3" json:"cardId,omitempty"`
  2352. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2353. XXX_unrecognized []byte `json:"-"`
  2354. XXX_sizecache int32 `json:"-"`
  2355. }
  2356. func (m *DeleteMedicalCardRequest) Reset() { *m = DeleteMedicalCardRequest{} }
  2357. func (m *DeleteMedicalCardRequest) String() string { return proto.CompactTextString(m) }
  2358. func (*DeleteMedicalCardRequest) ProtoMessage() {}
  2359. func (*DeleteMedicalCardRequest) Descriptor() ([]byte, []int) {
  2360. return fileDescriptor_116e343673f7ffaf, []int{36}
  2361. }
  2362. func (m *DeleteMedicalCardRequest) XXX_Unmarshal(b []byte) error {
  2363. return xxx_messageInfo_DeleteMedicalCardRequest.Unmarshal(m, b)
  2364. }
  2365. func (m *DeleteMedicalCardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2366. return xxx_messageInfo_DeleteMedicalCardRequest.Marshal(b, m, deterministic)
  2367. }
  2368. func (m *DeleteMedicalCardRequest) XXX_Merge(src proto.Message) {
  2369. xxx_messageInfo_DeleteMedicalCardRequest.Merge(m, src)
  2370. }
  2371. func (m *DeleteMedicalCardRequest) XXX_Size() int {
  2372. return xxx_messageInfo_DeleteMedicalCardRequest.Size(m)
  2373. }
  2374. func (m *DeleteMedicalCardRequest) XXX_DiscardUnknown() {
  2375. xxx_messageInfo_DeleteMedicalCardRequest.DiscardUnknown(m)
  2376. }
  2377. var xxx_messageInfo_DeleteMedicalCardRequest proto.InternalMessageInfo
  2378. func (m *DeleteMedicalCardRequest) GetUserId() int32 {
  2379. if m != nil {
  2380. return m.UserId
  2381. }
  2382. return 0
  2383. }
  2384. func (m *DeleteMedicalCardRequest) GetCardId() int32 {
  2385. if m != nil {
  2386. return m.CardId
  2387. }
  2388. return 0
  2389. }
  2390. type AddSnsUserRequest struct {
  2391. NickName string `protobuf:"bytes,1,opt,name=nickName,proto3" json:"nickName,omitempty"`
  2392. Gender int32 `protobuf:"varint,2,opt,name=gender,proto3" json:"gender,omitempty"`
  2393. Language string `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
  2394. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city,omitempty"`
  2395. Province string `protobuf:"bytes,5,opt,name=province,proto3" json:"province,omitempty"`
  2396. Country string `protobuf:"bytes,6,opt,name=country,proto3" json:"country,omitempty"`
  2397. AvatarUrl string `protobuf:"bytes,7,opt,name=avatarUrl,proto3" json:"avatarUrl,omitempty"`
  2398. Openid string `protobuf:"bytes,8,opt,name=openid,proto3" json:"openid,omitempty"`
  2399. SessionKey string `protobuf:"bytes,9,opt,name=sessionKey,proto3" json:"sessionKey,omitempty"`
  2400. Unionid string `protobuf:"bytes,10,opt,name=unionid,proto3" json:"unionid,omitempty"`
  2401. ExpiresIn int32 `protobuf:"varint,11,opt,name=expiresIn,proto3" json:"expiresIn,omitempty"`
  2402. SnsType int32 `protobuf:"varint,12,opt,name=snsType,proto3" json:"snsType,omitempty"`
  2403. Privilege string `protobuf:"bytes,13,opt,name=privilege,proto3" json:"privilege,omitempty"`
  2404. AccessToken string `protobuf:"bytes,14,opt,name=accessToken,proto3" json:"accessToken,omitempty"`
  2405. RefreshToken string `protobuf:"bytes,15,opt,name=refreshToken,proto3" json:"refreshToken,omitempty"`
  2406. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2407. XXX_unrecognized []byte `json:"-"`
  2408. XXX_sizecache int32 `json:"-"`
  2409. }
  2410. func (m *AddSnsUserRequest) Reset() { *m = AddSnsUserRequest{} }
  2411. func (m *AddSnsUserRequest) String() string { return proto.CompactTextString(m) }
  2412. func (*AddSnsUserRequest) ProtoMessage() {}
  2413. func (*AddSnsUserRequest) Descriptor() ([]byte, []int) {
  2414. return fileDescriptor_116e343673f7ffaf, []int{37}
  2415. }
  2416. func (m *AddSnsUserRequest) XXX_Unmarshal(b []byte) error {
  2417. return xxx_messageInfo_AddSnsUserRequest.Unmarshal(m, b)
  2418. }
  2419. func (m *AddSnsUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2420. return xxx_messageInfo_AddSnsUserRequest.Marshal(b, m, deterministic)
  2421. }
  2422. func (m *AddSnsUserRequest) XXX_Merge(src proto.Message) {
  2423. xxx_messageInfo_AddSnsUserRequest.Merge(m, src)
  2424. }
  2425. func (m *AddSnsUserRequest) XXX_Size() int {
  2426. return xxx_messageInfo_AddSnsUserRequest.Size(m)
  2427. }
  2428. func (m *AddSnsUserRequest) XXX_DiscardUnknown() {
  2429. xxx_messageInfo_AddSnsUserRequest.DiscardUnknown(m)
  2430. }
  2431. var xxx_messageInfo_AddSnsUserRequest proto.InternalMessageInfo
  2432. func (m *AddSnsUserRequest) GetNickName() string {
  2433. if m != nil {
  2434. return m.NickName
  2435. }
  2436. return ""
  2437. }
  2438. func (m *AddSnsUserRequest) GetGender() int32 {
  2439. if m != nil {
  2440. return m.Gender
  2441. }
  2442. return 0
  2443. }
  2444. func (m *AddSnsUserRequest) GetLanguage() string {
  2445. if m != nil {
  2446. return m.Language
  2447. }
  2448. return ""
  2449. }
  2450. func (m *AddSnsUserRequest) GetCity() string {
  2451. if m != nil {
  2452. return m.City
  2453. }
  2454. return ""
  2455. }
  2456. func (m *AddSnsUserRequest) GetProvince() string {
  2457. if m != nil {
  2458. return m.Province
  2459. }
  2460. return ""
  2461. }
  2462. func (m *AddSnsUserRequest) GetCountry() string {
  2463. if m != nil {
  2464. return m.Country
  2465. }
  2466. return ""
  2467. }
  2468. func (m *AddSnsUserRequest) GetAvatarUrl() string {
  2469. if m != nil {
  2470. return m.AvatarUrl
  2471. }
  2472. return ""
  2473. }
  2474. func (m *AddSnsUserRequest) GetOpenid() string {
  2475. if m != nil {
  2476. return m.Openid
  2477. }
  2478. return ""
  2479. }
  2480. func (m *AddSnsUserRequest) GetSessionKey() string {
  2481. if m != nil {
  2482. return m.SessionKey
  2483. }
  2484. return ""
  2485. }
  2486. func (m *AddSnsUserRequest) GetUnionid() string {
  2487. if m != nil {
  2488. return m.Unionid
  2489. }
  2490. return ""
  2491. }
  2492. func (m *AddSnsUserRequest) GetExpiresIn() int32 {
  2493. if m != nil {
  2494. return m.ExpiresIn
  2495. }
  2496. return 0
  2497. }
  2498. func (m *AddSnsUserRequest) GetSnsType() int32 {
  2499. if m != nil {
  2500. return m.SnsType
  2501. }
  2502. return 0
  2503. }
  2504. func (m *AddSnsUserRequest) GetPrivilege() string {
  2505. if m != nil {
  2506. return m.Privilege
  2507. }
  2508. return ""
  2509. }
  2510. func (m *AddSnsUserRequest) GetAccessToken() string {
  2511. if m != nil {
  2512. return m.AccessToken
  2513. }
  2514. return ""
  2515. }
  2516. func (m *AddSnsUserRequest) GetRefreshToken() string {
  2517. if m != nil {
  2518. return m.RefreshToken
  2519. }
  2520. return ""
  2521. }
  2522. type BindWxRequest struct {
  2523. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  2524. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  2525. Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
  2526. Terminal int32 `protobuf:"varint,4,opt,name=terminal,proto3" json:"terminal,omitempty"`
  2527. OpenId string `protobuf:"bytes,5,opt,name=openId,proto3" json:"openId,omitempty"`
  2528. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  2529. IdNo string `protobuf:"bytes,7,opt,name=idNo,proto3" json:"idNo,omitempty"`
  2530. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2531. XXX_unrecognized []byte `json:"-"`
  2532. XXX_sizecache int32 `json:"-"`
  2533. }
  2534. func (m *BindWxRequest) Reset() { *m = BindWxRequest{} }
  2535. func (m *BindWxRequest) String() string { return proto.CompactTextString(m) }
  2536. func (*BindWxRequest) ProtoMessage() {}
  2537. func (*BindWxRequest) Descriptor() ([]byte, []int) {
  2538. return fileDescriptor_116e343673f7ffaf, []int{38}
  2539. }
  2540. func (m *BindWxRequest) XXX_Unmarshal(b []byte) error {
  2541. return xxx_messageInfo_BindWxRequest.Unmarshal(m, b)
  2542. }
  2543. func (m *BindWxRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2544. return xxx_messageInfo_BindWxRequest.Marshal(b, m, deterministic)
  2545. }
  2546. func (m *BindWxRequest) XXX_Merge(src proto.Message) {
  2547. xxx_messageInfo_BindWxRequest.Merge(m, src)
  2548. }
  2549. func (m *BindWxRequest) XXX_Size() int {
  2550. return xxx_messageInfo_BindWxRequest.Size(m)
  2551. }
  2552. func (m *BindWxRequest) XXX_DiscardUnknown() {
  2553. xxx_messageInfo_BindWxRequest.DiscardUnknown(m)
  2554. }
  2555. var xxx_messageInfo_BindWxRequest proto.InternalMessageInfo
  2556. func (m *BindWxRequest) GetMobile() string {
  2557. if m != nil {
  2558. return m.Mobile
  2559. }
  2560. return ""
  2561. }
  2562. func (m *BindWxRequest) GetUnionId() string {
  2563. if m != nil {
  2564. return m.UnionId
  2565. }
  2566. return ""
  2567. }
  2568. func (m *BindWxRequest) GetIp() string {
  2569. if m != nil {
  2570. return m.Ip
  2571. }
  2572. return ""
  2573. }
  2574. func (m *BindWxRequest) GetTerminal() int32 {
  2575. if m != nil {
  2576. return m.Terminal
  2577. }
  2578. return 0
  2579. }
  2580. func (m *BindWxRequest) GetOpenId() string {
  2581. if m != nil {
  2582. return m.OpenId
  2583. }
  2584. return ""
  2585. }
  2586. func (m *BindWxRequest) GetName() string {
  2587. if m != nil {
  2588. return m.Name
  2589. }
  2590. return ""
  2591. }
  2592. func (m *BindWxRequest) GetIdNo() string {
  2593. if m != nil {
  2594. return m.IdNo
  2595. }
  2596. return ""
  2597. }
  2598. //获取公众号用户信息请求
  2599. type GetOffcialUserInfoRequest struct {
  2600. HospitalId int32 `protobuf:"varint,1,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  2601. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  2602. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2603. XXX_unrecognized []byte `json:"-"`
  2604. XXX_sizecache int32 `json:"-"`
  2605. }
  2606. func (m *GetOffcialUserInfoRequest) Reset() { *m = GetOffcialUserInfoRequest{} }
  2607. func (m *GetOffcialUserInfoRequest) String() string { return proto.CompactTextString(m) }
  2608. func (*GetOffcialUserInfoRequest) ProtoMessage() {}
  2609. func (*GetOffcialUserInfoRequest) Descriptor() ([]byte, []int) {
  2610. return fileDescriptor_116e343673f7ffaf, []int{39}
  2611. }
  2612. func (m *GetOffcialUserInfoRequest) XXX_Unmarshal(b []byte) error {
  2613. return xxx_messageInfo_GetOffcialUserInfoRequest.Unmarshal(m, b)
  2614. }
  2615. func (m *GetOffcialUserInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2616. return xxx_messageInfo_GetOffcialUserInfoRequest.Marshal(b, m, deterministic)
  2617. }
  2618. func (m *GetOffcialUserInfoRequest) XXX_Merge(src proto.Message) {
  2619. xxx_messageInfo_GetOffcialUserInfoRequest.Merge(m, src)
  2620. }
  2621. func (m *GetOffcialUserInfoRequest) XXX_Size() int {
  2622. return xxx_messageInfo_GetOffcialUserInfoRequest.Size(m)
  2623. }
  2624. func (m *GetOffcialUserInfoRequest) XXX_DiscardUnknown() {
  2625. xxx_messageInfo_GetOffcialUserInfoRequest.DiscardUnknown(m)
  2626. }
  2627. var xxx_messageInfo_GetOffcialUserInfoRequest proto.InternalMessageInfo
  2628. func (m *GetOffcialUserInfoRequest) GetHospitalId() int32 {
  2629. if m != nil {
  2630. return m.HospitalId
  2631. }
  2632. return 0
  2633. }
  2634. func (m *GetOffcialUserInfoRequest) GetUnionId() string {
  2635. if m != nil {
  2636. return m.UnionId
  2637. }
  2638. return ""
  2639. }
  2640. //获取公众号用户信息响应
  2641. type GetOffcialUserInfoResponse struct {
  2642. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  2643. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  2644. HasMedicalCard int32 `protobuf:"varint,3,opt,name=hasMedicalCard,proto3" json:"hasMedicalCard,omitempty"`
  2645. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2646. XXX_unrecognized []byte `json:"-"`
  2647. XXX_sizecache int32 `json:"-"`
  2648. }
  2649. func (m *GetOffcialUserInfoResponse) Reset() { *m = GetOffcialUserInfoResponse{} }
  2650. func (m *GetOffcialUserInfoResponse) String() string { return proto.CompactTextString(m) }
  2651. func (*GetOffcialUserInfoResponse) ProtoMessage() {}
  2652. func (*GetOffcialUserInfoResponse) Descriptor() ([]byte, []int) {
  2653. return fileDescriptor_116e343673f7ffaf, []int{40}
  2654. }
  2655. func (m *GetOffcialUserInfoResponse) XXX_Unmarshal(b []byte) error {
  2656. return xxx_messageInfo_GetOffcialUserInfoResponse.Unmarshal(m, b)
  2657. }
  2658. func (m *GetOffcialUserInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2659. return xxx_messageInfo_GetOffcialUserInfoResponse.Marshal(b, m, deterministic)
  2660. }
  2661. func (m *GetOffcialUserInfoResponse) XXX_Merge(src proto.Message) {
  2662. xxx_messageInfo_GetOffcialUserInfoResponse.Merge(m, src)
  2663. }
  2664. func (m *GetOffcialUserInfoResponse) XXX_Size() int {
  2665. return xxx_messageInfo_GetOffcialUserInfoResponse.Size(m)
  2666. }
  2667. func (m *GetOffcialUserInfoResponse) XXX_DiscardUnknown() {
  2668. xxx_messageInfo_GetOffcialUserInfoResponse.DiscardUnknown(m)
  2669. }
  2670. var xxx_messageInfo_GetOffcialUserInfoResponse proto.InternalMessageInfo
  2671. func (m *GetOffcialUserInfoResponse) GetResult() *Result {
  2672. if m != nil {
  2673. return m.Result
  2674. }
  2675. return nil
  2676. }
  2677. func (m *GetOffcialUserInfoResponse) GetUserId() int32 {
  2678. if m != nil {
  2679. return m.UserId
  2680. }
  2681. return 0
  2682. }
  2683. func (m *GetOffcialUserInfoResponse) GetHasMedicalCard() int32 {
  2684. if m != nil {
  2685. return m.HasMedicalCard
  2686. }
  2687. return 0
  2688. }
  2689. type MedicalRecords struct {
  2690. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2691. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  2692. ClinicCode string `protobuf:"bytes,3,opt,name=clinicCode,proto3" json:"clinicCode,omitempty"`
  2693. AdmTime string `protobuf:"bytes,4,opt,name=admTime,proto3" json:"admTime,omitempty"`
  2694. HospitalName string `protobuf:"bytes,5,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  2695. DoctorName string `protobuf:"bytes,6,opt,name=doctorName,proto3" json:"doctorName,omitempty"`
  2696. DoctorTitle string `protobuf:"bytes,7,opt,name=doctorTitle,proto3" json:"doctorTitle,omitempty"`
  2697. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2698. XXX_unrecognized []byte `json:"-"`
  2699. XXX_sizecache int32 `json:"-"`
  2700. }
  2701. func (m *MedicalRecords) Reset() { *m = MedicalRecords{} }
  2702. func (m *MedicalRecords) String() string { return proto.CompactTextString(m) }
  2703. func (*MedicalRecords) ProtoMessage() {}
  2704. func (*MedicalRecords) Descriptor() ([]byte, []int) {
  2705. return fileDescriptor_116e343673f7ffaf, []int{41}
  2706. }
  2707. func (m *MedicalRecords) XXX_Unmarshal(b []byte) error {
  2708. return xxx_messageInfo_MedicalRecords.Unmarshal(m, b)
  2709. }
  2710. func (m *MedicalRecords) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2711. return xxx_messageInfo_MedicalRecords.Marshal(b, m, deterministic)
  2712. }
  2713. func (m *MedicalRecords) XXX_Merge(src proto.Message) {
  2714. xxx_messageInfo_MedicalRecords.Merge(m, src)
  2715. }
  2716. func (m *MedicalRecords) XXX_Size() int {
  2717. return xxx_messageInfo_MedicalRecords.Size(m)
  2718. }
  2719. func (m *MedicalRecords) XXX_DiscardUnknown() {
  2720. xxx_messageInfo_MedicalRecords.DiscardUnknown(m)
  2721. }
  2722. var xxx_messageInfo_MedicalRecords proto.InternalMessageInfo
  2723. func (m *MedicalRecords) GetId() int32 {
  2724. if m != nil {
  2725. return m.Id
  2726. }
  2727. return 0
  2728. }
  2729. func (m *MedicalRecords) GetUserId() int32 {
  2730. if m != nil {
  2731. return m.UserId
  2732. }
  2733. return 0
  2734. }
  2735. func (m *MedicalRecords) GetClinicCode() string {
  2736. if m != nil {
  2737. return m.ClinicCode
  2738. }
  2739. return ""
  2740. }
  2741. func (m *MedicalRecords) GetAdmTime() string {
  2742. if m != nil {
  2743. return m.AdmTime
  2744. }
  2745. return ""
  2746. }
  2747. func (m *MedicalRecords) GetHospitalName() string {
  2748. if m != nil {
  2749. return m.HospitalName
  2750. }
  2751. return ""
  2752. }
  2753. func (m *MedicalRecords) GetDoctorName() string {
  2754. if m != nil {
  2755. return m.DoctorName
  2756. }
  2757. return ""
  2758. }
  2759. func (m *MedicalRecords) GetDoctorTitle() string {
  2760. if m != nil {
  2761. return m.DoctorTitle
  2762. }
  2763. return ""
  2764. }
  2765. type GetMedicalRecordsListRequest struct {
  2766. MedicalCardId int32 `protobuf:"varint,1,opt,name=medicalCardId,proto3" json:"medicalCardId,omitempty"`
  2767. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  2768. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  2769. UserId int32 `protobuf:"varint,4,opt,name=userId,proto3" json:"userId,omitempty"`
  2770. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2771. XXX_unrecognized []byte `json:"-"`
  2772. XXX_sizecache int32 `json:"-"`
  2773. }
  2774. func (m *GetMedicalRecordsListRequest) Reset() { *m = GetMedicalRecordsListRequest{} }
  2775. func (m *GetMedicalRecordsListRequest) String() string { return proto.CompactTextString(m) }
  2776. func (*GetMedicalRecordsListRequest) ProtoMessage() {}
  2777. func (*GetMedicalRecordsListRequest) Descriptor() ([]byte, []int) {
  2778. return fileDescriptor_116e343673f7ffaf, []int{42}
  2779. }
  2780. func (m *GetMedicalRecordsListRequest) XXX_Unmarshal(b []byte) error {
  2781. return xxx_messageInfo_GetMedicalRecordsListRequest.Unmarshal(m, b)
  2782. }
  2783. func (m *GetMedicalRecordsListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2784. return xxx_messageInfo_GetMedicalRecordsListRequest.Marshal(b, m, deterministic)
  2785. }
  2786. func (m *GetMedicalRecordsListRequest) XXX_Merge(src proto.Message) {
  2787. xxx_messageInfo_GetMedicalRecordsListRequest.Merge(m, src)
  2788. }
  2789. func (m *GetMedicalRecordsListRequest) XXX_Size() int {
  2790. return xxx_messageInfo_GetMedicalRecordsListRequest.Size(m)
  2791. }
  2792. func (m *GetMedicalRecordsListRequest) XXX_DiscardUnknown() {
  2793. xxx_messageInfo_GetMedicalRecordsListRequest.DiscardUnknown(m)
  2794. }
  2795. var xxx_messageInfo_GetMedicalRecordsListRequest proto.InternalMessageInfo
  2796. func (m *GetMedicalRecordsListRequest) GetMedicalCardId() int32 {
  2797. if m != nil {
  2798. return m.MedicalCardId
  2799. }
  2800. return 0
  2801. }
  2802. func (m *GetMedicalRecordsListRequest) GetPageIndex() int32 {
  2803. if m != nil {
  2804. return m.PageIndex
  2805. }
  2806. return 0
  2807. }
  2808. func (m *GetMedicalRecordsListRequest) GetPageSize() int32 {
  2809. if m != nil {
  2810. return m.PageSize
  2811. }
  2812. return 0
  2813. }
  2814. func (m *GetMedicalRecordsListRequest) GetUserId() int32 {
  2815. if m != nil {
  2816. return m.UserId
  2817. }
  2818. return 0
  2819. }
  2820. type GetMedicalRecordsListResponse struct {
  2821. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  2822. Records []*MedicalRecords `protobuf:"bytes,2,rep,name=records,proto3" json:"records,omitempty"`
  2823. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  2824. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  2825. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2826. XXX_unrecognized []byte `json:"-"`
  2827. XXX_sizecache int32 `json:"-"`
  2828. }
  2829. func (m *GetMedicalRecordsListResponse) Reset() { *m = GetMedicalRecordsListResponse{} }
  2830. func (m *GetMedicalRecordsListResponse) String() string { return proto.CompactTextString(m) }
  2831. func (*GetMedicalRecordsListResponse) ProtoMessage() {}
  2832. func (*GetMedicalRecordsListResponse) Descriptor() ([]byte, []int) {
  2833. return fileDescriptor_116e343673f7ffaf, []int{43}
  2834. }
  2835. func (m *GetMedicalRecordsListResponse) XXX_Unmarshal(b []byte) error {
  2836. return xxx_messageInfo_GetMedicalRecordsListResponse.Unmarshal(m, b)
  2837. }
  2838. func (m *GetMedicalRecordsListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2839. return xxx_messageInfo_GetMedicalRecordsListResponse.Marshal(b, m, deterministic)
  2840. }
  2841. func (m *GetMedicalRecordsListResponse) XXX_Merge(src proto.Message) {
  2842. xxx_messageInfo_GetMedicalRecordsListResponse.Merge(m, src)
  2843. }
  2844. func (m *GetMedicalRecordsListResponse) XXX_Size() int {
  2845. return xxx_messageInfo_GetMedicalRecordsListResponse.Size(m)
  2846. }
  2847. func (m *GetMedicalRecordsListResponse) XXX_DiscardUnknown() {
  2848. xxx_messageInfo_GetMedicalRecordsListResponse.DiscardUnknown(m)
  2849. }
  2850. var xxx_messageInfo_GetMedicalRecordsListResponse proto.InternalMessageInfo
  2851. func (m *GetMedicalRecordsListResponse) GetResult() *Result {
  2852. if m != nil {
  2853. return m.Result
  2854. }
  2855. return nil
  2856. }
  2857. func (m *GetMedicalRecordsListResponse) GetRecords() []*MedicalRecords {
  2858. if m != nil {
  2859. return m.Records
  2860. }
  2861. return nil
  2862. }
  2863. func (m *GetMedicalRecordsListResponse) GetCount() int32 {
  2864. if m != nil {
  2865. return m.Count
  2866. }
  2867. return 0
  2868. }
  2869. func (m *GetMedicalRecordsListResponse) GetTotalPages() int32 {
  2870. if m != nil {
  2871. return m.TotalPages
  2872. }
  2873. return 0
  2874. }
  2875. //更换手机号码请求
  2876. type ChangeMobileRequest struct {
  2877. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  2878. Mobile string `protobuf:"bytes,2,opt,name=mobile,proto3" json:"mobile,omitempty"`
  2879. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2880. XXX_unrecognized []byte `json:"-"`
  2881. XXX_sizecache int32 `json:"-"`
  2882. }
  2883. func (m *ChangeMobileRequest) Reset() { *m = ChangeMobileRequest{} }
  2884. func (m *ChangeMobileRequest) String() string { return proto.CompactTextString(m) }
  2885. func (*ChangeMobileRequest) ProtoMessage() {}
  2886. func (*ChangeMobileRequest) Descriptor() ([]byte, []int) {
  2887. return fileDescriptor_116e343673f7ffaf, []int{44}
  2888. }
  2889. func (m *ChangeMobileRequest) XXX_Unmarshal(b []byte) error {
  2890. return xxx_messageInfo_ChangeMobileRequest.Unmarshal(m, b)
  2891. }
  2892. func (m *ChangeMobileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2893. return xxx_messageInfo_ChangeMobileRequest.Marshal(b, m, deterministic)
  2894. }
  2895. func (m *ChangeMobileRequest) XXX_Merge(src proto.Message) {
  2896. xxx_messageInfo_ChangeMobileRequest.Merge(m, src)
  2897. }
  2898. func (m *ChangeMobileRequest) XXX_Size() int {
  2899. return xxx_messageInfo_ChangeMobileRequest.Size(m)
  2900. }
  2901. func (m *ChangeMobileRequest) XXX_DiscardUnknown() {
  2902. xxx_messageInfo_ChangeMobileRequest.DiscardUnknown(m)
  2903. }
  2904. var xxx_messageInfo_ChangeMobileRequest proto.InternalMessageInfo
  2905. func (m *ChangeMobileRequest) GetUserId() int32 {
  2906. if m != nil {
  2907. return m.UserId
  2908. }
  2909. return 0
  2910. }
  2911. func (m *ChangeMobileRequest) GetMobile() string {
  2912. if m != nil {
  2913. return m.Mobile
  2914. }
  2915. return ""
  2916. }
  2917. //病历详情
  2918. type MedicalRecordsDetail struct {
  2919. RecordId int32 `protobuf:"varint,1,opt,name=recordId,proto3" json:"recordId,omitempty"`
  2920. TypeName string `protobuf:"bytes,2,opt,name=typeName,proto3" json:"typeName,omitempty"`
  2921. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
  2922. ImageUrl []string `protobuf:"bytes,4,rep,name=imageUrl,proto3" json:"imageUrl,omitempty"`
  2923. DoctorId int32 `protobuf:"varint,5,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  2924. PatientId int32 `protobuf:"varint,6,opt,name=patientId,proto3" json:"patientId,omitempty"`
  2925. CreateTime int64 `protobuf:"varint,7,opt,name=createTime,proto3" json:"createTime,omitempty"`
  2926. Mobile string `protobuf:"bytes,8,opt,name=mobile,proto3" json:"mobile,omitempty"`
  2927. Age int32 `protobuf:"varint,9,opt,name=age,proto3" json:"age,omitempty"`
  2928. Sex int32 `protobuf:"varint,10,opt,name=sex,proto3" json:"sex,omitempty"`
  2929. PatientName string `protobuf:"bytes,11,opt,name=patientName,proto3" json:"patientName,omitempty"`
  2930. UserId int32 `protobuf:"varint,12,opt,name=userId,proto3" json:"userId,omitempty"`
  2931. AdmTime string `protobuf:"bytes,13,opt,name=admTime,proto3" json:"admTime,omitempty"`
  2932. HospitalName string `protobuf:"bytes,14,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  2933. DoctorName string `protobuf:"bytes,15,opt,name=doctorName,proto3" json:"doctorName,omitempty"`
  2934. SelfReport string `protobuf:"bytes,16,opt,name=selfReport,proto3" json:"selfReport,omitempty"`
  2935. PhyExam string `protobuf:"bytes,17,opt,name=phyExam,proto3" json:"phyExam,omitempty"`
  2936. Diagnose string `protobuf:"bytes,18,opt,name=diagnose,proto3" json:"diagnose,omitempty"`
  2937. Suggestion string `protobuf:"bytes,19,opt,name=suggestion,proto3" json:"suggestion,omitempty"`
  2938. Advice string `protobuf:"bytes,20,opt,name=advice,proto3" json:"advice,omitempty"`
  2939. LaboratoryReport []*LaboratoryReport `protobuf:"bytes,21,rep,name=laboratoryReport,proto3" json:"laboratoryReport,omitempty"`
  2940. InspectionReport []*InspectionReport `protobuf:"bytes,22,rep,name=inspectionReport,proto3" json:"inspectionReport,omitempty"`
  2941. IdNo string `protobuf:"bytes,23,opt,name=idNo,proto3" json:"idNo,omitempty"`
  2942. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2943. XXX_unrecognized []byte `json:"-"`
  2944. XXX_sizecache int32 `json:"-"`
  2945. }
  2946. func (m *MedicalRecordsDetail) Reset() { *m = MedicalRecordsDetail{} }
  2947. func (m *MedicalRecordsDetail) String() string { return proto.CompactTextString(m) }
  2948. func (*MedicalRecordsDetail) ProtoMessage() {}
  2949. func (*MedicalRecordsDetail) Descriptor() ([]byte, []int) {
  2950. return fileDescriptor_116e343673f7ffaf, []int{45}
  2951. }
  2952. func (m *MedicalRecordsDetail) XXX_Unmarshal(b []byte) error {
  2953. return xxx_messageInfo_MedicalRecordsDetail.Unmarshal(m, b)
  2954. }
  2955. func (m *MedicalRecordsDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2956. return xxx_messageInfo_MedicalRecordsDetail.Marshal(b, m, deterministic)
  2957. }
  2958. func (m *MedicalRecordsDetail) XXX_Merge(src proto.Message) {
  2959. xxx_messageInfo_MedicalRecordsDetail.Merge(m, src)
  2960. }
  2961. func (m *MedicalRecordsDetail) XXX_Size() int {
  2962. return xxx_messageInfo_MedicalRecordsDetail.Size(m)
  2963. }
  2964. func (m *MedicalRecordsDetail) XXX_DiscardUnknown() {
  2965. xxx_messageInfo_MedicalRecordsDetail.DiscardUnknown(m)
  2966. }
  2967. var xxx_messageInfo_MedicalRecordsDetail proto.InternalMessageInfo
  2968. func (m *MedicalRecordsDetail) GetRecordId() int32 {
  2969. if m != nil {
  2970. return m.RecordId
  2971. }
  2972. return 0
  2973. }
  2974. func (m *MedicalRecordsDetail) GetTypeName() string {
  2975. if m != nil {
  2976. return m.TypeName
  2977. }
  2978. return ""
  2979. }
  2980. func (m *MedicalRecordsDetail) GetDesc() string {
  2981. if m != nil {
  2982. return m.Desc
  2983. }
  2984. return ""
  2985. }
  2986. func (m *MedicalRecordsDetail) GetImageUrl() []string {
  2987. if m != nil {
  2988. return m.ImageUrl
  2989. }
  2990. return nil
  2991. }
  2992. func (m *MedicalRecordsDetail) GetDoctorId() int32 {
  2993. if m != nil {
  2994. return m.DoctorId
  2995. }
  2996. return 0
  2997. }
  2998. func (m *MedicalRecordsDetail) GetPatientId() int32 {
  2999. if m != nil {
  3000. return m.PatientId
  3001. }
  3002. return 0
  3003. }
  3004. func (m *MedicalRecordsDetail) GetCreateTime() int64 {
  3005. if m != nil {
  3006. return m.CreateTime
  3007. }
  3008. return 0
  3009. }
  3010. func (m *MedicalRecordsDetail) GetMobile() string {
  3011. if m != nil {
  3012. return m.Mobile
  3013. }
  3014. return ""
  3015. }
  3016. func (m *MedicalRecordsDetail) GetAge() int32 {
  3017. if m != nil {
  3018. return m.Age
  3019. }
  3020. return 0
  3021. }
  3022. func (m *MedicalRecordsDetail) GetSex() int32 {
  3023. if m != nil {
  3024. return m.Sex
  3025. }
  3026. return 0
  3027. }
  3028. func (m *MedicalRecordsDetail) GetPatientName() string {
  3029. if m != nil {
  3030. return m.PatientName
  3031. }
  3032. return ""
  3033. }
  3034. func (m *MedicalRecordsDetail) GetUserId() int32 {
  3035. if m != nil {
  3036. return m.UserId
  3037. }
  3038. return 0
  3039. }
  3040. func (m *MedicalRecordsDetail) GetAdmTime() string {
  3041. if m != nil {
  3042. return m.AdmTime
  3043. }
  3044. return ""
  3045. }
  3046. func (m *MedicalRecordsDetail) GetHospitalName() string {
  3047. if m != nil {
  3048. return m.HospitalName
  3049. }
  3050. return ""
  3051. }
  3052. func (m *MedicalRecordsDetail) GetDoctorName() string {
  3053. if m != nil {
  3054. return m.DoctorName
  3055. }
  3056. return ""
  3057. }
  3058. func (m *MedicalRecordsDetail) GetSelfReport() string {
  3059. if m != nil {
  3060. return m.SelfReport
  3061. }
  3062. return ""
  3063. }
  3064. func (m *MedicalRecordsDetail) GetPhyExam() string {
  3065. if m != nil {
  3066. return m.PhyExam
  3067. }
  3068. return ""
  3069. }
  3070. func (m *MedicalRecordsDetail) GetDiagnose() string {
  3071. if m != nil {
  3072. return m.Diagnose
  3073. }
  3074. return ""
  3075. }
  3076. func (m *MedicalRecordsDetail) GetSuggestion() string {
  3077. if m != nil {
  3078. return m.Suggestion
  3079. }
  3080. return ""
  3081. }
  3082. func (m *MedicalRecordsDetail) GetAdvice() string {
  3083. if m != nil {
  3084. return m.Advice
  3085. }
  3086. return ""
  3087. }
  3088. func (m *MedicalRecordsDetail) GetLaboratoryReport() []*LaboratoryReport {
  3089. if m != nil {
  3090. return m.LaboratoryReport
  3091. }
  3092. return nil
  3093. }
  3094. func (m *MedicalRecordsDetail) GetInspectionReport() []*InspectionReport {
  3095. if m != nil {
  3096. return m.InspectionReport
  3097. }
  3098. return nil
  3099. }
  3100. func (m *MedicalRecordsDetail) GetIdNo() string {
  3101. if m != nil {
  3102. return m.IdNo
  3103. }
  3104. return ""
  3105. }
  3106. //获取病历详情请求
  3107. type GetMedicalRecordsDetailRequest struct {
  3108. RecordId int32 `protobuf:"varint,1,opt,name=recordId,proto3" json:"recordId,omitempty"`
  3109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3110. XXX_unrecognized []byte `json:"-"`
  3111. XXX_sizecache int32 `json:"-"`
  3112. }
  3113. func (m *GetMedicalRecordsDetailRequest) Reset() { *m = GetMedicalRecordsDetailRequest{} }
  3114. func (m *GetMedicalRecordsDetailRequest) String() string { return proto.CompactTextString(m) }
  3115. func (*GetMedicalRecordsDetailRequest) ProtoMessage() {}
  3116. func (*GetMedicalRecordsDetailRequest) Descriptor() ([]byte, []int) {
  3117. return fileDescriptor_116e343673f7ffaf, []int{46}
  3118. }
  3119. func (m *GetMedicalRecordsDetailRequest) XXX_Unmarshal(b []byte) error {
  3120. return xxx_messageInfo_GetMedicalRecordsDetailRequest.Unmarshal(m, b)
  3121. }
  3122. func (m *GetMedicalRecordsDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3123. return xxx_messageInfo_GetMedicalRecordsDetailRequest.Marshal(b, m, deterministic)
  3124. }
  3125. func (m *GetMedicalRecordsDetailRequest) XXX_Merge(src proto.Message) {
  3126. xxx_messageInfo_GetMedicalRecordsDetailRequest.Merge(m, src)
  3127. }
  3128. func (m *GetMedicalRecordsDetailRequest) XXX_Size() int {
  3129. return xxx_messageInfo_GetMedicalRecordsDetailRequest.Size(m)
  3130. }
  3131. func (m *GetMedicalRecordsDetailRequest) XXX_DiscardUnknown() {
  3132. xxx_messageInfo_GetMedicalRecordsDetailRequest.DiscardUnknown(m)
  3133. }
  3134. var xxx_messageInfo_GetMedicalRecordsDetailRequest proto.InternalMessageInfo
  3135. func (m *GetMedicalRecordsDetailRequest) GetRecordId() int32 {
  3136. if m != nil {
  3137. return m.RecordId
  3138. }
  3139. return 0
  3140. }
  3141. //获取病历详情响应
  3142. type GetMedicalRecordsDetailResponse struct {
  3143. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  3144. Detail *MedicalRecordsDetail `protobuf:"bytes,2,opt,name=detail,proto3" json:"detail,omitempty"`
  3145. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3146. XXX_unrecognized []byte `json:"-"`
  3147. XXX_sizecache int32 `json:"-"`
  3148. }
  3149. func (m *GetMedicalRecordsDetailResponse) Reset() { *m = GetMedicalRecordsDetailResponse{} }
  3150. func (m *GetMedicalRecordsDetailResponse) String() string { return proto.CompactTextString(m) }
  3151. func (*GetMedicalRecordsDetailResponse) ProtoMessage() {}
  3152. func (*GetMedicalRecordsDetailResponse) Descriptor() ([]byte, []int) {
  3153. return fileDescriptor_116e343673f7ffaf, []int{47}
  3154. }
  3155. func (m *GetMedicalRecordsDetailResponse) XXX_Unmarshal(b []byte) error {
  3156. return xxx_messageInfo_GetMedicalRecordsDetailResponse.Unmarshal(m, b)
  3157. }
  3158. func (m *GetMedicalRecordsDetailResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3159. return xxx_messageInfo_GetMedicalRecordsDetailResponse.Marshal(b, m, deterministic)
  3160. }
  3161. func (m *GetMedicalRecordsDetailResponse) XXX_Merge(src proto.Message) {
  3162. xxx_messageInfo_GetMedicalRecordsDetailResponse.Merge(m, src)
  3163. }
  3164. func (m *GetMedicalRecordsDetailResponse) XXX_Size() int {
  3165. return xxx_messageInfo_GetMedicalRecordsDetailResponse.Size(m)
  3166. }
  3167. func (m *GetMedicalRecordsDetailResponse) XXX_DiscardUnknown() {
  3168. xxx_messageInfo_GetMedicalRecordsDetailResponse.DiscardUnknown(m)
  3169. }
  3170. var xxx_messageInfo_GetMedicalRecordsDetailResponse proto.InternalMessageInfo
  3171. func (m *GetMedicalRecordsDetailResponse) GetResult() *Result {
  3172. if m != nil {
  3173. return m.Result
  3174. }
  3175. return nil
  3176. }
  3177. func (m *GetMedicalRecordsDetailResponse) GetDetail() *MedicalRecordsDetail {
  3178. if m != nil {
  3179. return m.Detail
  3180. }
  3181. return nil
  3182. }
  3183. //获取病历列表请求
  3184. type GetMedicalRecordListByUserIdRequest struct {
  3185. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  3186. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  3187. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  3188. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3189. XXX_unrecognized []byte `json:"-"`
  3190. XXX_sizecache int32 `json:"-"`
  3191. }
  3192. func (m *GetMedicalRecordListByUserIdRequest) Reset() { *m = GetMedicalRecordListByUserIdRequest{} }
  3193. func (m *GetMedicalRecordListByUserIdRequest) String() string { return proto.CompactTextString(m) }
  3194. func (*GetMedicalRecordListByUserIdRequest) ProtoMessage() {}
  3195. func (*GetMedicalRecordListByUserIdRequest) Descriptor() ([]byte, []int) {
  3196. return fileDescriptor_116e343673f7ffaf, []int{48}
  3197. }
  3198. func (m *GetMedicalRecordListByUserIdRequest) XXX_Unmarshal(b []byte) error {
  3199. return xxx_messageInfo_GetMedicalRecordListByUserIdRequest.Unmarshal(m, b)
  3200. }
  3201. func (m *GetMedicalRecordListByUserIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3202. return xxx_messageInfo_GetMedicalRecordListByUserIdRequest.Marshal(b, m, deterministic)
  3203. }
  3204. func (m *GetMedicalRecordListByUserIdRequest) XXX_Merge(src proto.Message) {
  3205. xxx_messageInfo_GetMedicalRecordListByUserIdRequest.Merge(m, src)
  3206. }
  3207. func (m *GetMedicalRecordListByUserIdRequest) XXX_Size() int {
  3208. return xxx_messageInfo_GetMedicalRecordListByUserIdRequest.Size(m)
  3209. }
  3210. func (m *GetMedicalRecordListByUserIdRequest) XXX_DiscardUnknown() {
  3211. xxx_messageInfo_GetMedicalRecordListByUserIdRequest.DiscardUnknown(m)
  3212. }
  3213. var xxx_messageInfo_GetMedicalRecordListByUserIdRequest proto.InternalMessageInfo
  3214. func (m *GetMedicalRecordListByUserIdRequest) GetUserId() int32 {
  3215. if m != nil {
  3216. return m.UserId
  3217. }
  3218. return 0
  3219. }
  3220. func (m *GetMedicalRecordListByUserIdRequest) GetPageIndex() int32 {
  3221. if m != nil {
  3222. return m.PageIndex
  3223. }
  3224. return 0
  3225. }
  3226. func (m *GetMedicalRecordListByUserIdRequest) GetPageSize() int32 {
  3227. if m != nil {
  3228. return m.PageSize
  3229. }
  3230. return 0
  3231. }
  3232. //获取病历列表响应
  3233. type GetMedicalRecordListByUserIdResponse struct {
  3234. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  3235. Detail []*MedicalRecordsDetail `protobuf:"bytes,2,rep,name=detail,proto3" json:"detail,omitempty"`
  3236. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  3237. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  3238. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3239. XXX_unrecognized []byte `json:"-"`
  3240. XXX_sizecache int32 `json:"-"`
  3241. }
  3242. func (m *GetMedicalRecordListByUserIdResponse) Reset() { *m = GetMedicalRecordListByUserIdResponse{} }
  3243. func (m *GetMedicalRecordListByUserIdResponse) String() string { return proto.CompactTextString(m) }
  3244. func (*GetMedicalRecordListByUserIdResponse) ProtoMessage() {}
  3245. func (*GetMedicalRecordListByUserIdResponse) Descriptor() ([]byte, []int) {
  3246. return fileDescriptor_116e343673f7ffaf, []int{49}
  3247. }
  3248. func (m *GetMedicalRecordListByUserIdResponse) XXX_Unmarshal(b []byte) error {
  3249. return xxx_messageInfo_GetMedicalRecordListByUserIdResponse.Unmarshal(m, b)
  3250. }
  3251. func (m *GetMedicalRecordListByUserIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3252. return xxx_messageInfo_GetMedicalRecordListByUserIdResponse.Marshal(b, m, deterministic)
  3253. }
  3254. func (m *GetMedicalRecordListByUserIdResponse) XXX_Merge(src proto.Message) {
  3255. xxx_messageInfo_GetMedicalRecordListByUserIdResponse.Merge(m, src)
  3256. }
  3257. func (m *GetMedicalRecordListByUserIdResponse) XXX_Size() int {
  3258. return xxx_messageInfo_GetMedicalRecordListByUserIdResponse.Size(m)
  3259. }
  3260. func (m *GetMedicalRecordListByUserIdResponse) XXX_DiscardUnknown() {
  3261. xxx_messageInfo_GetMedicalRecordListByUserIdResponse.DiscardUnknown(m)
  3262. }
  3263. var xxx_messageInfo_GetMedicalRecordListByUserIdResponse proto.InternalMessageInfo
  3264. func (m *GetMedicalRecordListByUserIdResponse) GetResult() *Result {
  3265. if m != nil {
  3266. return m.Result
  3267. }
  3268. return nil
  3269. }
  3270. func (m *GetMedicalRecordListByUserIdResponse) GetDetail() []*MedicalRecordsDetail {
  3271. if m != nil {
  3272. return m.Detail
  3273. }
  3274. return nil
  3275. }
  3276. func (m *GetMedicalRecordListByUserIdResponse) GetCount() int32 {
  3277. if m != nil {
  3278. return m.Count
  3279. }
  3280. return 0
  3281. }
  3282. func (m *GetMedicalRecordListByUserIdResponse) GetTotalPages() int32 {
  3283. if m != nil {
  3284. return m.TotalPages
  3285. }
  3286. return 0
  3287. }
  3288. //获取公众号用户信息请求
  3289. type GetOfficialUserInfoRequest struct {
  3290. HospitalId int32 `protobuf:"varint,1,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  3291. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  3292. Terminal int32 `protobuf:"varint,3,opt,name=terminal,proto3" json:"terminal,omitempty"`
  3293. OpenId string `protobuf:"bytes,4,opt,name=openId,proto3" json:"openId,omitempty"`
  3294. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3295. XXX_unrecognized []byte `json:"-"`
  3296. XXX_sizecache int32 `json:"-"`
  3297. }
  3298. func (m *GetOfficialUserInfoRequest) Reset() { *m = GetOfficialUserInfoRequest{} }
  3299. func (m *GetOfficialUserInfoRequest) String() string { return proto.CompactTextString(m) }
  3300. func (*GetOfficialUserInfoRequest) ProtoMessage() {}
  3301. func (*GetOfficialUserInfoRequest) Descriptor() ([]byte, []int) {
  3302. return fileDescriptor_116e343673f7ffaf, []int{50}
  3303. }
  3304. func (m *GetOfficialUserInfoRequest) XXX_Unmarshal(b []byte) error {
  3305. return xxx_messageInfo_GetOfficialUserInfoRequest.Unmarshal(m, b)
  3306. }
  3307. func (m *GetOfficialUserInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3308. return xxx_messageInfo_GetOfficialUserInfoRequest.Marshal(b, m, deterministic)
  3309. }
  3310. func (m *GetOfficialUserInfoRequest) XXX_Merge(src proto.Message) {
  3311. xxx_messageInfo_GetOfficialUserInfoRequest.Merge(m, src)
  3312. }
  3313. func (m *GetOfficialUserInfoRequest) XXX_Size() int {
  3314. return xxx_messageInfo_GetOfficialUserInfoRequest.Size(m)
  3315. }
  3316. func (m *GetOfficialUserInfoRequest) XXX_DiscardUnknown() {
  3317. xxx_messageInfo_GetOfficialUserInfoRequest.DiscardUnknown(m)
  3318. }
  3319. var xxx_messageInfo_GetOfficialUserInfoRequest proto.InternalMessageInfo
  3320. func (m *GetOfficialUserInfoRequest) GetHospitalId() int32 {
  3321. if m != nil {
  3322. return m.HospitalId
  3323. }
  3324. return 0
  3325. }
  3326. func (m *GetOfficialUserInfoRequest) GetUnionId() string {
  3327. if m != nil {
  3328. return m.UnionId
  3329. }
  3330. return ""
  3331. }
  3332. func (m *GetOfficialUserInfoRequest) GetTerminal() int32 {
  3333. if m != nil {
  3334. return m.Terminal
  3335. }
  3336. return 0
  3337. }
  3338. func (m *GetOfficialUserInfoRequest) GetOpenId() string {
  3339. if m != nil {
  3340. return m.OpenId
  3341. }
  3342. return ""
  3343. }
  3344. //获取公众号用户信息响应
  3345. type GetOfficialUserInfoResponse struct {
  3346. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  3347. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  3348. HasMedicalCard int32 `protobuf:"varint,3,opt,name=hasMedicalCard,proto3" json:"hasMedicalCard,omitempty"`
  3349. Avatar string `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar,omitempty"`
  3350. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  3351. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId,omitempty"`
  3352. Mobile string `protobuf:"bytes,7,opt,name=mobile,proto3" json:"mobile,omitempty"`
  3353. UnionId string `protobuf:"bytes,8,opt,name=unionId,proto3" json:"unionId,omitempty"`
  3354. Sex int32 `protobuf:"varint,9,opt,name=sex,proto3" json:"sex,omitempty"`
  3355. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3356. XXX_unrecognized []byte `json:"-"`
  3357. XXX_sizecache int32 `json:"-"`
  3358. }
  3359. func (m *GetOfficialUserInfoResponse) Reset() { *m = GetOfficialUserInfoResponse{} }
  3360. func (m *GetOfficialUserInfoResponse) String() string { return proto.CompactTextString(m) }
  3361. func (*GetOfficialUserInfoResponse) ProtoMessage() {}
  3362. func (*GetOfficialUserInfoResponse) Descriptor() ([]byte, []int) {
  3363. return fileDescriptor_116e343673f7ffaf, []int{51}
  3364. }
  3365. func (m *GetOfficialUserInfoResponse) XXX_Unmarshal(b []byte) error {
  3366. return xxx_messageInfo_GetOfficialUserInfoResponse.Unmarshal(m, b)
  3367. }
  3368. func (m *GetOfficialUserInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3369. return xxx_messageInfo_GetOfficialUserInfoResponse.Marshal(b, m, deterministic)
  3370. }
  3371. func (m *GetOfficialUserInfoResponse) XXX_Merge(src proto.Message) {
  3372. xxx_messageInfo_GetOfficialUserInfoResponse.Merge(m, src)
  3373. }
  3374. func (m *GetOfficialUserInfoResponse) XXX_Size() int {
  3375. return xxx_messageInfo_GetOfficialUserInfoResponse.Size(m)
  3376. }
  3377. func (m *GetOfficialUserInfoResponse) XXX_DiscardUnknown() {
  3378. xxx_messageInfo_GetOfficialUserInfoResponse.DiscardUnknown(m)
  3379. }
  3380. var xxx_messageInfo_GetOfficialUserInfoResponse proto.InternalMessageInfo
  3381. func (m *GetOfficialUserInfoResponse) GetResult() *Result {
  3382. if m != nil {
  3383. return m.Result
  3384. }
  3385. return nil
  3386. }
  3387. func (m *GetOfficialUserInfoResponse) GetUserId() int32 {
  3388. if m != nil {
  3389. return m.UserId
  3390. }
  3391. return 0
  3392. }
  3393. func (m *GetOfficialUserInfoResponse) GetHasMedicalCard() int32 {
  3394. if m != nil {
  3395. return m.HasMedicalCard
  3396. }
  3397. return 0
  3398. }
  3399. func (m *GetOfficialUserInfoResponse) GetAvatar() string {
  3400. if m != nil {
  3401. return m.Avatar
  3402. }
  3403. return ""
  3404. }
  3405. func (m *GetOfficialUserInfoResponse) GetNickname() string {
  3406. if m != nil {
  3407. return m.Nickname
  3408. }
  3409. return ""
  3410. }
  3411. func (m *GetOfficialUserInfoResponse) GetOpenId() string {
  3412. if m != nil {
  3413. return m.OpenId
  3414. }
  3415. return ""
  3416. }
  3417. func (m *GetOfficialUserInfoResponse) GetMobile() string {
  3418. if m != nil {
  3419. return m.Mobile
  3420. }
  3421. return ""
  3422. }
  3423. func (m *GetOfficialUserInfoResponse) GetUnionId() string {
  3424. if m != nil {
  3425. return m.UnionId
  3426. }
  3427. return ""
  3428. }
  3429. func (m *GetOfficialUserInfoResponse) GetSex() int32 {
  3430. if m != nil {
  3431. return m.Sex
  3432. }
  3433. return 0
  3434. }
  3435. //检查结果
  3436. type InspectionReport struct {
  3437. ReportId string `protobuf:"bytes,1,opt,name=reportId,proto3" json:"reportId,omitempty"`
  3438. ReportTitle string `protobuf:"bytes,2,opt,name=reportTitle,proto3" json:"reportTitle,omitempty"`
  3439. ReportDate int64 `protobuf:"varint,3,opt,name=reportDate,proto3" json:"reportDate,omitempty"`
  3440. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  3441. PatientName string `protobuf:"bytes,5,opt,name=patientName,proto3" json:"patientName,omitempty"`
  3442. PatientAge string `protobuf:"bytes,6,opt,name=patientAge,proto3" json:"patientAge,omitempty"`
  3443. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"`
  3444. ClinicalDiagnosis string `protobuf:"bytes,8,opt,name=clinicalDiagnosis,proto3" json:"clinicalDiagnosis,omitempty"`
  3445. ClinicSeq string `protobuf:"bytes,9,opt,name=clinicSeq,proto3" json:"clinicSeq,omitempty"`
  3446. InpatientId string `protobuf:"bytes,10,opt,name=inpatientId,proto3" json:"inpatientId,omitempty"`
  3447. Id int32 `protobuf:"varint,11,opt,name=id,proto3" json:"id,omitempty"`
  3448. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3449. XXX_unrecognized []byte `json:"-"`
  3450. XXX_sizecache int32 `json:"-"`
  3451. }
  3452. func (m *InspectionReport) Reset() { *m = InspectionReport{} }
  3453. func (m *InspectionReport) String() string { return proto.CompactTextString(m) }
  3454. func (*InspectionReport) ProtoMessage() {}
  3455. func (*InspectionReport) Descriptor() ([]byte, []int) {
  3456. return fileDescriptor_116e343673f7ffaf, []int{52}
  3457. }
  3458. func (m *InspectionReport) XXX_Unmarshal(b []byte) error {
  3459. return xxx_messageInfo_InspectionReport.Unmarshal(m, b)
  3460. }
  3461. func (m *InspectionReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3462. return xxx_messageInfo_InspectionReport.Marshal(b, m, deterministic)
  3463. }
  3464. func (m *InspectionReport) XXX_Merge(src proto.Message) {
  3465. xxx_messageInfo_InspectionReport.Merge(m, src)
  3466. }
  3467. func (m *InspectionReport) XXX_Size() int {
  3468. return xxx_messageInfo_InspectionReport.Size(m)
  3469. }
  3470. func (m *InspectionReport) XXX_DiscardUnknown() {
  3471. xxx_messageInfo_InspectionReport.DiscardUnknown(m)
  3472. }
  3473. var xxx_messageInfo_InspectionReport proto.InternalMessageInfo
  3474. func (m *InspectionReport) GetReportId() string {
  3475. if m != nil {
  3476. return m.ReportId
  3477. }
  3478. return ""
  3479. }
  3480. func (m *InspectionReport) GetReportTitle() string {
  3481. if m != nil {
  3482. return m.ReportTitle
  3483. }
  3484. return ""
  3485. }
  3486. func (m *InspectionReport) GetReportDate() int64 {
  3487. if m != nil {
  3488. return m.ReportDate
  3489. }
  3490. return 0
  3491. }
  3492. func (m *InspectionReport) GetStatus() int32 {
  3493. if m != nil {
  3494. return m.Status
  3495. }
  3496. return 0
  3497. }
  3498. func (m *InspectionReport) GetPatientName() string {
  3499. if m != nil {
  3500. return m.PatientName
  3501. }
  3502. return ""
  3503. }
  3504. func (m *InspectionReport) GetPatientAge() string {
  3505. if m != nil {
  3506. return m.PatientAge
  3507. }
  3508. return ""
  3509. }
  3510. func (m *InspectionReport) GetSex() int32 {
  3511. if m != nil {
  3512. return m.Sex
  3513. }
  3514. return 0
  3515. }
  3516. func (m *InspectionReport) GetClinicalDiagnosis() string {
  3517. if m != nil {
  3518. return m.ClinicalDiagnosis
  3519. }
  3520. return ""
  3521. }
  3522. func (m *InspectionReport) GetClinicSeq() string {
  3523. if m != nil {
  3524. return m.ClinicSeq
  3525. }
  3526. return ""
  3527. }
  3528. func (m *InspectionReport) GetInpatientId() string {
  3529. if m != nil {
  3530. return m.InpatientId
  3531. }
  3532. return ""
  3533. }
  3534. func (m *InspectionReport) GetId() int32 {
  3535. if m != nil {
  3536. return m.Id
  3537. }
  3538. return 0
  3539. }
  3540. //检查结果详情
  3541. type InspectionReportDetail struct {
  3542. DeptName string `protobuf:"bytes,1,opt,name=deptName,proto3" json:"deptName,omitempty"`
  3543. ReportDoctorName string `protobuf:"bytes,2,opt,name=reportDoctorName,proto3" json:"reportDoctorName,omitempty"`
  3544. CheckParts string `protobuf:"bytes,3,opt,name=checkParts,proto3" json:"checkParts,omitempty"`
  3545. Examination string `protobuf:"bytes,4,opt,name=examination,proto3" json:"examination,omitempty"`
  3546. Diagnosis string `protobuf:"bytes,5,opt,name=diagnosis,proto3" json:"diagnosis,omitempty"`
  3547. CheckDoctorName string `protobuf:"bytes,6,opt,name=checkDoctorName,proto3" json:"checkDoctorName,omitempty"`
  3548. ExaminationDate int64 `protobuf:"varint,7,opt,name=examinationDate,proto3" json:"examinationDate,omitempty"`
  3549. VerifyDate int64 `protobuf:"varint,8,opt,name=verifyDate,proto3" json:"verifyDate,omitempty"`
  3550. VerifyDocName string `protobuf:"bytes,9,opt,name=verifyDocName,proto3" json:"verifyDocName,omitempty"`
  3551. AppDocName string `protobuf:"bytes,10,opt,name=appDocName,proto3" json:"appDocName,omitempty"`
  3552. Id int32 `protobuf:"varint,11,opt,name=id,proto3" json:"id,omitempty"`
  3553. ReportId string `protobuf:"bytes,12,opt,name=reportId,proto3" json:"reportId,omitempty"`
  3554. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3555. XXX_unrecognized []byte `json:"-"`
  3556. XXX_sizecache int32 `json:"-"`
  3557. }
  3558. func (m *InspectionReportDetail) Reset() { *m = InspectionReportDetail{} }
  3559. func (m *InspectionReportDetail) String() string { return proto.CompactTextString(m) }
  3560. func (*InspectionReportDetail) ProtoMessage() {}
  3561. func (*InspectionReportDetail) Descriptor() ([]byte, []int) {
  3562. return fileDescriptor_116e343673f7ffaf, []int{53}
  3563. }
  3564. func (m *InspectionReportDetail) XXX_Unmarshal(b []byte) error {
  3565. return xxx_messageInfo_InspectionReportDetail.Unmarshal(m, b)
  3566. }
  3567. func (m *InspectionReportDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3568. return xxx_messageInfo_InspectionReportDetail.Marshal(b, m, deterministic)
  3569. }
  3570. func (m *InspectionReportDetail) XXX_Merge(src proto.Message) {
  3571. xxx_messageInfo_InspectionReportDetail.Merge(m, src)
  3572. }
  3573. func (m *InspectionReportDetail) XXX_Size() int {
  3574. return xxx_messageInfo_InspectionReportDetail.Size(m)
  3575. }
  3576. func (m *InspectionReportDetail) XXX_DiscardUnknown() {
  3577. xxx_messageInfo_InspectionReportDetail.DiscardUnknown(m)
  3578. }
  3579. var xxx_messageInfo_InspectionReportDetail proto.InternalMessageInfo
  3580. func (m *InspectionReportDetail) GetDeptName() string {
  3581. if m != nil {
  3582. return m.DeptName
  3583. }
  3584. return ""
  3585. }
  3586. func (m *InspectionReportDetail) GetReportDoctorName() string {
  3587. if m != nil {
  3588. return m.ReportDoctorName
  3589. }
  3590. return ""
  3591. }
  3592. func (m *InspectionReportDetail) GetCheckParts() string {
  3593. if m != nil {
  3594. return m.CheckParts
  3595. }
  3596. return ""
  3597. }
  3598. func (m *InspectionReportDetail) GetExamination() string {
  3599. if m != nil {
  3600. return m.Examination
  3601. }
  3602. return ""
  3603. }
  3604. func (m *InspectionReportDetail) GetDiagnosis() string {
  3605. if m != nil {
  3606. return m.Diagnosis
  3607. }
  3608. return ""
  3609. }
  3610. func (m *InspectionReportDetail) GetCheckDoctorName() string {
  3611. if m != nil {
  3612. return m.CheckDoctorName
  3613. }
  3614. return ""
  3615. }
  3616. func (m *InspectionReportDetail) GetExaminationDate() int64 {
  3617. if m != nil {
  3618. return m.ExaminationDate
  3619. }
  3620. return 0
  3621. }
  3622. func (m *InspectionReportDetail) GetVerifyDate() int64 {
  3623. if m != nil {
  3624. return m.VerifyDate
  3625. }
  3626. return 0
  3627. }
  3628. func (m *InspectionReportDetail) GetVerifyDocName() string {
  3629. if m != nil {
  3630. return m.VerifyDocName
  3631. }
  3632. return ""
  3633. }
  3634. func (m *InspectionReportDetail) GetAppDocName() string {
  3635. if m != nil {
  3636. return m.AppDocName
  3637. }
  3638. return ""
  3639. }
  3640. func (m *InspectionReportDetail) GetId() int32 {
  3641. if m != nil {
  3642. return m.Id
  3643. }
  3644. return 0
  3645. }
  3646. func (m *InspectionReportDetail) GetReportId() string {
  3647. if m != nil {
  3648. return m.ReportId
  3649. }
  3650. return ""
  3651. }
  3652. //获取检查结果列表请求
  3653. type GetInspectionReportListRequest struct {
  3654. MedicalCardId int32 `protobuf:"varint,1,opt,name=medicalCardId,proto3" json:"medicalCardId,omitempty"`
  3655. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  3656. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3657. XXX_unrecognized []byte `json:"-"`
  3658. XXX_sizecache int32 `json:"-"`
  3659. }
  3660. func (m *GetInspectionReportListRequest) Reset() { *m = GetInspectionReportListRequest{} }
  3661. func (m *GetInspectionReportListRequest) String() string { return proto.CompactTextString(m) }
  3662. func (*GetInspectionReportListRequest) ProtoMessage() {}
  3663. func (*GetInspectionReportListRequest) Descriptor() ([]byte, []int) {
  3664. return fileDescriptor_116e343673f7ffaf, []int{54}
  3665. }
  3666. func (m *GetInspectionReportListRequest) XXX_Unmarshal(b []byte) error {
  3667. return xxx_messageInfo_GetInspectionReportListRequest.Unmarshal(m, b)
  3668. }
  3669. func (m *GetInspectionReportListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3670. return xxx_messageInfo_GetInspectionReportListRequest.Marshal(b, m, deterministic)
  3671. }
  3672. func (m *GetInspectionReportListRequest) XXX_Merge(src proto.Message) {
  3673. xxx_messageInfo_GetInspectionReportListRequest.Merge(m, src)
  3674. }
  3675. func (m *GetInspectionReportListRequest) XXX_Size() int {
  3676. return xxx_messageInfo_GetInspectionReportListRequest.Size(m)
  3677. }
  3678. func (m *GetInspectionReportListRequest) XXX_DiscardUnknown() {
  3679. xxx_messageInfo_GetInspectionReportListRequest.DiscardUnknown(m)
  3680. }
  3681. var xxx_messageInfo_GetInspectionReportListRequest proto.InternalMessageInfo
  3682. func (m *GetInspectionReportListRequest) GetMedicalCardId() int32 {
  3683. if m != nil {
  3684. return m.MedicalCardId
  3685. }
  3686. return 0
  3687. }
  3688. func (m *GetInspectionReportListRequest) GetUserId() int32 {
  3689. if m != nil {
  3690. return m.UserId
  3691. }
  3692. return 0
  3693. }
  3694. //获取检查结果列表响应
  3695. type GetInspectionReportListResponse struct {
  3696. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  3697. Report []*InspectionReport `protobuf:"bytes,2,rep,name=report,proto3" json:"report,omitempty"`
  3698. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3699. XXX_unrecognized []byte `json:"-"`
  3700. XXX_sizecache int32 `json:"-"`
  3701. }
  3702. func (m *GetInspectionReportListResponse) Reset() { *m = GetInspectionReportListResponse{} }
  3703. func (m *GetInspectionReportListResponse) String() string { return proto.CompactTextString(m) }
  3704. func (*GetInspectionReportListResponse) ProtoMessage() {}
  3705. func (*GetInspectionReportListResponse) Descriptor() ([]byte, []int) {
  3706. return fileDescriptor_116e343673f7ffaf, []int{55}
  3707. }
  3708. func (m *GetInspectionReportListResponse) XXX_Unmarshal(b []byte) error {
  3709. return xxx_messageInfo_GetInspectionReportListResponse.Unmarshal(m, b)
  3710. }
  3711. func (m *GetInspectionReportListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3712. return xxx_messageInfo_GetInspectionReportListResponse.Marshal(b, m, deterministic)
  3713. }
  3714. func (m *GetInspectionReportListResponse) XXX_Merge(src proto.Message) {
  3715. xxx_messageInfo_GetInspectionReportListResponse.Merge(m, src)
  3716. }
  3717. func (m *GetInspectionReportListResponse) XXX_Size() int {
  3718. return xxx_messageInfo_GetInspectionReportListResponse.Size(m)
  3719. }
  3720. func (m *GetInspectionReportListResponse) XXX_DiscardUnknown() {
  3721. xxx_messageInfo_GetInspectionReportListResponse.DiscardUnknown(m)
  3722. }
  3723. var xxx_messageInfo_GetInspectionReportListResponse proto.InternalMessageInfo
  3724. func (m *GetInspectionReportListResponse) GetResult() *Result {
  3725. if m != nil {
  3726. return m.Result
  3727. }
  3728. return nil
  3729. }
  3730. func (m *GetInspectionReportListResponse) GetReport() []*InspectionReport {
  3731. if m != nil {
  3732. return m.Report
  3733. }
  3734. return nil
  3735. }
  3736. //获取检查结果详情请求
  3737. type GetInspectionReportDetailRequest struct {
  3738. ReportId string `protobuf:"bytes,1,opt,name=reportId,proto3" json:"reportId,omitempty"`
  3739. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3740. XXX_unrecognized []byte `json:"-"`
  3741. XXX_sizecache int32 `json:"-"`
  3742. }
  3743. func (m *GetInspectionReportDetailRequest) Reset() { *m = GetInspectionReportDetailRequest{} }
  3744. func (m *GetInspectionReportDetailRequest) String() string { return proto.CompactTextString(m) }
  3745. func (*GetInspectionReportDetailRequest) ProtoMessage() {}
  3746. func (*GetInspectionReportDetailRequest) Descriptor() ([]byte, []int) {
  3747. return fileDescriptor_116e343673f7ffaf, []int{56}
  3748. }
  3749. func (m *GetInspectionReportDetailRequest) XXX_Unmarshal(b []byte) error {
  3750. return xxx_messageInfo_GetInspectionReportDetailRequest.Unmarshal(m, b)
  3751. }
  3752. func (m *GetInspectionReportDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3753. return xxx_messageInfo_GetInspectionReportDetailRequest.Marshal(b, m, deterministic)
  3754. }
  3755. func (m *GetInspectionReportDetailRequest) XXX_Merge(src proto.Message) {
  3756. xxx_messageInfo_GetInspectionReportDetailRequest.Merge(m, src)
  3757. }
  3758. func (m *GetInspectionReportDetailRequest) XXX_Size() int {
  3759. return xxx_messageInfo_GetInspectionReportDetailRequest.Size(m)
  3760. }
  3761. func (m *GetInspectionReportDetailRequest) XXX_DiscardUnknown() {
  3762. xxx_messageInfo_GetInspectionReportDetailRequest.DiscardUnknown(m)
  3763. }
  3764. var xxx_messageInfo_GetInspectionReportDetailRequest proto.InternalMessageInfo
  3765. func (m *GetInspectionReportDetailRequest) GetReportId() string {
  3766. if m != nil {
  3767. return m.ReportId
  3768. }
  3769. return ""
  3770. }
  3771. //获取检查结果详情响应
  3772. type GetInspectionReportDetailResponse struct {
  3773. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  3774. Report *InspectionReportDetail `protobuf:"bytes,2,opt,name=report,proto3" json:"report,omitempty"`
  3775. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3776. XXX_unrecognized []byte `json:"-"`
  3777. XXX_sizecache int32 `json:"-"`
  3778. }
  3779. func (m *GetInspectionReportDetailResponse) Reset() { *m = GetInspectionReportDetailResponse{} }
  3780. func (m *GetInspectionReportDetailResponse) String() string { return proto.CompactTextString(m) }
  3781. func (*GetInspectionReportDetailResponse) ProtoMessage() {}
  3782. func (*GetInspectionReportDetailResponse) Descriptor() ([]byte, []int) {
  3783. return fileDescriptor_116e343673f7ffaf, []int{57}
  3784. }
  3785. func (m *GetInspectionReportDetailResponse) XXX_Unmarshal(b []byte) error {
  3786. return xxx_messageInfo_GetInspectionReportDetailResponse.Unmarshal(m, b)
  3787. }
  3788. func (m *GetInspectionReportDetailResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3789. return xxx_messageInfo_GetInspectionReportDetailResponse.Marshal(b, m, deterministic)
  3790. }
  3791. func (m *GetInspectionReportDetailResponse) XXX_Merge(src proto.Message) {
  3792. xxx_messageInfo_GetInspectionReportDetailResponse.Merge(m, src)
  3793. }
  3794. func (m *GetInspectionReportDetailResponse) XXX_Size() int {
  3795. return xxx_messageInfo_GetInspectionReportDetailResponse.Size(m)
  3796. }
  3797. func (m *GetInspectionReportDetailResponse) XXX_DiscardUnknown() {
  3798. xxx_messageInfo_GetInspectionReportDetailResponse.DiscardUnknown(m)
  3799. }
  3800. var xxx_messageInfo_GetInspectionReportDetailResponse proto.InternalMessageInfo
  3801. func (m *GetInspectionReportDetailResponse) GetResult() *Result {
  3802. if m != nil {
  3803. return m.Result
  3804. }
  3805. return nil
  3806. }
  3807. func (m *GetInspectionReportDetailResponse) GetReport() *InspectionReportDetail {
  3808. if m != nil {
  3809. return m.Report
  3810. }
  3811. return nil
  3812. }
  3813. //化验报告
  3814. type LaboratoryReport struct {
  3815. InspectionId string `protobuf:"bytes,1,opt,name=inspectionId,proto3" json:"inspectionId,omitempty"`
  3816. InspectionName string `protobuf:"bytes,2,opt,name=inspectionName,proto3" json:"inspectionName,omitempty"`
  3817. InspectionDate int64 `protobuf:"varint,3,opt,name=inspectionDate,proto3" json:"inspectionDate,omitempty"`
  3818. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  3819. PatientName string `protobuf:"bytes,5,opt,name=patientName,proto3" json:"patientName,omitempty"`
  3820. PatientAge string `protobuf:"bytes,6,opt,name=patientAge,proto3" json:"patientAge,omitempty"`
  3821. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"`
  3822. DeptName string `protobuf:"bytes,8,opt,name=deptName,proto3" json:"deptName,omitempty"`
  3823. ClinicalDiagnosis string `protobuf:"bytes,9,opt,name=clinicalDiagnosis,proto3" json:"clinicalDiagnosis,omitempty"`
  3824. ReportDoctorName string `protobuf:"bytes,10,opt,name=reportDoctorName,proto3" json:"reportDoctorName,omitempty"`
  3825. ClinicSeq string `protobuf:"bytes,11,opt,name=clinicSeq,proto3" json:"clinicSeq,omitempty"`
  3826. InpatientId string `protobuf:"bytes,12,opt,name=inpatientId,proto3" json:"inpatientId,omitempty"`
  3827. CheckDoctorName string `protobuf:"bytes,13,opt,name=checkDoctorName,proto3" json:"checkDoctorName,omitempty"`
  3828. Id int32 `protobuf:"varint,14,opt,name=id,proto3" json:"id,omitempty"`
  3829. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3830. XXX_unrecognized []byte `json:"-"`
  3831. XXX_sizecache int32 `json:"-"`
  3832. }
  3833. func (m *LaboratoryReport) Reset() { *m = LaboratoryReport{} }
  3834. func (m *LaboratoryReport) String() string { return proto.CompactTextString(m) }
  3835. func (*LaboratoryReport) ProtoMessage() {}
  3836. func (*LaboratoryReport) Descriptor() ([]byte, []int) {
  3837. return fileDescriptor_116e343673f7ffaf, []int{58}
  3838. }
  3839. func (m *LaboratoryReport) XXX_Unmarshal(b []byte) error {
  3840. return xxx_messageInfo_LaboratoryReport.Unmarshal(m, b)
  3841. }
  3842. func (m *LaboratoryReport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3843. return xxx_messageInfo_LaboratoryReport.Marshal(b, m, deterministic)
  3844. }
  3845. func (m *LaboratoryReport) XXX_Merge(src proto.Message) {
  3846. xxx_messageInfo_LaboratoryReport.Merge(m, src)
  3847. }
  3848. func (m *LaboratoryReport) XXX_Size() int {
  3849. return xxx_messageInfo_LaboratoryReport.Size(m)
  3850. }
  3851. func (m *LaboratoryReport) XXX_DiscardUnknown() {
  3852. xxx_messageInfo_LaboratoryReport.DiscardUnknown(m)
  3853. }
  3854. var xxx_messageInfo_LaboratoryReport proto.InternalMessageInfo
  3855. func (m *LaboratoryReport) GetInspectionId() string {
  3856. if m != nil {
  3857. return m.InspectionId
  3858. }
  3859. return ""
  3860. }
  3861. func (m *LaboratoryReport) GetInspectionName() string {
  3862. if m != nil {
  3863. return m.InspectionName
  3864. }
  3865. return ""
  3866. }
  3867. func (m *LaboratoryReport) GetInspectionDate() int64 {
  3868. if m != nil {
  3869. return m.InspectionDate
  3870. }
  3871. return 0
  3872. }
  3873. func (m *LaboratoryReport) GetStatus() int32 {
  3874. if m != nil {
  3875. return m.Status
  3876. }
  3877. return 0
  3878. }
  3879. func (m *LaboratoryReport) GetPatientName() string {
  3880. if m != nil {
  3881. return m.PatientName
  3882. }
  3883. return ""
  3884. }
  3885. func (m *LaboratoryReport) GetPatientAge() string {
  3886. if m != nil {
  3887. return m.PatientAge
  3888. }
  3889. return ""
  3890. }
  3891. func (m *LaboratoryReport) GetSex() int32 {
  3892. if m != nil {
  3893. return m.Sex
  3894. }
  3895. return 0
  3896. }
  3897. func (m *LaboratoryReport) GetDeptName() string {
  3898. if m != nil {
  3899. return m.DeptName
  3900. }
  3901. return ""
  3902. }
  3903. func (m *LaboratoryReport) GetClinicalDiagnosis() string {
  3904. if m != nil {
  3905. return m.ClinicalDiagnosis
  3906. }
  3907. return ""
  3908. }
  3909. func (m *LaboratoryReport) GetReportDoctorName() string {
  3910. if m != nil {
  3911. return m.ReportDoctorName
  3912. }
  3913. return ""
  3914. }
  3915. func (m *LaboratoryReport) GetClinicSeq() string {
  3916. if m != nil {
  3917. return m.ClinicSeq
  3918. }
  3919. return ""
  3920. }
  3921. func (m *LaboratoryReport) GetInpatientId() string {
  3922. if m != nil {
  3923. return m.InpatientId
  3924. }
  3925. return ""
  3926. }
  3927. func (m *LaboratoryReport) GetCheckDoctorName() string {
  3928. if m != nil {
  3929. return m.CheckDoctorName
  3930. }
  3931. return ""
  3932. }
  3933. func (m *LaboratoryReport) GetId() int32 {
  3934. if m != nil {
  3935. return m.Id
  3936. }
  3937. return 0
  3938. }
  3939. //化验报告详情
  3940. type LaboratoryReportDetail struct {
  3941. ItemId string `protobuf:"bytes,1,opt,name=itemId,proto3" json:"itemId,omitempty"`
  3942. ItemName string `protobuf:"bytes,2,opt,name=itemName,proto3" json:"itemName,omitempty"`
  3943. OrderNo string `protobuf:"bytes,3,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
  3944. TestResult string `protobuf:"bytes,4,opt,name=testResult,proto3" json:"testResult,omitempty"`
  3945. Unit string `protobuf:"bytes,5,opt,name=unit,proto3" json:"unit,omitempty"`
  3946. ItemRef string `protobuf:"bytes,6,opt,name=itemRef,proto3" json:"itemRef,omitempty"`
  3947. TestDate int64 `protobuf:"varint,7,opt,name=testDate,proto3" json:"testDate,omitempty"`
  3948. TestEngName string `protobuf:"bytes,8,opt,name=testEngName,proto3" json:"testEngName,omitempty"`
  3949. SpecimType string `protobuf:"bytes,9,opt,name=specimType,proto3" json:"specimType,omitempty"`
  3950. ResultFlag string `protobuf:"bytes,10,opt,name=resultFlag,proto3" json:"resultFlag,omitempty"`
  3951. Id int32 `protobuf:"varint,11,opt,name=id,proto3" json:"id,omitempty"`
  3952. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3953. XXX_unrecognized []byte `json:"-"`
  3954. XXX_sizecache int32 `json:"-"`
  3955. }
  3956. func (m *LaboratoryReportDetail) Reset() { *m = LaboratoryReportDetail{} }
  3957. func (m *LaboratoryReportDetail) String() string { return proto.CompactTextString(m) }
  3958. func (*LaboratoryReportDetail) ProtoMessage() {}
  3959. func (*LaboratoryReportDetail) Descriptor() ([]byte, []int) {
  3960. return fileDescriptor_116e343673f7ffaf, []int{59}
  3961. }
  3962. func (m *LaboratoryReportDetail) XXX_Unmarshal(b []byte) error {
  3963. return xxx_messageInfo_LaboratoryReportDetail.Unmarshal(m, b)
  3964. }
  3965. func (m *LaboratoryReportDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3966. return xxx_messageInfo_LaboratoryReportDetail.Marshal(b, m, deterministic)
  3967. }
  3968. func (m *LaboratoryReportDetail) XXX_Merge(src proto.Message) {
  3969. xxx_messageInfo_LaboratoryReportDetail.Merge(m, src)
  3970. }
  3971. func (m *LaboratoryReportDetail) XXX_Size() int {
  3972. return xxx_messageInfo_LaboratoryReportDetail.Size(m)
  3973. }
  3974. func (m *LaboratoryReportDetail) XXX_DiscardUnknown() {
  3975. xxx_messageInfo_LaboratoryReportDetail.DiscardUnknown(m)
  3976. }
  3977. var xxx_messageInfo_LaboratoryReportDetail proto.InternalMessageInfo
  3978. func (m *LaboratoryReportDetail) GetItemId() string {
  3979. if m != nil {
  3980. return m.ItemId
  3981. }
  3982. return ""
  3983. }
  3984. func (m *LaboratoryReportDetail) GetItemName() string {
  3985. if m != nil {
  3986. return m.ItemName
  3987. }
  3988. return ""
  3989. }
  3990. func (m *LaboratoryReportDetail) GetOrderNo() string {
  3991. if m != nil {
  3992. return m.OrderNo
  3993. }
  3994. return ""
  3995. }
  3996. func (m *LaboratoryReportDetail) GetTestResult() string {
  3997. if m != nil {
  3998. return m.TestResult
  3999. }
  4000. return ""
  4001. }
  4002. func (m *LaboratoryReportDetail) GetUnit() string {
  4003. if m != nil {
  4004. return m.Unit
  4005. }
  4006. return ""
  4007. }
  4008. func (m *LaboratoryReportDetail) GetItemRef() string {
  4009. if m != nil {
  4010. return m.ItemRef
  4011. }
  4012. return ""
  4013. }
  4014. func (m *LaboratoryReportDetail) GetTestDate() int64 {
  4015. if m != nil {
  4016. return m.TestDate
  4017. }
  4018. return 0
  4019. }
  4020. func (m *LaboratoryReportDetail) GetTestEngName() string {
  4021. if m != nil {
  4022. return m.TestEngName
  4023. }
  4024. return ""
  4025. }
  4026. func (m *LaboratoryReportDetail) GetSpecimType() string {
  4027. if m != nil {
  4028. return m.SpecimType
  4029. }
  4030. return ""
  4031. }
  4032. func (m *LaboratoryReportDetail) GetResultFlag() string {
  4033. if m != nil {
  4034. return m.ResultFlag
  4035. }
  4036. return ""
  4037. }
  4038. func (m *LaboratoryReportDetail) GetId() int32 {
  4039. if m != nil {
  4040. return m.Id
  4041. }
  4042. return 0
  4043. }
  4044. //获取化验报告列表请求
  4045. type GetLaboratoryReportListRequest struct {
  4046. MedicalCardId int32 `protobuf:"varint,1,opt,name=medicalCardId,proto3" json:"medicalCardId,omitempty"`
  4047. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  4048. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4049. XXX_unrecognized []byte `json:"-"`
  4050. XXX_sizecache int32 `json:"-"`
  4051. }
  4052. func (m *GetLaboratoryReportListRequest) Reset() { *m = GetLaboratoryReportListRequest{} }
  4053. func (m *GetLaboratoryReportListRequest) String() string { return proto.CompactTextString(m) }
  4054. func (*GetLaboratoryReportListRequest) ProtoMessage() {}
  4055. func (*GetLaboratoryReportListRequest) Descriptor() ([]byte, []int) {
  4056. return fileDescriptor_116e343673f7ffaf, []int{60}
  4057. }
  4058. func (m *GetLaboratoryReportListRequest) XXX_Unmarshal(b []byte) error {
  4059. return xxx_messageInfo_GetLaboratoryReportListRequest.Unmarshal(m, b)
  4060. }
  4061. func (m *GetLaboratoryReportListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4062. return xxx_messageInfo_GetLaboratoryReportListRequest.Marshal(b, m, deterministic)
  4063. }
  4064. func (m *GetLaboratoryReportListRequest) XXX_Merge(src proto.Message) {
  4065. xxx_messageInfo_GetLaboratoryReportListRequest.Merge(m, src)
  4066. }
  4067. func (m *GetLaboratoryReportListRequest) XXX_Size() int {
  4068. return xxx_messageInfo_GetLaboratoryReportListRequest.Size(m)
  4069. }
  4070. func (m *GetLaboratoryReportListRequest) XXX_DiscardUnknown() {
  4071. xxx_messageInfo_GetLaboratoryReportListRequest.DiscardUnknown(m)
  4072. }
  4073. var xxx_messageInfo_GetLaboratoryReportListRequest proto.InternalMessageInfo
  4074. func (m *GetLaboratoryReportListRequest) GetMedicalCardId() int32 {
  4075. if m != nil {
  4076. return m.MedicalCardId
  4077. }
  4078. return 0
  4079. }
  4080. func (m *GetLaboratoryReportListRequest) GetUserId() int32 {
  4081. if m != nil {
  4082. return m.UserId
  4083. }
  4084. return 0
  4085. }
  4086. //获取化验报告列表响应
  4087. type GetLaboratoryReportListResponse struct {
  4088. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4089. Report []*LaboratoryReport `protobuf:"bytes,2,rep,name=report,proto3" json:"report,omitempty"`
  4090. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4091. XXX_unrecognized []byte `json:"-"`
  4092. XXX_sizecache int32 `json:"-"`
  4093. }
  4094. func (m *GetLaboratoryReportListResponse) Reset() { *m = GetLaboratoryReportListResponse{} }
  4095. func (m *GetLaboratoryReportListResponse) String() string { return proto.CompactTextString(m) }
  4096. func (*GetLaboratoryReportListResponse) ProtoMessage() {}
  4097. func (*GetLaboratoryReportListResponse) Descriptor() ([]byte, []int) {
  4098. return fileDescriptor_116e343673f7ffaf, []int{61}
  4099. }
  4100. func (m *GetLaboratoryReportListResponse) XXX_Unmarshal(b []byte) error {
  4101. return xxx_messageInfo_GetLaboratoryReportListResponse.Unmarshal(m, b)
  4102. }
  4103. func (m *GetLaboratoryReportListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4104. return xxx_messageInfo_GetLaboratoryReportListResponse.Marshal(b, m, deterministic)
  4105. }
  4106. func (m *GetLaboratoryReportListResponse) XXX_Merge(src proto.Message) {
  4107. xxx_messageInfo_GetLaboratoryReportListResponse.Merge(m, src)
  4108. }
  4109. func (m *GetLaboratoryReportListResponse) XXX_Size() int {
  4110. return xxx_messageInfo_GetLaboratoryReportListResponse.Size(m)
  4111. }
  4112. func (m *GetLaboratoryReportListResponse) XXX_DiscardUnknown() {
  4113. xxx_messageInfo_GetLaboratoryReportListResponse.DiscardUnknown(m)
  4114. }
  4115. var xxx_messageInfo_GetLaboratoryReportListResponse proto.InternalMessageInfo
  4116. func (m *GetLaboratoryReportListResponse) GetResult() *Result {
  4117. if m != nil {
  4118. return m.Result
  4119. }
  4120. return nil
  4121. }
  4122. func (m *GetLaboratoryReportListResponse) GetReport() []*LaboratoryReport {
  4123. if m != nil {
  4124. return m.Report
  4125. }
  4126. return nil
  4127. }
  4128. //获取化验报告详情请求
  4129. type GetLaboratoryReportDetailRequest struct {
  4130. InspectionId string `protobuf:"bytes,1,opt,name=inspectionId,proto3" json:"inspectionId,omitempty"`
  4131. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4132. XXX_unrecognized []byte `json:"-"`
  4133. XXX_sizecache int32 `json:"-"`
  4134. }
  4135. func (m *GetLaboratoryReportDetailRequest) Reset() { *m = GetLaboratoryReportDetailRequest{} }
  4136. func (m *GetLaboratoryReportDetailRequest) String() string { return proto.CompactTextString(m) }
  4137. func (*GetLaboratoryReportDetailRequest) ProtoMessage() {}
  4138. func (*GetLaboratoryReportDetailRequest) Descriptor() ([]byte, []int) {
  4139. return fileDescriptor_116e343673f7ffaf, []int{62}
  4140. }
  4141. func (m *GetLaboratoryReportDetailRequest) XXX_Unmarshal(b []byte) error {
  4142. return xxx_messageInfo_GetLaboratoryReportDetailRequest.Unmarshal(m, b)
  4143. }
  4144. func (m *GetLaboratoryReportDetailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4145. return xxx_messageInfo_GetLaboratoryReportDetailRequest.Marshal(b, m, deterministic)
  4146. }
  4147. func (m *GetLaboratoryReportDetailRequest) XXX_Merge(src proto.Message) {
  4148. xxx_messageInfo_GetLaboratoryReportDetailRequest.Merge(m, src)
  4149. }
  4150. func (m *GetLaboratoryReportDetailRequest) XXX_Size() int {
  4151. return xxx_messageInfo_GetLaboratoryReportDetailRequest.Size(m)
  4152. }
  4153. func (m *GetLaboratoryReportDetailRequest) XXX_DiscardUnknown() {
  4154. xxx_messageInfo_GetLaboratoryReportDetailRequest.DiscardUnknown(m)
  4155. }
  4156. var xxx_messageInfo_GetLaboratoryReportDetailRequest proto.InternalMessageInfo
  4157. func (m *GetLaboratoryReportDetailRequest) GetInspectionId() string {
  4158. if m != nil {
  4159. return m.InspectionId
  4160. }
  4161. return ""
  4162. }
  4163. //获取化验报告详情响应
  4164. type GetLaboratoryReportDetailResponse struct {
  4165. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4166. Detail []*LaboratoryReportDetail `protobuf:"bytes,2,rep,name=detail,proto3" json:"detail,omitempty"`
  4167. InspectionName string `protobuf:"bytes,3,opt,name=inspectionName,proto3" json:"inspectionName,omitempty"`
  4168. InspectionDate int64 `protobuf:"varint,4,opt,name=inspectionDate,proto3" json:"inspectionDate,omitempty"`
  4169. ClinicalDiagnosis string `protobuf:"bytes,5,opt,name=clinicalDiagnosis,proto3" json:"clinicalDiagnosis,omitempty"`
  4170. ReportDoctorName string `protobuf:"bytes,6,opt,name=reportDoctorName,proto3" json:"reportDoctorName,omitempty"`
  4171. CheckDoctorName string `protobuf:"bytes,7,opt,name=checkDoctorName,proto3" json:"checkDoctorName,omitempty"`
  4172. Status int32 `protobuf:"varint,8,opt,name=status,proto3" json:"status,omitempty"`
  4173. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4174. XXX_unrecognized []byte `json:"-"`
  4175. XXX_sizecache int32 `json:"-"`
  4176. }
  4177. func (m *GetLaboratoryReportDetailResponse) Reset() { *m = GetLaboratoryReportDetailResponse{} }
  4178. func (m *GetLaboratoryReportDetailResponse) String() string { return proto.CompactTextString(m) }
  4179. func (*GetLaboratoryReportDetailResponse) ProtoMessage() {}
  4180. func (*GetLaboratoryReportDetailResponse) Descriptor() ([]byte, []int) {
  4181. return fileDescriptor_116e343673f7ffaf, []int{63}
  4182. }
  4183. func (m *GetLaboratoryReportDetailResponse) XXX_Unmarshal(b []byte) error {
  4184. return xxx_messageInfo_GetLaboratoryReportDetailResponse.Unmarshal(m, b)
  4185. }
  4186. func (m *GetLaboratoryReportDetailResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4187. return xxx_messageInfo_GetLaboratoryReportDetailResponse.Marshal(b, m, deterministic)
  4188. }
  4189. func (m *GetLaboratoryReportDetailResponse) XXX_Merge(src proto.Message) {
  4190. xxx_messageInfo_GetLaboratoryReportDetailResponse.Merge(m, src)
  4191. }
  4192. func (m *GetLaboratoryReportDetailResponse) XXX_Size() int {
  4193. return xxx_messageInfo_GetLaboratoryReportDetailResponse.Size(m)
  4194. }
  4195. func (m *GetLaboratoryReportDetailResponse) XXX_DiscardUnknown() {
  4196. xxx_messageInfo_GetLaboratoryReportDetailResponse.DiscardUnknown(m)
  4197. }
  4198. var xxx_messageInfo_GetLaboratoryReportDetailResponse proto.InternalMessageInfo
  4199. func (m *GetLaboratoryReportDetailResponse) GetResult() *Result {
  4200. if m != nil {
  4201. return m.Result
  4202. }
  4203. return nil
  4204. }
  4205. func (m *GetLaboratoryReportDetailResponse) GetDetail() []*LaboratoryReportDetail {
  4206. if m != nil {
  4207. return m.Detail
  4208. }
  4209. return nil
  4210. }
  4211. func (m *GetLaboratoryReportDetailResponse) GetInspectionName() string {
  4212. if m != nil {
  4213. return m.InspectionName
  4214. }
  4215. return ""
  4216. }
  4217. func (m *GetLaboratoryReportDetailResponse) GetInspectionDate() int64 {
  4218. if m != nil {
  4219. return m.InspectionDate
  4220. }
  4221. return 0
  4222. }
  4223. func (m *GetLaboratoryReportDetailResponse) GetClinicalDiagnosis() string {
  4224. if m != nil {
  4225. return m.ClinicalDiagnosis
  4226. }
  4227. return ""
  4228. }
  4229. func (m *GetLaboratoryReportDetailResponse) GetReportDoctorName() string {
  4230. if m != nil {
  4231. return m.ReportDoctorName
  4232. }
  4233. return ""
  4234. }
  4235. func (m *GetLaboratoryReportDetailResponse) GetCheckDoctorName() string {
  4236. if m != nil {
  4237. return m.CheckDoctorName
  4238. }
  4239. return ""
  4240. }
  4241. func (m *GetLaboratoryReportDetailResponse) GetStatus() int32 {
  4242. if m != nil {
  4243. return m.Status
  4244. }
  4245. return 0
  4246. }
  4247. //根据门诊ID获取检查结果列表请求
  4248. type GetInspectionReportListByHisPatientIdRequest struct {
  4249. HisPatientId string `protobuf:"bytes,1,opt,name=hisPatientId,proto3" json:"hisPatientId,omitempty"`
  4250. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4251. XXX_unrecognized []byte `json:"-"`
  4252. XXX_sizecache int32 `json:"-"`
  4253. }
  4254. func (m *GetInspectionReportListByHisPatientIdRequest) Reset() {
  4255. *m = GetInspectionReportListByHisPatientIdRequest{}
  4256. }
  4257. func (m *GetInspectionReportListByHisPatientIdRequest) String() string {
  4258. return proto.CompactTextString(m)
  4259. }
  4260. func (*GetInspectionReportListByHisPatientIdRequest) ProtoMessage() {}
  4261. func (*GetInspectionReportListByHisPatientIdRequest) Descriptor() ([]byte, []int) {
  4262. return fileDescriptor_116e343673f7ffaf, []int{64}
  4263. }
  4264. func (m *GetInspectionReportListByHisPatientIdRequest) XXX_Unmarshal(b []byte) error {
  4265. return xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest.Unmarshal(m, b)
  4266. }
  4267. func (m *GetInspectionReportListByHisPatientIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4268. return xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest.Marshal(b, m, deterministic)
  4269. }
  4270. func (m *GetInspectionReportListByHisPatientIdRequest) XXX_Merge(src proto.Message) {
  4271. xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest.Merge(m, src)
  4272. }
  4273. func (m *GetInspectionReportListByHisPatientIdRequest) XXX_Size() int {
  4274. return xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest.Size(m)
  4275. }
  4276. func (m *GetInspectionReportListByHisPatientIdRequest) XXX_DiscardUnknown() {
  4277. xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest.DiscardUnknown(m)
  4278. }
  4279. var xxx_messageInfo_GetInspectionReportListByHisPatientIdRequest proto.InternalMessageInfo
  4280. func (m *GetInspectionReportListByHisPatientIdRequest) GetHisPatientId() string {
  4281. if m != nil {
  4282. return m.HisPatientId
  4283. }
  4284. return ""
  4285. }
  4286. //根据门诊ID获取检查结果列表响应
  4287. type GetInspectionReportListByHisPatientIdResponse struct {
  4288. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  4289. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  4290. Report []*InspectionReport `protobuf:"bytes,3,rep,name=report,proto3" json:"report,omitempty"`
  4291. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4292. XXX_unrecognized []byte `json:"-"`
  4293. XXX_sizecache int32 `json:"-"`
  4294. }
  4295. func (m *GetInspectionReportListByHisPatientIdResponse) Reset() {
  4296. *m = GetInspectionReportListByHisPatientIdResponse{}
  4297. }
  4298. func (m *GetInspectionReportListByHisPatientIdResponse) String() string {
  4299. return proto.CompactTextString(m)
  4300. }
  4301. func (*GetInspectionReportListByHisPatientIdResponse) ProtoMessage() {}
  4302. func (*GetInspectionReportListByHisPatientIdResponse) Descriptor() ([]byte, []int) {
  4303. return fileDescriptor_116e343673f7ffaf, []int{65}
  4304. }
  4305. func (m *GetInspectionReportListByHisPatientIdResponse) XXX_Unmarshal(b []byte) error {
  4306. return xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse.Unmarshal(m, b)
  4307. }
  4308. func (m *GetInspectionReportListByHisPatientIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4309. return xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse.Marshal(b, m, deterministic)
  4310. }
  4311. func (m *GetInspectionReportListByHisPatientIdResponse) XXX_Merge(src proto.Message) {
  4312. xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse.Merge(m, src)
  4313. }
  4314. func (m *GetInspectionReportListByHisPatientIdResponse) XXX_Size() int {
  4315. return xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse.Size(m)
  4316. }
  4317. func (m *GetInspectionReportListByHisPatientIdResponse) XXX_DiscardUnknown() {
  4318. xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse.DiscardUnknown(m)
  4319. }
  4320. var xxx_messageInfo_GetInspectionReportListByHisPatientIdResponse proto.InternalMessageInfo
  4321. func (m *GetInspectionReportListByHisPatientIdResponse) GetCode() int32 {
  4322. if m != nil {
  4323. return m.Code
  4324. }
  4325. return 0
  4326. }
  4327. func (m *GetInspectionReportListByHisPatientIdResponse) GetMsg() string {
  4328. if m != nil {
  4329. return m.Msg
  4330. }
  4331. return ""
  4332. }
  4333. func (m *GetInspectionReportListByHisPatientIdResponse) GetReport() []*InspectionReport {
  4334. if m != nil {
  4335. return m.Report
  4336. }
  4337. return nil
  4338. }
  4339. //根据门诊ID获取化验报告列表请求
  4340. type GetLaboratoryReportListByHisPatientIdRequest struct {
  4341. HisPatientId string `protobuf:"bytes,1,opt,name=hisPatientId,proto3" json:"hisPatientId,omitempty"`
  4342. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4343. XXX_unrecognized []byte `json:"-"`
  4344. XXX_sizecache int32 `json:"-"`
  4345. }
  4346. func (m *GetLaboratoryReportListByHisPatientIdRequest) Reset() {
  4347. *m = GetLaboratoryReportListByHisPatientIdRequest{}
  4348. }
  4349. func (m *GetLaboratoryReportListByHisPatientIdRequest) String() string {
  4350. return proto.CompactTextString(m)
  4351. }
  4352. func (*GetLaboratoryReportListByHisPatientIdRequest) ProtoMessage() {}
  4353. func (*GetLaboratoryReportListByHisPatientIdRequest) Descriptor() ([]byte, []int) {
  4354. return fileDescriptor_116e343673f7ffaf, []int{66}
  4355. }
  4356. func (m *GetLaboratoryReportListByHisPatientIdRequest) XXX_Unmarshal(b []byte) error {
  4357. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest.Unmarshal(m, b)
  4358. }
  4359. func (m *GetLaboratoryReportListByHisPatientIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4360. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest.Marshal(b, m, deterministic)
  4361. }
  4362. func (m *GetLaboratoryReportListByHisPatientIdRequest) XXX_Merge(src proto.Message) {
  4363. xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest.Merge(m, src)
  4364. }
  4365. func (m *GetLaboratoryReportListByHisPatientIdRequest) XXX_Size() int {
  4366. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest.Size(m)
  4367. }
  4368. func (m *GetLaboratoryReportListByHisPatientIdRequest) XXX_DiscardUnknown() {
  4369. xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest.DiscardUnknown(m)
  4370. }
  4371. var xxx_messageInfo_GetLaboratoryReportListByHisPatientIdRequest proto.InternalMessageInfo
  4372. func (m *GetLaboratoryReportListByHisPatientIdRequest) GetHisPatientId() string {
  4373. if m != nil {
  4374. return m.HisPatientId
  4375. }
  4376. return ""
  4377. }
  4378. //根据门诊ID获取化验报告列表响应
  4379. type GetLaboratoryReportListByHisPatientIdResponse struct {
  4380. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  4381. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  4382. Report []*LaboratoryReport `protobuf:"bytes,3,rep,name=report,proto3" json:"report,omitempty"`
  4383. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4384. XXX_unrecognized []byte `json:"-"`
  4385. XXX_sizecache int32 `json:"-"`
  4386. }
  4387. func (m *GetLaboratoryReportListByHisPatientIdResponse) Reset() {
  4388. *m = GetLaboratoryReportListByHisPatientIdResponse{}
  4389. }
  4390. func (m *GetLaboratoryReportListByHisPatientIdResponse) String() string {
  4391. return proto.CompactTextString(m)
  4392. }
  4393. func (*GetLaboratoryReportListByHisPatientIdResponse) ProtoMessage() {}
  4394. func (*GetLaboratoryReportListByHisPatientIdResponse) Descriptor() ([]byte, []int) {
  4395. return fileDescriptor_116e343673f7ffaf, []int{67}
  4396. }
  4397. func (m *GetLaboratoryReportListByHisPatientIdResponse) XXX_Unmarshal(b []byte) error {
  4398. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse.Unmarshal(m, b)
  4399. }
  4400. func (m *GetLaboratoryReportListByHisPatientIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4401. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse.Marshal(b, m, deterministic)
  4402. }
  4403. func (m *GetLaboratoryReportListByHisPatientIdResponse) XXX_Merge(src proto.Message) {
  4404. xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse.Merge(m, src)
  4405. }
  4406. func (m *GetLaboratoryReportListByHisPatientIdResponse) XXX_Size() int {
  4407. return xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse.Size(m)
  4408. }
  4409. func (m *GetLaboratoryReportListByHisPatientIdResponse) XXX_DiscardUnknown() {
  4410. xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse.DiscardUnknown(m)
  4411. }
  4412. var xxx_messageInfo_GetLaboratoryReportListByHisPatientIdResponse proto.InternalMessageInfo
  4413. func (m *GetLaboratoryReportListByHisPatientIdResponse) GetCode() int32 {
  4414. if m != nil {
  4415. return m.Code
  4416. }
  4417. return 0
  4418. }
  4419. func (m *GetLaboratoryReportListByHisPatientIdResponse) GetMsg() string {
  4420. if m != nil {
  4421. return m.Msg
  4422. }
  4423. return ""
  4424. }
  4425. func (m *GetLaboratoryReportListByHisPatientIdResponse) GetReport() []*LaboratoryReport {
  4426. if m != nil {
  4427. return m.Report
  4428. }
  4429. return nil
  4430. }
  4431. //根据就诊流水号获取门诊病历
  4432. type GetMedicalRecordByClinicCodeRequest struct {
  4433. ClinicCode string `protobuf:"bytes,1,opt,name=clinicCode,proto3" json:"clinicCode,omitempty"`
  4434. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4435. XXX_unrecognized []byte `json:"-"`
  4436. XXX_sizecache int32 `json:"-"`
  4437. }
  4438. func (m *GetMedicalRecordByClinicCodeRequest) Reset() { *m = GetMedicalRecordByClinicCodeRequest{} }
  4439. func (m *GetMedicalRecordByClinicCodeRequest) String() string { return proto.CompactTextString(m) }
  4440. func (*GetMedicalRecordByClinicCodeRequest) ProtoMessage() {}
  4441. func (*GetMedicalRecordByClinicCodeRequest) Descriptor() ([]byte, []int) {
  4442. return fileDescriptor_116e343673f7ffaf, []int{68}
  4443. }
  4444. func (m *GetMedicalRecordByClinicCodeRequest) XXX_Unmarshal(b []byte) error {
  4445. return xxx_messageInfo_GetMedicalRecordByClinicCodeRequest.Unmarshal(m, b)
  4446. }
  4447. func (m *GetMedicalRecordByClinicCodeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4448. return xxx_messageInfo_GetMedicalRecordByClinicCodeRequest.Marshal(b, m, deterministic)
  4449. }
  4450. func (m *GetMedicalRecordByClinicCodeRequest) XXX_Merge(src proto.Message) {
  4451. xxx_messageInfo_GetMedicalRecordByClinicCodeRequest.Merge(m, src)
  4452. }
  4453. func (m *GetMedicalRecordByClinicCodeRequest) XXX_Size() int {
  4454. return xxx_messageInfo_GetMedicalRecordByClinicCodeRequest.Size(m)
  4455. }
  4456. func (m *GetMedicalRecordByClinicCodeRequest) XXX_DiscardUnknown() {
  4457. xxx_messageInfo_GetMedicalRecordByClinicCodeRequest.DiscardUnknown(m)
  4458. }
  4459. var xxx_messageInfo_GetMedicalRecordByClinicCodeRequest proto.InternalMessageInfo
  4460. func (m *GetMedicalRecordByClinicCodeRequest) GetClinicCode() string {
  4461. if m != nil {
  4462. return m.ClinicCode
  4463. }
  4464. return ""
  4465. }
  4466. //根据就诊流水号获取门诊病历
  4467. type GetMedicalRecordByClinicCodeResponse struct {
  4468. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4469. Detail *MedicalRecordsDetail `protobuf:"bytes,2,opt,name=detail,proto3" json:"detail,omitempty"`
  4470. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4471. XXX_unrecognized []byte `json:"-"`
  4472. XXX_sizecache int32 `json:"-"`
  4473. }
  4474. func (m *GetMedicalRecordByClinicCodeResponse) Reset() { *m = GetMedicalRecordByClinicCodeResponse{} }
  4475. func (m *GetMedicalRecordByClinicCodeResponse) String() string { return proto.CompactTextString(m) }
  4476. func (*GetMedicalRecordByClinicCodeResponse) ProtoMessage() {}
  4477. func (*GetMedicalRecordByClinicCodeResponse) Descriptor() ([]byte, []int) {
  4478. return fileDescriptor_116e343673f7ffaf, []int{69}
  4479. }
  4480. func (m *GetMedicalRecordByClinicCodeResponse) XXX_Unmarshal(b []byte) error {
  4481. return xxx_messageInfo_GetMedicalRecordByClinicCodeResponse.Unmarshal(m, b)
  4482. }
  4483. func (m *GetMedicalRecordByClinicCodeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4484. return xxx_messageInfo_GetMedicalRecordByClinicCodeResponse.Marshal(b, m, deterministic)
  4485. }
  4486. func (m *GetMedicalRecordByClinicCodeResponse) XXX_Merge(src proto.Message) {
  4487. xxx_messageInfo_GetMedicalRecordByClinicCodeResponse.Merge(m, src)
  4488. }
  4489. func (m *GetMedicalRecordByClinicCodeResponse) XXX_Size() int {
  4490. return xxx_messageInfo_GetMedicalRecordByClinicCodeResponse.Size(m)
  4491. }
  4492. func (m *GetMedicalRecordByClinicCodeResponse) XXX_DiscardUnknown() {
  4493. xxx_messageInfo_GetMedicalRecordByClinicCodeResponse.DiscardUnknown(m)
  4494. }
  4495. var xxx_messageInfo_GetMedicalRecordByClinicCodeResponse proto.InternalMessageInfo
  4496. func (m *GetMedicalRecordByClinicCodeResponse) GetResult() *Result {
  4497. if m != nil {
  4498. return m.Result
  4499. }
  4500. return nil
  4501. }
  4502. func (m *GetMedicalRecordByClinicCodeResponse) GetDetail() *MedicalRecordsDetail {
  4503. if m != nil {
  4504. return m.Detail
  4505. }
  4506. return nil
  4507. }
  4508. //根据用户名和密码登录Request
  4509. type LoginWithUserAndPsdRequest struct {
  4510. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  4511. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  4512. Ip string `protobuf:"bytes,3,opt,name=ip,proto3" json:"ip,omitempty"`
  4513. Type int32 `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"`
  4514. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4515. XXX_unrecognized []byte `json:"-"`
  4516. XXX_sizecache int32 `json:"-"`
  4517. }
  4518. func (m *LoginWithUserAndPsdRequest) Reset() { *m = LoginWithUserAndPsdRequest{} }
  4519. func (m *LoginWithUserAndPsdRequest) String() string { return proto.CompactTextString(m) }
  4520. func (*LoginWithUserAndPsdRequest) ProtoMessage() {}
  4521. func (*LoginWithUserAndPsdRequest) Descriptor() ([]byte, []int) {
  4522. return fileDescriptor_116e343673f7ffaf, []int{70}
  4523. }
  4524. func (m *LoginWithUserAndPsdRequest) XXX_Unmarshal(b []byte) error {
  4525. return xxx_messageInfo_LoginWithUserAndPsdRequest.Unmarshal(m, b)
  4526. }
  4527. func (m *LoginWithUserAndPsdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4528. return xxx_messageInfo_LoginWithUserAndPsdRequest.Marshal(b, m, deterministic)
  4529. }
  4530. func (m *LoginWithUserAndPsdRequest) XXX_Merge(src proto.Message) {
  4531. xxx_messageInfo_LoginWithUserAndPsdRequest.Merge(m, src)
  4532. }
  4533. func (m *LoginWithUserAndPsdRequest) XXX_Size() int {
  4534. return xxx_messageInfo_LoginWithUserAndPsdRequest.Size(m)
  4535. }
  4536. func (m *LoginWithUserAndPsdRequest) XXX_DiscardUnknown() {
  4537. xxx_messageInfo_LoginWithUserAndPsdRequest.DiscardUnknown(m)
  4538. }
  4539. var xxx_messageInfo_LoginWithUserAndPsdRequest proto.InternalMessageInfo
  4540. func (m *LoginWithUserAndPsdRequest) GetUsername() string {
  4541. if m != nil {
  4542. return m.Username
  4543. }
  4544. return ""
  4545. }
  4546. func (m *LoginWithUserAndPsdRequest) GetPassword() string {
  4547. if m != nil {
  4548. return m.Password
  4549. }
  4550. return ""
  4551. }
  4552. func (m *LoginWithUserAndPsdRequest) GetIp() string {
  4553. if m != nil {
  4554. return m.Ip
  4555. }
  4556. return ""
  4557. }
  4558. func (m *LoginWithUserAndPsdRequest) GetType() int32 {
  4559. if m != nil {
  4560. return m.Type
  4561. }
  4562. return 0
  4563. }
  4564. //根据用户名和密码登录Response
  4565. type LoginWithUserAndPsdResponse struct {
  4566. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4567. DoctorId int32 `protobuf:"varint,2,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  4568. DoctorName string `protobuf:"bytes,3,opt,name=doctorName,proto3" json:"doctorName,omitempty"`
  4569. DeptIds string `protobuf:"bytes,4,opt,name=deptIds,proto3" json:"deptIds,omitempty"`
  4570. DeptName string `protobuf:"bytes,5,opt,name=deptName,proto3" json:"deptName,omitempty"`
  4571. CheckSign int32 `protobuf:"varint,6,opt,name=checkSign,proto3" json:"checkSign,omitempty"`
  4572. SignUrl string `protobuf:"bytes,7,opt,name=signUrl,proto3" json:"signUrl,omitempty"`
  4573. DoctorSignId int32 `protobuf:"varint,8,opt,name=doctorSignId,proto3" json:"doctorSignId,omitempty"`
  4574. DoctorAvatar string `protobuf:"bytes,9,opt,name=doctorAvatar,proto3" json:"doctorAvatar,omitempty"`
  4575. IsFirstLogin int32 `protobuf:"varint,10,opt,name=isFirstLogin,proto3" json:"isFirstLogin,omitempty"`
  4576. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4577. XXX_unrecognized []byte `json:"-"`
  4578. XXX_sizecache int32 `json:"-"`
  4579. }
  4580. func (m *LoginWithUserAndPsdResponse) Reset() { *m = LoginWithUserAndPsdResponse{} }
  4581. func (m *LoginWithUserAndPsdResponse) String() string { return proto.CompactTextString(m) }
  4582. func (*LoginWithUserAndPsdResponse) ProtoMessage() {}
  4583. func (*LoginWithUserAndPsdResponse) Descriptor() ([]byte, []int) {
  4584. return fileDescriptor_116e343673f7ffaf, []int{71}
  4585. }
  4586. func (m *LoginWithUserAndPsdResponse) XXX_Unmarshal(b []byte) error {
  4587. return xxx_messageInfo_LoginWithUserAndPsdResponse.Unmarshal(m, b)
  4588. }
  4589. func (m *LoginWithUserAndPsdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4590. return xxx_messageInfo_LoginWithUserAndPsdResponse.Marshal(b, m, deterministic)
  4591. }
  4592. func (m *LoginWithUserAndPsdResponse) XXX_Merge(src proto.Message) {
  4593. xxx_messageInfo_LoginWithUserAndPsdResponse.Merge(m, src)
  4594. }
  4595. func (m *LoginWithUserAndPsdResponse) XXX_Size() int {
  4596. return xxx_messageInfo_LoginWithUserAndPsdResponse.Size(m)
  4597. }
  4598. func (m *LoginWithUserAndPsdResponse) XXX_DiscardUnknown() {
  4599. xxx_messageInfo_LoginWithUserAndPsdResponse.DiscardUnknown(m)
  4600. }
  4601. var xxx_messageInfo_LoginWithUserAndPsdResponse proto.InternalMessageInfo
  4602. func (m *LoginWithUserAndPsdResponse) GetResult() *Result {
  4603. if m != nil {
  4604. return m.Result
  4605. }
  4606. return nil
  4607. }
  4608. func (m *LoginWithUserAndPsdResponse) GetDoctorId() int32 {
  4609. if m != nil {
  4610. return m.DoctorId
  4611. }
  4612. return 0
  4613. }
  4614. func (m *LoginWithUserAndPsdResponse) GetDoctorName() string {
  4615. if m != nil {
  4616. return m.DoctorName
  4617. }
  4618. return ""
  4619. }
  4620. func (m *LoginWithUserAndPsdResponse) GetDeptIds() string {
  4621. if m != nil {
  4622. return m.DeptIds
  4623. }
  4624. return ""
  4625. }
  4626. func (m *LoginWithUserAndPsdResponse) GetDeptName() string {
  4627. if m != nil {
  4628. return m.DeptName
  4629. }
  4630. return ""
  4631. }
  4632. func (m *LoginWithUserAndPsdResponse) GetCheckSign() int32 {
  4633. if m != nil {
  4634. return m.CheckSign
  4635. }
  4636. return 0
  4637. }
  4638. func (m *LoginWithUserAndPsdResponse) GetSignUrl() string {
  4639. if m != nil {
  4640. return m.SignUrl
  4641. }
  4642. return ""
  4643. }
  4644. func (m *LoginWithUserAndPsdResponse) GetDoctorSignId() int32 {
  4645. if m != nil {
  4646. return m.DoctorSignId
  4647. }
  4648. return 0
  4649. }
  4650. func (m *LoginWithUserAndPsdResponse) GetDoctorAvatar() string {
  4651. if m != nil {
  4652. return m.DoctorAvatar
  4653. }
  4654. return ""
  4655. }
  4656. func (m *LoginWithUserAndPsdResponse) GetIsFirstLogin() int32 {
  4657. if m != nil {
  4658. return m.IsFirstLogin
  4659. }
  4660. return 0
  4661. }
  4662. //跟新密码Request
  4663. type UpdatePasswordRequest struct {
  4664. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  4665. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  4666. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4667. XXX_unrecognized []byte `json:"-"`
  4668. XXX_sizecache int32 `json:"-"`
  4669. }
  4670. func (m *UpdatePasswordRequest) Reset() { *m = UpdatePasswordRequest{} }
  4671. func (m *UpdatePasswordRequest) String() string { return proto.CompactTextString(m) }
  4672. func (*UpdatePasswordRequest) ProtoMessage() {}
  4673. func (*UpdatePasswordRequest) Descriptor() ([]byte, []int) {
  4674. return fileDescriptor_116e343673f7ffaf, []int{72}
  4675. }
  4676. func (m *UpdatePasswordRequest) XXX_Unmarshal(b []byte) error {
  4677. return xxx_messageInfo_UpdatePasswordRequest.Unmarshal(m, b)
  4678. }
  4679. func (m *UpdatePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4680. return xxx_messageInfo_UpdatePasswordRequest.Marshal(b, m, deterministic)
  4681. }
  4682. func (m *UpdatePasswordRequest) XXX_Merge(src proto.Message) {
  4683. xxx_messageInfo_UpdatePasswordRequest.Merge(m, src)
  4684. }
  4685. func (m *UpdatePasswordRequest) XXX_Size() int {
  4686. return xxx_messageInfo_UpdatePasswordRequest.Size(m)
  4687. }
  4688. func (m *UpdatePasswordRequest) XXX_DiscardUnknown() {
  4689. xxx_messageInfo_UpdatePasswordRequest.DiscardUnknown(m)
  4690. }
  4691. var xxx_messageInfo_UpdatePasswordRequest proto.InternalMessageInfo
  4692. func (m *UpdatePasswordRequest) GetMobile() string {
  4693. if m != nil {
  4694. return m.Mobile
  4695. }
  4696. return ""
  4697. }
  4698. func (m *UpdatePasswordRequest) GetPassword() string {
  4699. if m != nil {
  4700. return m.Password
  4701. }
  4702. return ""
  4703. }
  4704. //修改密码Request
  4705. type ChangePasswordRequest struct {
  4706. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  4707. OldPassword string `protobuf:"bytes,2,opt,name=oldPassword,proto3" json:"oldPassword,omitempty"`
  4708. NewPassword string `protobuf:"bytes,3,opt,name=newPassword,proto3" json:"newPassword,omitempty"`
  4709. VerifyPassword string `protobuf:"bytes,4,opt,name=verifyPassword,proto3" json:"verifyPassword,omitempty"`
  4710. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4711. XXX_unrecognized []byte `json:"-"`
  4712. XXX_sizecache int32 `json:"-"`
  4713. }
  4714. func (m *ChangePasswordRequest) Reset() { *m = ChangePasswordRequest{} }
  4715. func (m *ChangePasswordRequest) String() string { return proto.CompactTextString(m) }
  4716. func (*ChangePasswordRequest) ProtoMessage() {}
  4717. func (*ChangePasswordRequest) Descriptor() ([]byte, []int) {
  4718. return fileDescriptor_116e343673f7ffaf, []int{73}
  4719. }
  4720. func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error {
  4721. return xxx_messageInfo_ChangePasswordRequest.Unmarshal(m, b)
  4722. }
  4723. func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4724. return xxx_messageInfo_ChangePasswordRequest.Marshal(b, m, deterministic)
  4725. }
  4726. func (m *ChangePasswordRequest) XXX_Merge(src proto.Message) {
  4727. xxx_messageInfo_ChangePasswordRequest.Merge(m, src)
  4728. }
  4729. func (m *ChangePasswordRequest) XXX_Size() int {
  4730. return xxx_messageInfo_ChangePasswordRequest.Size(m)
  4731. }
  4732. func (m *ChangePasswordRequest) XXX_DiscardUnknown() {
  4733. xxx_messageInfo_ChangePasswordRequest.DiscardUnknown(m)
  4734. }
  4735. var xxx_messageInfo_ChangePasswordRequest proto.InternalMessageInfo
  4736. func (m *ChangePasswordRequest) GetUserId() int32 {
  4737. if m != nil {
  4738. return m.UserId
  4739. }
  4740. return 0
  4741. }
  4742. func (m *ChangePasswordRequest) GetOldPassword() string {
  4743. if m != nil {
  4744. return m.OldPassword
  4745. }
  4746. return ""
  4747. }
  4748. func (m *ChangePasswordRequest) GetNewPassword() string {
  4749. if m != nil {
  4750. return m.NewPassword
  4751. }
  4752. return ""
  4753. }
  4754. func (m *ChangePasswordRequest) GetVerifyPassword() string {
  4755. if m != nil {
  4756. return m.VerifyPassword
  4757. }
  4758. return ""
  4759. }
  4760. //根据code拉取用户信息请求
  4761. type GetUserInfoByCodeRequest struct {
  4762. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  4763. Type int32 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
  4764. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4765. XXX_unrecognized []byte `json:"-"`
  4766. XXX_sizecache int32 `json:"-"`
  4767. }
  4768. func (m *GetUserInfoByCodeRequest) Reset() { *m = GetUserInfoByCodeRequest{} }
  4769. func (m *GetUserInfoByCodeRequest) String() string { return proto.CompactTextString(m) }
  4770. func (*GetUserInfoByCodeRequest) ProtoMessage() {}
  4771. func (*GetUserInfoByCodeRequest) Descriptor() ([]byte, []int) {
  4772. return fileDescriptor_116e343673f7ffaf, []int{74}
  4773. }
  4774. func (m *GetUserInfoByCodeRequest) XXX_Unmarshal(b []byte) error {
  4775. return xxx_messageInfo_GetUserInfoByCodeRequest.Unmarshal(m, b)
  4776. }
  4777. func (m *GetUserInfoByCodeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4778. return xxx_messageInfo_GetUserInfoByCodeRequest.Marshal(b, m, deterministic)
  4779. }
  4780. func (m *GetUserInfoByCodeRequest) XXX_Merge(src proto.Message) {
  4781. xxx_messageInfo_GetUserInfoByCodeRequest.Merge(m, src)
  4782. }
  4783. func (m *GetUserInfoByCodeRequest) XXX_Size() int {
  4784. return xxx_messageInfo_GetUserInfoByCodeRequest.Size(m)
  4785. }
  4786. func (m *GetUserInfoByCodeRequest) XXX_DiscardUnknown() {
  4787. xxx_messageInfo_GetUserInfoByCodeRequest.DiscardUnknown(m)
  4788. }
  4789. var xxx_messageInfo_GetUserInfoByCodeRequest proto.InternalMessageInfo
  4790. func (m *GetUserInfoByCodeRequest) GetCode() string {
  4791. if m != nil {
  4792. return m.Code
  4793. }
  4794. return ""
  4795. }
  4796. func (m *GetUserInfoByCodeRequest) GetType() int32 {
  4797. if m != nil {
  4798. return m.Type
  4799. }
  4800. return 0
  4801. }
  4802. //根据code拉取用户信息响应
  4803. type GetUserInfoByCodeResponse struct {
  4804. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4805. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  4806. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId,omitempty"`
  4807. UnionId string `protobuf:"bytes,4,opt,name=unionId,proto3" json:"unionId,omitempty"`
  4808. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  4809. RealName string `protobuf:"bytes,6,opt,name=realName,proto3" json:"realName,omitempty"`
  4810. Avatar string `protobuf:"bytes,7,opt,name=avatar,proto3" json:"avatar,omitempty"`
  4811. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4812. XXX_unrecognized []byte `json:"-"`
  4813. XXX_sizecache int32 `json:"-"`
  4814. }
  4815. func (m *GetUserInfoByCodeResponse) Reset() { *m = GetUserInfoByCodeResponse{} }
  4816. func (m *GetUserInfoByCodeResponse) String() string { return proto.CompactTextString(m) }
  4817. func (*GetUserInfoByCodeResponse) ProtoMessage() {}
  4818. func (*GetUserInfoByCodeResponse) Descriptor() ([]byte, []int) {
  4819. return fileDescriptor_116e343673f7ffaf, []int{75}
  4820. }
  4821. func (m *GetUserInfoByCodeResponse) XXX_Unmarshal(b []byte) error {
  4822. return xxx_messageInfo_GetUserInfoByCodeResponse.Unmarshal(m, b)
  4823. }
  4824. func (m *GetUserInfoByCodeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4825. return xxx_messageInfo_GetUserInfoByCodeResponse.Marshal(b, m, deterministic)
  4826. }
  4827. func (m *GetUserInfoByCodeResponse) XXX_Merge(src proto.Message) {
  4828. xxx_messageInfo_GetUserInfoByCodeResponse.Merge(m, src)
  4829. }
  4830. func (m *GetUserInfoByCodeResponse) XXX_Size() int {
  4831. return xxx_messageInfo_GetUserInfoByCodeResponse.Size(m)
  4832. }
  4833. func (m *GetUserInfoByCodeResponse) XXX_DiscardUnknown() {
  4834. xxx_messageInfo_GetUserInfoByCodeResponse.DiscardUnknown(m)
  4835. }
  4836. var xxx_messageInfo_GetUserInfoByCodeResponse proto.InternalMessageInfo
  4837. func (m *GetUserInfoByCodeResponse) GetResult() *Result {
  4838. if m != nil {
  4839. return m.Result
  4840. }
  4841. return nil
  4842. }
  4843. func (m *GetUserInfoByCodeResponse) GetUserId() int32 {
  4844. if m != nil {
  4845. return m.UserId
  4846. }
  4847. return 0
  4848. }
  4849. func (m *GetUserInfoByCodeResponse) GetOpenId() string {
  4850. if m != nil {
  4851. return m.OpenId
  4852. }
  4853. return ""
  4854. }
  4855. func (m *GetUserInfoByCodeResponse) GetUnionId() string {
  4856. if m != nil {
  4857. return m.UnionId
  4858. }
  4859. return ""
  4860. }
  4861. func (m *GetUserInfoByCodeResponse) GetNickname() string {
  4862. if m != nil {
  4863. return m.Nickname
  4864. }
  4865. return ""
  4866. }
  4867. func (m *GetUserInfoByCodeResponse) GetRealName() string {
  4868. if m != nil {
  4869. return m.RealName
  4870. }
  4871. return ""
  4872. }
  4873. func (m *GetUserInfoByCodeResponse) GetAvatar() string {
  4874. if m != nil {
  4875. return m.Avatar
  4876. }
  4877. return ""
  4878. }
  4879. //根据openid拉取用户信息请求
  4880. type GetUserInfoByOpenIdRequest struct {
  4881. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  4882. Terminal int32 `protobuf:"varint,2,opt,name=terminal,proto3" json:"terminal,omitempty"`
  4883. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4884. XXX_unrecognized []byte `json:"-"`
  4885. XXX_sizecache int32 `json:"-"`
  4886. }
  4887. func (m *GetUserInfoByOpenIdRequest) Reset() { *m = GetUserInfoByOpenIdRequest{} }
  4888. func (m *GetUserInfoByOpenIdRequest) String() string { return proto.CompactTextString(m) }
  4889. func (*GetUserInfoByOpenIdRequest) ProtoMessage() {}
  4890. func (*GetUserInfoByOpenIdRequest) Descriptor() ([]byte, []int) {
  4891. return fileDescriptor_116e343673f7ffaf, []int{76}
  4892. }
  4893. func (m *GetUserInfoByOpenIdRequest) XXX_Unmarshal(b []byte) error {
  4894. return xxx_messageInfo_GetUserInfoByOpenIdRequest.Unmarshal(m, b)
  4895. }
  4896. func (m *GetUserInfoByOpenIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4897. return xxx_messageInfo_GetUserInfoByOpenIdRequest.Marshal(b, m, deterministic)
  4898. }
  4899. func (m *GetUserInfoByOpenIdRequest) XXX_Merge(src proto.Message) {
  4900. xxx_messageInfo_GetUserInfoByOpenIdRequest.Merge(m, src)
  4901. }
  4902. func (m *GetUserInfoByOpenIdRequest) XXX_Size() int {
  4903. return xxx_messageInfo_GetUserInfoByOpenIdRequest.Size(m)
  4904. }
  4905. func (m *GetUserInfoByOpenIdRequest) XXX_DiscardUnknown() {
  4906. xxx_messageInfo_GetUserInfoByOpenIdRequest.DiscardUnknown(m)
  4907. }
  4908. var xxx_messageInfo_GetUserInfoByOpenIdRequest proto.InternalMessageInfo
  4909. func (m *GetUserInfoByOpenIdRequest) GetOpenId() string {
  4910. if m != nil {
  4911. return m.OpenId
  4912. }
  4913. return ""
  4914. }
  4915. func (m *GetUserInfoByOpenIdRequest) GetTerminal() int32 {
  4916. if m != nil {
  4917. return m.Terminal
  4918. }
  4919. return 0
  4920. }
  4921. //根据openid拉取用户信息响应
  4922. type GetUserInfoByOpenIdResponse struct {
  4923. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  4924. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  4925. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId,omitempty"`
  4926. UnionId string `protobuf:"bytes,4,opt,name=unionId,proto3" json:"unionId,omitempty"`
  4927. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  4928. RealName string `protobuf:"bytes,6,opt,name=realName,proto3" json:"realName,omitempty"`
  4929. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4930. XXX_unrecognized []byte `json:"-"`
  4931. XXX_sizecache int32 `json:"-"`
  4932. }
  4933. func (m *GetUserInfoByOpenIdResponse) Reset() { *m = GetUserInfoByOpenIdResponse{} }
  4934. func (m *GetUserInfoByOpenIdResponse) String() string { return proto.CompactTextString(m) }
  4935. func (*GetUserInfoByOpenIdResponse) ProtoMessage() {}
  4936. func (*GetUserInfoByOpenIdResponse) Descriptor() ([]byte, []int) {
  4937. return fileDescriptor_116e343673f7ffaf, []int{77}
  4938. }
  4939. func (m *GetUserInfoByOpenIdResponse) XXX_Unmarshal(b []byte) error {
  4940. return xxx_messageInfo_GetUserInfoByOpenIdResponse.Unmarshal(m, b)
  4941. }
  4942. func (m *GetUserInfoByOpenIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4943. return xxx_messageInfo_GetUserInfoByOpenIdResponse.Marshal(b, m, deterministic)
  4944. }
  4945. func (m *GetUserInfoByOpenIdResponse) XXX_Merge(src proto.Message) {
  4946. xxx_messageInfo_GetUserInfoByOpenIdResponse.Merge(m, src)
  4947. }
  4948. func (m *GetUserInfoByOpenIdResponse) XXX_Size() int {
  4949. return xxx_messageInfo_GetUserInfoByOpenIdResponse.Size(m)
  4950. }
  4951. func (m *GetUserInfoByOpenIdResponse) XXX_DiscardUnknown() {
  4952. xxx_messageInfo_GetUserInfoByOpenIdResponse.DiscardUnknown(m)
  4953. }
  4954. var xxx_messageInfo_GetUserInfoByOpenIdResponse proto.InternalMessageInfo
  4955. func (m *GetUserInfoByOpenIdResponse) GetResult() *Result {
  4956. if m != nil {
  4957. return m.Result
  4958. }
  4959. return nil
  4960. }
  4961. func (m *GetUserInfoByOpenIdResponse) GetUserId() int32 {
  4962. if m != nil {
  4963. return m.UserId
  4964. }
  4965. return 0
  4966. }
  4967. func (m *GetUserInfoByOpenIdResponse) GetOpenId() string {
  4968. if m != nil {
  4969. return m.OpenId
  4970. }
  4971. return ""
  4972. }
  4973. func (m *GetUserInfoByOpenIdResponse) GetUnionId() string {
  4974. if m != nil {
  4975. return m.UnionId
  4976. }
  4977. return ""
  4978. }
  4979. func (m *GetUserInfoByOpenIdResponse) GetNickname() string {
  4980. if m != nil {
  4981. return m.Nickname
  4982. }
  4983. return ""
  4984. }
  4985. func (m *GetUserInfoByOpenIdResponse) GetRealName() string {
  4986. if m != nil {
  4987. return m.RealName
  4988. }
  4989. return ""
  4990. }
  4991. //根据用户ID和Terminal获取用户基本信息请求
  4992. type GetUserInfoByUserIdAndTerminalRequest struct {
  4993. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  4994. Terminal int32 `protobuf:"varint,2,opt,name=terminal,proto3" json:"terminal,omitempty"`
  4995. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4996. XXX_unrecognized []byte `json:"-"`
  4997. XXX_sizecache int32 `json:"-"`
  4998. }
  4999. func (m *GetUserInfoByUserIdAndTerminalRequest) Reset() { *m = GetUserInfoByUserIdAndTerminalRequest{} }
  5000. func (m *GetUserInfoByUserIdAndTerminalRequest) String() string { return proto.CompactTextString(m) }
  5001. func (*GetUserInfoByUserIdAndTerminalRequest) ProtoMessage() {}
  5002. func (*GetUserInfoByUserIdAndTerminalRequest) Descriptor() ([]byte, []int) {
  5003. return fileDescriptor_116e343673f7ffaf, []int{78}
  5004. }
  5005. func (m *GetUserInfoByUserIdAndTerminalRequest) XXX_Unmarshal(b []byte) error {
  5006. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest.Unmarshal(m, b)
  5007. }
  5008. func (m *GetUserInfoByUserIdAndTerminalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5009. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest.Marshal(b, m, deterministic)
  5010. }
  5011. func (m *GetUserInfoByUserIdAndTerminalRequest) XXX_Merge(src proto.Message) {
  5012. xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest.Merge(m, src)
  5013. }
  5014. func (m *GetUserInfoByUserIdAndTerminalRequest) XXX_Size() int {
  5015. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest.Size(m)
  5016. }
  5017. func (m *GetUserInfoByUserIdAndTerminalRequest) XXX_DiscardUnknown() {
  5018. xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest.DiscardUnknown(m)
  5019. }
  5020. var xxx_messageInfo_GetUserInfoByUserIdAndTerminalRequest proto.InternalMessageInfo
  5021. func (m *GetUserInfoByUserIdAndTerminalRequest) GetUserId() int32 {
  5022. if m != nil {
  5023. return m.UserId
  5024. }
  5025. return 0
  5026. }
  5027. func (m *GetUserInfoByUserIdAndTerminalRequest) GetTerminal() int32 {
  5028. if m != nil {
  5029. return m.Terminal
  5030. }
  5031. return 0
  5032. }
  5033. //根据用户ID和Terminal获取用户基本信息响应
  5034. type GetUserInfoByUserIdAndTerminalResponse struct {
  5035. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  5036. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  5037. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId,omitempty"`
  5038. UnionId string `protobuf:"bytes,4,opt,name=unionId,proto3" json:"unionId,omitempty"`
  5039. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  5040. RealName string `protobuf:"bytes,6,opt,name=realName,proto3" json:"realName,omitempty"`
  5041. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5042. XXX_unrecognized []byte `json:"-"`
  5043. XXX_sizecache int32 `json:"-"`
  5044. }
  5045. func (m *GetUserInfoByUserIdAndTerminalResponse) Reset() {
  5046. *m = GetUserInfoByUserIdAndTerminalResponse{}
  5047. }
  5048. func (m *GetUserInfoByUserIdAndTerminalResponse) String() string { return proto.CompactTextString(m) }
  5049. func (*GetUserInfoByUserIdAndTerminalResponse) ProtoMessage() {}
  5050. func (*GetUserInfoByUserIdAndTerminalResponse) Descriptor() ([]byte, []int) {
  5051. return fileDescriptor_116e343673f7ffaf, []int{79}
  5052. }
  5053. func (m *GetUserInfoByUserIdAndTerminalResponse) XXX_Unmarshal(b []byte) error {
  5054. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse.Unmarshal(m, b)
  5055. }
  5056. func (m *GetUserInfoByUserIdAndTerminalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5057. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse.Marshal(b, m, deterministic)
  5058. }
  5059. func (m *GetUserInfoByUserIdAndTerminalResponse) XXX_Merge(src proto.Message) {
  5060. xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse.Merge(m, src)
  5061. }
  5062. func (m *GetUserInfoByUserIdAndTerminalResponse) XXX_Size() int {
  5063. return xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse.Size(m)
  5064. }
  5065. func (m *GetUserInfoByUserIdAndTerminalResponse) XXX_DiscardUnknown() {
  5066. xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse.DiscardUnknown(m)
  5067. }
  5068. var xxx_messageInfo_GetUserInfoByUserIdAndTerminalResponse proto.InternalMessageInfo
  5069. func (m *GetUserInfoByUserIdAndTerminalResponse) GetResult() *Result {
  5070. if m != nil {
  5071. return m.Result
  5072. }
  5073. return nil
  5074. }
  5075. func (m *GetUserInfoByUserIdAndTerminalResponse) GetUserId() int32 {
  5076. if m != nil {
  5077. return m.UserId
  5078. }
  5079. return 0
  5080. }
  5081. func (m *GetUserInfoByUserIdAndTerminalResponse) GetOpenId() string {
  5082. if m != nil {
  5083. return m.OpenId
  5084. }
  5085. return ""
  5086. }
  5087. func (m *GetUserInfoByUserIdAndTerminalResponse) GetUnionId() string {
  5088. if m != nil {
  5089. return m.UnionId
  5090. }
  5091. return ""
  5092. }
  5093. func (m *GetUserInfoByUserIdAndTerminalResponse) GetNickname() string {
  5094. if m != nil {
  5095. return m.Nickname
  5096. }
  5097. return ""
  5098. }
  5099. func (m *GetUserInfoByUserIdAndTerminalResponse) GetRealName() string {
  5100. if m != nil {
  5101. return m.RealName
  5102. }
  5103. return ""
  5104. }
  5105. // 有加诊排班的医生
  5106. type ScheduleDoctorInfo struct {
  5107. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  5108. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  5109. Hospital string `protobuf:"bytes,3,opt,name=hospital,proto3" json:"hospital,omitempty"`
  5110. Specialty string `protobuf:"bytes,4,opt,name=specialty,proto3" json:"specialty,omitempty"`
  5111. Title string `protobuf:"bytes,5,opt,name=title,proto3" json:"title,omitempty"`
  5112. Dept string `protobuf:"bytes,6,opt,name=dept,proto3" json:"dept,omitempty"`
  5113. HospitalIds string `protobuf:"bytes,7,opt,name=hospitalIds,proto3" json:"hospitalIds,omitempty"`
  5114. DeptIds string `protobuf:"bytes,8,opt,name=deptIds,proto3" json:"deptIds,omitempty"`
  5115. BriefIntro string `protobuf:"bytes,9,opt,name=briefIntro,proto3" json:"briefIntro,omitempty"`
  5116. Avatar string `protobuf:"bytes,10,opt,name=avatar,proto3" json:"avatar,omitempty"`
  5117. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5118. XXX_unrecognized []byte `json:"-"`
  5119. XXX_sizecache int32 `json:"-"`
  5120. }
  5121. func (m *ScheduleDoctorInfo) Reset() { *m = ScheduleDoctorInfo{} }
  5122. func (m *ScheduleDoctorInfo) String() string { return proto.CompactTextString(m) }
  5123. func (*ScheduleDoctorInfo) ProtoMessage() {}
  5124. func (*ScheduleDoctorInfo) Descriptor() ([]byte, []int) {
  5125. return fileDescriptor_116e343673f7ffaf, []int{80}
  5126. }
  5127. func (m *ScheduleDoctorInfo) XXX_Unmarshal(b []byte) error {
  5128. return xxx_messageInfo_ScheduleDoctorInfo.Unmarshal(m, b)
  5129. }
  5130. func (m *ScheduleDoctorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5131. return xxx_messageInfo_ScheduleDoctorInfo.Marshal(b, m, deterministic)
  5132. }
  5133. func (m *ScheduleDoctorInfo) XXX_Merge(src proto.Message) {
  5134. xxx_messageInfo_ScheduleDoctorInfo.Merge(m, src)
  5135. }
  5136. func (m *ScheduleDoctorInfo) XXX_Size() int {
  5137. return xxx_messageInfo_ScheduleDoctorInfo.Size(m)
  5138. }
  5139. func (m *ScheduleDoctorInfo) XXX_DiscardUnknown() {
  5140. xxx_messageInfo_ScheduleDoctorInfo.DiscardUnknown(m)
  5141. }
  5142. var xxx_messageInfo_ScheduleDoctorInfo proto.InternalMessageInfo
  5143. func (m *ScheduleDoctorInfo) GetDoctorId() int32 {
  5144. if m != nil {
  5145. return m.DoctorId
  5146. }
  5147. return 0
  5148. }
  5149. func (m *ScheduleDoctorInfo) GetName() string {
  5150. if m != nil {
  5151. return m.Name
  5152. }
  5153. return ""
  5154. }
  5155. func (m *ScheduleDoctorInfo) GetHospital() string {
  5156. if m != nil {
  5157. return m.Hospital
  5158. }
  5159. return ""
  5160. }
  5161. func (m *ScheduleDoctorInfo) GetSpecialty() string {
  5162. if m != nil {
  5163. return m.Specialty
  5164. }
  5165. return ""
  5166. }
  5167. func (m *ScheduleDoctorInfo) GetTitle() string {
  5168. if m != nil {
  5169. return m.Title
  5170. }
  5171. return ""
  5172. }
  5173. func (m *ScheduleDoctorInfo) GetDept() string {
  5174. if m != nil {
  5175. return m.Dept
  5176. }
  5177. return ""
  5178. }
  5179. func (m *ScheduleDoctorInfo) GetHospitalIds() string {
  5180. if m != nil {
  5181. return m.HospitalIds
  5182. }
  5183. return ""
  5184. }
  5185. func (m *ScheduleDoctorInfo) GetDeptIds() string {
  5186. if m != nil {
  5187. return m.DeptIds
  5188. }
  5189. return ""
  5190. }
  5191. func (m *ScheduleDoctorInfo) GetBriefIntro() string {
  5192. if m != nil {
  5193. return m.BriefIntro
  5194. }
  5195. return ""
  5196. }
  5197. func (m *ScheduleDoctorInfo) GetAvatar() string {
  5198. if m != nil {
  5199. return m.Avatar
  5200. }
  5201. return ""
  5202. }
  5203. //获取加诊医生列表请求
  5204. type GetScheduleDoctorListRequest struct {
  5205. HospitalId int32 `protobuf:"varint,1,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  5206. DeptId int32 `protobuf:"varint,2,opt,name=deptId,proto3" json:"deptId,omitempty"`
  5207. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  5208. AreaIds string `protobuf:"bytes,4,opt,name=areaIds,proto3" json:"areaIds,omitempty"`
  5209. PageIndex int32 `protobuf:"varint,5,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  5210. PageSize int32 `protobuf:"varint,6,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  5211. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5212. XXX_unrecognized []byte `json:"-"`
  5213. XXX_sizecache int32 `json:"-"`
  5214. }
  5215. func (m *GetScheduleDoctorListRequest) Reset() { *m = GetScheduleDoctorListRequest{} }
  5216. func (m *GetScheduleDoctorListRequest) String() string { return proto.CompactTextString(m) }
  5217. func (*GetScheduleDoctorListRequest) ProtoMessage() {}
  5218. func (*GetScheduleDoctorListRequest) Descriptor() ([]byte, []int) {
  5219. return fileDescriptor_116e343673f7ffaf, []int{81}
  5220. }
  5221. func (m *GetScheduleDoctorListRequest) XXX_Unmarshal(b []byte) error {
  5222. return xxx_messageInfo_GetScheduleDoctorListRequest.Unmarshal(m, b)
  5223. }
  5224. func (m *GetScheduleDoctorListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5225. return xxx_messageInfo_GetScheduleDoctorListRequest.Marshal(b, m, deterministic)
  5226. }
  5227. func (m *GetScheduleDoctorListRequest) XXX_Merge(src proto.Message) {
  5228. xxx_messageInfo_GetScheduleDoctorListRequest.Merge(m, src)
  5229. }
  5230. func (m *GetScheduleDoctorListRequest) XXX_Size() int {
  5231. return xxx_messageInfo_GetScheduleDoctorListRequest.Size(m)
  5232. }
  5233. func (m *GetScheduleDoctorListRequest) XXX_DiscardUnknown() {
  5234. xxx_messageInfo_GetScheduleDoctorListRequest.DiscardUnknown(m)
  5235. }
  5236. var xxx_messageInfo_GetScheduleDoctorListRequest proto.InternalMessageInfo
  5237. func (m *GetScheduleDoctorListRequest) GetHospitalId() int32 {
  5238. if m != nil {
  5239. return m.HospitalId
  5240. }
  5241. return 0
  5242. }
  5243. func (m *GetScheduleDoctorListRequest) GetDeptId() int32 {
  5244. if m != nil {
  5245. return m.DeptId
  5246. }
  5247. return 0
  5248. }
  5249. func (m *GetScheduleDoctorListRequest) GetName() string {
  5250. if m != nil {
  5251. return m.Name
  5252. }
  5253. return ""
  5254. }
  5255. func (m *GetScheduleDoctorListRequest) GetAreaIds() string {
  5256. if m != nil {
  5257. return m.AreaIds
  5258. }
  5259. return ""
  5260. }
  5261. func (m *GetScheduleDoctorListRequest) GetPageIndex() int32 {
  5262. if m != nil {
  5263. return m.PageIndex
  5264. }
  5265. return 0
  5266. }
  5267. func (m *GetScheduleDoctorListRequest) GetPageSize() int32 {
  5268. if m != nil {
  5269. return m.PageSize
  5270. }
  5271. return 0
  5272. }
  5273. //获取加诊医生列表响应
  5274. type GetScheduleDoctorListResponse struct {
  5275. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  5276. ScheduleDoctorInfo []*ScheduleDoctorInfo `protobuf:"bytes,2,rep,name=scheduleDoctorInfo,proto3" json:"scheduleDoctorInfo,omitempty"`
  5277. TotalPages int32 `protobuf:"varint,3,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  5278. Count int32 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
  5279. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5280. XXX_unrecognized []byte `json:"-"`
  5281. XXX_sizecache int32 `json:"-"`
  5282. }
  5283. func (m *GetScheduleDoctorListResponse) Reset() { *m = GetScheduleDoctorListResponse{} }
  5284. func (m *GetScheduleDoctorListResponse) String() string { return proto.CompactTextString(m) }
  5285. func (*GetScheduleDoctorListResponse) ProtoMessage() {}
  5286. func (*GetScheduleDoctorListResponse) Descriptor() ([]byte, []int) {
  5287. return fileDescriptor_116e343673f7ffaf, []int{82}
  5288. }
  5289. func (m *GetScheduleDoctorListResponse) XXX_Unmarshal(b []byte) error {
  5290. return xxx_messageInfo_GetScheduleDoctorListResponse.Unmarshal(m, b)
  5291. }
  5292. func (m *GetScheduleDoctorListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5293. return xxx_messageInfo_GetScheduleDoctorListResponse.Marshal(b, m, deterministic)
  5294. }
  5295. func (m *GetScheduleDoctorListResponse) XXX_Merge(src proto.Message) {
  5296. xxx_messageInfo_GetScheduleDoctorListResponse.Merge(m, src)
  5297. }
  5298. func (m *GetScheduleDoctorListResponse) XXX_Size() int {
  5299. return xxx_messageInfo_GetScheduleDoctorListResponse.Size(m)
  5300. }
  5301. func (m *GetScheduleDoctorListResponse) XXX_DiscardUnknown() {
  5302. xxx_messageInfo_GetScheduleDoctorListResponse.DiscardUnknown(m)
  5303. }
  5304. var xxx_messageInfo_GetScheduleDoctorListResponse proto.InternalMessageInfo
  5305. func (m *GetScheduleDoctorListResponse) GetResult() *Result {
  5306. if m != nil {
  5307. return m.Result
  5308. }
  5309. return nil
  5310. }
  5311. func (m *GetScheduleDoctorListResponse) GetScheduleDoctorInfo() []*ScheduleDoctorInfo {
  5312. if m != nil {
  5313. return m.ScheduleDoctorInfo
  5314. }
  5315. return nil
  5316. }
  5317. func (m *GetScheduleDoctorListResponse) GetTotalPages() int32 {
  5318. if m != nil {
  5319. return m.TotalPages
  5320. }
  5321. return 0
  5322. }
  5323. func (m *GetScheduleDoctorListResponse) GetCount() int32 {
  5324. if m != nil {
  5325. return m.Count
  5326. }
  5327. return 0
  5328. }
  5329. //用户新建就诊人
  5330. type UserCreateMedicalRecordRequest struct {
  5331. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  5332. Age int32 `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"`
  5333. Sex int32 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex,omitempty"`
  5334. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  5335. Mobile string `protobuf:"bytes,5,opt,name=mobile,proto3" json:"mobile,omitempty"`
  5336. RecordId int32 `protobuf:"varint,6,opt,name=recordId,proto3" json:"recordId,omitempty"`
  5337. IdNo string `protobuf:"bytes,7,opt,name=idNo,proto3" json:"idNo,omitempty"`
  5338. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5339. XXX_unrecognized []byte `json:"-"`
  5340. XXX_sizecache int32 `json:"-"`
  5341. }
  5342. func (m *UserCreateMedicalRecordRequest) Reset() { *m = UserCreateMedicalRecordRequest{} }
  5343. func (m *UserCreateMedicalRecordRequest) String() string { return proto.CompactTextString(m) }
  5344. func (*UserCreateMedicalRecordRequest) ProtoMessage() {}
  5345. func (*UserCreateMedicalRecordRequest) Descriptor() ([]byte, []int) {
  5346. return fileDescriptor_116e343673f7ffaf, []int{83}
  5347. }
  5348. func (m *UserCreateMedicalRecordRequest) XXX_Unmarshal(b []byte) error {
  5349. return xxx_messageInfo_UserCreateMedicalRecordRequest.Unmarshal(m, b)
  5350. }
  5351. func (m *UserCreateMedicalRecordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5352. return xxx_messageInfo_UserCreateMedicalRecordRequest.Marshal(b, m, deterministic)
  5353. }
  5354. func (m *UserCreateMedicalRecordRequest) XXX_Merge(src proto.Message) {
  5355. xxx_messageInfo_UserCreateMedicalRecordRequest.Merge(m, src)
  5356. }
  5357. func (m *UserCreateMedicalRecordRequest) XXX_Size() int {
  5358. return xxx_messageInfo_UserCreateMedicalRecordRequest.Size(m)
  5359. }
  5360. func (m *UserCreateMedicalRecordRequest) XXX_DiscardUnknown() {
  5361. xxx_messageInfo_UserCreateMedicalRecordRequest.DiscardUnknown(m)
  5362. }
  5363. var xxx_messageInfo_UserCreateMedicalRecordRequest proto.InternalMessageInfo
  5364. func (m *UserCreateMedicalRecordRequest) GetUserId() int32 {
  5365. if m != nil {
  5366. return m.UserId
  5367. }
  5368. return 0
  5369. }
  5370. func (m *UserCreateMedicalRecordRequest) GetAge() int32 {
  5371. if m != nil {
  5372. return m.Age
  5373. }
  5374. return 0
  5375. }
  5376. func (m *UserCreateMedicalRecordRequest) GetSex() int32 {
  5377. if m != nil {
  5378. return m.Sex
  5379. }
  5380. return 0
  5381. }
  5382. func (m *UserCreateMedicalRecordRequest) GetName() string {
  5383. if m != nil {
  5384. return m.Name
  5385. }
  5386. return ""
  5387. }
  5388. func (m *UserCreateMedicalRecordRequest) GetMobile() string {
  5389. if m != nil {
  5390. return m.Mobile
  5391. }
  5392. return ""
  5393. }
  5394. func (m *UserCreateMedicalRecordRequest) GetRecordId() int32 {
  5395. if m != nil {
  5396. return m.RecordId
  5397. }
  5398. return 0
  5399. }
  5400. func (m *UserCreateMedicalRecordRequest) GetIdNo() string {
  5401. if m != nil {
  5402. return m.IdNo
  5403. }
  5404. return ""
  5405. }
  5406. //团队成员 create by daiyihua
  5407. type TeamDoctor struct {
  5408. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  5409. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  5410. Avatar string `protobuf:"bytes,3,opt,name=avatar,proto3" json:"avatar,omitempty"`
  5411. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
  5412. Hospital string `protobuf:"bytes,5,opt,name=hospital,proto3" json:"hospital,omitempty"`
  5413. Dept string `protobuf:"bytes,6,opt,name=dept,proto3" json:"dept,omitempty"`
  5414. Specialty string `protobuf:"bytes,7,opt,name=specialty,proto3" json:"specialty,omitempty"`
  5415. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5416. XXX_unrecognized []byte `json:"-"`
  5417. XXX_sizecache int32 `json:"-"`
  5418. }
  5419. func (m *TeamDoctor) Reset() { *m = TeamDoctor{} }
  5420. func (m *TeamDoctor) String() string { return proto.CompactTextString(m) }
  5421. func (*TeamDoctor) ProtoMessage() {}
  5422. func (*TeamDoctor) Descriptor() ([]byte, []int) {
  5423. return fileDescriptor_116e343673f7ffaf, []int{84}
  5424. }
  5425. func (m *TeamDoctor) XXX_Unmarshal(b []byte) error {
  5426. return xxx_messageInfo_TeamDoctor.Unmarshal(m, b)
  5427. }
  5428. func (m *TeamDoctor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5429. return xxx_messageInfo_TeamDoctor.Marshal(b, m, deterministic)
  5430. }
  5431. func (m *TeamDoctor) XXX_Merge(src proto.Message) {
  5432. xxx_messageInfo_TeamDoctor.Merge(m, src)
  5433. }
  5434. func (m *TeamDoctor) XXX_Size() int {
  5435. return xxx_messageInfo_TeamDoctor.Size(m)
  5436. }
  5437. func (m *TeamDoctor) XXX_DiscardUnknown() {
  5438. xxx_messageInfo_TeamDoctor.DiscardUnknown(m)
  5439. }
  5440. var xxx_messageInfo_TeamDoctor proto.InternalMessageInfo
  5441. func (m *TeamDoctor) GetDoctorId() int32 {
  5442. if m != nil {
  5443. return m.DoctorId
  5444. }
  5445. return 0
  5446. }
  5447. func (m *TeamDoctor) GetName() string {
  5448. if m != nil {
  5449. return m.Name
  5450. }
  5451. return ""
  5452. }
  5453. func (m *TeamDoctor) GetAvatar() string {
  5454. if m != nil {
  5455. return m.Avatar
  5456. }
  5457. return ""
  5458. }
  5459. func (m *TeamDoctor) GetTitle() string {
  5460. if m != nil {
  5461. return m.Title
  5462. }
  5463. return ""
  5464. }
  5465. func (m *TeamDoctor) GetHospital() string {
  5466. if m != nil {
  5467. return m.Hospital
  5468. }
  5469. return ""
  5470. }
  5471. func (m *TeamDoctor) GetDept() string {
  5472. if m != nil {
  5473. return m.Dept
  5474. }
  5475. return ""
  5476. }
  5477. func (m *TeamDoctor) GetSpecialty() string {
  5478. if m != nil {
  5479. return m.Specialty
  5480. }
  5481. return ""
  5482. }
  5483. //搜索的医生信息 create by daiyihua
  5484. type SearchDoctorInfo struct {
  5485. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  5486. DoctorName string `protobuf:"bytes,2,opt,name=doctorName,proto3" json:"doctorName,omitempty"`
  5487. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"`
  5488. HospitalName string `protobuf:"bytes,4,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  5489. DeptName string `protobuf:"bytes,5,opt,name=deptName,proto3" json:"deptName,omitempty"`
  5490. Avatar string `protobuf:"bytes,6,opt,name=avatar,proto3" json:"avatar,omitempty"`
  5491. Specialty string `protobuf:"bytes,7,opt,name=specialty,proto3" json:"specialty,omitempty"`
  5492. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5493. XXX_unrecognized []byte `json:"-"`
  5494. XXX_sizecache int32 `json:"-"`
  5495. }
  5496. func (m *SearchDoctorInfo) Reset() { *m = SearchDoctorInfo{} }
  5497. func (m *SearchDoctorInfo) String() string { return proto.CompactTextString(m) }
  5498. func (*SearchDoctorInfo) ProtoMessage() {}
  5499. func (*SearchDoctorInfo) Descriptor() ([]byte, []int) {
  5500. return fileDescriptor_116e343673f7ffaf, []int{85}
  5501. }
  5502. func (m *SearchDoctorInfo) XXX_Unmarshal(b []byte) error {
  5503. return xxx_messageInfo_SearchDoctorInfo.Unmarshal(m, b)
  5504. }
  5505. func (m *SearchDoctorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5506. return xxx_messageInfo_SearchDoctorInfo.Marshal(b, m, deterministic)
  5507. }
  5508. func (m *SearchDoctorInfo) XXX_Merge(src proto.Message) {
  5509. xxx_messageInfo_SearchDoctorInfo.Merge(m, src)
  5510. }
  5511. func (m *SearchDoctorInfo) XXX_Size() int {
  5512. return xxx_messageInfo_SearchDoctorInfo.Size(m)
  5513. }
  5514. func (m *SearchDoctorInfo) XXX_DiscardUnknown() {
  5515. xxx_messageInfo_SearchDoctorInfo.DiscardUnknown(m)
  5516. }
  5517. var xxx_messageInfo_SearchDoctorInfo proto.InternalMessageInfo
  5518. func (m *SearchDoctorInfo) GetDoctorId() int32 {
  5519. if m != nil {
  5520. return m.DoctorId
  5521. }
  5522. return 0
  5523. }
  5524. func (m *SearchDoctorInfo) GetDoctorName() string {
  5525. if m != nil {
  5526. return m.DoctorName
  5527. }
  5528. return ""
  5529. }
  5530. func (m *SearchDoctorInfo) GetTitle() string {
  5531. if m != nil {
  5532. return m.Title
  5533. }
  5534. return ""
  5535. }
  5536. func (m *SearchDoctorInfo) GetHospitalName() string {
  5537. if m != nil {
  5538. return m.HospitalName
  5539. }
  5540. return ""
  5541. }
  5542. func (m *SearchDoctorInfo) GetDeptName() string {
  5543. if m != nil {
  5544. return m.DeptName
  5545. }
  5546. return ""
  5547. }
  5548. func (m *SearchDoctorInfo) GetAvatar() string {
  5549. if m != nil {
  5550. return m.Avatar
  5551. }
  5552. return ""
  5553. }
  5554. func (m *SearchDoctorInfo) GetSpecialty() string {
  5555. if m != nil {
  5556. return m.Specialty
  5557. }
  5558. return ""
  5559. }
  5560. //根据科室搜索医生信息Request create by daiyihua
  5561. type GetDoctorListByDeptIdRequest struct {
  5562. DeptId int32 `protobuf:"varint,1,opt,name=deptId,proto3" json:"deptId,omitempty"`
  5563. PageIndex int32 `protobuf:"varint,2,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  5564. PageSize int32 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  5565. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5566. XXX_unrecognized []byte `json:"-"`
  5567. XXX_sizecache int32 `json:"-"`
  5568. }
  5569. func (m *GetDoctorListByDeptIdRequest) Reset() { *m = GetDoctorListByDeptIdRequest{} }
  5570. func (m *GetDoctorListByDeptIdRequest) String() string { return proto.CompactTextString(m) }
  5571. func (*GetDoctorListByDeptIdRequest) ProtoMessage() {}
  5572. func (*GetDoctorListByDeptIdRequest) Descriptor() ([]byte, []int) {
  5573. return fileDescriptor_116e343673f7ffaf, []int{86}
  5574. }
  5575. func (m *GetDoctorListByDeptIdRequest) XXX_Unmarshal(b []byte) error {
  5576. return xxx_messageInfo_GetDoctorListByDeptIdRequest.Unmarshal(m, b)
  5577. }
  5578. func (m *GetDoctorListByDeptIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5579. return xxx_messageInfo_GetDoctorListByDeptIdRequest.Marshal(b, m, deterministic)
  5580. }
  5581. func (m *GetDoctorListByDeptIdRequest) XXX_Merge(src proto.Message) {
  5582. xxx_messageInfo_GetDoctorListByDeptIdRequest.Merge(m, src)
  5583. }
  5584. func (m *GetDoctorListByDeptIdRequest) XXX_Size() int {
  5585. return xxx_messageInfo_GetDoctorListByDeptIdRequest.Size(m)
  5586. }
  5587. func (m *GetDoctorListByDeptIdRequest) XXX_DiscardUnknown() {
  5588. xxx_messageInfo_GetDoctorListByDeptIdRequest.DiscardUnknown(m)
  5589. }
  5590. var xxx_messageInfo_GetDoctorListByDeptIdRequest proto.InternalMessageInfo
  5591. func (m *GetDoctorListByDeptIdRequest) GetDeptId() int32 {
  5592. if m != nil {
  5593. return m.DeptId
  5594. }
  5595. return 0
  5596. }
  5597. func (m *GetDoctorListByDeptIdRequest) GetPageIndex() int32 {
  5598. if m != nil {
  5599. return m.PageIndex
  5600. }
  5601. return 0
  5602. }
  5603. func (m *GetDoctorListByDeptIdRequest) GetPageSize() int32 {
  5604. if m != nil {
  5605. return m.PageSize
  5606. }
  5607. return 0
  5608. }
  5609. //根据科室搜索医生信息Response create by daiyihua
  5610. type GetDoctorListByDeptIdResponse struct {
  5611. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  5612. SearchDoctorInfo []*SearchDoctorInfo `protobuf:"bytes,2,rep,name=searchDoctorInfo,proto3" json:"searchDoctorInfo,omitempty"`
  5613. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  5614. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  5615. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5616. XXX_unrecognized []byte `json:"-"`
  5617. XXX_sizecache int32 `json:"-"`
  5618. }
  5619. func (m *GetDoctorListByDeptIdResponse) Reset() { *m = GetDoctorListByDeptIdResponse{} }
  5620. func (m *GetDoctorListByDeptIdResponse) String() string { return proto.CompactTextString(m) }
  5621. func (*GetDoctorListByDeptIdResponse) ProtoMessage() {}
  5622. func (*GetDoctorListByDeptIdResponse) Descriptor() ([]byte, []int) {
  5623. return fileDescriptor_116e343673f7ffaf, []int{87}
  5624. }
  5625. func (m *GetDoctorListByDeptIdResponse) XXX_Unmarshal(b []byte) error {
  5626. return xxx_messageInfo_GetDoctorListByDeptIdResponse.Unmarshal(m, b)
  5627. }
  5628. func (m *GetDoctorListByDeptIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5629. return xxx_messageInfo_GetDoctorListByDeptIdResponse.Marshal(b, m, deterministic)
  5630. }
  5631. func (m *GetDoctorListByDeptIdResponse) XXX_Merge(src proto.Message) {
  5632. xxx_messageInfo_GetDoctorListByDeptIdResponse.Merge(m, src)
  5633. }
  5634. func (m *GetDoctorListByDeptIdResponse) XXX_Size() int {
  5635. return xxx_messageInfo_GetDoctorListByDeptIdResponse.Size(m)
  5636. }
  5637. func (m *GetDoctorListByDeptIdResponse) XXX_DiscardUnknown() {
  5638. xxx_messageInfo_GetDoctorListByDeptIdResponse.DiscardUnknown(m)
  5639. }
  5640. var xxx_messageInfo_GetDoctorListByDeptIdResponse proto.InternalMessageInfo
  5641. func (m *GetDoctorListByDeptIdResponse) GetResult() *Result {
  5642. if m != nil {
  5643. return m.Result
  5644. }
  5645. return nil
  5646. }
  5647. func (m *GetDoctorListByDeptIdResponse) GetSearchDoctorInfo() []*SearchDoctorInfo {
  5648. if m != nil {
  5649. return m.SearchDoctorInfo
  5650. }
  5651. return nil
  5652. }
  5653. func (m *GetDoctorListByDeptIdResponse) GetCount() int32 {
  5654. if m != nil {
  5655. return m.Count
  5656. }
  5657. return 0
  5658. }
  5659. func (m *GetDoctorListByDeptIdResponse) GetTotalPages() int32 {
  5660. if m != nil {
  5661. return m.TotalPages
  5662. }
  5663. return 0
  5664. }
  5665. //根据医生ID得到医生团队数量Request create by daiyihua
  5666. type GetDoctorTeamCountRequest struct {
  5667. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  5668. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5669. XXX_unrecognized []byte `json:"-"`
  5670. XXX_sizecache int32 `json:"-"`
  5671. }
  5672. func (m *GetDoctorTeamCountRequest) Reset() { *m = GetDoctorTeamCountRequest{} }
  5673. func (m *GetDoctorTeamCountRequest) String() string { return proto.CompactTextString(m) }
  5674. func (*GetDoctorTeamCountRequest) ProtoMessage() {}
  5675. func (*GetDoctorTeamCountRequest) Descriptor() ([]byte, []int) {
  5676. return fileDescriptor_116e343673f7ffaf, []int{88}
  5677. }
  5678. func (m *GetDoctorTeamCountRequest) XXX_Unmarshal(b []byte) error {
  5679. return xxx_messageInfo_GetDoctorTeamCountRequest.Unmarshal(m, b)
  5680. }
  5681. func (m *GetDoctorTeamCountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5682. return xxx_messageInfo_GetDoctorTeamCountRequest.Marshal(b, m, deterministic)
  5683. }
  5684. func (m *GetDoctorTeamCountRequest) XXX_Merge(src proto.Message) {
  5685. xxx_messageInfo_GetDoctorTeamCountRequest.Merge(m, src)
  5686. }
  5687. func (m *GetDoctorTeamCountRequest) XXX_Size() int {
  5688. return xxx_messageInfo_GetDoctorTeamCountRequest.Size(m)
  5689. }
  5690. func (m *GetDoctorTeamCountRequest) XXX_DiscardUnknown() {
  5691. xxx_messageInfo_GetDoctorTeamCountRequest.DiscardUnknown(m)
  5692. }
  5693. var xxx_messageInfo_GetDoctorTeamCountRequest proto.InternalMessageInfo
  5694. func (m *GetDoctorTeamCountRequest) GetDoctorId() int32 {
  5695. if m != nil {
  5696. return m.DoctorId
  5697. }
  5698. return 0
  5699. }
  5700. //根据医生ID得到医生加号数量Request create by daiyihua
  5701. type GetDoctorAdditionalCountRequest struct {
  5702. DoctorId int32 `protobuf:"varint,1,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  5703. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5704. XXX_unrecognized []byte `json:"-"`
  5705. XXX_sizecache int32 `json:"-"`
  5706. }
  5707. func (m *GetDoctorAdditionalCountRequest) Reset() { *m = GetDoctorAdditionalCountRequest{} }
  5708. func (m *GetDoctorAdditionalCountRequest) String() string { return proto.CompactTextString(m) }
  5709. func (*GetDoctorAdditionalCountRequest) ProtoMessage() {}
  5710. func (*GetDoctorAdditionalCountRequest) Descriptor() ([]byte, []int) {
  5711. return fileDescriptor_116e343673f7ffaf, []int{89}
  5712. }
  5713. func (m *GetDoctorAdditionalCountRequest) XXX_Unmarshal(b []byte) error {
  5714. return xxx_messageInfo_GetDoctorAdditionalCountRequest.Unmarshal(m, b)
  5715. }
  5716. func (m *GetDoctorAdditionalCountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5717. return xxx_messageInfo_GetDoctorAdditionalCountRequest.Marshal(b, m, deterministic)
  5718. }
  5719. func (m *GetDoctorAdditionalCountRequest) XXX_Merge(src proto.Message) {
  5720. xxx_messageInfo_GetDoctorAdditionalCountRequest.Merge(m, src)
  5721. }
  5722. func (m *GetDoctorAdditionalCountRequest) XXX_Size() int {
  5723. return xxx_messageInfo_GetDoctorAdditionalCountRequest.Size(m)
  5724. }
  5725. func (m *GetDoctorAdditionalCountRequest) XXX_DiscardUnknown() {
  5726. xxx_messageInfo_GetDoctorAdditionalCountRequest.DiscardUnknown(m)
  5727. }
  5728. var xxx_messageInfo_GetDoctorAdditionalCountRequest proto.InternalMessageInfo
  5729. func (m *GetDoctorAdditionalCountRequest) GetDoctorId() int32 {
  5730. if m != nil {
  5731. return m.DoctorId
  5732. }
  5733. return 0
  5734. }
  5735. //根据医院ID得到医院对象Reqeust create by daiyihua
  5736. type GetHospitalByIdRequest struct {
  5737. HospitalId int32 `protobuf:"varint,1,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  5738. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5739. XXX_unrecognized []byte `json:"-"`
  5740. XXX_sizecache int32 `json:"-"`
  5741. }
  5742. func (m *GetHospitalByIdRequest) Reset() { *m = GetHospitalByIdRequest{} }
  5743. func (m *GetHospitalByIdRequest) String() string { return proto.CompactTextString(m) }
  5744. func (*GetHospitalByIdRequest) ProtoMessage() {}
  5745. func (*GetHospitalByIdRequest) Descriptor() ([]byte, []int) {
  5746. return fileDescriptor_116e343673f7ffaf, []int{90}
  5747. }
  5748. func (m *GetHospitalByIdRequest) XXX_Unmarshal(b []byte) error {
  5749. return xxx_messageInfo_GetHospitalByIdRequest.Unmarshal(m, b)
  5750. }
  5751. func (m *GetHospitalByIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5752. return xxx_messageInfo_GetHospitalByIdRequest.Marshal(b, m, deterministic)
  5753. }
  5754. func (m *GetHospitalByIdRequest) XXX_Merge(src proto.Message) {
  5755. xxx_messageInfo_GetHospitalByIdRequest.Merge(m, src)
  5756. }
  5757. func (m *GetHospitalByIdRequest) XXX_Size() int {
  5758. return xxx_messageInfo_GetHospitalByIdRequest.Size(m)
  5759. }
  5760. func (m *GetHospitalByIdRequest) XXX_DiscardUnknown() {
  5761. xxx_messageInfo_GetHospitalByIdRequest.DiscardUnknown(m)
  5762. }
  5763. var xxx_messageInfo_GetHospitalByIdRequest proto.InternalMessageInfo
  5764. func (m *GetHospitalByIdRequest) GetHospitalId() int32 {
  5765. if m != nil {
  5766. return m.HospitalId
  5767. }
  5768. return 0
  5769. }
  5770. //根据医院ID得到医院对象Response create by daiyihua
  5771. type GetHospitalByIdResponse struct {
  5772. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  5773. HospitalId int32 `protobuf:"varint,2,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  5774. HospitalName string `protobuf:"bytes,3,opt,name=hospitalName,proto3" json:"hospitalName,omitempty"`
  5775. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5776. XXX_unrecognized []byte `json:"-"`
  5777. XXX_sizecache int32 `json:"-"`
  5778. }
  5779. func (m *GetHospitalByIdResponse) Reset() { *m = GetHospitalByIdResponse{} }
  5780. func (m *GetHospitalByIdResponse) String() string { return proto.CompactTextString(m) }
  5781. func (*GetHospitalByIdResponse) ProtoMessage() {}
  5782. func (*GetHospitalByIdResponse) Descriptor() ([]byte, []int) {
  5783. return fileDescriptor_116e343673f7ffaf, []int{91}
  5784. }
  5785. func (m *GetHospitalByIdResponse) XXX_Unmarshal(b []byte) error {
  5786. return xxx_messageInfo_GetHospitalByIdResponse.Unmarshal(m, b)
  5787. }
  5788. func (m *GetHospitalByIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5789. return xxx_messageInfo_GetHospitalByIdResponse.Marshal(b, m, deterministic)
  5790. }
  5791. func (m *GetHospitalByIdResponse) XXX_Merge(src proto.Message) {
  5792. xxx_messageInfo_GetHospitalByIdResponse.Merge(m, src)
  5793. }
  5794. func (m *GetHospitalByIdResponse) XXX_Size() int {
  5795. return xxx_messageInfo_GetHospitalByIdResponse.Size(m)
  5796. }
  5797. func (m *GetHospitalByIdResponse) XXX_DiscardUnknown() {
  5798. xxx_messageInfo_GetHospitalByIdResponse.DiscardUnknown(m)
  5799. }
  5800. var xxx_messageInfo_GetHospitalByIdResponse proto.InternalMessageInfo
  5801. func (m *GetHospitalByIdResponse) GetResult() *Result {
  5802. if m != nil {
  5803. return m.Result
  5804. }
  5805. return nil
  5806. }
  5807. func (m *GetHospitalByIdResponse) GetHospitalId() int32 {
  5808. if m != nil {
  5809. return m.HospitalId
  5810. }
  5811. return 0
  5812. }
  5813. func (m *GetHospitalByIdResponse) GetHospitalName() string {
  5814. if m != nil {
  5815. return m.HospitalName
  5816. }
  5817. return ""
  5818. }
  5819. //太和医院绑定诊疗卡Reqeust create by daiyihua
  5820. type AddTaiheMedicalCardRequest struct {
  5821. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  5822. HospitalId int32 `protobuf:"varint,2,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  5823. CardNo string `protobuf:"bytes,3,opt,name=cardNo,proto3" json:"cardNo,omitempty"`
  5824. RealName string `protobuf:"bytes,4,opt,name=realName,proto3" json:"realName,omitempty"`
  5825. Mobile string `protobuf:"bytes,5,opt,name=mobile,proto3" json:"mobile,omitempty"`
  5826. // string hisPatientId = 6; //his的病人ID
  5827. Guardian string `protobuf:"bytes,7,opt,name=guardian,proto3" json:"guardian,omitempty"`
  5828. Address string `protobuf:"bytes,8,opt,name=address,proto3" json:"address,omitempty"`
  5829. IdNo string `protobuf:"bytes,9,opt,name=idNo,proto3" json:"idNo,omitempty"`
  5830. IdType int32 `protobuf:"varint,10,opt,name=idType,proto3" json:"idType,omitempty"`
  5831. Sex int32 `protobuf:"varint,11,opt,name=sex,proto3" json:"sex,omitempty"`
  5832. Birthday string `protobuf:"bytes,12,opt,name=birthday,proto3" json:"birthday,omitempty"`
  5833. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5834. XXX_unrecognized []byte `json:"-"`
  5835. XXX_sizecache int32 `json:"-"`
  5836. }
  5837. func (m *AddTaiheMedicalCardRequest) Reset() { *m = AddTaiheMedicalCardRequest{} }
  5838. func (m *AddTaiheMedicalCardRequest) String() string { return proto.CompactTextString(m) }
  5839. func (*AddTaiheMedicalCardRequest) ProtoMessage() {}
  5840. func (*AddTaiheMedicalCardRequest) Descriptor() ([]byte, []int) {
  5841. return fileDescriptor_116e343673f7ffaf, []int{92}
  5842. }
  5843. func (m *AddTaiheMedicalCardRequest) XXX_Unmarshal(b []byte) error {
  5844. return xxx_messageInfo_AddTaiheMedicalCardRequest.Unmarshal(m, b)
  5845. }
  5846. func (m *AddTaiheMedicalCardRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5847. return xxx_messageInfo_AddTaiheMedicalCardRequest.Marshal(b, m, deterministic)
  5848. }
  5849. func (m *AddTaiheMedicalCardRequest) XXX_Merge(src proto.Message) {
  5850. xxx_messageInfo_AddTaiheMedicalCardRequest.Merge(m, src)
  5851. }
  5852. func (m *AddTaiheMedicalCardRequest) XXX_Size() int {
  5853. return xxx_messageInfo_AddTaiheMedicalCardRequest.Size(m)
  5854. }
  5855. func (m *AddTaiheMedicalCardRequest) XXX_DiscardUnknown() {
  5856. xxx_messageInfo_AddTaiheMedicalCardRequest.DiscardUnknown(m)
  5857. }
  5858. var xxx_messageInfo_AddTaiheMedicalCardRequest proto.InternalMessageInfo
  5859. func (m *AddTaiheMedicalCardRequest) GetUserId() int32 {
  5860. if m != nil {
  5861. return m.UserId
  5862. }
  5863. return 0
  5864. }
  5865. func (m *AddTaiheMedicalCardRequest) GetHospitalId() int32 {
  5866. if m != nil {
  5867. return m.HospitalId
  5868. }
  5869. return 0
  5870. }
  5871. func (m *AddTaiheMedicalCardRequest) GetCardNo() string {
  5872. if m != nil {
  5873. return m.CardNo
  5874. }
  5875. return ""
  5876. }
  5877. func (m *AddTaiheMedicalCardRequest) GetRealName() string {
  5878. if m != nil {
  5879. return m.RealName
  5880. }
  5881. return ""
  5882. }
  5883. func (m *AddTaiheMedicalCardRequest) GetMobile() string {
  5884. if m != nil {
  5885. return m.Mobile
  5886. }
  5887. return ""
  5888. }
  5889. func (m *AddTaiheMedicalCardRequest) GetGuardian() string {
  5890. if m != nil {
  5891. return m.Guardian
  5892. }
  5893. return ""
  5894. }
  5895. func (m *AddTaiheMedicalCardRequest) GetAddress() string {
  5896. if m != nil {
  5897. return m.Address
  5898. }
  5899. return ""
  5900. }
  5901. func (m *AddTaiheMedicalCardRequest) GetIdNo() string {
  5902. if m != nil {
  5903. return m.IdNo
  5904. }
  5905. return ""
  5906. }
  5907. func (m *AddTaiheMedicalCardRequest) GetIdType() int32 {
  5908. if m != nil {
  5909. return m.IdType
  5910. }
  5911. return 0
  5912. }
  5913. func (m *AddTaiheMedicalCardRequest) GetSex() int32 {
  5914. if m != nil {
  5915. return m.Sex
  5916. }
  5917. return 0
  5918. }
  5919. func (m *AddTaiheMedicalCardRequest) GetBirthday() string {
  5920. if m != nil {
  5921. return m.Birthday
  5922. }
  5923. return ""
  5924. }
  5925. // 提现到微信请求
  5926. type WithdrawToWeChatRequest struct {
  5927. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  5928. Amount float64 `protobuf:"fixed64,2,opt,name=amount,proto3" json:"amount,omitempty"`
  5929. Openid string `protobuf:"bytes,3,opt,name=openid,proto3" json:"openid,omitempty"`
  5930. SpbillCreateIp string `protobuf:"bytes,4,opt,name=spbillCreateIp,proto3" json:"spbillCreateIp,omitempty"`
  5931. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5932. XXX_unrecognized []byte `json:"-"`
  5933. XXX_sizecache int32 `json:"-"`
  5934. }
  5935. func (m *WithdrawToWeChatRequest) Reset() { *m = WithdrawToWeChatRequest{} }
  5936. func (m *WithdrawToWeChatRequest) String() string { return proto.CompactTextString(m) }
  5937. func (*WithdrawToWeChatRequest) ProtoMessage() {}
  5938. func (*WithdrawToWeChatRequest) Descriptor() ([]byte, []int) {
  5939. return fileDescriptor_116e343673f7ffaf, []int{93}
  5940. }
  5941. func (m *WithdrawToWeChatRequest) XXX_Unmarshal(b []byte) error {
  5942. return xxx_messageInfo_WithdrawToWeChatRequest.Unmarshal(m, b)
  5943. }
  5944. func (m *WithdrawToWeChatRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5945. return xxx_messageInfo_WithdrawToWeChatRequest.Marshal(b, m, deterministic)
  5946. }
  5947. func (m *WithdrawToWeChatRequest) XXX_Merge(src proto.Message) {
  5948. xxx_messageInfo_WithdrawToWeChatRequest.Merge(m, src)
  5949. }
  5950. func (m *WithdrawToWeChatRequest) XXX_Size() int {
  5951. return xxx_messageInfo_WithdrawToWeChatRequest.Size(m)
  5952. }
  5953. func (m *WithdrawToWeChatRequest) XXX_DiscardUnknown() {
  5954. xxx_messageInfo_WithdrawToWeChatRequest.DiscardUnknown(m)
  5955. }
  5956. var xxx_messageInfo_WithdrawToWeChatRequest proto.InternalMessageInfo
  5957. func (m *WithdrawToWeChatRequest) GetUserId() int32 {
  5958. if m != nil {
  5959. return m.UserId
  5960. }
  5961. return 0
  5962. }
  5963. func (m *WithdrawToWeChatRequest) GetAmount() float64 {
  5964. if m != nil {
  5965. return m.Amount
  5966. }
  5967. return 0
  5968. }
  5969. func (m *WithdrawToWeChatRequest) GetOpenid() string {
  5970. if m != nil {
  5971. return m.Openid
  5972. }
  5973. return ""
  5974. }
  5975. func (m *WithdrawToWeChatRequest) GetSpbillCreateIp() string {
  5976. if m != nil {
  5977. return m.SpbillCreateIp
  5978. }
  5979. return ""
  5980. }
  5981. // 提现到微信响应
  5982. type WithdrawToWeChatResponse struct {
  5983. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  5984. OrderNo string `protobuf:"bytes,2,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
  5985. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5986. XXX_unrecognized []byte `json:"-"`
  5987. XXX_sizecache int32 `json:"-"`
  5988. }
  5989. func (m *WithdrawToWeChatResponse) Reset() { *m = WithdrawToWeChatResponse{} }
  5990. func (m *WithdrawToWeChatResponse) String() string { return proto.CompactTextString(m) }
  5991. func (*WithdrawToWeChatResponse) ProtoMessage() {}
  5992. func (*WithdrawToWeChatResponse) Descriptor() ([]byte, []int) {
  5993. return fileDescriptor_116e343673f7ffaf, []int{94}
  5994. }
  5995. func (m *WithdrawToWeChatResponse) XXX_Unmarshal(b []byte) error {
  5996. return xxx_messageInfo_WithdrawToWeChatResponse.Unmarshal(m, b)
  5997. }
  5998. func (m *WithdrawToWeChatResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5999. return xxx_messageInfo_WithdrawToWeChatResponse.Marshal(b, m, deterministic)
  6000. }
  6001. func (m *WithdrawToWeChatResponse) XXX_Merge(src proto.Message) {
  6002. xxx_messageInfo_WithdrawToWeChatResponse.Merge(m, src)
  6003. }
  6004. func (m *WithdrawToWeChatResponse) XXX_Size() int {
  6005. return xxx_messageInfo_WithdrawToWeChatResponse.Size(m)
  6006. }
  6007. func (m *WithdrawToWeChatResponse) XXX_DiscardUnknown() {
  6008. xxx_messageInfo_WithdrawToWeChatResponse.DiscardUnknown(m)
  6009. }
  6010. var xxx_messageInfo_WithdrawToWeChatResponse proto.InternalMessageInfo
  6011. func (m *WithdrawToWeChatResponse) GetResult() *Result {
  6012. if m != nil {
  6013. return m.Result
  6014. }
  6015. return nil
  6016. }
  6017. func (m *WithdrawToWeChatResponse) GetOrderNo() string {
  6018. if m != nil {
  6019. return m.OrderNo
  6020. }
  6021. return ""
  6022. }
  6023. type WithdrawOrderPayRequest struct {
  6024. OrderNo string `protobuf:"bytes,1,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
  6025. Openid string `protobuf:"bytes,2,opt,name=openid,proto3" json:"openid,omitempty"`
  6026. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6027. XXX_unrecognized []byte `json:"-"`
  6028. XXX_sizecache int32 `json:"-"`
  6029. }
  6030. func (m *WithdrawOrderPayRequest) Reset() { *m = WithdrawOrderPayRequest{} }
  6031. func (m *WithdrawOrderPayRequest) String() string { return proto.CompactTextString(m) }
  6032. func (*WithdrawOrderPayRequest) ProtoMessage() {}
  6033. func (*WithdrawOrderPayRequest) Descriptor() ([]byte, []int) {
  6034. return fileDescriptor_116e343673f7ffaf, []int{95}
  6035. }
  6036. func (m *WithdrawOrderPayRequest) XXX_Unmarshal(b []byte) error {
  6037. return xxx_messageInfo_WithdrawOrderPayRequest.Unmarshal(m, b)
  6038. }
  6039. func (m *WithdrawOrderPayRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6040. return xxx_messageInfo_WithdrawOrderPayRequest.Marshal(b, m, deterministic)
  6041. }
  6042. func (m *WithdrawOrderPayRequest) XXX_Merge(src proto.Message) {
  6043. xxx_messageInfo_WithdrawOrderPayRequest.Merge(m, src)
  6044. }
  6045. func (m *WithdrawOrderPayRequest) XXX_Size() int {
  6046. return xxx_messageInfo_WithdrawOrderPayRequest.Size(m)
  6047. }
  6048. func (m *WithdrawOrderPayRequest) XXX_DiscardUnknown() {
  6049. xxx_messageInfo_WithdrawOrderPayRequest.DiscardUnknown(m)
  6050. }
  6051. var xxx_messageInfo_WithdrawOrderPayRequest proto.InternalMessageInfo
  6052. func (m *WithdrawOrderPayRequest) GetOrderNo() string {
  6053. if m != nil {
  6054. return m.OrderNo
  6055. }
  6056. return ""
  6057. }
  6058. func (m *WithdrawOrderPayRequest) GetOpenid() string {
  6059. if m != nil {
  6060. return m.Openid
  6061. }
  6062. return ""
  6063. }
  6064. type WithdrawOrderPayResponse struct {
  6065. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  6066. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6067. XXX_unrecognized []byte `json:"-"`
  6068. XXX_sizecache int32 `json:"-"`
  6069. }
  6070. func (m *WithdrawOrderPayResponse) Reset() { *m = WithdrawOrderPayResponse{} }
  6071. func (m *WithdrawOrderPayResponse) String() string { return proto.CompactTextString(m) }
  6072. func (*WithdrawOrderPayResponse) ProtoMessage() {}
  6073. func (*WithdrawOrderPayResponse) Descriptor() ([]byte, []int) {
  6074. return fileDescriptor_116e343673f7ffaf, []int{96}
  6075. }
  6076. func (m *WithdrawOrderPayResponse) XXX_Unmarshal(b []byte) error {
  6077. return xxx_messageInfo_WithdrawOrderPayResponse.Unmarshal(m, b)
  6078. }
  6079. func (m *WithdrawOrderPayResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6080. return xxx_messageInfo_WithdrawOrderPayResponse.Marshal(b, m, deterministic)
  6081. }
  6082. func (m *WithdrawOrderPayResponse) XXX_Merge(src proto.Message) {
  6083. xxx_messageInfo_WithdrawOrderPayResponse.Merge(m, src)
  6084. }
  6085. func (m *WithdrawOrderPayResponse) XXX_Size() int {
  6086. return xxx_messageInfo_WithdrawOrderPayResponse.Size(m)
  6087. }
  6088. func (m *WithdrawOrderPayResponse) XXX_DiscardUnknown() {
  6089. xxx_messageInfo_WithdrawOrderPayResponse.DiscardUnknown(m)
  6090. }
  6091. var xxx_messageInfo_WithdrawOrderPayResponse proto.InternalMessageInfo
  6092. func (m *WithdrawOrderPayResponse) GetResult() *Result {
  6093. if m != nil {
  6094. return m.Result
  6095. }
  6096. return nil
  6097. }
  6098. //用户扫描关注医生Request
  6099. type UserAttentionDoctorRequest struct {
  6100. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  6101. DoctorId int32 `protobuf:"varint,2,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  6102. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6103. XXX_unrecognized []byte `json:"-"`
  6104. XXX_sizecache int32 `json:"-"`
  6105. }
  6106. func (m *UserAttentionDoctorRequest) Reset() { *m = UserAttentionDoctorRequest{} }
  6107. func (m *UserAttentionDoctorRequest) String() string { return proto.CompactTextString(m) }
  6108. func (*UserAttentionDoctorRequest) ProtoMessage() {}
  6109. func (*UserAttentionDoctorRequest) Descriptor() ([]byte, []int) {
  6110. return fileDescriptor_116e343673f7ffaf, []int{97}
  6111. }
  6112. func (m *UserAttentionDoctorRequest) XXX_Unmarshal(b []byte) error {
  6113. return xxx_messageInfo_UserAttentionDoctorRequest.Unmarshal(m, b)
  6114. }
  6115. func (m *UserAttentionDoctorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6116. return xxx_messageInfo_UserAttentionDoctorRequest.Marshal(b, m, deterministic)
  6117. }
  6118. func (m *UserAttentionDoctorRequest) XXX_Merge(src proto.Message) {
  6119. xxx_messageInfo_UserAttentionDoctorRequest.Merge(m, src)
  6120. }
  6121. func (m *UserAttentionDoctorRequest) XXX_Size() int {
  6122. return xxx_messageInfo_UserAttentionDoctorRequest.Size(m)
  6123. }
  6124. func (m *UserAttentionDoctorRequest) XXX_DiscardUnknown() {
  6125. xxx_messageInfo_UserAttentionDoctorRequest.DiscardUnknown(m)
  6126. }
  6127. var xxx_messageInfo_UserAttentionDoctorRequest proto.InternalMessageInfo
  6128. func (m *UserAttentionDoctorRequest) GetUserId() int32 {
  6129. if m != nil {
  6130. return m.UserId
  6131. }
  6132. return 0
  6133. }
  6134. func (m *UserAttentionDoctorRequest) GetDoctorId() int32 {
  6135. if m != nil {
  6136. return m.DoctorId
  6137. }
  6138. return 0
  6139. }
  6140. //用户点击关注、取消医生Request
  6141. type GeneralAttentionDoctorRequest struct {
  6142. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  6143. DoctorId int32 `protobuf:"varint,2,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  6144. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6145. XXX_unrecognized []byte `json:"-"`
  6146. XXX_sizecache int32 `json:"-"`
  6147. }
  6148. func (m *GeneralAttentionDoctorRequest) Reset() { *m = GeneralAttentionDoctorRequest{} }
  6149. func (m *GeneralAttentionDoctorRequest) String() string { return proto.CompactTextString(m) }
  6150. func (*GeneralAttentionDoctorRequest) ProtoMessage() {}
  6151. func (*GeneralAttentionDoctorRequest) Descriptor() ([]byte, []int) {
  6152. return fileDescriptor_116e343673f7ffaf, []int{98}
  6153. }
  6154. func (m *GeneralAttentionDoctorRequest) XXX_Unmarshal(b []byte) error {
  6155. return xxx_messageInfo_GeneralAttentionDoctorRequest.Unmarshal(m, b)
  6156. }
  6157. func (m *GeneralAttentionDoctorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6158. return xxx_messageInfo_GeneralAttentionDoctorRequest.Marshal(b, m, deterministic)
  6159. }
  6160. func (m *GeneralAttentionDoctorRequest) XXX_Merge(src proto.Message) {
  6161. xxx_messageInfo_GeneralAttentionDoctorRequest.Merge(m, src)
  6162. }
  6163. func (m *GeneralAttentionDoctorRequest) XXX_Size() int {
  6164. return xxx_messageInfo_GeneralAttentionDoctorRequest.Size(m)
  6165. }
  6166. func (m *GeneralAttentionDoctorRequest) XXX_DiscardUnknown() {
  6167. xxx_messageInfo_GeneralAttentionDoctorRequest.DiscardUnknown(m)
  6168. }
  6169. var xxx_messageInfo_GeneralAttentionDoctorRequest proto.InternalMessageInfo
  6170. func (m *GeneralAttentionDoctorRequest) GetUserId() int32 {
  6171. if m != nil {
  6172. return m.UserId
  6173. }
  6174. return 0
  6175. }
  6176. func (m *GeneralAttentionDoctorRequest) GetDoctorId() int32 {
  6177. if m != nil {
  6178. return m.DoctorId
  6179. }
  6180. return 0
  6181. }
  6182. //用户点击关注、取消医生Request
  6183. type GeneralAttentionHospitalRequest struct {
  6184. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  6185. HospitalId int32 `protobuf:"varint,2,opt,name=hospitalId,proto3" json:"hospitalId,omitempty"`
  6186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6187. XXX_unrecognized []byte `json:"-"`
  6188. XXX_sizecache int32 `json:"-"`
  6189. }
  6190. func (m *GeneralAttentionHospitalRequest) Reset() { *m = GeneralAttentionHospitalRequest{} }
  6191. func (m *GeneralAttentionHospitalRequest) String() string { return proto.CompactTextString(m) }
  6192. func (*GeneralAttentionHospitalRequest) ProtoMessage() {}
  6193. func (*GeneralAttentionHospitalRequest) Descriptor() ([]byte, []int) {
  6194. return fileDescriptor_116e343673f7ffaf, []int{99}
  6195. }
  6196. func (m *GeneralAttentionHospitalRequest) XXX_Unmarshal(b []byte) error {
  6197. return xxx_messageInfo_GeneralAttentionHospitalRequest.Unmarshal(m, b)
  6198. }
  6199. func (m *GeneralAttentionHospitalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6200. return xxx_messageInfo_GeneralAttentionHospitalRequest.Marshal(b, m, deterministic)
  6201. }
  6202. func (m *GeneralAttentionHospitalRequest) XXX_Merge(src proto.Message) {
  6203. xxx_messageInfo_GeneralAttentionHospitalRequest.Merge(m, src)
  6204. }
  6205. func (m *GeneralAttentionHospitalRequest) XXX_Size() int {
  6206. return xxx_messageInfo_GeneralAttentionHospitalRequest.Size(m)
  6207. }
  6208. func (m *GeneralAttentionHospitalRequest) XXX_DiscardUnknown() {
  6209. xxx_messageInfo_GeneralAttentionHospitalRequest.DiscardUnknown(m)
  6210. }
  6211. var xxx_messageInfo_GeneralAttentionHospitalRequest proto.InternalMessageInfo
  6212. func (m *GeneralAttentionHospitalRequest) GetUserId() int32 {
  6213. if m != nil {
  6214. return m.UserId
  6215. }
  6216. return 0
  6217. }
  6218. func (m *GeneralAttentionHospitalRequest) GetHospitalId() int32 {
  6219. if m != nil {
  6220. return m.HospitalId
  6221. }
  6222. return 0
  6223. }
  6224. // 用户个人资料
  6225. type UserPatient struct {
  6226. UserPatientId int32 `protobuf:"varint,1,opt,name=user_patient_id,json=userPatientId,proto3" json:"user_patient_id,omitempty"`
  6227. UserId int32 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  6228. Mobile string `protobuf:"bytes,3,opt,name=mobile,proto3" json:"mobile,omitempty"`
  6229. IdNo string `protobuf:"bytes,4,opt,name=idNo,proto3" json:"idNo,omitempty"`
  6230. ParentName string `protobuf:"bytes,5,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"`
  6231. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  6232. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"`
  6233. Relationship int32 `protobuf:"varint,8,opt,name=relationship,proto3" json:"relationship,omitempty"`
  6234. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6235. XXX_unrecognized []byte `json:"-"`
  6236. XXX_sizecache int32 `json:"-"`
  6237. }
  6238. func (m *UserPatient) Reset() { *m = UserPatient{} }
  6239. func (m *UserPatient) String() string { return proto.CompactTextString(m) }
  6240. func (*UserPatient) ProtoMessage() {}
  6241. func (*UserPatient) Descriptor() ([]byte, []int) {
  6242. return fileDescriptor_116e343673f7ffaf, []int{100}
  6243. }
  6244. func (m *UserPatient) XXX_Unmarshal(b []byte) error {
  6245. return xxx_messageInfo_UserPatient.Unmarshal(m, b)
  6246. }
  6247. func (m *UserPatient) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6248. return xxx_messageInfo_UserPatient.Marshal(b, m, deterministic)
  6249. }
  6250. func (m *UserPatient) XXX_Merge(src proto.Message) {
  6251. xxx_messageInfo_UserPatient.Merge(m, src)
  6252. }
  6253. func (m *UserPatient) XXX_Size() int {
  6254. return xxx_messageInfo_UserPatient.Size(m)
  6255. }
  6256. func (m *UserPatient) XXX_DiscardUnknown() {
  6257. xxx_messageInfo_UserPatient.DiscardUnknown(m)
  6258. }
  6259. var xxx_messageInfo_UserPatient proto.InternalMessageInfo
  6260. func (m *UserPatient) GetUserPatientId() int32 {
  6261. if m != nil {
  6262. return m.UserPatientId
  6263. }
  6264. return 0
  6265. }
  6266. func (m *UserPatient) GetUserId() int32 {
  6267. if m != nil {
  6268. return m.UserId
  6269. }
  6270. return 0
  6271. }
  6272. func (m *UserPatient) GetMobile() string {
  6273. if m != nil {
  6274. return m.Mobile
  6275. }
  6276. return ""
  6277. }
  6278. func (m *UserPatient) GetIdNo() string {
  6279. if m != nil {
  6280. return m.IdNo
  6281. }
  6282. return ""
  6283. }
  6284. func (m *UserPatient) GetParentName() string {
  6285. if m != nil {
  6286. return m.ParentName
  6287. }
  6288. return ""
  6289. }
  6290. func (m *UserPatient) GetName() string {
  6291. if m != nil {
  6292. return m.Name
  6293. }
  6294. return ""
  6295. }
  6296. func (m *UserPatient) GetSex() int32 {
  6297. if m != nil {
  6298. return m.Sex
  6299. }
  6300. return 0
  6301. }
  6302. func (m *UserPatient) GetRelationship() int32 {
  6303. if m != nil {
  6304. return m.Relationship
  6305. }
  6306. return 0
  6307. }
  6308. // 得到用户个人资料列表Request
  6309. type GetUserPatientListRequest struct {
  6310. UserId int32 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  6311. PageSize int32 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  6312. PageIndex int32 `protobuf:"varint,3,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  6313. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6314. XXX_unrecognized []byte `json:"-"`
  6315. XXX_sizecache int32 `json:"-"`
  6316. }
  6317. func (m *GetUserPatientListRequest) Reset() { *m = GetUserPatientListRequest{} }
  6318. func (m *GetUserPatientListRequest) String() string { return proto.CompactTextString(m) }
  6319. func (*GetUserPatientListRequest) ProtoMessage() {}
  6320. func (*GetUserPatientListRequest) Descriptor() ([]byte, []int) {
  6321. return fileDescriptor_116e343673f7ffaf, []int{101}
  6322. }
  6323. func (m *GetUserPatientListRequest) XXX_Unmarshal(b []byte) error {
  6324. return xxx_messageInfo_GetUserPatientListRequest.Unmarshal(m, b)
  6325. }
  6326. func (m *GetUserPatientListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6327. return xxx_messageInfo_GetUserPatientListRequest.Marshal(b, m, deterministic)
  6328. }
  6329. func (m *GetUserPatientListRequest) XXX_Merge(src proto.Message) {
  6330. xxx_messageInfo_GetUserPatientListRequest.Merge(m, src)
  6331. }
  6332. func (m *GetUserPatientListRequest) XXX_Size() int {
  6333. return xxx_messageInfo_GetUserPatientListRequest.Size(m)
  6334. }
  6335. func (m *GetUserPatientListRequest) XXX_DiscardUnknown() {
  6336. xxx_messageInfo_GetUserPatientListRequest.DiscardUnknown(m)
  6337. }
  6338. var xxx_messageInfo_GetUserPatientListRequest proto.InternalMessageInfo
  6339. func (m *GetUserPatientListRequest) GetUserId() int32 {
  6340. if m != nil {
  6341. return m.UserId
  6342. }
  6343. return 0
  6344. }
  6345. func (m *GetUserPatientListRequest) GetPageSize() int32 {
  6346. if m != nil {
  6347. return m.PageSize
  6348. }
  6349. return 0
  6350. }
  6351. func (m *GetUserPatientListRequest) GetPageIndex() int32 {
  6352. if m != nil {
  6353. return m.PageIndex
  6354. }
  6355. return 0
  6356. }
  6357. // 得到用户个人资料列表Response
  6358. type GetUserPatientListResponse struct {
  6359. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  6360. UserPatient []*UserPatient `protobuf:"bytes,2,rep,name=userPatient,proto3" json:"userPatient,omitempty"`
  6361. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  6362. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  6363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6364. XXX_unrecognized []byte `json:"-"`
  6365. XXX_sizecache int32 `json:"-"`
  6366. }
  6367. func (m *GetUserPatientListResponse) Reset() { *m = GetUserPatientListResponse{} }
  6368. func (m *GetUserPatientListResponse) String() string { return proto.CompactTextString(m) }
  6369. func (*GetUserPatientListResponse) ProtoMessage() {}
  6370. func (*GetUserPatientListResponse) Descriptor() ([]byte, []int) {
  6371. return fileDescriptor_116e343673f7ffaf, []int{102}
  6372. }
  6373. func (m *GetUserPatientListResponse) XXX_Unmarshal(b []byte) error {
  6374. return xxx_messageInfo_GetUserPatientListResponse.Unmarshal(m, b)
  6375. }
  6376. func (m *GetUserPatientListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6377. return xxx_messageInfo_GetUserPatientListResponse.Marshal(b, m, deterministic)
  6378. }
  6379. func (m *GetUserPatientListResponse) XXX_Merge(src proto.Message) {
  6380. xxx_messageInfo_GetUserPatientListResponse.Merge(m, src)
  6381. }
  6382. func (m *GetUserPatientListResponse) XXX_Size() int {
  6383. return xxx_messageInfo_GetUserPatientListResponse.Size(m)
  6384. }
  6385. func (m *GetUserPatientListResponse) XXX_DiscardUnknown() {
  6386. xxx_messageInfo_GetUserPatientListResponse.DiscardUnknown(m)
  6387. }
  6388. var xxx_messageInfo_GetUserPatientListResponse proto.InternalMessageInfo
  6389. func (m *GetUserPatientListResponse) GetResult() *Result {
  6390. if m != nil {
  6391. return m.Result
  6392. }
  6393. return nil
  6394. }
  6395. func (m *GetUserPatientListResponse) GetUserPatient() []*UserPatient {
  6396. if m != nil {
  6397. return m.UserPatient
  6398. }
  6399. return nil
  6400. }
  6401. func (m *GetUserPatientListResponse) GetCount() int32 {
  6402. if m != nil {
  6403. return m.Count
  6404. }
  6405. return 0
  6406. }
  6407. func (m *GetUserPatientListResponse) GetTotalPages() int32 {
  6408. if m != nil {
  6409. return m.TotalPages
  6410. }
  6411. return 0
  6412. }
  6413. // 编辑用户个人资料Request
  6414. type UpdateUserPatientInfo struct {
  6415. UserPatient *UserPatient `protobuf:"bytes,1,opt,name=userPatient,proto3" json:"userPatient,omitempty"`
  6416. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6417. XXX_unrecognized []byte `json:"-"`
  6418. XXX_sizecache int32 `json:"-"`
  6419. }
  6420. func (m *UpdateUserPatientInfo) Reset() { *m = UpdateUserPatientInfo{} }
  6421. func (m *UpdateUserPatientInfo) String() string { return proto.CompactTextString(m) }
  6422. func (*UpdateUserPatientInfo) ProtoMessage() {}
  6423. func (*UpdateUserPatientInfo) Descriptor() ([]byte, []int) {
  6424. return fileDescriptor_116e343673f7ffaf, []int{103}
  6425. }
  6426. func (m *UpdateUserPatientInfo) XXX_Unmarshal(b []byte) error {
  6427. return xxx_messageInfo_UpdateUserPatientInfo.Unmarshal(m, b)
  6428. }
  6429. func (m *UpdateUserPatientInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6430. return xxx_messageInfo_UpdateUserPatientInfo.Marshal(b, m, deterministic)
  6431. }
  6432. func (m *UpdateUserPatientInfo) XXX_Merge(src proto.Message) {
  6433. xxx_messageInfo_UpdateUserPatientInfo.Merge(m, src)
  6434. }
  6435. func (m *UpdateUserPatientInfo) XXX_Size() int {
  6436. return xxx_messageInfo_UpdateUserPatientInfo.Size(m)
  6437. }
  6438. func (m *UpdateUserPatientInfo) XXX_DiscardUnknown() {
  6439. xxx_messageInfo_UpdateUserPatientInfo.DiscardUnknown(m)
  6440. }
  6441. var xxx_messageInfo_UpdateUserPatientInfo proto.InternalMessageInfo
  6442. func (m *UpdateUserPatientInfo) GetUserPatient() *UserPatient {
  6443. if m != nil {
  6444. return m.UserPatient
  6445. }
  6446. return nil
  6447. }
  6448. // 得到单个用户个人资料Request
  6449. type GetUserPatientByIdRequest struct {
  6450. UserPatientId int32 `protobuf:"varint,1,opt,name=user_patient_id,json=userPatientId,proto3" json:"user_patient_id,omitempty"`
  6451. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6452. XXX_unrecognized []byte `json:"-"`
  6453. XXX_sizecache int32 `json:"-"`
  6454. }
  6455. func (m *GetUserPatientByIdRequest) Reset() { *m = GetUserPatientByIdRequest{} }
  6456. func (m *GetUserPatientByIdRequest) String() string { return proto.CompactTextString(m) }
  6457. func (*GetUserPatientByIdRequest) ProtoMessage() {}
  6458. func (*GetUserPatientByIdRequest) Descriptor() ([]byte, []int) {
  6459. return fileDescriptor_116e343673f7ffaf, []int{104}
  6460. }
  6461. func (m *GetUserPatientByIdRequest) XXX_Unmarshal(b []byte) error {
  6462. return xxx_messageInfo_GetUserPatientByIdRequest.Unmarshal(m, b)
  6463. }
  6464. func (m *GetUserPatientByIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6465. return xxx_messageInfo_GetUserPatientByIdRequest.Marshal(b, m, deterministic)
  6466. }
  6467. func (m *GetUserPatientByIdRequest) XXX_Merge(src proto.Message) {
  6468. xxx_messageInfo_GetUserPatientByIdRequest.Merge(m, src)
  6469. }
  6470. func (m *GetUserPatientByIdRequest) XXX_Size() int {
  6471. return xxx_messageInfo_GetUserPatientByIdRequest.Size(m)
  6472. }
  6473. func (m *GetUserPatientByIdRequest) XXX_DiscardUnknown() {
  6474. xxx_messageInfo_GetUserPatientByIdRequest.DiscardUnknown(m)
  6475. }
  6476. var xxx_messageInfo_GetUserPatientByIdRequest proto.InternalMessageInfo
  6477. func (m *GetUserPatientByIdRequest) GetUserPatientId() int32 {
  6478. if m != nil {
  6479. return m.UserPatientId
  6480. }
  6481. return 0
  6482. }
  6483. // 得到单个用户个人资料Response
  6484. type GetUserPatientByIdResponse struct {
  6485. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  6486. UserPatient *UserPatient `protobuf:"bytes,2,opt,name=userPatient,proto3" json:"userPatient,omitempty"`
  6487. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6488. XXX_unrecognized []byte `json:"-"`
  6489. XXX_sizecache int32 `json:"-"`
  6490. }
  6491. func (m *GetUserPatientByIdResponse) Reset() { *m = GetUserPatientByIdResponse{} }
  6492. func (m *GetUserPatientByIdResponse) String() string { return proto.CompactTextString(m) }
  6493. func (*GetUserPatientByIdResponse) ProtoMessage() {}
  6494. func (*GetUserPatientByIdResponse) Descriptor() ([]byte, []int) {
  6495. return fileDescriptor_116e343673f7ffaf, []int{105}
  6496. }
  6497. func (m *GetUserPatientByIdResponse) XXX_Unmarshal(b []byte) error {
  6498. return xxx_messageInfo_GetUserPatientByIdResponse.Unmarshal(m, b)
  6499. }
  6500. func (m *GetUserPatientByIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6501. return xxx_messageInfo_GetUserPatientByIdResponse.Marshal(b, m, deterministic)
  6502. }
  6503. func (m *GetUserPatientByIdResponse) XXX_Merge(src proto.Message) {
  6504. xxx_messageInfo_GetUserPatientByIdResponse.Merge(m, src)
  6505. }
  6506. func (m *GetUserPatientByIdResponse) XXX_Size() int {
  6507. return xxx_messageInfo_GetUserPatientByIdResponse.Size(m)
  6508. }
  6509. func (m *GetUserPatientByIdResponse) XXX_DiscardUnknown() {
  6510. xxx_messageInfo_GetUserPatientByIdResponse.DiscardUnknown(m)
  6511. }
  6512. var xxx_messageInfo_GetUserPatientByIdResponse proto.InternalMessageInfo
  6513. func (m *GetUserPatientByIdResponse) GetResult() *Result {
  6514. if m != nil {
  6515. return m.Result
  6516. }
  6517. return nil
  6518. }
  6519. func (m *GetUserPatientByIdResponse) GetUserPatient() *UserPatient {
  6520. if m != nil {
  6521. return m.UserPatient
  6522. }
  6523. return nil
  6524. }
  6525. //保存社交账号信息请求消息
  6526. type SaveSnsUserInfoRequest struct {
  6527. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  6528. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  6529. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  6530. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
  6531. Sex int32 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex,omitempty"`
  6532. Province string `protobuf:"bytes,6,opt,name=province,proto3" json:"province,omitempty"`
  6533. City string `protobuf:"bytes,7,opt,name=city,proto3" json:"city,omitempty"`
  6534. Country string `protobuf:"bytes,8,opt,name=country,proto3" json:"country,omitempty"`
  6535. Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar,omitempty"`
  6536. Language string `protobuf:"bytes,10,opt,name=language,proto3" json:"language,omitempty"`
  6537. SnsType int32 `protobuf:"varint,11,opt,name=snsType,proto3" json:"snsType,omitempty"`
  6538. Terminal int32 `protobuf:"varint,12,opt,name=terminal,proto3" json:"terminal,omitempty"`
  6539. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6540. XXX_unrecognized []byte `json:"-"`
  6541. XXX_sizecache int32 `json:"-"`
  6542. }
  6543. func (m *SaveSnsUserInfoRequest) Reset() { *m = SaveSnsUserInfoRequest{} }
  6544. func (m *SaveSnsUserInfoRequest) String() string { return proto.CompactTextString(m) }
  6545. func (*SaveSnsUserInfoRequest) ProtoMessage() {}
  6546. func (*SaveSnsUserInfoRequest) Descriptor() ([]byte, []int) {
  6547. return fileDescriptor_116e343673f7ffaf, []int{106}
  6548. }
  6549. func (m *SaveSnsUserInfoRequest) XXX_Unmarshal(b []byte) error {
  6550. return xxx_messageInfo_SaveSnsUserInfoRequest.Unmarshal(m, b)
  6551. }
  6552. func (m *SaveSnsUserInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6553. return xxx_messageInfo_SaveSnsUserInfoRequest.Marshal(b, m, deterministic)
  6554. }
  6555. func (m *SaveSnsUserInfoRequest) XXX_Merge(src proto.Message) {
  6556. xxx_messageInfo_SaveSnsUserInfoRequest.Merge(m, src)
  6557. }
  6558. func (m *SaveSnsUserInfoRequest) XXX_Size() int {
  6559. return xxx_messageInfo_SaveSnsUserInfoRequest.Size(m)
  6560. }
  6561. func (m *SaveSnsUserInfoRequest) XXX_DiscardUnknown() {
  6562. xxx_messageInfo_SaveSnsUserInfoRequest.DiscardUnknown(m)
  6563. }
  6564. var xxx_messageInfo_SaveSnsUserInfoRequest proto.InternalMessageInfo
  6565. func (m *SaveSnsUserInfoRequest) GetOpenId() string {
  6566. if m != nil {
  6567. return m.OpenId
  6568. }
  6569. return ""
  6570. }
  6571. func (m *SaveSnsUserInfoRequest) GetUnionId() string {
  6572. if m != nil {
  6573. return m.UnionId
  6574. }
  6575. return ""
  6576. }
  6577. func (m *SaveSnsUserInfoRequest) GetUserId() int32 {
  6578. if m != nil {
  6579. return m.UserId
  6580. }
  6581. return 0
  6582. }
  6583. func (m *SaveSnsUserInfoRequest) GetNickname() string {
  6584. if m != nil {
  6585. return m.Nickname
  6586. }
  6587. return ""
  6588. }
  6589. func (m *SaveSnsUserInfoRequest) GetSex() int32 {
  6590. if m != nil {
  6591. return m.Sex
  6592. }
  6593. return 0
  6594. }
  6595. func (m *SaveSnsUserInfoRequest) GetProvince() string {
  6596. if m != nil {
  6597. return m.Province
  6598. }
  6599. return ""
  6600. }
  6601. func (m *SaveSnsUserInfoRequest) GetCity() string {
  6602. if m != nil {
  6603. return m.City
  6604. }
  6605. return ""
  6606. }
  6607. func (m *SaveSnsUserInfoRequest) GetCountry() string {
  6608. if m != nil {
  6609. return m.Country
  6610. }
  6611. return ""
  6612. }
  6613. func (m *SaveSnsUserInfoRequest) GetAvatar() string {
  6614. if m != nil {
  6615. return m.Avatar
  6616. }
  6617. return ""
  6618. }
  6619. func (m *SaveSnsUserInfoRequest) GetLanguage() string {
  6620. if m != nil {
  6621. return m.Language
  6622. }
  6623. return ""
  6624. }
  6625. func (m *SaveSnsUserInfoRequest) GetSnsType() int32 {
  6626. if m != nil {
  6627. return m.SnsType
  6628. }
  6629. return 0
  6630. }
  6631. func (m *SaveSnsUserInfoRequest) GetTerminal() int32 {
  6632. if m != nil {
  6633. return m.Terminal
  6634. }
  6635. return 0
  6636. }
  6637. //保存社交账号信息响应消息
  6638. type SaveSnsUserInfoRespose struct {
  6639. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  6640. Info string `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
  6641. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  6642. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6643. XXX_unrecognized []byte `json:"-"`
  6644. XXX_sizecache int32 `json:"-"`
  6645. }
  6646. func (m *SaveSnsUserInfoRespose) Reset() { *m = SaveSnsUserInfoRespose{} }
  6647. func (m *SaveSnsUserInfoRespose) String() string { return proto.CompactTextString(m) }
  6648. func (*SaveSnsUserInfoRespose) ProtoMessage() {}
  6649. func (*SaveSnsUserInfoRespose) Descriptor() ([]byte, []int) {
  6650. return fileDescriptor_116e343673f7ffaf, []int{107}
  6651. }
  6652. func (m *SaveSnsUserInfoRespose) XXX_Unmarshal(b []byte) error {
  6653. return xxx_messageInfo_SaveSnsUserInfoRespose.Unmarshal(m, b)
  6654. }
  6655. func (m *SaveSnsUserInfoRespose) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6656. return xxx_messageInfo_SaveSnsUserInfoRespose.Marshal(b, m, deterministic)
  6657. }
  6658. func (m *SaveSnsUserInfoRespose) XXX_Merge(src proto.Message) {
  6659. xxx_messageInfo_SaveSnsUserInfoRespose.Merge(m, src)
  6660. }
  6661. func (m *SaveSnsUserInfoRespose) XXX_Size() int {
  6662. return xxx_messageInfo_SaveSnsUserInfoRespose.Size(m)
  6663. }
  6664. func (m *SaveSnsUserInfoRespose) XXX_DiscardUnknown() {
  6665. xxx_messageInfo_SaveSnsUserInfoRespose.DiscardUnknown(m)
  6666. }
  6667. var xxx_messageInfo_SaveSnsUserInfoRespose proto.InternalMessageInfo
  6668. func (m *SaveSnsUserInfoRespose) GetCode() int32 {
  6669. if m != nil {
  6670. return m.Code
  6671. }
  6672. return 0
  6673. }
  6674. func (m *SaveSnsUserInfoRespose) GetInfo() string {
  6675. if m != nil {
  6676. return m.Info
  6677. }
  6678. return ""
  6679. }
  6680. func (m *SaveSnsUserInfoRespose) GetUserId() int32 {
  6681. if m != nil {
  6682. return m.UserId
  6683. }
  6684. return 0
  6685. }
  6686. // 删除个人资料
  6687. type DelUserPatientRequest struct {
  6688. UserPatientId int32 `protobuf:"varint,1,opt,name=userPatientId,proto3" json:"userPatientId,omitempty"`
  6689. UserId int32 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  6690. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6691. XXX_unrecognized []byte `json:"-"`
  6692. XXX_sizecache int32 `json:"-"`
  6693. }
  6694. func (m *DelUserPatientRequest) Reset() { *m = DelUserPatientRequest{} }
  6695. func (m *DelUserPatientRequest) String() string { return proto.CompactTextString(m) }
  6696. func (*DelUserPatientRequest) ProtoMessage() {}
  6697. func (*DelUserPatientRequest) Descriptor() ([]byte, []int) {
  6698. return fileDescriptor_116e343673f7ffaf, []int{108}
  6699. }
  6700. func (m *DelUserPatientRequest) XXX_Unmarshal(b []byte) error {
  6701. return xxx_messageInfo_DelUserPatientRequest.Unmarshal(m, b)
  6702. }
  6703. func (m *DelUserPatientRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6704. return xxx_messageInfo_DelUserPatientRequest.Marshal(b, m, deterministic)
  6705. }
  6706. func (m *DelUserPatientRequest) XXX_Merge(src proto.Message) {
  6707. xxx_messageInfo_DelUserPatientRequest.Merge(m, src)
  6708. }
  6709. func (m *DelUserPatientRequest) XXX_Size() int {
  6710. return xxx_messageInfo_DelUserPatientRequest.Size(m)
  6711. }
  6712. func (m *DelUserPatientRequest) XXX_DiscardUnknown() {
  6713. xxx_messageInfo_DelUserPatientRequest.DiscardUnknown(m)
  6714. }
  6715. var xxx_messageInfo_DelUserPatientRequest proto.InternalMessageInfo
  6716. func (m *DelUserPatientRequest) GetUserPatientId() int32 {
  6717. if m != nil {
  6718. return m.UserPatientId
  6719. }
  6720. return 0
  6721. }
  6722. func (m *DelUserPatientRequest) GetUserId() int32 {
  6723. if m != nil {
  6724. return m.UserId
  6725. }
  6726. return 0
  6727. }
  6728. //根据unionId和terminal判断是否需要更新sns_user_info表的userId request
  6729. type CheckAndUpdateSnsUserIdRequest struct {
  6730. Terminal int32 `protobuf:"varint,1,opt,name=terminal,proto3" json:"terminal,omitempty"`
  6731. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  6732. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  6733. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6734. XXX_unrecognized []byte `json:"-"`
  6735. XXX_sizecache int32 `json:"-"`
  6736. }
  6737. func (m *CheckAndUpdateSnsUserIdRequest) Reset() { *m = CheckAndUpdateSnsUserIdRequest{} }
  6738. func (m *CheckAndUpdateSnsUserIdRequest) String() string { return proto.CompactTextString(m) }
  6739. func (*CheckAndUpdateSnsUserIdRequest) ProtoMessage() {}
  6740. func (*CheckAndUpdateSnsUserIdRequest) Descriptor() ([]byte, []int) {
  6741. return fileDescriptor_116e343673f7ffaf, []int{109}
  6742. }
  6743. func (m *CheckAndUpdateSnsUserIdRequest) XXX_Unmarshal(b []byte) error {
  6744. return xxx_messageInfo_CheckAndUpdateSnsUserIdRequest.Unmarshal(m, b)
  6745. }
  6746. func (m *CheckAndUpdateSnsUserIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6747. return xxx_messageInfo_CheckAndUpdateSnsUserIdRequest.Marshal(b, m, deterministic)
  6748. }
  6749. func (m *CheckAndUpdateSnsUserIdRequest) XXX_Merge(src proto.Message) {
  6750. xxx_messageInfo_CheckAndUpdateSnsUserIdRequest.Merge(m, src)
  6751. }
  6752. func (m *CheckAndUpdateSnsUserIdRequest) XXX_Size() int {
  6753. return xxx_messageInfo_CheckAndUpdateSnsUserIdRequest.Size(m)
  6754. }
  6755. func (m *CheckAndUpdateSnsUserIdRequest) XXX_DiscardUnknown() {
  6756. xxx_messageInfo_CheckAndUpdateSnsUserIdRequest.DiscardUnknown(m)
  6757. }
  6758. var xxx_messageInfo_CheckAndUpdateSnsUserIdRequest proto.InternalMessageInfo
  6759. func (m *CheckAndUpdateSnsUserIdRequest) GetTerminal() int32 {
  6760. if m != nil {
  6761. return m.Terminal
  6762. }
  6763. return 0
  6764. }
  6765. func (m *CheckAndUpdateSnsUserIdRequest) GetUnionId() string {
  6766. if m != nil {
  6767. return m.UnionId
  6768. }
  6769. return ""
  6770. }
  6771. func (m *CheckAndUpdateSnsUserIdRequest) GetUserId() int32 {
  6772. if m != nil {
  6773. return m.UserId
  6774. }
  6775. return 0
  6776. }
  6777. //更新关注医生状态(关注/取消关注)Request
  6778. type UpdateFollowedStatusRequest struct {
  6779. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  6780. DoctorId int32 `protobuf:"varint,2,opt,name=doctorId,proto3" json:"doctorId,omitempty"`
  6781. Status int32 `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"`
  6782. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6783. XXX_unrecognized []byte `json:"-"`
  6784. XXX_sizecache int32 `json:"-"`
  6785. }
  6786. func (m *UpdateFollowedStatusRequest) Reset() { *m = UpdateFollowedStatusRequest{} }
  6787. func (m *UpdateFollowedStatusRequest) String() string { return proto.CompactTextString(m) }
  6788. func (*UpdateFollowedStatusRequest) ProtoMessage() {}
  6789. func (*UpdateFollowedStatusRequest) Descriptor() ([]byte, []int) {
  6790. return fileDescriptor_116e343673f7ffaf, []int{110}
  6791. }
  6792. func (m *UpdateFollowedStatusRequest) XXX_Unmarshal(b []byte) error {
  6793. return xxx_messageInfo_UpdateFollowedStatusRequest.Unmarshal(m, b)
  6794. }
  6795. func (m *UpdateFollowedStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6796. return xxx_messageInfo_UpdateFollowedStatusRequest.Marshal(b, m, deterministic)
  6797. }
  6798. func (m *UpdateFollowedStatusRequest) XXX_Merge(src proto.Message) {
  6799. xxx_messageInfo_UpdateFollowedStatusRequest.Merge(m, src)
  6800. }
  6801. func (m *UpdateFollowedStatusRequest) XXX_Size() int {
  6802. return xxx_messageInfo_UpdateFollowedStatusRequest.Size(m)
  6803. }
  6804. func (m *UpdateFollowedStatusRequest) XXX_DiscardUnknown() {
  6805. xxx_messageInfo_UpdateFollowedStatusRequest.DiscardUnknown(m)
  6806. }
  6807. var xxx_messageInfo_UpdateFollowedStatusRequest proto.InternalMessageInfo
  6808. func (m *UpdateFollowedStatusRequest) GetUserId() int32 {
  6809. if m != nil {
  6810. return m.UserId
  6811. }
  6812. return 0
  6813. }
  6814. func (m *UpdateFollowedStatusRequest) GetDoctorId() int32 {
  6815. if m != nil {
  6816. return m.DoctorId
  6817. }
  6818. return 0
  6819. }
  6820. func (m *UpdateFollowedStatusRequest) GetStatus() int32 {
  6821. if m != nil {
  6822. return m.Status
  6823. }
  6824. return 0
  6825. }
  6826. //保存小程序用户信息
  6827. type SaveMinAppUserRequest struct {
  6828. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  6829. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  6830. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  6831. Nickname string `protobuf:"bytes,4,opt,name=nickname,proto3" json:"nickname,omitempty"`
  6832. Sex int32 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex,omitempty"`
  6833. Province string `protobuf:"bytes,6,opt,name=province,proto3" json:"province,omitempty"`
  6834. City string `protobuf:"bytes,7,opt,name=city,proto3" json:"city,omitempty"`
  6835. Country string `protobuf:"bytes,8,opt,name=country,proto3" json:"country,omitempty"`
  6836. Avatar string `protobuf:"bytes,9,opt,name=avatar,proto3" json:"avatar,omitempty"`
  6837. Language string `protobuf:"bytes,10,opt,name=language,proto3" json:"language,omitempty"`
  6838. SnsType int32 `protobuf:"varint,11,opt,name=snsType,proto3" json:"snsType,omitempty"`
  6839. Terminal int32 `protobuf:"varint,12,opt,name=terminal,proto3" json:"terminal,omitempty"`
  6840. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6841. XXX_unrecognized []byte `json:"-"`
  6842. XXX_sizecache int32 `json:"-"`
  6843. }
  6844. func (m *SaveMinAppUserRequest) Reset() { *m = SaveMinAppUserRequest{} }
  6845. func (m *SaveMinAppUserRequest) String() string { return proto.CompactTextString(m) }
  6846. func (*SaveMinAppUserRequest) ProtoMessage() {}
  6847. func (*SaveMinAppUserRequest) Descriptor() ([]byte, []int) {
  6848. return fileDescriptor_116e343673f7ffaf, []int{111}
  6849. }
  6850. func (m *SaveMinAppUserRequest) XXX_Unmarshal(b []byte) error {
  6851. return xxx_messageInfo_SaveMinAppUserRequest.Unmarshal(m, b)
  6852. }
  6853. func (m *SaveMinAppUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6854. return xxx_messageInfo_SaveMinAppUserRequest.Marshal(b, m, deterministic)
  6855. }
  6856. func (m *SaveMinAppUserRequest) XXX_Merge(src proto.Message) {
  6857. xxx_messageInfo_SaveMinAppUserRequest.Merge(m, src)
  6858. }
  6859. func (m *SaveMinAppUserRequest) XXX_Size() int {
  6860. return xxx_messageInfo_SaveMinAppUserRequest.Size(m)
  6861. }
  6862. func (m *SaveMinAppUserRequest) XXX_DiscardUnknown() {
  6863. xxx_messageInfo_SaveMinAppUserRequest.DiscardUnknown(m)
  6864. }
  6865. var xxx_messageInfo_SaveMinAppUserRequest proto.InternalMessageInfo
  6866. func (m *SaveMinAppUserRequest) GetOpenId() string {
  6867. if m != nil {
  6868. return m.OpenId
  6869. }
  6870. return ""
  6871. }
  6872. func (m *SaveMinAppUserRequest) GetUnionId() string {
  6873. if m != nil {
  6874. return m.UnionId
  6875. }
  6876. return ""
  6877. }
  6878. func (m *SaveMinAppUserRequest) GetUserId() int32 {
  6879. if m != nil {
  6880. return m.UserId
  6881. }
  6882. return 0
  6883. }
  6884. func (m *SaveMinAppUserRequest) GetNickname() string {
  6885. if m != nil {
  6886. return m.Nickname
  6887. }
  6888. return ""
  6889. }
  6890. func (m *SaveMinAppUserRequest) GetSex() int32 {
  6891. if m != nil {
  6892. return m.Sex
  6893. }
  6894. return 0
  6895. }
  6896. func (m *SaveMinAppUserRequest) GetProvince() string {
  6897. if m != nil {
  6898. return m.Province
  6899. }
  6900. return ""
  6901. }
  6902. func (m *SaveMinAppUserRequest) GetCity() string {
  6903. if m != nil {
  6904. return m.City
  6905. }
  6906. return ""
  6907. }
  6908. func (m *SaveMinAppUserRequest) GetCountry() string {
  6909. if m != nil {
  6910. return m.Country
  6911. }
  6912. return ""
  6913. }
  6914. func (m *SaveMinAppUserRequest) GetAvatar() string {
  6915. if m != nil {
  6916. return m.Avatar
  6917. }
  6918. return ""
  6919. }
  6920. func (m *SaveMinAppUserRequest) GetLanguage() string {
  6921. if m != nil {
  6922. return m.Language
  6923. }
  6924. return ""
  6925. }
  6926. func (m *SaveMinAppUserRequest) GetSnsType() int32 {
  6927. if m != nil {
  6928. return m.SnsType
  6929. }
  6930. return 0
  6931. }
  6932. func (m *SaveMinAppUserRequest) GetTerminal() int32 {
  6933. if m != nil {
  6934. return m.Terminal
  6935. }
  6936. return 0
  6937. }
  6938. //保存小程序用户信息
  6939. type SaveMinAppUserResponse struct {
  6940. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  6941. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  6942. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  6943. Mobile string `protobuf:"bytes,4,opt,name=mobile,proto3" json:"mobile,omitempty"`
  6944. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6945. XXX_unrecognized []byte `json:"-"`
  6946. XXX_sizecache int32 `json:"-"`
  6947. }
  6948. func (m *SaveMinAppUserResponse) Reset() { *m = SaveMinAppUserResponse{} }
  6949. func (m *SaveMinAppUserResponse) String() string { return proto.CompactTextString(m) }
  6950. func (*SaveMinAppUserResponse) ProtoMessage() {}
  6951. func (*SaveMinAppUserResponse) Descriptor() ([]byte, []int) {
  6952. return fileDescriptor_116e343673f7ffaf, []int{112}
  6953. }
  6954. func (m *SaveMinAppUserResponse) XXX_Unmarshal(b []byte) error {
  6955. return xxx_messageInfo_SaveMinAppUserResponse.Unmarshal(m, b)
  6956. }
  6957. func (m *SaveMinAppUserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6958. return xxx_messageInfo_SaveMinAppUserResponse.Marshal(b, m, deterministic)
  6959. }
  6960. func (m *SaveMinAppUserResponse) XXX_Merge(src proto.Message) {
  6961. xxx_messageInfo_SaveMinAppUserResponse.Merge(m, src)
  6962. }
  6963. func (m *SaveMinAppUserResponse) XXX_Size() int {
  6964. return xxx_messageInfo_SaveMinAppUserResponse.Size(m)
  6965. }
  6966. func (m *SaveMinAppUserResponse) XXX_DiscardUnknown() {
  6967. xxx_messageInfo_SaveMinAppUserResponse.DiscardUnknown(m)
  6968. }
  6969. var xxx_messageInfo_SaveMinAppUserResponse proto.InternalMessageInfo
  6970. func (m *SaveMinAppUserResponse) GetCode() int32 {
  6971. if m != nil {
  6972. return m.Code
  6973. }
  6974. return 0
  6975. }
  6976. func (m *SaveMinAppUserResponse) GetMsg() string {
  6977. if m != nil {
  6978. return m.Msg
  6979. }
  6980. return ""
  6981. }
  6982. func (m *SaveMinAppUserResponse) GetUserId() int32 {
  6983. if m != nil {
  6984. return m.UserId
  6985. }
  6986. return 0
  6987. }
  6988. func (m *SaveMinAppUserResponse) GetMobile() string {
  6989. if m != nil {
  6990. return m.Mobile
  6991. }
  6992. return ""
  6993. }
  6994. // 第三方账户信息
  6995. type SnsUserInfo struct {
  6996. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  6997. OpenId string `protobuf:"bytes,2,opt,name=openId,proto3" json:"openId,omitempty"`
  6998. UnionId string `protobuf:"bytes,3,opt,name=unionId,proto3" json:"unionId,omitempty"`
  6999. UserId int32 `protobuf:"varint,4,opt,name=userId,proto3" json:"userId,omitempty"`
  7000. Nickname string `protobuf:"bytes,5,opt,name=nickname,proto3" json:"nickname,omitempty"`
  7001. Sex int32 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex,omitempty"`
  7002. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province,omitempty"`
  7003. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city,omitempty"`
  7004. Country string `protobuf:"bytes,9,opt,name=country,proto3" json:"country,omitempty"`
  7005. Avatar string `protobuf:"bytes,10,opt,name=avatar,proto3" json:"avatar,omitempty"`
  7006. Language string `protobuf:"bytes,11,opt,name=language,proto3" json:"language,omitempty"`
  7007. SnsType int32 `protobuf:"varint,12,opt,name=snsType,proto3" json:"snsType,omitempty"`
  7008. Status int32 `protobuf:"varint,13,opt,name=status,proto3" json:"status,omitempty"`
  7009. CreateTime int64 `protobuf:"varint,14,opt,name=createTime,proto3" json:"createTime,omitempty"`
  7010. Terminal int32 `protobuf:"varint,15,opt,name=terminal,proto3" json:"terminal,omitempty"`
  7011. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7012. XXX_unrecognized []byte `json:"-"`
  7013. XXX_sizecache int32 `json:"-"`
  7014. }
  7015. func (m *SnsUserInfo) Reset() { *m = SnsUserInfo{} }
  7016. func (m *SnsUserInfo) String() string { return proto.CompactTextString(m) }
  7017. func (*SnsUserInfo) ProtoMessage() {}
  7018. func (*SnsUserInfo) Descriptor() ([]byte, []int) {
  7019. return fileDescriptor_116e343673f7ffaf, []int{113}
  7020. }
  7021. func (m *SnsUserInfo) XXX_Unmarshal(b []byte) error {
  7022. return xxx_messageInfo_SnsUserInfo.Unmarshal(m, b)
  7023. }
  7024. func (m *SnsUserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7025. return xxx_messageInfo_SnsUserInfo.Marshal(b, m, deterministic)
  7026. }
  7027. func (m *SnsUserInfo) XXX_Merge(src proto.Message) {
  7028. xxx_messageInfo_SnsUserInfo.Merge(m, src)
  7029. }
  7030. func (m *SnsUserInfo) XXX_Size() int {
  7031. return xxx_messageInfo_SnsUserInfo.Size(m)
  7032. }
  7033. func (m *SnsUserInfo) XXX_DiscardUnknown() {
  7034. xxx_messageInfo_SnsUserInfo.DiscardUnknown(m)
  7035. }
  7036. var xxx_messageInfo_SnsUserInfo proto.InternalMessageInfo
  7037. func (m *SnsUserInfo) GetId() int32 {
  7038. if m != nil {
  7039. return m.Id
  7040. }
  7041. return 0
  7042. }
  7043. func (m *SnsUserInfo) GetOpenId() string {
  7044. if m != nil {
  7045. return m.OpenId
  7046. }
  7047. return ""
  7048. }
  7049. func (m *SnsUserInfo) GetUnionId() string {
  7050. if m != nil {
  7051. return m.UnionId
  7052. }
  7053. return ""
  7054. }
  7055. func (m *SnsUserInfo) GetUserId() int32 {
  7056. if m != nil {
  7057. return m.UserId
  7058. }
  7059. return 0
  7060. }
  7061. func (m *SnsUserInfo) GetNickname() string {
  7062. if m != nil {
  7063. return m.Nickname
  7064. }
  7065. return ""
  7066. }
  7067. func (m *SnsUserInfo) GetSex() int32 {
  7068. if m != nil {
  7069. return m.Sex
  7070. }
  7071. return 0
  7072. }
  7073. func (m *SnsUserInfo) GetProvince() string {
  7074. if m != nil {
  7075. return m.Province
  7076. }
  7077. return ""
  7078. }
  7079. func (m *SnsUserInfo) GetCity() string {
  7080. if m != nil {
  7081. return m.City
  7082. }
  7083. return ""
  7084. }
  7085. func (m *SnsUserInfo) GetCountry() string {
  7086. if m != nil {
  7087. return m.Country
  7088. }
  7089. return ""
  7090. }
  7091. func (m *SnsUserInfo) GetAvatar() string {
  7092. if m != nil {
  7093. return m.Avatar
  7094. }
  7095. return ""
  7096. }
  7097. func (m *SnsUserInfo) GetLanguage() string {
  7098. if m != nil {
  7099. return m.Language
  7100. }
  7101. return ""
  7102. }
  7103. func (m *SnsUserInfo) GetSnsType() int32 {
  7104. if m != nil {
  7105. return m.SnsType
  7106. }
  7107. return 0
  7108. }
  7109. func (m *SnsUserInfo) GetStatus() int32 {
  7110. if m != nil {
  7111. return m.Status
  7112. }
  7113. return 0
  7114. }
  7115. func (m *SnsUserInfo) GetCreateTime() int64 {
  7116. if m != nil {
  7117. return m.CreateTime
  7118. }
  7119. return 0
  7120. }
  7121. func (m *SnsUserInfo) GetTerminal() int32 {
  7122. if m != nil {
  7123. return m.Terminal
  7124. }
  7125. return 0
  7126. }
  7127. type GetSnsUserInfoRequest struct {
  7128. OpenId string `protobuf:"bytes,1,opt,name=openId,proto3" json:"openId,omitempty"`
  7129. UnionId string `protobuf:"bytes,2,opt,name=unionId,proto3" json:"unionId,omitempty"`
  7130. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  7131. Terminal int32 `protobuf:"varint,4,opt,name=terminal,proto3" json:"terminal,omitempty"`
  7132. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7133. XXX_unrecognized []byte `json:"-"`
  7134. XXX_sizecache int32 `json:"-"`
  7135. }
  7136. func (m *GetSnsUserInfoRequest) Reset() { *m = GetSnsUserInfoRequest{} }
  7137. func (m *GetSnsUserInfoRequest) String() string { return proto.CompactTextString(m) }
  7138. func (*GetSnsUserInfoRequest) ProtoMessage() {}
  7139. func (*GetSnsUserInfoRequest) Descriptor() ([]byte, []int) {
  7140. return fileDescriptor_116e343673f7ffaf, []int{114}
  7141. }
  7142. func (m *GetSnsUserInfoRequest) XXX_Unmarshal(b []byte) error {
  7143. return xxx_messageInfo_GetSnsUserInfoRequest.Unmarshal(m, b)
  7144. }
  7145. func (m *GetSnsUserInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7146. return xxx_messageInfo_GetSnsUserInfoRequest.Marshal(b, m, deterministic)
  7147. }
  7148. func (m *GetSnsUserInfoRequest) XXX_Merge(src proto.Message) {
  7149. xxx_messageInfo_GetSnsUserInfoRequest.Merge(m, src)
  7150. }
  7151. func (m *GetSnsUserInfoRequest) XXX_Size() int {
  7152. return xxx_messageInfo_GetSnsUserInfoRequest.Size(m)
  7153. }
  7154. func (m *GetSnsUserInfoRequest) XXX_DiscardUnknown() {
  7155. xxx_messageInfo_GetSnsUserInfoRequest.DiscardUnknown(m)
  7156. }
  7157. var xxx_messageInfo_GetSnsUserInfoRequest proto.InternalMessageInfo
  7158. func (m *GetSnsUserInfoRequest) GetOpenId() string {
  7159. if m != nil {
  7160. return m.OpenId
  7161. }
  7162. return ""
  7163. }
  7164. func (m *GetSnsUserInfoRequest) GetUnionId() string {
  7165. if m != nil {
  7166. return m.UnionId
  7167. }
  7168. return ""
  7169. }
  7170. func (m *GetSnsUserInfoRequest) GetUserId() int32 {
  7171. if m != nil {
  7172. return m.UserId
  7173. }
  7174. return 0
  7175. }
  7176. func (m *GetSnsUserInfoRequest) GetTerminal() int32 {
  7177. if m != nil {
  7178. return m.Terminal
  7179. }
  7180. return 0
  7181. }
  7182. type GetSnsUserInfoResponse struct {
  7183. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  7184. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  7185. SnsUserInfo *SnsUserInfo `protobuf:"bytes,3,opt,name=snsUserInfo,proto3" json:"snsUserInfo,omitempty"`
  7186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7187. XXX_unrecognized []byte `json:"-"`
  7188. XXX_sizecache int32 `json:"-"`
  7189. }
  7190. func (m *GetSnsUserInfoResponse) Reset() { *m = GetSnsUserInfoResponse{} }
  7191. func (m *GetSnsUserInfoResponse) String() string { return proto.CompactTextString(m) }
  7192. func (*GetSnsUserInfoResponse) ProtoMessage() {}
  7193. func (*GetSnsUserInfoResponse) Descriptor() ([]byte, []int) {
  7194. return fileDescriptor_116e343673f7ffaf, []int{115}
  7195. }
  7196. func (m *GetSnsUserInfoResponse) XXX_Unmarshal(b []byte) error {
  7197. return xxx_messageInfo_GetSnsUserInfoResponse.Unmarshal(m, b)
  7198. }
  7199. func (m *GetSnsUserInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7200. return xxx_messageInfo_GetSnsUserInfoResponse.Marshal(b, m, deterministic)
  7201. }
  7202. func (m *GetSnsUserInfoResponse) XXX_Merge(src proto.Message) {
  7203. xxx_messageInfo_GetSnsUserInfoResponse.Merge(m, src)
  7204. }
  7205. func (m *GetSnsUserInfoResponse) XXX_Size() int {
  7206. return xxx_messageInfo_GetSnsUserInfoResponse.Size(m)
  7207. }
  7208. func (m *GetSnsUserInfoResponse) XXX_DiscardUnknown() {
  7209. xxx_messageInfo_GetSnsUserInfoResponse.DiscardUnknown(m)
  7210. }
  7211. var xxx_messageInfo_GetSnsUserInfoResponse proto.InternalMessageInfo
  7212. func (m *GetSnsUserInfoResponse) GetCode() int32 {
  7213. if m != nil {
  7214. return m.Code
  7215. }
  7216. return 0
  7217. }
  7218. func (m *GetSnsUserInfoResponse) GetMsg() string {
  7219. if m != nil {
  7220. return m.Msg
  7221. }
  7222. return ""
  7223. }
  7224. func (m *GetSnsUserInfoResponse) GetSnsUserInfo() *SnsUserInfo {
  7225. if m != nil {
  7226. return m.SnsUserInfo
  7227. }
  7228. return nil
  7229. }
  7230. type UpdateSnsUserInfoByUserIdRequest struct {
  7231. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  7232. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"`
  7233. Sex int32 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex,omitempty"`
  7234. Province string `protobuf:"bytes,4,opt,name=province,proto3" json:"province,omitempty"`
  7235. City string `protobuf:"bytes,5,opt,name=city,proto3" json:"city,omitempty"`
  7236. Country string `protobuf:"bytes,6,opt,name=country,proto3" json:"country,omitempty"`
  7237. Avatar string `protobuf:"bytes,7,opt,name=avatar,proto3" json:"avatar,omitempty"`
  7238. Language string `protobuf:"bytes,8,opt,name=language,proto3" json:"language,omitempty"`
  7239. Terminal int32 `protobuf:"varint,9,opt,name=terminal,proto3" json:"terminal,omitempty"`
  7240. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7241. XXX_unrecognized []byte `json:"-"`
  7242. XXX_sizecache int32 `json:"-"`
  7243. }
  7244. func (m *UpdateSnsUserInfoByUserIdRequest) Reset() { *m = UpdateSnsUserInfoByUserIdRequest{} }
  7245. func (m *UpdateSnsUserInfoByUserIdRequest) String() string { return proto.CompactTextString(m) }
  7246. func (*UpdateSnsUserInfoByUserIdRequest) ProtoMessage() {}
  7247. func (*UpdateSnsUserInfoByUserIdRequest) Descriptor() ([]byte, []int) {
  7248. return fileDescriptor_116e343673f7ffaf, []int{116}
  7249. }
  7250. func (m *UpdateSnsUserInfoByUserIdRequest) XXX_Unmarshal(b []byte) error {
  7251. return xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest.Unmarshal(m, b)
  7252. }
  7253. func (m *UpdateSnsUserInfoByUserIdRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7254. return xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest.Marshal(b, m, deterministic)
  7255. }
  7256. func (m *UpdateSnsUserInfoByUserIdRequest) XXX_Merge(src proto.Message) {
  7257. xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest.Merge(m, src)
  7258. }
  7259. func (m *UpdateSnsUserInfoByUserIdRequest) XXX_Size() int {
  7260. return xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest.Size(m)
  7261. }
  7262. func (m *UpdateSnsUserInfoByUserIdRequest) XXX_DiscardUnknown() {
  7263. xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest.DiscardUnknown(m)
  7264. }
  7265. var xxx_messageInfo_UpdateSnsUserInfoByUserIdRequest proto.InternalMessageInfo
  7266. func (m *UpdateSnsUserInfoByUserIdRequest) GetUserId() int32 {
  7267. if m != nil {
  7268. return m.UserId
  7269. }
  7270. return 0
  7271. }
  7272. func (m *UpdateSnsUserInfoByUserIdRequest) GetNickname() string {
  7273. if m != nil {
  7274. return m.Nickname
  7275. }
  7276. return ""
  7277. }
  7278. func (m *UpdateSnsUserInfoByUserIdRequest) GetSex() int32 {
  7279. if m != nil {
  7280. return m.Sex
  7281. }
  7282. return 0
  7283. }
  7284. func (m *UpdateSnsUserInfoByUserIdRequest) GetProvince() string {
  7285. if m != nil {
  7286. return m.Province
  7287. }
  7288. return ""
  7289. }
  7290. func (m *UpdateSnsUserInfoByUserIdRequest) GetCity() string {
  7291. if m != nil {
  7292. return m.City
  7293. }
  7294. return ""
  7295. }
  7296. func (m *UpdateSnsUserInfoByUserIdRequest) GetCountry() string {
  7297. if m != nil {
  7298. return m.Country
  7299. }
  7300. return ""
  7301. }
  7302. func (m *UpdateSnsUserInfoByUserIdRequest) GetAvatar() string {
  7303. if m != nil {
  7304. return m.Avatar
  7305. }
  7306. return ""
  7307. }
  7308. func (m *UpdateSnsUserInfoByUserIdRequest) GetLanguage() string {
  7309. if m != nil {
  7310. return m.Language
  7311. }
  7312. return ""
  7313. }
  7314. func (m *UpdateSnsUserInfoByUserIdRequest) GetTerminal() int32 {
  7315. if m != nil {
  7316. return m.Terminal
  7317. }
  7318. return 0
  7319. }
  7320. type UpdateSnsUserInfoByUserIdResponse struct {
  7321. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  7322. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  7323. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7324. XXX_unrecognized []byte `json:"-"`
  7325. XXX_sizecache int32 `json:"-"`
  7326. }
  7327. func (m *UpdateSnsUserInfoByUserIdResponse) Reset() { *m = UpdateSnsUserInfoByUserIdResponse{} }
  7328. func (m *UpdateSnsUserInfoByUserIdResponse) String() string { return proto.CompactTextString(m) }
  7329. func (*UpdateSnsUserInfoByUserIdResponse) ProtoMessage() {}
  7330. func (*UpdateSnsUserInfoByUserIdResponse) Descriptor() ([]byte, []int) {
  7331. return fileDescriptor_116e343673f7ffaf, []int{117}
  7332. }
  7333. func (m *UpdateSnsUserInfoByUserIdResponse) XXX_Unmarshal(b []byte) error {
  7334. return xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse.Unmarshal(m, b)
  7335. }
  7336. func (m *UpdateSnsUserInfoByUserIdResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7337. return xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse.Marshal(b, m, deterministic)
  7338. }
  7339. func (m *UpdateSnsUserInfoByUserIdResponse) XXX_Merge(src proto.Message) {
  7340. xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse.Merge(m, src)
  7341. }
  7342. func (m *UpdateSnsUserInfoByUserIdResponse) XXX_Size() int {
  7343. return xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse.Size(m)
  7344. }
  7345. func (m *UpdateSnsUserInfoByUserIdResponse) XXX_DiscardUnknown() {
  7346. xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse.DiscardUnknown(m)
  7347. }
  7348. var xxx_messageInfo_UpdateSnsUserInfoByUserIdResponse proto.InternalMessageInfo
  7349. func (m *UpdateSnsUserInfoByUserIdResponse) GetCode() int32 {
  7350. if m != nil {
  7351. return m.Code
  7352. }
  7353. return 0
  7354. }
  7355. func (m *UpdateSnsUserInfoByUserIdResponse) GetMsg() string {
  7356. if m != nil {
  7357. return m.Msg
  7358. }
  7359. return ""
  7360. }
  7361. //实名认证
  7362. type AuthenticateRequest struct {
  7363. IdCardNo string `protobuf:"bytes,1,opt,name=idCardNo,proto3" json:"idCardNo,omitempty"`
  7364. RealName string `protobuf:"bytes,2,opt,name=realName,proto3" json:"realName,omitempty"`
  7365. UserId int32 `protobuf:"varint,3,opt,name=userId,proto3" json:"userId,omitempty"`
  7366. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7367. XXX_unrecognized []byte `json:"-"`
  7368. XXX_sizecache int32 `json:"-"`
  7369. }
  7370. func (m *AuthenticateRequest) Reset() { *m = AuthenticateRequest{} }
  7371. func (m *AuthenticateRequest) String() string { return proto.CompactTextString(m) }
  7372. func (*AuthenticateRequest) ProtoMessage() {}
  7373. func (*AuthenticateRequest) Descriptor() ([]byte, []int) {
  7374. return fileDescriptor_116e343673f7ffaf, []int{118}
  7375. }
  7376. func (m *AuthenticateRequest) XXX_Unmarshal(b []byte) error {
  7377. return xxx_messageInfo_AuthenticateRequest.Unmarshal(m, b)
  7378. }
  7379. func (m *AuthenticateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7380. return xxx_messageInfo_AuthenticateRequest.Marshal(b, m, deterministic)
  7381. }
  7382. func (m *AuthenticateRequest) XXX_Merge(src proto.Message) {
  7383. xxx_messageInfo_AuthenticateRequest.Merge(m, src)
  7384. }
  7385. func (m *AuthenticateRequest) XXX_Size() int {
  7386. return xxx_messageInfo_AuthenticateRequest.Size(m)
  7387. }
  7388. func (m *AuthenticateRequest) XXX_DiscardUnknown() {
  7389. xxx_messageInfo_AuthenticateRequest.DiscardUnknown(m)
  7390. }
  7391. var xxx_messageInfo_AuthenticateRequest proto.InternalMessageInfo
  7392. func (m *AuthenticateRequest) GetIdCardNo() string {
  7393. if m != nil {
  7394. return m.IdCardNo
  7395. }
  7396. return ""
  7397. }
  7398. func (m *AuthenticateRequest) GetRealName() string {
  7399. if m != nil {
  7400. return m.RealName
  7401. }
  7402. return ""
  7403. }
  7404. func (m *AuthenticateRequest) GetUserId() int32 {
  7405. if m != nil {
  7406. return m.UserId
  7407. }
  7408. return 0
  7409. }
  7410. //实名认证
  7411. type AuthenticateResponse struct {
  7412. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  7413. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  7414. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7415. XXX_unrecognized []byte `json:"-"`
  7416. XXX_sizecache int32 `json:"-"`
  7417. }
  7418. func (m *AuthenticateResponse) Reset() { *m = AuthenticateResponse{} }
  7419. func (m *AuthenticateResponse) String() string { return proto.CompactTextString(m) }
  7420. func (*AuthenticateResponse) ProtoMessage() {}
  7421. func (*AuthenticateResponse) Descriptor() ([]byte, []int) {
  7422. return fileDescriptor_116e343673f7ffaf, []int{119}
  7423. }
  7424. func (m *AuthenticateResponse) XXX_Unmarshal(b []byte) error {
  7425. return xxx_messageInfo_AuthenticateResponse.Unmarshal(m, b)
  7426. }
  7427. func (m *AuthenticateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7428. return xxx_messageInfo_AuthenticateResponse.Marshal(b, m, deterministic)
  7429. }
  7430. func (m *AuthenticateResponse) XXX_Merge(src proto.Message) {
  7431. xxx_messageInfo_AuthenticateResponse.Merge(m, src)
  7432. }
  7433. func (m *AuthenticateResponse) XXX_Size() int {
  7434. return xxx_messageInfo_AuthenticateResponse.Size(m)
  7435. }
  7436. func (m *AuthenticateResponse) XXX_DiscardUnknown() {
  7437. xxx_messageInfo_AuthenticateResponse.DiscardUnknown(m)
  7438. }
  7439. var xxx_messageInfo_AuthenticateResponse proto.InternalMessageInfo
  7440. func (m *AuthenticateResponse) GetCode() int32 {
  7441. if m != nil {
  7442. return m.Code
  7443. }
  7444. return 0
  7445. }
  7446. func (m *AuthenticateResponse) GetMsg() string {
  7447. if m != nil {
  7448. return m.Msg
  7449. }
  7450. return ""
  7451. }
  7452. // 根据 userId 和 terminal 获取 snsUserInfo
  7453. type GetSnsUserInfoByUserIdAndTerminalRequest struct {
  7454. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  7455. Terminal int32 `protobuf:"varint,2,opt,name=terminal,proto3" json:"terminal,omitempty"`
  7456. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7457. XXX_unrecognized []byte `json:"-"`
  7458. XXX_sizecache int32 `json:"-"`
  7459. }
  7460. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) Reset() {
  7461. *m = GetSnsUserInfoByUserIdAndTerminalRequest{}
  7462. }
  7463. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) String() string { return proto.CompactTextString(m) }
  7464. func (*GetSnsUserInfoByUserIdAndTerminalRequest) ProtoMessage() {}
  7465. func (*GetSnsUserInfoByUserIdAndTerminalRequest) Descriptor() ([]byte, []int) {
  7466. return fileDescriptor_116e343673f7ffaf, []int{120}
  7467. }
  7468. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) XXX_Unmarshal(b []byte) error {
  7469. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest.Unmarshal(m, b)
  7470. }
  7471. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7472. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest.Marshal(b, m, deterministic)
  7473. }
  7474. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) XXX_Merge(src proto.Message) {
  7475. xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest.Merge(m, src)
  7476. }
  7477. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) XXX_Size() int {
  7478. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest.Size(m)
  7479. }
  7480. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) XXX_DiscardUnknown() {
  7481. xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest.DiscardUnknown(m)
  7482. }
  7483. var xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalRequest proto.InternalMessageInfo
  7484. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) GetUserId() int32 {
  7485. if m != nil {
  7486. return m.UserId
  7487. }
  7488. return 0
  7489. }
  7490. func (m *GetSnsUserInfoByUserIdAndTerminalRequest) GetTerminal() int32 {
  7491. if m != nil {
  7492. return m.Terminal
  7493. }
  7494. return 0
  7495. }
  7496. type GetSnsUserInfoByUserIdAndTerminalResponse struct {
  7497. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  7498. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  7499. SnsUserInfo *SnsUserInfo `protobuf:"bytes,3,opt,name=snsUserInfo,proto3" json:"snsUserInfo,omitempty"`
  7500. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7501. XXX_unrecognized []byte `json:"-"`
  7502. XXX_sizecache int32 `json:"-"`
  7503. }
  7504. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) Reset() {
  7505. *m = GetSnsUserInfoByUserIdAndTerminalResponse{}
  7506. }
  7507. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) String() string { return proto.CompactTextString(m) }
  7508. func (*GetSnsUserInfoByUserIdAndTerminalResponse) ProtoMessage() {}
  7509. func (*GetSnsUserInfoByUserIdAndTerminalResponse) Descriptor() ([]byte, []int) {
  7510. return fileDescriptor_116e343673f7ffaf, []int{121}
  7511. }
  7512. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) XXX_Unmarshal(b []byte) error {
  7513. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse.Unmarshal(m, b)
  7514. }
  7515. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7516. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse.Marshal(b, m, deterministic)
  7517. }
  7518. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) XXX_Merge(src proto.Message) {
  7519. xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse.Merge(m, src)
  7520. }
  7521. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) XXX_Size() int {
  7522. return xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse.Size(m)
  7523. }
  7524. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) XXX_DiscardUnknown() {
  7525. xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse.DiscardUnknown(m)
  7526. }
  7527. var xxx_messageInfo_GetSnsUserInfoByUserIdAndTerminalResponse proto.InternalMessageInfo
  7528. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) GetCode() int32 {
  7529. if m != nil {
  7530. return m.Code
  7531. }
  7532. return 0
  7533. }
  7534. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) GetMsg() string {
  7535. if m != nil {
  7536. return m.Msg
  7537. }
  7538. return ""
  7539. }
  7540. func (m *GetSnsUserInfoByUserIdAndTerminalResponse) GetSnsUserInfo() *SnsUserInfo {
  7541. if m != nil {
  7542. return m.SnsUserInfo
  7543. }
  7544. return nil
  7545. }
  7546. type GetUserListRequest struct {
  7547. UserId int32 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
  7548. UserName string `protobuf:"bytes,2,opt,name=userName,proto3" json:"userName,omitempty"`
  7549. Mobile string `protobuf:"bytes,3,opt,name=mobile,proto3" json:"mobile,omitempty"`
  7550. PageIndex int32 `protobuf:"varint,4,opt,name=pageIndex,proto3" json:"pageIndex,omitempty"`
  7551. PageSize int32 `protobuf:"varint,5,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  7552. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7553. XXX_unrecognized []byte `json:"-"`
  7554. XXX_sizecache int32 `json:"-"`
  7555. }
  7556. func (m *GetUserListRequest) Reset() { *m = GetUserListRequest{} }
  7557. func (m *GetUserListRequest) String() string { return proto.CompactTextString(m) }
  7558. func (*GetUserListRequest) ProtoMessage() {}
  7559. func (*GetUserListRequest) Descriptor() ([]byte, []int) {
  7560. return fileDescriptor_116e343673f7ffaf, []int{122}
  7561. }
  7562. func (m *GetUserListRequest) XXX_Unmarshal(b []byte) error {
  7563. return xxx_messageInfo_GetUserListRequest.Unmarshal(m, b)
  7564. }
  7565. func (m *GetUserListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7566. return xxx_messageInfo_GetUserListRequest.Marshal(b, m, deterministic)
  7567. }
  7568. func (m *GetUserListRequest) XXX_Merge(src proto.Message) {
  7569. xxx_messageInfo_GetUserListRequest.Merge(m, src)
  7570. }
  7571. func (m *GetUserListRequest) XXX_Size() int {
  7572. return xxx_messageInfo_GetUserListRequest.Size(m)
  7573. }
  7574. func (m *GetUserListRequest) XXX_DiscardUnknown() {
  7575. xxx_messageInfo_GetUserListRequest.DiscardUnknown(m)
  7576. }
  7577. var xxx_messageInfo_GetUserListRequest proto.InternalMessageInfo
  7578. func (m *GetUserListRequest) GetUserId() int32 {
  7579. if m != nil {
  7580. return m.UserId
  7581. }
  7582. return 0
  7583. }
  7584. func (m *GetUserListRequest) GetUserName() string {
  7585. if m != nil {
  7586. return m.UserName
  7587. }
  7588. return ""
  7589. }
  7590. func (m *GetUserListRequest) GetMobile() string {
  7591. if m != nil {
  7592. return m.Mobile
  7593. }
  7594. return ""
  7595. }
  7596. func (m *GetUserListRequest) GetPageIndex() int32 {
  7597. if m != nil {
  7598. return m.PageIndex
  7599. }
  7600. return 0
  7601. }
  7602. func (m *GetUserListRequest) GetPageSize() int32 {
  7603. if m != nil {
  7604. return m.PageSize
  7605. }
  7606. return 0
  7607. }
  7608. type GetUserListResponse struct {
  7609. Result *Result `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  7610. User []*User `protobuf:"bytes,2,rep,name=user,proto3" json:"user,omitempty"`
  7611. Count int32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
  7612. TotalPages int32 `protobuf:"varint,4,opt,name=totalPages,proto3" json:"totalPages,omitempty"`
  7613. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7614. XXX_unrecognized []byte `json:"-"`
  7615. XXX_sizecache int32 `json:"-"`
  7616. }
  7617. func (m *GetUserListResponse) Reset() { *m = GetUserListResponse{} }
  7618. func (m *GetUserListResponse) String() string { return proto.CompactTextString(m) }
  7619. func (*GetUserListResponse) ProtoMessage() {}
  7620. func (*GetUserListResponse) Descriptor() ([]byte, []int) {
  7621. return fileDescriptor_116e343673f7ffaf, []int{123}
  7622. }
  7623. func (m *GetUserListResponse) XXX_Unmarshal(b []byte) error {
  7624. return xxx_messageInfo_GetUserListResponse.Unmarshal(m, b)
  7625. }
  7626. func (m *GetUserListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7627. return xxx_messageInfo_GetUserListResponse.Marshal(b, m, deterministic)
  7628. }
  7629. func (m *GetUserListResponse) XXX_Merge(src proto.Message) {
  7630. xxx_messageInfo_GetUserListResponse.Merge(m, src)
  7631. }
  7632. func (m *GetUserListResponse) XXX_Size() int {
  7633. return xxx_messageInfo_GetUserListResponse.Size(m)
  7634. }
  7635. func (m *GetUserListResponse) XXX_DiscardUnknown() {
  7636. xxx_messageInfo_GetUserListResponse.DiscardUnknown(m)
  7637. }
  7638. var xxx_messageInfo_GetUserListResponse proto.InternalMessageInfo
  7639. func (m *GetUserListResponse) GetResult() *Result {
  7640. if m != nil {
  7641. return m.Result
  7642. }
  7643. return nil
  7644. }
  7645. func (m *GetUserListResponse) GetUser() []*User {
  7646. if m != nil {
  7647. return m.User
  7648. }
  7649. return nil
  7650. }
  7651. func (m *GetUserListResponse) GetCount() int32 {
  7652. if m != nil {
  7653. return m.Count
  7654. }
  7655. return 0
  7656. }
  7657. func (m *GetUserListResponse) GetTotalPages() int32 {
  7658. if m != nil {
  7659. return m.TotalPages
  7660. }
  7661. return 0
  7662. }
  7663. func init() {
  7664. proto.RegisterType((*User)(nil), "com.ywt.gapi.user.User")
  7665. proto.RegisterType((*BankCard)(nil), "com.ywt.gapi.user.BankCard")
  7666. proto.RegisterType((*AccountDetail)(nil), "com.ywt.gapi.user.AccountDetail")
  7667. proto.RegisterType((*GetWxAppTokenRequest)(nil), "com.ywt.gapi.user.GetWxAppTokenRequest")
  7668. proto.RegisterType((*GetWxAppTokenResponse)(nil), "com.ywt.gapi.user.GetWxAppTokenResponse")
  7669. proto.RegisterType((*BindWxAppMobileRequest)(nil), "com.ywt.gapi.user.BindWxAppMobileRequest")
  7670. proto.RegisterType((*UserRequest)(nil), "com.ywt.gapi.user.UserRequest")
  7671. proto.RegisterType((*UserResponse)(nil), "com.ywt.gapi.user.UserResponse")
  7672. proto.RegisterType((*AddBankCardRequest)(nil), "com.ywt.gapi.user.AddBankCardRequest")
  7673. proto.RegisterType((*AddBankCardResponse)(nil), "com.ywt.gapi.user.AddBankCardResponse")
  7674. proto.RegisterType((*BankCardListRequest)(nil), "com.ywt.gapi.user.BankCardListRequest")
  7675. proto.RegisterType((*BankCardListResponse)(nil), "com.ywt.gapi.user.BankCardListResponse")
  7676. proto.RegisterType((*AccountBalanceRequest)(nil), "com.ywt.gapi.user.AccountBalanceRequest")
  7677. proto.RegisterType((*AccountBalanceResponse)(nil), "com.ywt.gapi.user.AccountBalanceResponse")
  7678. proto.RegisterType((*AccountDetailListRequest)(nil), "com.ywt.gapi.user.AccountDetailListRequest")
  7679. proto.RegisterType((*AccountDetailListResponse)(nil), "com.ywt.gapi.user.AccountDetailListResponse")
  7680. proto.RegisterType((*WithdrawRequest)(nil), "com.ywt.gapi.user.WithdrawRequest")
  7681. proto.RegisterType((*FeedbackRequest)(nil), "com.ywt.gapi.user.FeedbackRequest")
  7682. proto.RegisterType((*WithdrawRecord)(nil), "com.ywt.gapi.user.WithdrawRecord")
  7683. proto.RegisterType((*WithdrawRecordListRequest)(nil), "com.ywt.gapi.user.WithdrawRecordListRequest")
  7684. proto.RegisterType((*WithdrawRecordListResponse)(nil), "com.ywt.gapi.user.WithdrawRecordListResponse")
  7685. proto.RegisterType((*DelBankCardRequest)(nil), "com.ywt.gapi.user.DelBankCardRequest")
  7686. proto.RegisterType((*SnsUser)(nil), "com.ywt.gapi.user.SnsUser")
  7687. proto.RegisterType((*GetSnsUserRequest)(nil), "com.ywt.gapi.user.GetSnsUserRequest")
  7688. proto.RegisterType((*GetSnsUserByOpenIdRequest)(nil), "com.ywt.gapi.user.GetSnsUserByOpenIdRequest")
  7689. proto.RegisterType((*GetSnsUserByUserIdRequest)(nil), "com.ywt.gapi.user.GetSnsUserByUserIdRequest")
  7690. proto.RegisterType((*GetSnsUserResponse)(nil), "com.ywt.gapi.user.GetSnsUserResponse")
  7691. proto.RegisterType((*MedicalCard)(nil), "com.ywt.gapi.user.MedicalCard")
  7692. proto.RegisterType((*AddMedicalCardRequest)(nil), "com.ywt.gapi.user.AddMedicalCardRequest")
  7693. proto.RegisterType((*GetMedicalCardListRequest)(nil), "com.ywt.gapi.user.GetMedicalCardListRequest")
  7694. proto.RegisterType((*GetMedicalCardListResponse)(nil), "com.ywt.gapi.user.GetMedicalCardListResponse")
  7695. proto.RegisterType((*UserLoginInfo)(nil), "com.ywt.gapi.user.UserLoginInfo")
  7696. proto.RegisterType((*LoginByMobileRequest)(nil), "com.ywt.gapi.user.LoginByMobileRequest")
  7697. proto.RegisterType((*LoginByUserNameRequest)(nil), "com.ywt.gapi.user.LoginByUserNameRequest")
  7698. proto.RegisterType((*LoginResponse)(nil), "com.ywt.gapi.user.LoginResponse")
  7699. proto.RegisterType((*MedicalRecordsImage)(nil), "com.ywt.gapi.user.MedicalRecordsImage")
  7700. proto.RegisterType((*DeleteMedicalCardRequest)(nil), "com.ywt.gapi.user.DeleteMedicalCardRequest")
  7701. proto.RegisterType((*AddSnsUserRequest)(nil), "com.ywt.gapi.user.AddSnsUserRequest")
  7702. proto.RegisterType((*BindWxRequest)(nil), "com.ywt.gapi.user.BindWxRequest")
  7703. proto.RegisterType((*GetOffcialUserInfoRequest)(nil), "com.ywt.gapi.user.GetOffcialUserInfoRequest")
  7704. proto.RegisterType((*GetOffcialUserInfoResponse)(nil), "com.ywt.gapi.user.GetOffcialUserInfoResponse")
  7705. proto.RegisterType((*MedicalRecords)(nil), "com.ywt.gapi.user.MedicalRecords")
  7706. proto.RegisterType((*GetMedicalRecordsListRequest)(nil), "com.ywt.gapi.user.GetMedicalRecordsListRequest")
  7707. proto.RegisterType((*GetMedicalRecordsListResponse)(nil), "com.ywt.gapi.user.GetMedicalRecordsListResponse")
  7708. proto.RegisterType((*ChangeMobileRequest)(nil), "com.ywt.gapi.user.ChangeMobileRequest")
  7709. proto.RegisterType((*MedicalRecordsDetail)(nil), "com.ywt.gapi.user.MedicalRecordsDetail")
  7710. proto.RegisterType((*GetMedicalRecordsDetailRequest)(nil), "com.ywt.gapi.user.GetMedicalRecordsDetailRequest")
  7711. proto.RegisterType((*GetMedicalRecordsDetailResponse)(nil), "com.ywt.gapi.user.GetMedicalRecordsDetailResponse")
  7712. proto.RegisterType((*GetMedicalRecordListByUserIdRequest)(nil), "com.ywt.gapi.user.GetMedicalRecordListByUserIdRequest")
  7713. proto.RegisterType((*GetMedicalRecordListByUserIdResponse)(nil), "com.ywt.gapi.user.GetMedicalRecordListByUserIdResponse")
  7714. proto.RegisterType((*GetOfficialUserInfoRequest)(nil), "com.ywt.gapi.user.GetOfficialUserInfoRequest")
  7715. proto.RegisterType((*GetOfficialUserInfoResponse)(nil), "com.ywt.gapi.user.GetOfficialUserInfoResponse")
  7716. proto.RegisterType((*InspectionReport)(nil), "com.ywt.gapi.user.InspectionReport")
  7717. proto.RegisterType((*InspectionReportDetail)(nil), "com.ywt.gapi.user.InspectionReportDetail")
  7718. proto.RegisterType((*GetInspectionReportListRequest)(nil), "com.ywt.gapi.user.GetInspectionReportListRequest")
  7719. proto.RegisterType((*GetInspectionReportListResponse)(nil), "com.ywt.gapi.user.GetInspectionReportListResponse")
  7720. proto.RegisterType((*GetInspectionReportDetailRequest)(nil), "com.ywt.gapi.user.GetInspectionReportDetailRequest")
  7721. proto.RegisterType((*GetInspectionReportDetailResponse)(nil), "com.ywt.gapi.user.GetInspectionReportDetailResponse")
  7722. proto.RegisterType((*LaboratoryReport)(nil), "com.ywt.gapi.user.LaboratoryReport")
  7723. proto.RegisterType((*LaboratoryReportDetail)(nil), "com.ywt.gapi.user.LaboratoryReportDetail")
  7724. proto.RegisterType((*GetLaboratoryReportListRequest)(nil), "com.ywt.gapi.user.GetLaboratoryReportListRequest")
  7725. proto.RegisterType((*GetLaboratoryReportListResponse)(nil), "com.ywt.gapi.user.GetLaboratoryReportListResponse")
  7726. proto.RegisterType((*GetLaboratoryReportDetailRequest)(nil), "com.ywt.gapi.user.GetLaboratoryReportDetailRequest")
  7727. proto.RegisterType((*GetLaboratoryReportDetailResponse)(nil), "com.ywt.gapi.user.GetLaboratoryReportDetailResponse")
  7728. proto.RegisterType((*GetInspectionReportListByHisPatientIdRequest)(nil), "com.ywt.gapi.user.GetInspectionReportListByHisPatientIdRequest")
  7729. proto.RegisterType((*GetInspectionReportListByHisPatientIdResponse)(nil), "com.ywt.gapi.user.GetInspectionReportListByHisPatientIdResponse")
  7730. proto.RegisterType((*GetLaboratoryReportListByHisPatientIdRequest)(nil), "com.ywt.gapi.user.GetLaboratoryReportListByHisPatientIdRequest")
  7731. proto.RegisterType((*GetLaboratoryReportListByHisPatientIdResponse)(nil), "com.ywt.gapi.user.GetLaboratoryReportListByHisPatientIdResponse")
  7732. proto.RegisterType((*GetMedicalRecordByClinicCodeRequest)(nil), "com.ywt.gapi.user.GetMedicalRecordByClinicCodeRequest")
  7733. proto.RegisterType((*GetMedicalRecordByClinicCodeResponse)(nil), "com.ywt.gapi.user.GetMedicalRecordByClinicCodeResponse")
  7734. proto.RegisterType((*LoginWithUserAndPsdRequest)(nil), "com.ywt.gapi.user.LoginWithUserAndPsdRequest")
  7735. proto.RegisterType((*LoginWithUserAndPsdResponse)(nil), "com.ywt.gapi.user.LoginWithUserAndPsdResponse")
  7736. proto.RegisterType((*UpdatePasswordRequest)(nil), "com.ywt.gapi.user.UpdatePasswordRequest")
  7737. proto.RegisterType((*ChangePasswordRequest)(nil), "com.ywt.gapi.user.ChangePasswordRequest")
  7738. proto.RegisterType((*GetUserInfoByCodeRequest)(nil), "com.ywt.gapi.user.GetUserInfoByCodeRequest")
  7739. proto.RegisterType((*GetUserInfoByCodeResponse)(nil), "com.ywt.gapi.user.GetUserInfoByCodeResponse")
  7740. proto.RegisterType((*GetUserInfoByOpenIdRequest)(nil), "com.ywt.gapi.user.GetUserInfoByOpenIdRequest")
  7741. proto.RegisterType((*GetUserInfoByOpenIdResponse)(nil), "com.ywt.gapi.user.GetUserInfoByOpenIdResponse")
  7742. proto.RegisterType((*GetUserInfoByUserIdAndTerminalRequest)(nil), "com.ywt.gapi.user.GetUserInfoByUserIdAndTerminalRequest")
  7743. proto.RegisterType((*GetUserInfoByUserIdAndTerminalResponse)(nil), "com.ywt.gapi.user.GetUserInfoByUserIdAndTerminalResponse")
  7744. proto.RegisterType((*ScheduleDoctorInfo)(nil), "com.ywt.gapi.user.ScheduleDoctorInfo")
  7745. proto.RegisterType((*GetScheduleDoctorListRequest)(nil), "com.ywt.gapi.user.GetScheduleDoctorListRequest")
  7746. proto.RegisterType((*GetScheduleDoctorListResponse)(nil), "com.ywt.gapi.user.GetScheduleDoctorListResponse")
  7747. proto.RegisterType((*UserCreateMedicalRecordRequest)(nil), "com.ywt.gapi.user.UserCreateMedicalRecordRequest")
  7748. proto.RegisterType((*TeamDoctor)(nil), "com.ywt.gapi.user.TeamDoctor")
  7749. proto.RegisterType((*SearchDoctorInfo)(nil), "com.ywt.gapi.user.SearchDoctorInfo")
  7750. proto.RegisterType((*GetDoctorListByDeptIdRequest)(nil), "com.ywt.gapi.user.GetDoctorListByDeptIdRequest")
  7751. proto.RegisterType((*GetDoctorListByDeptIdResponse)(nil), "com.ywt.gapi.user.GetDoctorListByDeptIdResponse")
  7752. proto.RegisterType((*GetDoctorTeamCountRequest)(nil), "com.ywt.gapi.user.GetDoctorTeamCountRequest")
  7753. proto.RegisterType((*GetDoctorAdditionalCountRequest)(nil), "com.ywt.gapi.user.GetDoctorAdditionalCountRequest")
  7754. proto.RegisterType((*GetHospitalByIdRequest)(nil), "com.ywt.gapi.user.GetHospitalByIdRequest")
  7755. proto.RegisterType((*GetHospitalByIdResponse)(nil), "com.ywt.gapi.user.GetHospitalByIdResponse")
  7756. proto.RegisterType((*AddTaiheMedicalCardRequest)(nil), "com.ywt.gapi.user.AddTaiheMedicalCardRequest")
  7757. proto.RegisterType((*WithdrawToWeChatRequest)(nil), "com.ywt.gapi.user.WithdrawToWeChatRequest")
  7758. proto.RegisterType((*WithdrawToWeChatResponse)(nil), "com.ywt.gapi.user.WithdrawToWeChatResponse")
  7759. proto.RegisterType((*WithdrawOrderPayRequest)(nil), "com.ywt.gapi.user.WithdrawOrderPayRequest")
  7760. proto.RegisterType((*WithdrawOrderPayResponse)(nil), "com.ywt.gapi.user.WithdrawOrderPayResponse")
  7761. proto.RegisterType((*UserAttentionDoctorRequest)(nil), "com.ywt.gapi.user.UserAttentionDoctorRequest")
  7762. proto.RegisterType((*GeneralAttentionDoctorRequest)(nil), "com.ywt.gapi.user.GeneralAttentionDoctorRequest")
  7763. proto.RegisterType((*GeneralAttentionHospitalRequest)(nil), "com.ywt.gapi.user.GeneralAttentionHospitalRequest")
  7764. proto.RegisterType((*UserPatient)(nil), "com.ywt.gapi.user.UserPatient")
  7765. proto.RegisterType((*GetUserPatientListRequest)(nil), "com.ywt.gapi.user.GetUserPatientListRequest")
  7766. proto.RegisterType((*GetUserPatientListResponse)(nil), "com.ywt.gapi.user.GetUserPatientListResponse")
  7767. proto.RegisterType((*UpdateUserPatientInfo)(nil), "com.ywt.gapi.user.UpdateUserPatientInfo")
  7768. proto.RegisterType((*GetUserPatientByIdRequest)(nil), "com.ywt.gapi.user.GetUserPatientByIdRequest")
  7769. proto.RegisterType((*GetUserPatientByIdResponse)(nil), "com.ywt.gapi.user.GetUserPatientByIdResponse")
  7770. proto.RegisterType((*SaveSnsUserInfoRequest)(nil), "com.ywt.gapi.user.SaveSnsUserInfoRequest")
  7771. proto.RegisterType((*SaveSnsUserInfoRespose)(nil), "com.ywt.gapi.user.SaveSnsUserInfoRespose")
  7772. proto.RegisterType((*DelUserPatientRequest)(nil), "com.ywt.gapi.user.DelUserPatientRequest")
  7773. proto.RegisterType((*CheckAndUpdateSnsUserIdRequest)(nil), "com.ywt.gapi.user.CheckAndUpdateSnsUserIdRequest")
  7774. proto.RegisterType((*UpdateFollowedStatusRequest)(nil), "com.ywt.gapi.user.UpdateFollowedStatusRequest")
  7775. proto.RegisterType((*SaveMinAppUserRequest)(nil), "com.ywt.gapi.user.SaveMinAppUserRequest")
  7776. proto.RegisterType((*SaveMinAppUserResponse)(nil), "com.ywt.gapi.user.SaveMinAppUserResponse")
  7777. proto.RegisterType((*SnsUserInfo)(nil), "com.ywt.gapi.user.SnsUserInfo")
  7778. proto.RegisterType((*GetSnsUserInfoRequest)(nil), "com.ywt.gapi.user.GetSnsUserInfoRequest")
  7779. proto.RegisterType((*GetSnsUserInfoResponse)(nil), "com.ywt.gapi.user.GetSnsUserInfoResponse")
  7780. proto.RegisterType((*UpdateSnsUserInfoByUserIdRequest)(nil), "com.ywt.gapi.user.UpdateSnsUserInfoByUserIdRequest")
  7781. proto.RegisterType((*UpdateSnsUserInfoByUserIdResponse)(nil), "com.ywt.gapi.user.UpdateSnsUserInfoByUserIdResponse")
  7782. proto.RegisterType((*AuthenticateRequest)(nil), "com.ywt.gapi.user.AuthenticateRequest")
  7783. proto.RegisterType((*AuthenticateResponse)(nil), "com.ywt.gapi.user.AuthenticateResponse")
  7784. proto.RegisterType((*GetSnsUserInfoByUserIdAndTerminalRequest)(nil), "com.ywt.gapi.user.GetSnsUserInfoByUserIdAndTerminalRequest")
  7785. proto.RegisterType((*GetSnsUserInfoByUserIdAndTerminalResponse)(nil), "com.ywt.gapi.user.GetSnsUserInfoByUserIdAndTerminalResponse")
  7786. proto.RegisterType((*GetUserListRequest)(nil), "com.ywt.gapi.user.GetUserListRequest")
  7787. proto.RegisterType((*GetUserListResponse)(nil), "com.ywt.gapi.user.GetUserListResponse")
  7788. }
  7789. func init() { proto.RegisterFile("user.proto", fileDescriptor_116e343673f7ffaf) }
  7790. var fileDescriptor_116e343673f7ffaf = []byte{
  7791. // 5801 bytes of a gzipped FileDescriptorProto
  7792. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x8f, 0x24, 0xd7,
  7793. 0x59, 0xaa, 0xbe, 0xcd, 0xcc, 0xd7, 0x73, 0xd9, 0xad, 0xb9, 0x6c, 0x6f, 0xdb, 0xac, 0xc7, 0x95,
  7794. 0x78, 0xbd, 0xb6, 0xd7, 0xeb, 0xb0, 0x8e, 0x88, 0x23, 0x1b, 0xe2, 0xb9, 0x78, 0xed, 0x89, 0xed,
  7795. 0xd9, 0x51, 0xcf, 0x0c, 0xbe, 0xc4, 0x17, 0xd5, 0x74, 0x9d, 0xa9, 0x29, 0x6d, 0x4f, 0x55, 0x6f,
  7796. 0x55, 0xf5, 0xce, 0x76, 0x24, 0x24, 0x83, 0x44, 0x44, 0x20, 0x02, 0x44, 0x30, 0x0f, 0x24, 0x8a,
  7797. 0xc4, 0x4b, 0x84, 0x10, 0x48, 0xbc, 0x20, 0x25, 0x42, 0x8a, 0x20, 0xf0, 0x86, 0xe0, 0x89, 0x87,
  7798. 0x28, 0x6f, 0x01, 0xf1, 0xc0, 0x1b, 0x3f, 0x01, 0x9d, 0x5b, 0xd5, 0x39, 0xa7, 0xce, 0xa9, 0xae,
  7799. 0xe9, 0xdd, 0x75, 0x88, 0xc8, 0x5b, 0x9d, 0xaf, 0xcf, 0xf5, 0x3b, 0xdf, 0xfd, 0x7c, 0xe7, 0x34,
  7800. 0xc0, 0x28, 0x41, 0xf1, 0x8d, 0x61, 0x1c, 0xa5, 0x91, 0x7d, 0xb1, 0x1f, 0x9d, 0xde, 0x18, 0x9f,
  7801. 0xa5, 0x37, 0x7c, 0x77, 0x18, 0xdc, 0xc0, 0x3f, 0x74, 0xe1, 0xc8, 0x4d, 0x10, 0xfd, 0xd9, 0xf9,
  7802. 0xb7, 0x1a, 0x34, 0x0e, 0x13, 0x14, 0xdb, 0x6b, 0xd0, 0xc2, 0x3f, 0x06, 0x5e, 0xc7, 0x5a, 0xb7,
  7803. 0xae, 0x35, 0x7b, 0xac, 0x64, 0x77, 0x61, 0x16, 0x7f, 0x85, 0xee, 0x29, 0xea, 0xd4, 0xd6, 0xad,
  7804. 0x6b, 0x73, 0xbd, 0xac, 0x8c, 0x7f, 0x8b, 0x91, 0x3b, 0x20, 0xbf, 0xd5, 0xe9, 0x6f, 0xbc, 0x8c,
  7805. 0xfb, 0x3b, 0x8d, 0x8e, 0x82, 0x01, 0xea, 0x34, 0xc8, 0x2f, 0xac, 0x84, 0xe1, 0x81, 0x97, 0x8e,
  7806. 0x87, 0xa8, 0xd3, 0xa4, 0xe3, 0xd0, 0x92, 0x6d, 0x43, 0x23, 0xf0, 0xc2, 0xa8, 0xd3, 0x22, 0xb5,
  7807. 0xc9, 0xb7, 0x7d, 0x01, 0xea, 0x09, 0xba, 0xdf, 0x99, 0x21, 0x15, 0xf1, 0x27, 0x86, 0xb8, 0x3e,
  7808. 0xea, 0xcc, 0x52, 0x88, 0xeb, 0x93, 0xfe, 0xdc, 0x7b, 0x6e, 0xea, 0xc6, 0x9d, 0x39, 0x3a, 0x0e,
  7809. 0x2d, 0xe1, 0xb9, 0x1d, 0x05, 0x71, 0x7a, 0xe2, 0xb9, 0xe3, 0x0e, 0xd0, 0xb9, 0xf1, 0xb2, 0x7d,
  7810. 0x05, 0xa0, 0x1f, 0x23, 0x37, 0x45, 0x69, 0x70, 0x8a, 0x3a, 0xed, 0x75, 0xeb, 0x5a, 0xbd, 0x27,
  7811. 0x40, 0xf0, 0xef, 0x31, 0xf2, 0x83, 0x24, 0x45, 0x71, 0x30, 0xec, 0xcc, 0x93, 0xd6, 0x02, 0x84,
  7812. 0xe3, 0x84, 0xac, 0x62, 0x81, 0x4c, 0x25, 0x2b, 0x3b, 0xdf, 0xb0, 0x60, 0x76, 0xd3, 0x0d, 0xef,
  7813. 0x6c, 0xb9, 0xb1, 0x87, 0x3b, 0x3a, 0x62, 0xdf, 0x3b, 0x1c, 0xb1, 0x02, 0x84, 0x4c, 0xd2, 0x0d,
  7814. 0xef, 0xec, 0x0a, 0xc8, 0xe5, 0x65, 0x8c, 0x90, 0x41, 0xe4, 0x47, 0x0c, 0xb1, 0xe4, 0x1b, 0x2f,
  7815. 0xb6, 0xef, 0xc6, 0xde, 0x6e, 0xc4, 0x91, 0x4a, 0x4b, 0xb8, 0xae, 0x80, 0x52, 0xf2, 0xed, 0x7c,
  7816. 0xdb, 0x82, 0x85, 0x8d, 0x7e, 0x3f, 0x1a, 0x85, 0xe9, 0x36, 0x4a, 0xdd, 0x60, 0x80, 0x47, 0xf3,
  7817. 0xc8, 0x57, 0x36, 0x97, 0xac, 0x6c, 0x77, 0x60, 0xe6, 0xc8, 0x1d, 0xb8, 0x61, 0x9f, 0x4e, 0xc4,
  7818. 0xea, 0xf1, 0x22, 0x41, 0xf0, 0x29, 0xee, 0x85, 0xcc, 0xc4, 0xea, 0xb1, 0x92, 0xbd, 0x02, 0xcd,
  7819. 0x34, 0x48, 0xb3, 0xfd, 0xa5, 0x85, 0x1c, 0xb5, 0x07, 0x18, 0xb5, 0x4d, 0x11, 0xb5, 0x18, 0xe2,
  7820. 0xfc, 0xa8, 0x06, 0x2b, 0xaf, 0xa3, 0xf4, 0x9d, 0xfb, 0x1b, 0xc3, 0xe1, 0x41, 0x74, 0x07, 0x85,
  7821. 0x3d, 0x74, 0x77, 0x84, 0x92, 0x14, 0x4f, 0x2e, 0x0c, 0xfa, 0x14, 0x15, 0x16, 0x45, 0x05, 0x2f,
  7822. 0xe3, 0x29, 0xf8, 0x28, 0xf4, 0x50, 0x4c, 0xe6, 0xd6, 0xec, 0xb1, 0x12, 0x6e, 0x33, 0x70, 0x43,
  7823. 0x7f, 0x84, 0x49, 0x82, 0xd1, 0x1f, 0x2f, 0x63, 0x94, 0xf4, 0x83, 0x74, 0xcc, 0x66, 0x47, 0xbe,
  7824. 0x71, 0xfd, 0x61, 0x1c, 0xdd, 0x0b, 0xf0, 0x2a, 0x9b, 0xb4, 0x3e, 0x2f, 0x63, 0x04, 0x10, 0x5c,
  7825. 0xc5, 0x63, 0x46, 0x82, 0xbc, 0x68, 0x3f, 0x0e, 0x73, 0x94, 0xa6, 0x0e, 0xe3, 0x01, 0xa1, 0xc5,
  7826. 0xb9, 0x5e, 0x0e, 0xc0, 0x73, 0x8b, 0x86, 0x28, 0x0c, 0x3c, 0x42, 0x94, 0x73, 0x3d, 0x56, 0xc2,
  7827. 0x88, 0x48, 0x50, 0x92, 0x04, 0x51, 0xf8, 0x26, 0x1a, 0x33, 0xda, 0x14, 0x20, 0x78, 0xbc, 0x51,
  7828. 0x18, 0x44, 0xb8, 0x21, 0x25, 0x4f, 0x5e, 0xc4, 0xe3, 0xa1, 0xfb, 0xc3, 0x20, 0x46, 0xc9, 0x4e,
  7829. 0x48, 0x88, 0xb3, 0xd9, 0xcb, 0x01, 0xce, 0xa7, 0x16, 0xac, 0x2a, 0x08, 0x4c, 0x86, 0x51, 0x98,
  7830. 0x20, 0xfb, 0x3a, 0xb4, 0x62, 0x94, 0x8c, 0x06, 0x29, 0xc1, 0x5f, 0xfb, 0xe6, 0xca, 0x0d, 0x89,
  7831. 0xf5, 0x7b, 0xe4, 0xb7, 0x1e, 0xab, 0x83, 0xc7, 0x0f, 0x92, 0x43, 0x3c, 0x24, 0x43, 0x2a, 0x2f,
  7832. 0x72, 0x49, 0xb0, 0xe3, 0x11, 0x9c, 0x32, 0x49, 0xb0, 0x43, 0xe6, 0xc5, 0xe6, 0xbf, 0xe3, 0x31,
  7833. 0xb4, 0xe6, 0x00, 0xe7, 0x5d, 0x58, 0xdb, 0x0c, 0x42, 0x8f, 0xcc, 0xeb, 0x6d, 0xc2, 0xea, 0x7c,
  7834. 0x67, 0x73, 0x49, 0x60, 0xa9, 0x92, 0x00, 0xe3, 0x6a, 0xc7, 0x63, 0xa4, 0xcf, 0x4a, 0xf6, 0x22,
  7835. 0xd4, 0x82, 0x21, 0xdb, 0xcf, 0x5a, 0x30, 0x74, 0x5e, 0x86, 0x36, 0x96, 0x50, 0x42, 0x77, 0x5a,
  7836. 0x41, 0xb5, 0x02, 0xcd, 0xe1, 0x49, 0x14, 0x72, 0x46, 0xa2, 0x05, 0x27, 0x80, 0x79, 0xda, 0x78,
  7837. 0x2a, 0x24, 0x3d, 0x07, 0x0d, 0xdc, 0x3b, 0xe9, 0xb2, 0x7d, 0xf3, 0xd2, 0x8d, 0x82, 0x2c, 0xbd,
  7838. 0x41, 0x3a, 0x27, 0x95, 0x9c, 0xbf, 0xb4, 0xc0, 0xde, 0xf0, 0x3c, 0xce, 0xfc, 0xca, 0x7c, 0x77,
  7839. 0xa4, 0xf9, 0xee, 0x78, 0x98, 0x40, 0x05, 0xa1, 0xda, 0xe0, 0x42, 0x93, 0xf1, 0x77, 0x5d, 0xe2,
  7840. 0x6f, 0x51, 0x4e, 0x34, 0x14, 0x39, 0xd1, 0x85, 0x59, 0x5c, 0xeb, 0x20, 0xe7, 0xff, 0xac, 0x2c,
  7841. 0xa0, 0xbe, 0x25, 0xa2, 0xde, 0x49, 0x60, 0x59, 0x9a, 0xe9, 0x54, 0xc8, 0x61, 0x93, 0x65, 0xfb,
  7842. 0xd7, 0xec, 0xb1, 0x92, 0x69, 0x11, 0xce, 0x1d, 0x58, 0xe6, 0x23, 0xbe, 0x15, 0x24, 0xa9, 0xc0,
  7843. 0xf8, 0x5e, 0xd4, 0x4f, 0xa3, 0x58, 0x90, 0x4a, 0xac, 0x8c, 0x49, 0x6e, 0xe8, 0xfa, 0x68, 0x27,
  7844. 0xf4, 0xd0, 0x7d, 0x36, 0x4a, 0x0e, 0x20, 0xec, 0xec, 0xfa, 0x68, 0x3f, 0xf8, 0x3a, 0x62, 0xa4,
  7845. 0x9a, 0x95, 0x9d, 0xbf, 0xb7, 0x60, 0x45, 0x1e, 0x6d, 0xaa, 0x35, 0x7e, 0x05, 0xe6, 0x8f, 0x84,
  7846. 0x5e, 0x3a, 0xb5, 0xf5, 0xfa, 0xb5, 0xf6, 0xcd, 0xc7, 0x34, 0x84, 0x90, 0x21, 0x53, 0x6a, 0x80,
  7847. 0xa9, 0xb2, 0x9f, 0x09, 0xcf, 0x66, 0x8f, 0x16, 0xb0, 0x70, 0x48, 0xa3, 0xd4, 0x1d, 0xec, 0xb9,
  7848. 0x3e, 0x4a, 0xc8, 0x8e, 0x36, 0x7b, 0x02, 0xc4, 0x79, 0x01, 0x56, 0x99, 0xe8, 0xde, 0xa4, 0x52,
  7849. 0x78, 0x02, 0x31, 0x39, 0xdf, 0xb5, 0x60, 0x4d, 0x6d, 0x31, 0xd5, 0x82, 0x1d, 0x98, 0x27, 0xf3,
  7850. 0xd8, 0x94, 0x94, 0x81, 0x04, 0xb3, 0xbf, 0x00, 0xcb, 0x67, 0x41, 0x7a, 0xe2, 0xc5, 0xee, 0x99,
  7851. 0x7b, 0x34, 0x40, 0xbc, 0x2a, 0x55, 0x0f, 0xba, 0x9f, 0x9c, 0x21, 0x74, 0x24, 0x55, 0xf4, 0xe8,
  7852. 0xf7, 0xff, 0x1f, 0x2d, 0xb8, 0xac, 0x19, 0x72, 0x2a, 0x9c, 0xbc, 0x0a, 0xe0, 0x65, 0x7d, 0x30,
  7853. 0x12, 0x58, 0xd7, 0x90, 0x80, 0x34, 0x5e, 0x4f, 0x68, 0x33, 0x25, 0x15, 0x7c, 0x08, 0x4b, 0xef,
  7854. 0x30, 0x64, 0x56, 0x41, 0x56, 0xae, 0xa8, 0x6b, 0x92, 0xa2, 0xce, 0xf9, 0xb4, 0x2e, 0xf2, 0xa9,
  7855. 0xf3, 0x35, 0x58, 0xba, 0x85, 0x90, 0x77, 0xe4, 0xf6, 0xef, 0xf0, 0xee, 0x89, 0x12, 0x0c, 0x53,
  7856. 0x14, 0xa6, 0x4c, 0x56, 0xf3, 0x22, 0x11, 0xd6, 0x71, 0xe0, 0x07, 0x5c, 0x5b, 0xb0, 0x92, 0x49,
  7857. 0x59, 0x38, 0xdf, 0xab, 0xc1, 0x62, 0x3e, 0xf9, 0x7e, 0x14, 0x7b, 0xd4, 0x5a, 0xc4, 0x5f, 0xf9,
  7858. 0xdc, 0x79, 0xd9, 0x38, 0x77, 0xd9, 0x9c, 0xa8, 0xab, 0xe6, 0x84, 0xb0, 0xb6, 0x86, 0x41, 0x06,
  7859. 0x35, 0x25, 0x41, 0xba, 0x06, 0xad, 0x24, 0x75, 0xd3, 0x51, 0x42, 0x04, 0x62, 0xb3, 0xc7, 0x4a,
  7860. 0x78, 0x9c, 0xd1, 0xd0, 0xe3, 0xe3, 0xcc, 0xd0, 0x71, 0x72, 0x88, 0xbd, 0x0e, 0x6d, 0x77, 0xe4,
  7861. 0x05, 0xe9, 0x3e, 0x6d, 0x4c, 0xed, 0x4f, 0x11, 0x24, 0x20, 0x62, 0x4e, 0x12, 0xf3, 0x6b, 0x98,
  7862. 0xd4, 0x4e, 0xdd, 0xf8, 0x0e, 0x53, 0xf3, 0xac, 0xe4, 0x7c, 0xd3, 0x82, 0xcb, 0x32, 0x82, 0x1e,
  7863. 0x39, 0x53, 0x08, 0xab, 0x6f, 0x88, 0xab, 0x77, 0xfe, 0xc9, 0x82, 0xae, 0x6e, 0x2e, 0x53, 0x71,
  7864. 0xcb, 0x06, 0x36, 0x9e, 0x79, 0x1f, 0x8c, 0x5b, 0x9e, 0xd4, 0x70, 0x8b, 0x3c, 0x60, 0x4f, 0x68,
  7865. 0x34, 0x25, 0xbb, 0xbc, 0x01, 0xf6, 0x36, 0x1a, 0xa8, 0xea, 0x77, 0x02, 0xc7, 0xe8, 0x34, 0x98,
  7866. 0xf3, 0xb3, 0x1a, 0xcc, 0xec, 0x87, 0x09, 0xf1, 0x8b, 0xb0, 0x35, 0xc2, 0x5b, 0xd6, 0x02, 0xcf,
  7867. 0x68, 0xb5, 0x70, 0x7b, 0x8e, 0x71, 0x02, 0xb7, 0xe7, 0xe8, 0x28, 0x8c, 0x32, 0x1a, 0x12, 0x65,
  7868. 0x30, 0x8b, 0x97, 0x18, 0x01, 0xcd, 0xdc, 0xe2, 0x25, 0x86, 0x00, 0xf3, 0x7c, 0x5a, 0xb9, 0xe7,
  7869. 0x23, 0xda, 0xae, 0x33, 0x8a, 0xed, 0xca, 0x6d, 0xdd, 0x59, 0xc1, 0xd6, 0x15, 0xec, 0xd9, 0x39,
  7870. 0xd9, 0x9e, 0xcd, 0x3d, 0x26, 0x50, 0x3d, 0xa6, 0xcc, 0x9a, 0x6e, 0x2b, 0xd6, 0x74, 0x07, 0x66,
  7871. 0x92, 0x30, 0x21, 0x36, 0xc6, 0x3c, 0xb5, 0x16, 0x59, 0x51, 0xa0, 0xa9, 0x05, 0x95, 0xa3, 0x04,
  7872. 0xce, 0x5d, 0x2c, 0x38, 0x02, 0x1f, 0xc2, 0xc5, 0xd7, 0x51, 0xca, 0xb0, 0x2c, 0xa8, 0x37, 0x86,
  7873. 0x5c, 0xcb, 0x84, 0xdc, 0x9a, 0x09, 0xb9, 0xb2, 0xfc, 0x79, 0x11, 0x2e, 0xe7, 0xdd, 0x6f, 0x8e,
  7874. 0x6f, 0x93, 0x7e, 0x26, 0x0c, 0xa3, 0x36, 0x3a, 0x24, 0x5d, 0x4d, 0x52, 0xbd, 0xf7, 0xc1, 0x16,
  7875. 0x17, 0x32, 0x15, 0xcf, 0x7c, 0x91, 0xa0, 0xf7, 0x30, 0x37, 0x35, 0xbb, 0x1a, 0x86, 0xe1, 0x43,
  7876. 0xf0, 0xaa, 0xce, 0x0f, 0x9b, 0xd0, 0x7e, 0x1b, 0x79, 0x41, 0xdf, 0x1d, 0x10, 0x6f, 0x93, 0x08,
  7877. 0x86, 0x34, 0x40, 0x61, 0x9a, 0xad, 0x2c, 0x07, 0x60, 0x11, 0xc6, 0x0a, 0x82, 0xbb, 0x29, 0x82,
  7878. 0x38, 0xd1, 0xd5, 0x25, 0xa2, 0xcb, 0x9c, 0xe8, 0x86, 0xe2, 0x44, 0xaf, 0x43, 0x3b, 0x45, 0x03,
  7879. 0x44, 0xcc, 0xec, 0x4c, 0xce, 0x8a, 0x20, 0x93, 0xf5, 0x89, 0x49, 0xc3, 0x8b, 0xfa, 0xa3, 0x53,
  7880. 0x3a, 0x51, 0x4a, 0xcc, 0x02, 0x04, 0xef, 0xb6, 0xeb, 0x79, 0x31, 0x4a, 0x12, 0x46, 0xd1, 0xbc,
  7881. 0x88, 0x5b, 0x06, 0xc4, 0xb2, 0xdd, 0x8a, 0x3c, 0xc4, 0x9d, 0xaa, 0x1c, 0x92, 0xff, 0xbe, 0x8d,
  7882. 0x92, 0x3e, 0x23, 0x6f, 0x01, 0x42, 0x83, 0x0c, 0xbb, 0x11, 0x23, 0x6f, 0xf2, 0x8d, 0x2d, 0x9e,
  7883. 0x20, 0x4c, 0x46, 0x31, 0xda, 0xa2, 0x0a, 0x83, 0xba, 0xfb, 0x12, 0x8c, 0xcc, 0xa8, 0xdf, 0xdf,
  7884. 0x09, 0x8f, 0x23, 0x42, 0xe5, 0x78, 0x46, 0xb4, 0x28, 0x28, 0x9a, 0x45, 0xd5, 0x62, 0xcf, 0xac,
  7885. 0xf2, 0x25, 0x8a, 0xb9, 0xcc, 0x2a, 0xcf, 0x77, 0x82, 0xfc, 0x7c, 0x41, 0xda, 0x09, 0x52, 0x43,
  7886. 0xf0, 0xc6, 0x2f, 0x52, 0x76, 0x13, 0xbc, 0x71, 0x46, 0x85, 0xb6, 0x24, 0x4c, 0xae, 0x00, 0x9c,
  7887. 0x44, 0xc9, 0x30, 0x48, 0x5d, 0xec, 0xdd, 0x2f, 0x53, 0xe1, 0x98, 0x43, 0x04, 0x51, 0xb7, 0x22,
  7888. 0x29, 0x4a, 0x07, 0xe6, 0x79, 0x2d, 0x42, 0x16, 0xab, 0x74, 0xf5, 0x22, 0x8c, 0xd4, 0x09, 0x92,
  7889. 0xbd, 0x8c, 0xb4, 0xd6, 0x58, 0x1d, 0x01, 0x86, 0xd7, 0xeb, 0x8f, 0xdc, 0xd8, 0x0b, 0xdc, 0xb0,
  7890. 0x73, 0x89, 0xae, 0x97, 0x97, 0x31, 0xd6, 0x8f, 0x07, 0xae, 0xdf, 0xe9, 0xd0, 0xe8, 0x04, 0xfe,
  7891. 0x76, 0xbe, 0x63, 0xc1, 0xea, 0x86, 0xe7, 0x09, 0xe4, 0x3b, 0xc9, 0x5f, 0x92, 0x57, 0x58, 0x33,
  7892. 0xad, 0x50, 0xe7, 0x3b, 0xc5, 0x88, 0xad, 0xae, 0x91, 0x07, 0xa9, 0x76, 0xe5, 0x20, 0x55, 0x53,
  7893. 0xf2, 0x8f, 0x7c, 0x22, 0x08, 0x84, 0xc9, 0x89, 0xba, 0x79, 0xda, 0x09, 0x72, 0x34, 0xd4, 0x05,
  7894. 0x34, 0xfc, 0xa1, 0x05, 0x5d, 0xdd, 0x48, 0x53, 0x49, 0x91, 0x4d, 0x98, 0x3f, 0xcd, 0x3b, 0x4a,
  7895. 0x98, 0xee, 0xbd, 0xa2, 0x11, 0x25, 0x22, 0xda, 0xa5, 0x36, 0xce, 0x5f, 0x34, 0x61, 0x01, 0x0b,
  7896. 0x97, 0xb7, 0x22, 0x3f, 0x08, 0x39, 0x85, 0x6b, 0x97, 0xcb, 0x82, 0x60, 0xbb, 0x4a, 0x60, 0x70,
  7897. 0x57, 0x08, 0x0c, 0xee, 0x2a, 0x81, 0xc1, 0xdd, 0x89, 0x81, 0xc1, 0x03, 0x29, 0x30, 0x78, 0x90,
  7898. 0x05, 0x06, 0x77, 0x85, 0xc0, 0xe0, 0xee, 0x67, 0x10, 0x18, 0x3c, 0x28, 0x04, 0x06, 0x0f, 0x94,
  7899. 0xc0, 0xe0, 0x4e, 0x21, 0x30, 0xb8, 0x93, 0x05, 0x06, 0x0f, 0x94, 0xc0, 0x20, 0x59, 0x47, 0x16,
  7900. 0x2f, 0x5b, 0x14, 0xe3, 0x65, 0x8f, 0xc3, 0x5c, 0x32, 0x44, 0xfd, 0xc0, 0x1d, 0xa4, 0x63, 0x26,
  7901. 0x28, 0x72, 0x00, 0x89, 0x1f, 0xc6, 0x01, 0x3a, 0xde, 0x09, 0xd3, 0x38, 0x62, 0x82, 0x42, 0x80,
  7902. 0x14, 0xb8, 0xf7, 0xa2, 0x86, 0x7b, 0x49, 0xd4, 0x6f, 0x48, 0x85, 0xbe, 0x4d, 0xd7, 0xcb, 0xcb,
  7903. 0x99, 0xe1, 0xb0, 0x2c, 0x18, 0x0e, 0xb9, 0x42, 0x5f, 0x91, 0x14, 0xba, 0x68, 0x80, 0xac, 0x16,
  7904. 0x0d, 0x10, 0x37, 0x46, 0x2e, 0x93, 0x0c, 0xe4, 0x1b, 0x4b, 0xb9, 0x9c, 0xf8, 0x13, 0x26, 0x14,
  7905. 0x44, 0x10, 0x96, 0x72, 0x78, 0x26, 0xf8, 0xd7, 0x0e, 0x95, 0xaa, 0xac, 0x88, 0xb1, 0x72, 0x37,
  7906. 0xc6, 0x12, 0xfd, 0x30, 0x1e, 0x74, 0x2e, 0x53, 0xac, 0x64, 0x00, 0xe7, 0x7d, 0x58, 0x21, 0xe4,
  7907. 0xb9, 0x39, 0xae, 0x16, 0x68, 0x12, 0x77, 0xa5, 0xa6, 0xec, 0x8a, 0x1a, 0x6c, 0xba, 0x05, 0x6b,
  7908. 0xac, 0xef, 0x43, 0x46, 0xcc, 0x82, 0x21, 0x99, 0x05, 0xc2, 0x2d, 0x25, 0x10, 0x7e, 0x01, 0xea,
  7909. 0xc3, 0x33, 0x6e, 0x9b, 0xe0, 0x4f, 0xe7, 0x77, 0x2d, 0x58, 0x20, 0x1d, 0x4d, 0xc9, 0xcb, 0xb7,
  7910. 0x60, 0x61, 0x24, 0xb2, 0x21, 0xb3, 0x0b, 0xd6, 0x0d, 0x21, 0xa8, 0xac, 0x5e, 0x4f, 0x6e, 0xe6,
  7911. 0xfc, 0x9d, 0x05, 0xcb, 0x8c, 0xdb, 0xa9, 0xa1, 0x9d, 0xec, 0x9c, 0x62, 0xee, 0x50, 0xcd, 0x5a,
  7912. 0xd1, 0x4c, 0xae, 0xe9, 0x1c, 0x0e, 0x2e, 0xfc, 0xeb, 0xdc, 0xe1, 0x10, 0x24, 0x7f, 0x80, 0xbb,
  7913. 0xc4, 0x5b, 0xc5, 0xe4, 0x2b, 0x2f, 0x4f, 0x8a, 0x06, 0x63, 0x0a, 0x88, 0x62, 0x8f, 0x08, 0x17,
  7914. 0x6a, 0xea, 0xf2, 0xa2, 0xf3, 0x55, 0xe8, 0x6c, 0xa3, 0x01, 0x4a, 0xd1, 0x39, 0x34, 0x84, 0xc9,
  7915. 0x9c, 0xff, 0x61, 0x1d, 0x2e, 0x6e, 0x78, 0x9e, 0x62, 0x6b, 0xfe, 0x32, 0xe0, 0x5c, 0x29, 0xe0,
  7916. 0x5c, 0x62, 0xfa, 0x63, 0xba, 0x88, 0x83, 0x7b, 0xc1, 0x00, 0xf9, 0x88, 0xd9, 0x45, 0x39, 0x80,
  7917. 0xb8, 0xcc, 0xfd, 0x3e, 0x4a, 0x12, 0x12, 0xa5, 0x66, 0x52, 0x4f, 0x04, 0x61, 0xe9, 0x15, 0xa3,
  7918. 0xe3, 0x18, 0x25, 0x27, 0xb4, 0x0a, 0x15, 0x7f, 0x12, 0xcc, 0xf9, 0x1b, 0x0b, 0x16, 0x68, 0x5c,
  7919. 0x79, 0x12, 0x97, 0x9b, 0x7d, 0x04, 0x85, 0xc7, 0xf1, 0xae, 0xa4, 0x28, 0x3e, 0x0d, 0x42, 0x77,
  7920. 0xc0, 0x5c, 0xb2, 0xac, 0x2c, 0xb8, 0x06, 0x4d, 0xc9, 0x03, 0xe1, 0xd1, 0xda, 0x96, 0x10, 0xad,
  7921. 0xe5, 0x9a, 0x69, 0x26, 0xd7, 0x4c, 0xce, 0x21, 0xb1, 0x1c, 0x6e, 0x1f, 0x1f, 0x63, 0x09, 0x4e,
  7922. 0x1c, 0x08, 0xcc, 0x94, 0x6c, 0xea, 0xb2, 0x85, 0x60, 0x15, 0x2c, 0x04, 0xe3, 0x12, 0x9c, 0xdf,
  7923. 0xa7, 0x76, 0x42, 0xa1, 0xdf, 0x69, 0x03, 0xb7, 0x8c, 0x7f, 0x6a, 0x12, 0xff, 0x5c, 0x85, 0xc5,
  7924. 0x13, 0x37, 0x11, 0x18, 0x8e, 0x31, 0xbb, 0x02, 0x75, 0x7e, 0x62, 0xc1, 0xa2, 0x2c, 0x53, 0x74,
  7925. 0x5e, 0xb2, 0x76, 0x08, 0x2c, 0x10, 0x06, 0x41, 0x18, 0xf4, 0x89, 0x01, 0x4f, 0xb7, 0x44, 0x80,
  7926. 0x50, 0xd3, 0xff, 0x94, 0x48, 0x8b, 0x06, 0x37, 0xfd, 0x49, 0xb1, 0xa0, 0xea, 0x9a, 0x1a, 0x55,
  7927. 0x47, 0x1d, 0x8b, 0x34, 0xa2, 0x46, 0x49, 0x2b, 0x73, 0x2c, 0x18, 0x04, 0x93, 0x24, 0x2d, 0x1d,
  7928. 0x10, 0x45, 0x4c, 0xf7, 0x4d, 0x04, 0x39, 0x7f, 0x66, 0xc1, 0xe3, 0xb9, 0x3d, 0xc6, 0x56, 0x27,
  7929. 0x1a, 0x7f, 0x9f, 0x87, 0x05, 0xc1, 0x5e, 0xca, 0x76, 0x51, 0x06, 0x3e, 0x58, 0x88, 0x46, 0x17,
  7930. 0x2c, 0x70, 0xfe, 0xc1, 0x82, 0x5f, 0x31, 0x4c, 0x6c, 0x2a, 0x1a, 0x78, 0x19, 0x66, 0x68, 0xc0,
  7931. 0x25, 0x29, 0x09, 0xd1, 0xc8, 0xa3, 0xf5, 0x78, 0x8b, 0x29, 0xe3, 0x33, 0xaf, 0xc1, 0xf2, 0xd6,
  7932. 0x89, 0x1b, 0xfa, 0xa8, 0xa0, 0xb5, 0x4d, 0xd2, 0x9c, 0xf1, 0x79, 0x4d, 0xb2, 0xcd, 0xff, 0xa7,
  7933. 0x09, 0x2b, 0xf2, 0xc4, 0xf2, 0xe3, 0x4d, 0x63, 0x7c, 0x11, 0xb3, 0xfc, 0x78, 0x88, 0x44, 0x63,
  7934. 0x95, 0x97, 0x31, 0x1b, 0x7b, 0xd8, 0x5d, 0x64, 0x07, 0xad, 0xf8, 0x5b, 0x51, 0x6a, 0x75, 0x49,
  7935. 0xa9, 0x89, 0xaa, 0xb2, 0x59, 0xa6, 0x2a, 0x5b, 0xaa, 0xaa, 0x94, 0xd5, 0xe1, 0x8c, 0x2e, 0x9a,
  7936. 0xc9, 0x96, 0x3c, 0x2b, 0x89, 0x36, 0x66, 0xdc, 0xce, 0xe5, 0xc6, 0x2d, 0x33, 0x80, 0x21, 0x37,
  7937. 0x80, 0x15, 0xf7, 0xbe, 0x5d, 0x74, 0xef, 0x73, 0x44, 0xcf, 0x4b, 0x88, 0x16, 0x78, 0x6e, 0xa1,
  7938. 0x9c, 0xe7, 0x16, 0x27, 0xf2, 0xdc, 0x52, 0x81, 0xe7, 0x88, 0x5a, 0x1a, 0x1c, 0xf7, 0xd0, 0x30,
  7939. 0x8a, 0x53, 0x6e, 0xc2, 0xe6, 0x10, 0x3c, 0xfa, 0xf0, 0x64, 0xfc, 0xda, 0x7d, 0xf7, 0x94, 0x59,
  7940. 0xaf, 0xbc, 0x48, 0xf0, 0x1c, 0xb8, 0x7e, 0x18, 0x25, 0xb9, 0xe1, 0xca, 0xca, 0xa4, 0xd7, 0x91,
  7941. 0xef, 0xa3, 0x24, 0x0d, 0xa2, 0x90, 0x99, 0xaf, 0x02, 0x84, 0x18, 0xff, 0xde, 0xbd, 0xa0, 0x8f,
  7942. 0x88, 0x11, 0x8b, 0x8d, 0x7f, 0x52, 0xb2, 0x6f, 0xc3, 0x85, 0x81, 0x7b, 0x14, 0xc5, 0x6e, 0x1a,
  7943. 0xc5, 0x63, 0x36, 0xa7, 0x55, 0x42, 0xff, 0x9f, 0xd3, 0xd0, 0xff, 0x5b, 0x4a, 0xd5, 0x5e, 0xa1,
  7944. 0x31, 0xee, 0x30, 0x08, 0xb1, 0xc1, 0x8e, 0x87, 0x65, 0x1d, 0xae, 0x19, 0x3b, 0xdc, 0x51, 0xaa,
  7945. 0xf6, 0x0a, 0x8d, 0x33, 0xa5, 0x72, 0x49, 0x50, 0x2a, 0xaf, 0xc0, 0x95, 0x02, 0xef, 0xb3, 0x53,
  7946. 0x86, 0xdc, 0x98, 0x31, 0xd1, 0xbe, 0xf3, 0xc7, 0x16, 0x3c, 0x61, 0x6c, 0x3e, 0xe5, 0xa9, 0x58,
  7947. 0x8b, 0x1e, 0x6e, 0x30, 0xab, 0xf4, 0xe9, 0x89, 0xb2, 0x83, 0x0d, 0xc7, 0x9a, 0x39, 0x67, 0xf0,
  7948. 0x39, 0x75, 0x46, 0x58, 0x96, 0x55, 0x0c, 0xb9, 0x3d, 0xc0, 0xb1, 0xd0, 0xbf, 0x58, 0xf0, 0xf9,
  7949. 0xf2, 0x91, 0x1f, 0x18, 0x21, 0xf5, 0x29, 0x10, 0x32, 0xa5, 0x44, 0xcd, 0xad, 0x82, 0xe0, 0xa1,
  7950. 0x9a, 0x1b, 0x92, 0x85, 0x54, 0x37, 0x5a, 0x48, 0x0d, 0x29, 0x78, 0xfa, 0x9d, 0x1a, 0x3c, 0xa6,
  7951. 0x9d, 0xcc, 0xcf, 0xc3, 0x46, 0x11, 0xbc, 0xff, 0x86, 0xea, 0xfd, 0x1b, 0x83, 0xee, 0xf9, 0xca,
  7952. 0x5a, 0x92, 0xed, 0x97, 0x8b, 0xe5, 0x19, 0x93, 0xc5, 0x39, 0x2b, 0xe3, 0x8f, 0x89, 0xe7, 0xb9,
  7953. 0x4c, 0x3c, 0x3b, 0x3f, 0xad, 0xc1, 0x05, 0x95, 0xfb, 0x29, 0xd7, 0xe2, 0xaf, 0x2c, 0x5e, 0x9b,
  7954. 0x95, 0xb1, 0x3c, 0xa7, 0xdf, 0xd4, 0x56, 0x61, 0xe1, 0x5a, 0x01, 0x44, 0x83, 0x11, 0xb8, 0xb8,
  7955. 0xed, 0xa6, 0xd9, 0xd9, 0x58, 0x0e, 0x31, 0x9d, 0xf6, 0xa8, 0x9a, 0xa2, 0x59, 0xd4, 0x14, 0x57,
  7956. 0x00, 0x58, 0x71, 0xc3, 0xcf, 0xec, 0xa8, 0x1c, 0xa2, 0x09, 0xbf, 0x5c, 0x87, 0x8b, 0xd4, 0x8a,
  7957. 0x73, 0x07, 0xdb, 0x54, 0x46, 0x07, 0x3c, 0x78, 0x5b, 0xfc, 0x01, 0xf3, 0x2f, 0x05, 0xee, 0xa3,
  7958. 0xbb, 0xcc, 0x53, 0xc9, 0x01, 0x78, 0x7e, 0x41, 0x98, 0x6b, 0x51, 0xea, 0xac, 0x88, 0x20, 0x66,
  7959. 0x6d, 0xb6, 0xb9, 0xb5, 0xe9, 0x7c, 0xbf, 0x0e, 0x6b, 0x2a, 0x72, 0xc5, 0x9c, 0x27, 0x16, 0xfd,
  7960. 0xb0, 0x94, 0xe8, 0xc7, 0xb3, 0x70, 0x81, 0xa1, 0x2b, 0x57, 0x60, 0x14, 0xcf, 0x05, 0x38, 0x51,
  7961. 0xdd, 0x27, 0xa8, 0x7f, 0x67, 0xcf, 0x8d, 0xd3, 0x24, 0x33, 0x5c, 0x33, 0x08, 0x9e, 0x34, 0xba,
  7962. 0xef, 0x62, 0x0e, 0x21, 0x1a, 0x89, 0x12, 0x9d, 0x08, 0xc2, 0x8b, 0xf6, 0x32, 0xd4, 0x50, 0xa4,
  7963. 0xe7, 0x00, 0xfb, 0x1a, 0x2c, 0x91, 0xde, 0xb6, 0x55, 0xfb, 0x55, 0x05, 0xe3, 0x9a, 0x42, 0xb7,
  7964. 0x64, 0xef, 0xa9, 0x25, 0xa1, 0x82, 0xf1, 0x9c, 0xef, 0xa1, 0x38, 0x38, 0x1e, 0x93, 0x4a, 0xb3,
  7965. 0x94, 0x40, 0x72, 0x08, 0xb6, 0x65, 0x59, 0x29, 0xea, 0x93, 0x11, 0xe9, 0x56, 0xc8, 0x40, 0xdc,
  7966. 0x8b, 0x3b, 0x1c, 0xf2, 0x2a, 0x2c, 0xa6, 0x9e, 0x43, 0xd4, 0xcd, 0x90, 0x88, 0x7a, 0x5e, 0x26,
  7967. 0x6a, 0xe7, 0x23, 0xa2, 0xc8, 0xd4, 0xad, 0x3a, 0xbf, 0x7d, 0x6d, 0x90, 0x0e, 0xce, 0xb7, 0xa8,
  7968. 0xaa, 0xd3, 0x0f, 0x30, 0xa5, 0x9d, 0xdc, 0xa2, 0xb3, 0x67, 0x92, 0xbd, 0x92, 0x56, 0x67, 0x4d,
  7969. 0x9c, 0xdf, 0x80, 0x75, 0xcd, 0x6c, 0x34, 0x9a, 0x5b, 0x2f, 0x03, 0x9c, 0x3f, 0xb5, 0xe0, 0xc9,
  7970. 0x92, 0x0e, 0xa6, 0x3c, 0x9e, 0xcd, 0x17, 0x84, 0x6b, 0x3f, 0x53, 0x61, 0x41, 0x5c, 0x59, 0xb1,
  7971. 0x65, 0xfd, 0x47, 0x1d, 0x2e, 0xa8, 0xa6, 0x11, 0x3b, 0x46, 0x61, 0xcd, 0xb2, 0xb5, 0x48, 0x30,
  7972. 0x2c, 0xbc, 0xf3, 0xb2, 0xc0, 0x6e, 0x0a, 0x54, 0xae, 0x27, 0x48, 0x37, 0x05, 0xfa, 0x99, 0x4a,
  7973. 0x38, 0x51, 0x90, 0xcc, 0x2a, 0x82, 0x44, 0x2b, 0xfd, 0xe6, 0x4c, 0xd2, 0x4f, 0x27, 0x76, 0xc0,
  7974. 0x20, 0x76, 0x24, 0x49, 0xd9, 0x9e, 0x20, 0x29, 0xe7, 0x8b, 0x92, 0x52, 0x23, 0x56, 0x16, 0xf4,
  7975. 0x62, 0x85, 0xb2, 0xf1, 0x62, 0x26, 0x53, 0x7f, 0x5c, 0x83, 0x35, 0x75, 0x93, 0x99, 0x4c, 0x5d,
  7976. 0x83, 0x56, 0x90, 0xa2, 0xd3, 0xfc, 0xf8, 0x94, 0x96, 0x88, 0xd3, 0x94, 0xa2, 0x53, 0xd1, 0xc9,
  7977. 0xe2, 0xe5, 0x2c, 0xd2, 0x97, 0x1d, 0xcf, 0xf0, 0x22, 0x31, 0x72, 0x10, 0xe1, 0x4f, 0x4c, 0xc2,
  7978. 0x54, 0x70, 0x0a, 0x10, 0x6c, 0x10, 0x8f, 0xc2, 0x20, 0x65, 0xbb, 0x48, 0xbe, 0x49, 0xf2, 0x62,
  7979. 0x8a, 0x4e, 0x7b, 0xe8, 0x98, 0xc7, 0xce, 0x58, 0x91, 0x5a, 0x2e, 0x49, 0x2a, 0x88, 0xc5, 0xac,
  7980. 0x4c, 0x4f, 0x2c, 0x93, 0xf4, 0xb5, 0xd0, 0x17, 0x76, 0x51, 0x04, 0x11, 0xb7, 0x62, 0x88, 0xfa,
  7981. 0xc1, 0x29, 0x09, 0x77, 0xf1, 0x18, 0x5a, 0x06, 0xa1, 0x2a, 0x17, 0xcf, 0xea, 0xd6, 0xc0, 0xf5,
  7982. 0xb9, 0x2c, 0xcc, 0x21, 0x05, 0xc5, 0x44, 0xe5, 0x9d, 0x8a, 0xc6, 0x87, 0x2e, 0xef, 0xf4, 0x03,
  7983. 0x3c, 0x32, 0x79, 0x57, 0x70, 0x8b, 0xb8, 0x60, 0xb8, 0x45, 0xe4, 0x9d, 0x9e, 0x6a, 0xf8, 0x82,
  7984. 0x2b, 0xc8, 0x09, 0xe7, 0x93, 0x3a, 0x91, 0x7b, 0xa6, 0x8e, 0xa6, 0x95, 0x7b, 0x92, 0x89, 0xfe,
  7985. 0x4c, 0x85, 0x85, 0x29, 0x46, 0x7a, 0x51, 0x7c, 0xd5, 0x2b, 0x8a, 0xaf, 0x86, 0x56, 0x7c, 0x69,
  7986. 0xc5, 0x46, 0xf3, 0x3c, 0x62, 0xa3, 0x65, 0x10, 0x1b, 0x1a, 0xb6, 0x9f, 0xd1, 0xb3, 0x7d, 0x2e,
  7987. 0x42, 0x67, 0xa5, 0x94, 0xa0, 0x1e, 0x5c, 0x37, 0x28, 0xd2, 0xcd, 0xf1, 0x1b, 0xc2, 0xc1, 0xaf,
  7988. 0xb0, 0xad, 0xd2, 0x19, 0xb1, 0x55, 0x3c, 0x23, 0x76, 0xfe, 0xc4, 0x82, 0xe7, 0x2b, 0x76, 0xca,
  7989. 0xb6, 0xd8, 0x86, 0x46, 0x3f, 0xf2, 0x10, 0x63, 0x0a, 0xf2, 0x8d, 0x45, 0xf3, 0x69, 0xe2, 0xf3,
  7990. 0xb3, 0x96, 0xd3, 0xc4, 0x17, 0x68, 0xb6, 0x7e, 0x7e, 0x1d, 0x4d, 0x17, 0xaa, 0xe3, 0xa0, 0x07,
  7991. 0x5e, 0x68, 0x95, 0x4e, 0x1f, 0xfa, 0x42, 0x8d, 0xcc, 0xf9, 0x5a, 0xd1, 0xe7, 0xde, 0x1c, 0x6f,
  7992. 0x65, 0xa1, 0x57, 0xc1, 0x69, 0x14, 0x22, 0xb4, 0x96, 0x1a, 0xa1, 0x75, 0x3e, 0xd5, 0x78, 0xd0,
  7993. 0x72, 0x3f, 0x3f, 0x9f, 0x90, 0xc2, 0x7d, 0xe8, 0x92, 0x53, 0xaf, 0x77, 0x82, 0xf4, 0x04, 0xfb,
  7994. 0x9e, 0x1b, 0xa1, 0xb7, 0x97, 0x78, 0x55, 0x0e, 0xef, 0x48, 0xbc, 0x20, 0x49, 0xce, 0xa2, 0x98,
  7995. 0xfb, 0xc1, 0x59, 0xb9, 0x70, 0x74, 0xc0, 0x2f, 0x5a, 0x34, 0x84, 0x8b, 0x16, 0x3f, 0xab, 0xc1,
  7996. 0x63, 0xda, 0xa1, 0xa7, 0x42, 0x44, 0xd9, 0x41, 0x9c, 0x1c, 0x6b, 0xab, 0x17, 0x62, 0x6d, 0xc2,
  7997. 0x81, 0x6a, 0x43, 0x3e, 0x50, 0x15, 0xad, 0x97, 0xa6, 0x62, 0xbd, 0x60, 0x1b, 0x03, 0x4b, 0x85,
  7998. 0xfd, 0xc0, 0x0f, 0x79, 0xcc, 0x32, 0x03, 0x90, 0xe3, 0x9f, 0xc0, 0x0f, 0xf3, 0xa3, 0x28, 0x5e,
  7999. 0xc4, 0x9c, 0x40, 0xc7, 0xc6, 0xf5, 0x98, 0x0f, 0xdc, 0xec, 0x49, 0xb0, 0xbc, 0xce, 0x86, 0x78,
  8000. 0x14, 0x2f, 0xc1, 0x88, 0x46, 0x48, 0x6e, 0x05, 0x71, 0x92, 0x12, 0x2c, 0xb2, 0xa0, 0xa6, 0x04,
  8001. 0x73, 0xde, 0x84, 0xd5, 0x43, 0x92, 0x8d, 0xb9, 0xc7, 0x76, 0xa6, 0xc2, 0x99, 0xaf, 0x69, 0x53,
  8002. 0x49, 0xee, 0x09, 0x8d, 0x44, 0x6b, 0x7a, 0xd3, 0x06, 0x9c, 0xd6, 0xa1, 0x1d, 0x0d, 0xbc, 0x3d,
  8003. 0xb9, 0x43, 0x11, 0x84, 0x6b, 0x84, 0xe8, 0x2c, 0xab, 0x41, 0xf7, 0x46, 0x04, 0x61, 0xad, 0x40,
  8004. 0x1d, 0xab, 0xac, 0x12, 0xdd, 0x23, 0x05, 0xea, 0x6c, 0x42, 0xe7, 0x75, 0x94, 0xf2, 0xf0, 0xc9,
  8005. 0xe6, 0x58, 0x64, 0x4e, 0x51, 0x4c, 0xcc, 0x31, 0x31, 0xc1, 0x49, 0xb2, 0x26, 0x90, 0xe4, 0x7f,
  8006. 0x5a, 0xe4, 0x18, 0x4a, 0xed, 0xe4, 0xa1, 0x46, 0x62, 0xf2, 0x68, 0x49, 0xdd, 0x94, 0xab, 0xd7,
  8007. 0x28, 0x44, 0x95, 0x8c, 0xb1, 0x17, 0x31, 0x63, 0xa4, 0x55, 0xcc, 0x18, 0x61, 0xb1, 0x9c, 0x19,
  8008. 0x31, 0x96, 0xe3, 0xec, 0x91, 0xe8, 0x57, 0xbe, 0xc8, 0x4a, 0x49, 0x7e, 0x52, 0x6c, 0xab, 0x26,
  8009. 0xc7, 0xb6, 0x9c, 0x7f, 0xb5, 0x48, 0x0c, 0xab, 0xd8, 0xe5, 0x2f, 0x26, 0xe6, 0x9c, 0xaf, 0xc1,
  8010. 0x53, 0xd2, 0x72, 0x68, 0x90, 0x73, 0x23, 0xf4, 0x0e, 0xd8, 0x8a, 0x27, 0x11, 0x7e, 0x19, 0xb2,
  8011. 0x7e, 0x62, 0xc1, 0xd5, 0x49, 0xbd, 0xff, 0x82, 0xe2, 0xed, 0xbb, 0x35, 0xb0, 0xf7, 0xfb, 0x27,
  8012. 0xc8, 0x1b, 0x0d, 0x10, 0x35, 0x96, 0x48, 0x2a, 0x54, 0x59, 0x2e, 0xb1, 0xee, 0x3a, 0x4f, 0x17,
  8013. 0x66, 0x79, 0xb8, 0x95, 0xa7, 0x0b, 0xf0, 0xb2, 0x9c, 0xf8, 0xd3, 0x50, 0x13, 0x7f, 0xb2, 0x64,
  8014. 0xa1, 0xa6, 0x98, 0x2c, 0x44, 0x4e, 0xaa, 0x86, 0x29, 0x3f, 0x84, 0xc6, 0xdf, 0x6a, 0x9a, 0xcd,
  8015. 0x4c, 0x69, 0x9a, 0xcd, 0xac, 0xac, 0x15, 0xe4, 0xf4, 0xa2, 0xb9, 0x42, 0x7a, 0x91, 0x21, 0x53,
  8016. 0xd8, 0xf9, 0x11, 0x3d, 0x25, 0x95, 0x31, 0x24, 0x7a, 0x35, 0x93, 0x22, 0xcf, 0x6b, 0x58, 0xdb,
  8017. 0xe3, 0x39, 0xf0, 0x1d, 0xa6, 0xa5, 0x0c, 0x89, 0x75, 0x01, 0x89, 0x1d, 0x98, 0x71, 0x63, 0xe4,
  8018. 0x0a, 0x4a, 0x8d, 0x15, 0xe5, 0x63, 0x80, 0x66, 0xd9, 0x31, 0x40, 0x4b, 0x39, 0x06, 0xf8, 0x29,
  8019. 0x3d, 0x4d, 0xd5, 0x2d, 0x60, 0x2a, 0x8a, 0x3d, 0x04, 0x3b, 0x29, 0x90, 0x0b, 0x73, 0x34, 0x9e,
  8020. 0xd2, 0xa5, 0xf2, 0x16, 0x2a, 0xf7, 0x34, 0x1d, 0x28, 0xf1, 0xff, 0xba, 0x1a, 0xff, 0xcf, 0x4f,
  8021. 0x0d, 0x1a, 0xc2, 0xa9, 0x81, 0xf3, 0x03, 0x0b, 0xae, 0x60, 0x56, 0xdc, 0x22, 0x07, 0x8b, 0x92,
  8022. 0xd1, 0x34, 0x89, 0xdd, 0xd9, 0x41, 0x63, 0xad, 0x70, 0xd0, 0x28, 0xe4, 0x04, 0xf3, 0x3d, 0x6a,
  8023. 0xc8, 0xf7, 0xd6, 0x74, 0x79, 0x94, 0xd2, 0xb1, 0x54, 0x4b, 0x39, 0x92, 0xd5, 0x65, 0x4f, 0xfc,
  8024. 0xc0, 0x02, 0x38, 0x40, 0xee, 0x29, 0xc5, 0xc1, 0xb9, 0xf9, 0x2d, 0xa7, 0xd7, 0xba, 0x14, 0xf4,
  8025. 0xd7, 0x5f, 0x55, 0x15, 0xb9, 0xb3, 0xa9, 0x70, 0xa7, 0x8e, 0xd3, 0x24, 0x8e, 0x9d, 0x51, 0x38,
  8026. 0x16, 0x93, 0xd4, 0x85, 0x7d, 0xe4, 0xc6, 0xfd, 0x93, 0x8a, 0x02, 0x43, 0x36, 0xe6, 0x6a, 0x05,
  8027. 0x63, 0x2e, 0x9b, 0x74, 0x5d, 0x9c, 0xb4, 0x7a, 0x24, 0xdb, 0x98, 0x90, 0xf1, 0xa7, 0x1a, 0x7b,
  8028. 0x39, 0x8a, 0x5a, 0x12, 0x8a, 0xca, 0x17, 0x37, 0x24, 0xfc, 0x9e, 0xb3, 0xc9, 0xe6, 0x78, 0x9b,
  8029. 0x30, 0xac, 0x40, 0x4f, 0x8c, 0x9f, 0x2d, 0x89, 0x9f, 0xa7, 0x3f, 0xa8, 0xfb, 0x77, 0xca, 0xa1,
  8030. 0xba, 0x21, 0xa7, 0xe2, 0xd0, 0xdb, 0x70, 0x21, 0x51, 0x76, 0xa7, 0x24, 0xc2, 0xa1, 0x6e, 0x64,
  8031. 0xaf, 0xd0, 0x78, 0xca, 0x13, 0xbb, 0x2f, 0x11, 0xbb, 0x8c, 0x76, 0x83, 0x09, 0x7d, 0x0b, 0xb7,
  8032. 0xaa, 0x70, 0x55, 0xc5, 0xf9, 0x75, 0x12, 0xe8, 0xa1, 0x0d, 0x37, 0x3c, 0x2f, 0xc0, 0x9e, 0xac,
  8033. 0x3b, 0xa8, 0xdc, 0xfc, 0x25, 0x58, 0x7b, 0x1d, 0xa5, 0x6f, 0x30, 0x2a, 0xd9, 0x1c, 0xe7, 0x5b,
  8034. 0x37, 0x41, 0x54, 0x3b, 0x7f, 0x60, 0xc1, 0xa5, 0x42, 0xd3, 0xa9, 0xb6, 0x60, 0x52, 0x7e, 0xb4,
  8035. 0x4a, 0xda, 0xf5, 0x22, 0x69, 0x3b, 0x7f, 0x5b, 0x83, 0xee, 0x86, 0xe7, 0x1d, 0xb8, 0xc1, 0x09,
  8036. 0xfa, 0xbf, 0x99, 0x3b, 0x2e, 0x65, 0xc2, 0xcf, 0x28, 0x99, 0xf0, 0xe6, 0x9b, 0x0d, 0x5c, 0x1a,
  8037. 0xce, 0x09, 0x59, 0xce, 0x79, 0x46, 0x34, 0x48, 0x19, 0xd1, 0x4c, 0x26, 0xb7, 0xf5, 0xf7, 0x34,
  8038. 0xe6, 0xe5, 0x9c, 0x66, 0xe7, 0x9b, 0x16, 0x5c, 0xe2, 0x77, 0xad, 0x0e, 0xa2, 0x77, 0xd0, 0xd6,
  8039. 0x89, 0x9b, 0x56, 0xc8, 0xbd, 0x31, 0x5d, 0x25, 0x64, 0xb9, 0x87, 0x75, 0x29, 0xf7, 0xf0, 0x2a,
  8040. 0x2c, 0x26, 0xc3, 0xa3, 0x60, 0x30, 0xa0, 0x3a, 0x67, 0x67, 0xc8, 0x7d, 0x1b, 0x19, 0xea, 0x1c,
  8041. 0x41, 0xa7, 0x38, 0x95, 0x69, 0xaf, 0xaf, 0xf3, 0x78, 0x72, 0x4d, 0x8a, 0x27, 0x3b, 0x6f, 0xe6,
  8042. 0xcb, 0xbd, 0x8d, 0x41, 0x7b, 0xee, 0x58, 0xb8, 0xde, 0xc8, 0x1b, 0x59, 0x72, 0x10, 0x3a, 0x5f,
  8043. 0x58, 0x4d, 0x5c, 0x98, 0xf3, 0x46, 0x3e, 0xe1, 0xbc, 0xb3, 0x69, 0x26, 0x8c, 0x9d, 0x15, 0x12,
  8044. 0x1b, 0x48, 0x53, 0x14, 0x92, 0x08, 0x20, 0x61, 0xcd, 0x0a, 0xf6, 0xb7, 0x29, 0x1a, 0xe0, 0xec,
  8045. 0x63, 0x09, 0x19, 0xa2, 0xd8, 0x1d, 0x3c, 0xc4, 0x4e, 0xdf, 0xc3, 0x72, 0x46, 0xee, 0x94, 0xb3,
  8046. 0xfe, 0x03, 0x32, 0x99, 0xf3, 0x5f, 0x16, 0xbd, 0xc8, 0xcf, 0xa2, 0x5f, 0xf6, 0x55, 0x58, 0xc2,
  8047. 0x2d, 0x3f, 0x66, 0xa7, 0x15, 0x1f, 0x67, 0x09, 0x84, 0x24, 0x85, 0x39, 0xbf, 0x5a, 0x72, 0x09,
  8048. 0x66, 0x48, 0xbd, 0x40, 0xe3, 0x0f, 0x30, 0x0e, 0xac, 0x4b, 0x1c, 0xc8, 0x79, 0xa9, 0x21, 0xf0,
  8049. 0xd2, 0x13, 0xd0, 0x1e, 0xba, 0x31, 0x1e, 0x46, 0x70, 0x06, 0x80, 0x82, 0x78, 0x16, 0x58, 0x21,
  8050. 0xc1, 0xb3, 0x78, 0x0a, 0x44, 0x52, 0x56, 0x07, 0xe4, 0x88, 0x35, 0x39, 0x09, 0x86, 0x3c, 0xe6,
  8051. 0x21, 0xc2, 0x9c, 0x30, 0xf3, 0xbd, 0xd9, 0x1a, 0x44, 0xcb, 0x58, 0x58, 0x4c, 0x61, 0x53, 0x32,
  8052. 0x65, 0x58, 0x53, 0x92, 0x02, 0x25, 0x35, 0x5a, 0x57, 0xd4, 0xa8, 0xf3, 0x63, 0x2b, 0xf3, 0x83,
  8053. 0xa5, 0x01, 0xa7, 0xbc, 0xeb, 0xdc, 0x16, 0xb0, 0x5f, 0x72, 0x85, 0x44, 0x18, 0xae, 0x27, 0x36,
  8054. 0x99, 0x52, 0x31, 0xbe, 0xc7, 0x03, 0x3c, 0x42, 0xbf, 0x44, 0xcf, 0x2a, 0x13, 0xa2, 0x6b, 0x38,
  8055. 0xcf, 0x84, 0x9c, 0x2d, 0x75, 0x3f, 0x44, 0xf5, 0x57, 0x91, 0x08, 0x9d, 0x6f, 0x15, 0x90, 0xfc,
  8056. 0x00, 0x9a, 0xb0, 0x80, 0xe4, 0x73, 0xaf, 0xe9, 0x9f, 0x6b, 0xb0, 0xb6, 0xef, 0xde, 0x43, 0x2c,
  8057. 0xa7, 0x5d, 0xcc, 0xfa, 0x79, 0x68, 0x77, 0x28, 0x25, 0xef, 0xb9, 0xa1, 0xbf, 0xa0, 0xda, 0xd4,
  8058. 0x5f, 0x50, 0x6d, 0x19, 0x2e, 0xa8, 0xce, 0xe8, 0x2f, 0xa8, 0xce, 0x9a, 0x2e, 0xa8, 0xce, 0x19,
  8059. 0x2f, 0xa8, 0x82, 0xf9, 0x82, 0x6a, 0x5b, 0xce, 0x52, 0x17, 0x43, 0x18, 0xf3, 0x4a, 0x08, 0xe3,
  8060. 0x5d, 0x0d, 0x16, 0x93, 0x61, 0x64, 0x08, 0xc8, 0x63, 0xb9, 0xc2, 0xaf, 0x62, 0x60, 0xb9, 0x22,
  8061. 0xdf, 0x8e, 0x92, 0xef, 0x9f, 0x1e, 0xc2, 0xea, 0x36, 0x1a, 0x88, 0xfb, 0x97, 0x1f, 0xf8, 0x49,
  8062. 0x94, 0xa5, 0x97, 0x79, 0xa6, 0x03, 0xbf, 0x10, 0xae, 0x6c, 0x9d, 0xa0, 0xfe, 0x9d, 0x8d, 0xd0,
  8063. 0xa3, 0xec, 0xc2, 0xa7, 0x2e, 0x46, 0xba, 0xb3, 0xe5, 0x5a, 0x4a, 0xea, 0xd6, 0xf9, 0xaf, 0xd1,
  8064. 0x06, 0xf0, 0x18, 0x1d, 0xe7, 0x56, 0x34, 0x18, 0x44, 0x67, 0xc8, 0xa3, 0xb7, 0xdd, 0x1f, 0x40,
  8065. 0xc3, 0x08, 0x27, 0x4e, 0x75, 0xf9, 0x12, 0x7a, 0x0d, 0x56, 0xf1, 0x66, 0xbc, 0x1d, 0x84, 0x1b,
  8066. 0xc3, 0xe1, 0x23, 0xb9, 0x15, 0xfc, 0xff, 0x80, 0xa2, 0x43, 0x4a, 0xd1, 0x22, 0x12, 0xcf, 0x75,
  8067. 0xc4, 0x64, 0xc2, 0x9c, 0xe1, 0xd6, 0x9e, 0xf3, 0xdb, 0x75, 0x68, 0x0b, 0xec, 0xf3, 0xcb, 0xeb,
  8068. 0xf2, 0x8f, 0xe6, 0xba, 0xbc, 0xb4, 0xe7, 0x4b, 0xca, 0x9e, 0xff, 0x16, 0x79, 0x11, 0xea, 0x51,
  8069. 0xab, 0x02, 0xd3, 0x95, 0x19, 0xe7, 0x13, 0x8b, 0x38, 0x97, 0xaa, 0x10, 0xad, 0x4e, 0x73, 0xaf,
  8070. 0x42, 0x3b, 0xc9, 0x1b, 0x93, 0x91, 0xf5, 0xea, 0x50, 0x1c, 0x42, 0x6c, 0xe2, 0xfc, 0x4e, 0x0d,
  8071. 0xd6, 0x65, 0x79, 0x28, 0x04, 0xa4, 0x2b, 0x08, 0xab, 0x8c, 0xb0, 0x6a, 0x7a, 0xc2, 0xaa, 0xeb,
  8072. 0x09, 0xab, 0x61, 0x20, 0xac, 0xa6, 0x9e, 0xb0, 0x5a, 0x26, 0xc2, 0x9a, 0x31, 0x12, 0xd6, 0xac,
  8073. 0x42, 0x58, 0xe2, 0x3e, 0xcc, 0x29, 0xfb, 0xb0, 0x03, 0x4f, 0x96, 0xe0, 0xe0, 0x3c, 0x3b, 0xe2,
  8074. 0x20, 0x58, 0xde, 0x18, 0xa5, 0x27, 0xd8, 0xfe, 0xef, 0xbb, 0xa9, 0x78, 0x05, 0x32, 0xf0, 0xd8,
  8075. 0x35, 0x79, 0x76, 0x8a, 0xca, 0xcb, 0x92, 0xab, 0x5c, 0x2b, 0xba, 0xca, 0x5a, 0xed, 0xf2, 0x0a,
  8076. 0xac, 0xc8, 0xc3, 0x9c, 0x6b, 0x92, 0x1f, 0xc1, 0x35, 0x99, 0xec, 0x1e, 0xf2, 0xf9, 0xc6, 0xb7,
  8077. 0x2d, 0x78, 0xa6, 0xc2, 0x00, 0x9f, 0x31, 0xa9, 0xff, 0xb9, 0x45, 0xde, 0x9b, 0x20, 0x97, 0x3e,
  8078. 0x2b, 0x5c, 0x4a, 0x2f, 0xbb, 0xa5, 0x6d, 0xf2, 0x9f, 0x24, 0x77, 0xa3, 0x51, 0x16, 0xb5, 0x6b,
  8079. 0x2a, 0x51, 0xbb, 0xef, 0x5b, 0xb0, 0x2c, 0x4d, 0xee, 0x01, 0x5f, 0x5d, 0xab, 0x4f, 0x7c, 0x75,
  8080. 0x6d, 0x3a, 0x77, 0xe3, 0xe6, 0x7f, 0x7f, 0x99, 0xfa, 0xa2, 0xfb, 0x28, 0x26, 0xf7, 0x42, 0x76,
  8081. 0xa1, 0x7d, 0x1c, 0x84, 0xde, 0xe6, 0x78, 0xef, 0x24, 0x0a, 0x91, 0x6d, 0xb2, 0xc5, 0x19, 0xb6,
  8082. 0xbb, 0x4f, 0x18, 0x7f, 0x67, 0x0b, 0xbe, 0x0d, 0xf3, 0xb4, 0xbf, 0x43, 0xe6, 0x1b, 0x3f, 0x68,
  8083. 0x87, 0x2f, 0x91, 0xc8, 0x11, 0x79, 0x91, 0xc6, 0x84, 0x90, 0xae, 0x16, 0xab, 0xf6, 0x07, 0xd0,
  8084. 0x76, 0xf3, 0xb7, 0xde, 0x6c, 0xdd, 0x71, 0x44, 0xf1, 0xd5, 0xba, 0xee, 0xd5, 0x49, 0xd5, 0xd8,
  8085. 0xbc, 0x8e, 0x60, 0xc9, 0x47, 0xa9, 0xf8, 0xd2, 0x9a, 0x7d, 0xb5, 0xe4, 0x75, 0x34, 0x81, 0x64,
  8086. 0xbb, 0x4f, 0x4f, 0xac, 0xc7, 0xc6, 0x78, 0x0f, 0x2e, 0xfa, 0x28, 0x95, 0x9f, 0x37, 0xb3, 0xaf,
  8087. 0x99, 0x1f, 0xe0, 0x92, 0xdf, 0x4c, 0xeb, 0x76, 0x75, 0x68, 0xd9, 0x8e, 0x46, 0x47, 0x03, 0x64,
  8088. 0xdf, 0x81, 0x95, 0x42, 0xd7, 0xbb, 0xe8, 0xec, 0x1c, 0xbd, 0x3f, 0x53, 0xa1, 0x26, 0x5b, 0xc7,
  8089. 0x5d, 0x71, 0xb0, 0xfc, 0x55, 0x32, 0xfb, 0xb9, 0x49, 0x6f, 0x89, 0x89, 0x58, 0xbb, 0x5e, 0xad,
  8090. 0x32, 0x1b, 0x72, 0x1b, 0x66, 0xf9, 0x7b, 0x6c, 0xb6, 0x53, 0xfa, 0x08, 0x13, 0xed, 0x5d, 0x4f,
  8091. 0x42, 0xdb, 0x30, 0x7b, 0xcc, 0x5e, 0x0a, 0xd3, 0xf6, 0xa2, 0x3c, 0x23, 0x66, 0xe8, 0x25, 0x85,
  8092. 0x55, 0x1f, 0xa5, 0xc5, 0x77, 0xa6, 0xec, 0xeb, 0x13, 0x5f, 0x87, 0x12, 0x11, 0xf0, 0x7c, 0xc5,
  8093. 0xda, 0x0c, 0x03, 0x5f, 0x85, 0xb6, 0x97, 0xbf, 0x0a, 0xa5, 0x25, 0xff, 0xe2, 0xab, 0x51, 0x86,
  8094. 0x15, 0x1c, 0xc1, 0x82, 0x2f, 0x3e, 0xbd, 0x69, 0xeb, 0x48, 0x58, 0xf7, 0xba, 0x69, 0xf7, 0xda,
  8095. 0xe4, 0x8a, 0x6c, 0xbe, 0x3d, 0x58, 0x3a, 0x92, 0xdf, 0xd1, 0xb4, 0x75, 0x24, 0xa6, 0x7f, 0x6b,
  8096. 0xd3, 0x30, 0xef, 0xf7, 0x00, 0xfc, 0x4c, 0x91, 0xd9, 0x9f, 0xd7, 0xcf, 0x45, 0xbe, 0x1e, 0xdf,
  8097. 0x7d, 0x6a, 0x42, 0x2d, 0x36, 0xdd, 0x00, 0x6c, 0xbf, 0xf0, 0xce, 0x92, 0x76, 0x47, 0x8d, 0xcf,
  8098. 0x31, 0x4d, 0x39, 0x14, 0x93, 0xac, 0x93, 0x86, 0x92, 0x6c, 0xc0, 0xaa, 0x43, 0xed, 0xc3, 0xa2,
  8099. 0x2b, 0x3d, 0x4e, 0xa3, 0x17, 0x08, 0xba, 0xf7, 0x6b, 0xba, 0x97, 0x74, 0x5b, 0xb0, 0x13, 0xa6,
  8100. 0xf6, 0x5d, 0x32, 0x7f, 0xe5, 0xa9, 0x17, 0xd3, 0xfc, 0xf5, 0x6f, 0xcf, 0x68, 0x89, 0xbf, 0xe4,
  8101. 0xfd, 0x98, 0xf7, 0x61, 0x61, 0x20, 0xbe, 0x94, 0xa1, 0x25, 0x58, 0xdd, 0x5b, 0x1a, 0xdd, 0x75,
  8102. 0x53, 0xc5, 0xac, 0xef, 0x8f, 0x60, 0x69, 0x20, 0xbf, 0x94, 0xa1, 0x25, 0x54, 0xfd, 0x6b, 0x1a,
  8103. 0x15, 0xfa, 0xff, 0x4d, 0xb8, 0xe8, 0xa9, 0x2f, 0x40, 0x68, 0x45, 0xa5, 0xe9, 0x9d, 0x08, 0x03,
  8104. 0x33, 0xbc, 0x01, 0xe0, 0x66, 0x8f, 0x41, 0x68, 0x99, 0xa1, 0xf0, 0x56, 0x84, 0xa1, 0xa7, 0x57,
  8105. 0xa1, 0x45, 0x59, 0xd5, 0x5e, 0x37, 0x72, 0x68, 0x79, 0x0f, 0x94, 0x24, 0x94, 0x5b, 0xfd, 0x26,
  8106. 0x92, 0xd0, 0x3f, 0x2a, 0x60, 0x22, 0x09, 0xd3, 0x53, 0x01, 0x5f, 0x27, 0x52, 0xb8, 0x78, 0x8f,
  8107. 0xdc, 0x7e, 0xa1, 0x94, 0xb4, 0x8a, 0x57, 0xe1, 0xbb, 0x5f, 0xa8, 0xde, 0x80, 0x8d, 0xfd, 0x16,
  8108. 0xcc, 0xf7, 0x85, 0x1b, 0xe0, 0x5a, 0x4b, 0x41, 0x73, 0x45, 0xdc, 0xa8, 0x4f, 0x96, 0xfd, 0xe2,
  8109. 0x7d, 0x43, 0xdb, 0x8c, 0x0f, 0xdd, 0x25, 0xc9, 0xee, 0x8d, 0xaa, 0xd5, 0xd9, 0x1a, 0xfe, 0xc8,
  8110. 0x82, 0xc7, 0xfd, 0x92, 0x1b, 0xa4, 0xf6, 0xaf, 0x55, 0x40, 0x8b, 0xe6, 0xb2, 0x6b, 0xf7, 0x4b,
  8111. 0xe7, 0x6e, 0xc7, 0x66, 0xf4, 0x89, 0x05, 0x97, 0x7c, 0xfd, 0xfd, 0x5e, 0xfb, 0x57, 0xab, 0xec,
  8112. 0x91, 0x94, 0xa0, 0xdf, 0xbd, 0x79, 0x9e, 0x26, 0xf2, 0x14, 0x74, 0x99, 0xdd, 0xa6, 0x29, 0x94,
  8113. 0x5c, 0x02, 0x33, 0x4d, 0xa1, 0xf4, 0x5a, 0xd7, 0x5f, 0x59, 0xf0, 0x94, 0x5f, 0x25, 0xb9, 0xdc,
  8114. 0xfe, 0x4a, 0xf5, 0xde, 0xb5, 0x29, 0xe0, 0xdd, 0x57, 0xa7, 0xef, 0x80, 0x4d, 0xf6, 0x1b, 0x16,
  8115. 0x5c, 0xf6, 0x4d, 0x17, 0xbb, 0xec, 0x17, 0xab, 0xf5, 0x2f, 0x6f, 0xdb, 0x17, 0xcf, 0xd7, 0x48,
  8116. 0xde, 0x38, 0x5d, 0xa6, 0xba, 0x69, 0xe3, 0x4a, 0x6e, 0xb3, 0x98, 0x36, 0xae, 0xf4, 0x7e, 0xca,
  8117. 0x5f, 0x5b, 0xf0, 0xb4, 0x66, 0x0a, 0x9b, 0xe3, 0xea, 0x5b, 0x57, 0x39, 0x7b, 0xdf, 0xb4, 0x75,
  8118. 0xe7, 0xc8, 0xd4, 0x67, 0x5b, 0x67, 0xb8, 0x1a, 0xf5, 0x62, 0xb5, 0xfe, 0x2b, 0x6d, 0xdd, 0x84,
  8119. 0xeb, 0x2f, 0x3a, 0x41, 0x24, 0x26, 0xe2, 0x57, 0x12, 0x44, 0x9a, 0x1b, 0x00, 0x95, 0x04, 0x91,
  8120. 0x36, 0xe3, 0x3f, 0x85, 0xe5, 0x41, 0x31, 0x0f, 0x5e, 0x2b, 0x90, 0xcd, 0xa9, 0xfa, 0x5a, 0x81,
  8121. 0x5c, 0x96, 0x5e, 0xbf, 0x07, 0x8b, 0x23, 0x29, 0x35, 0x5c, 0x6b, 0xab, 0x69, 0xb3, 0xc7, 0x0d,
  8122. 0x8a, 0x65, 0x0f, 0x16, 0xfb, 0x52, 0x7a, 0xb8, 0xb6, 0x47, 0x6d, 0x06, 0xb9, 0xa1, 0xc7, 0x90,
  8123. 0x78, 0xb0, 0x72, 0x3a, 0xb6, 0xd6, 0x96, 0x31, 0x65, 0x7e, 0x77, 0xaf, 0x57, 0xab, 0x2c, 0x29,
  8124. 0xf9, 0x62, 0x7a, 0xa3, 0x49, 0xc9, 0x1b, 0x33, 0x39, 0x4d, 0x4a, 0xbe, 0x24, 0x73, 0xf2, 0x08,
  8125. 0x2e, 0x8d, 0xf4, 0xd9, 0x87, 0x5a, 0x89, 0x52, 0x9e, 0xa9, 0x68, 0xc0, 0x27, 0x5d, 0x5f, 0x31,
  8126. 0x39, 0xcc, 0xb4, 0x3e, 0x63, 0xe6, 0x9a, 0x69, 0x7d, 0x25, 0x79, 0x67, 0xef, 0x12, 0x9b, 0x4d,
  8127. 0x49, 0xe1, 0x32, 0xd9, 0x6c, 0xfa, 0x4c, 0x2f, 0xc3, 0xaa, 0x3c, 0xe8, 0xf8, 0x86, 0x1c, 0x2f,
  8128. 0xfb, 0x66, 0x59, 0xff, 0xfa, 0x84, 0x30, 0xc3, 0x28, 0x27, 0x24, 0x62, 0x23, 0xe6, 0x73, 0x69,
  8129. 0xed, 0x76, 0x7d, 0xba, 0x58, 0xf7, 0xd9, 0x2a, 0x55, 0x19, 0xa6, 0x3e, 0x84, 0x65, 0xb7, 0x98,
  8130. 0xab, 0xa5, 0x95, 0x07, 0xe6, 0x9c, 0x2e, 0xb3, 0x3f, 0x75, 0x07, 0x2e, 0x9c, 0x29, 0xc9, 0x44,
  8131. 0xf6, 0xb3, 0x25, 0xc1, 0x01, 0x25, 0xf9, 0xa9, 0xfb, 0x5c, 0xa5, 0xba, 0x6c, 0x2d, 0xc2, 0x60,
  8132. 0x3c, 0x11, 0xa8, 0x74, 0x30, 0x25, 0xf5, 0xa8, 0x74, 0xb0, 0x42, 0x66, 0xd1, 0xfb, 0xb0, 0x3c,
  8133. 0x2a, 0xe6, 0x0a, 0x69, 0x11, 0x67, 0xce, 0x29, 0x32, 0x6c, 0x7f, 0x1f, 0x2e, 0x27, 0xee, 0x3d,
  8134. 0xa4, 0xb4, 0x61, 0x8f, 0x98, 0xeb, 0xb9, 0xa1, 0x24, 0xc7, 0xc8, 0x30, 0x88, 0x0f, 0x8f, 0x49,
  8135. 0x83, 0x70, 0xf2, 0x60, 0xc3, 0xdc, 0xac, 0x30, 0x8c, 0x92, 0x75, 0x54, 0xea, 0x40, 0x29, 0x59,
  8136. 0x19, 0x76, 0x89, 0xb0, 0x2c, 0xa6, 0x80, 0x98, 0x1c, 0x28, 0x53, 0xaa, 0xc7, 0x3b, 0xb0, 0x3a,
  8137. 0xd2, 0x66, 0xaa, 0x98, 0xd5, 0x8e, 0x52, 0xb3, 0xea, 0x5a, 0xca, 0xe2, 0x03, 0xfa, 0xf4, 0xa2,
  8138. 0x0a, 0x6b, 0x91, 0x64, 0xb5, 0x0f, 0x4b, 0x89, 0x9c, 0xff, 0xa0, 0x95, 0x05, 0xfa, 0x4c, 0x93,
  8139. 0x6e, 0xa5, 0xaa, 0x34, 0x9d, 0xe2, 0x03, 0xe8, 0xf6, 0x59, 0xde, 0xc2, 0x06, 0x0d, 0x63, 0x3f,
  8140. 0x4c, 0xcc, 0x6d, 0xc1, 0x1c, 0x75, 0xc4, 0x77, 0xd1, 0xd9, 0xd4, 0xbe, 0xf8, 0x1e, 0x2c, 0x7a,
  8141. 0x52, 0xc6, 0x86, 0x76, 0x5a, 0xda, 0xa4, 0x0e, 0x63, 0xb8, 0xf0, 0x52, 0x5f, 0x9f, 0xac, 0xa1,
  8142. 0xd5, 0x84, 0xe5, 0x89, 0x1d, 0xa5, 0x4e, 0xb0, 0x7a, 0x61, 0xc9, 0x7e, 0x7e, 0x92, 0xb9, 0x20,
  8143. 0x47, 0xe0, 0x6e, 0x54, 0xad, 0xce, 0xe8, 0xe6, 0x53, 0x0b, 0xae, 0xf8, 0xa5, 0x57, 0x7f, 0xec,
  8144. 0x97, 0x26, 0x75, 0x69, 0x3a, 0xab, 0xeb, 0x7e, 0x79, 0x8a, 0x96, 0x6c, 0x5e, 0x1f, 0xc0, 0xca,
  8145. 0x48, 0x93, 0xae, 0x62, 0xdf, 0x30, 0x12, 0x98, 0x36, 0xaf, 0xc5, 0x80, 0x6b, 0x04, 0x8b, 0x89,
  8146. 0x94, 0x5b, 0xa1, 0xa5, 0x10, 0x6d, 0x0e, 0x8b, 0x91, 0x57, 0x34, 0x89, 0x1a, 0x08, 0x16, 0x7d,
  8147. 0xe9, 0xd8, 0xd1, 0xbe, 0x56, 0x1a, 0xb5, 0x9c, 0xc4, 0x92, 0x86, 0xb3, 0x79, 0xec, 0xc8, 0x8c,
  8148. 0x4c, 0xe7, 0xc5, 0x5a, 0x47, 0x66, 0xd2, 0x09, 0xbb, 0xd6, 0x91, 0x99, 0x7c, 0x24, 0xfd, 0x31,
  8149. 0xcc, 0xbb, 0xc2, 0x29, 0xb0, 0x36, 0x2a, 0xa4, 0x39, 0x8d, 0xd6, 0x9e, 0x1f, 0x69, 0x8f, 0x93,
  8150. 0xbf, 0x67, 0xc1, 0x93, 0xfe, 0xa4, 0x83, 0x5c, 0xfb, 0xe5, 0x89, 0xa8, 0x2b, 0xa1, 0xd9, 0x57,
  8151. 0xa6, 0x6b, 0x9c, 0x91, 0x6d, 0xdb, 0xcf, 0x4f, 0x4d, 0xed, 0xa7, 0xcc, 0x0c, 0x20, 0xca, 0xfa,
  8152. 0xab, 0x93, 0xaa, 0xd1, 0xde, 0x37, 0x9f, 0x80, 0xe2, 0x7f, 0x00, 0xee, 0x59, 0xef, 0x37, 0x5f,
  8153. 0xc0, 0xa5, 0xdf, 0xb3, 0xac, 0xa3, 0x16, 0xf9, 0x2b, 0xc0, 0x17, 0xff, 0x37, 0x00, 0x00, 0xff,
  8154. 0xff, 0x66, 0x59, 0x25, 0xd9, 0x37, 0x70, 0x00, 0x00,
  8155. }
  8156. // Reference imports to suppress errors if they are not otherwise used.
  8157. var _ context.Context
  8158. var _ grpc.ClientConn
  8159. // This is a compile-time assertion to ensure that this generated file
  8160. // is compatible with the grpc package it is being compiled against.
  8161. const _ = grpc.SupportPackageIsVersion4
  8162. // UserServiceClient is the client API for UserService service.
  8163. //
  8164. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  8165. type UserServiceClient interface {
  8166. FindByPhone(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  8167. FindByUserId(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  8168. AddUser(ctx context.Context, in *User, opts ...grpc.CallOption) (*Result, error)
  8169. AddBankCard(ctx context.Context, in *AddBankCardRequest, opts ...grpc.CallOption) (*AddBankCardResponse, error)
  8170. GetBankCardList(ctx context.Context, in *BankCardListRequest, opts ...grpc.CallOption) (*BankCardListResponse, error)
  8171. GetAccountBalance(ctx context.Context, in *AccountBalanceRequest, opts ...grpc.CallOption) (*ResultDouble, error)
  8172. // 获取我的账户余额,返回总余额以及可提现余额
  8173. GetAccountBalanceNew(ctx context.Context, in *AccountBalanceRequest, opts ...grpc.CallOption) (*AccountBalanceResponse, error)
  8174. GetAccountDetailList(ctx context.Context, in *AccountDetailListRequest, opts ...grpc.CallOption) (*AccountDetailListResponse, error)
  8175. Withdraw(ctx context.Context, in *WithdrawRequest, opts ...grpc.CallOption) (*Result, error)
  8176. Feedback(ctx context.Context, in *FeedbackRequest, opts ...grpc.CallOption) (*Result, error)
  8177. GetWithdrawRecordList(ctx context.Context, in *WithdrawRecordListRequest, opts ...grpc.CallOption) (*WithdrawRecordListResponse, error)
  8178. DelBankCard(ctx context.Context, in *DelBankCardRequest, opts ...grpc.CallOption) (*Result, error)
  8179. GetWxAppToken(ctx context.Context, in *GetWxAppTokenRequest, opts ...grpc.CallOption) (*GetWxAppTokenResponse, error)
  8180. BindWxAppMobile(ctx context.Context, in *BindWxAppMobileRequest, opts ...grpc.CallOption) (*Result, error)
  8181. GetSnsUser(ctx context.Context, in *GetSnsUserRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error)
  8182. GetSnsUserByOpenId(ctx context.Context, in *GetSnsUserByOpenIdRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error)
  8183. GetSnsUserByUserId(ctx context.Context, in *GetSnsUserByUserIdRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error)
  8184. AddMedicalCard(ctx context.Context, in *AddMedicalCardRequest, opts ...grpc.CallOption) (*ResultInt, error)
  8185. GetMedicalCardList(ctx context.Context, in *GetMedicalCardListRequest, opts ...grpc.CallOption) (*GetMedicalCardListResponse, error)
  8186. LoginByMobile(ctx context.Context, in *LoginByMobileRequest, opts ...grpc.CallOption) (*LoginResponse, error)
  8187. LoginByUserName(ctx context.Context, in *LoginByUserNameRequest, opts ...grpc.CallOption) (*LoginResponse, error)
  8188. DeleteMedicalCard(ctx context.Context, in *DeleteMedicalCardRequest, opts ...grpc.CallOption) (*Result, error)
  8189. AddSnsUser(ctx context.Context, in *AddSnsUserRequest, opts ...grpc.CallOption) (*Result, error)
  8190. BindWx(ctx context.Context, in *BindWxRequest, opts ...grpc.CallOption) (*Result, error)
  8191. GetOffcialUserInfo(ctx context.Context, in *GetOffcialUserInfoRequest, opts ...grpc.CallOption) (*GetOffcialUserInfoResponse, error)
  8192. GetMedicalRecordsList(ctx context.Context, in *GetMedicalRecordsListRequest, opts ...grpc.CallOption) (*GetMedicalRecordsListResponse, error)
  8193. ChangeMobile(ctx context.Context, in *ChangeMobileRequest, opts ...grpc.CallOption) (*Result, error)
  8194. GetOfficialUserInfo(ctx context.Context, in *GetOfficialUserInfoRequest, opts ...grpc.CallOption) (*GetOfficialUserInfoResponse, error)
  8195. //获取用户病历列表
  8196. GetMedicalRecordListByUserId(ctx context.Context, in *GetMedicalRecordListByUserIdRequest, opts ...grpc.CallOption) (*GetMedicalRecordListByUserIdResponse, error)
  8197. //获取病历详情
  8198. GetMedicalRecordsDetail(ctx context.Context, in *GetMedicalRecordsDetailRequest, opts ...grpc.CallOption) (*GetMedicalRecordsDetailResponse, error)
  8199. //获取检查结果列表
  8200. GetInspectionReportList(ctx context.Context, in *GetInspectionReportListRequest, opts ...grpc.CallOption) (*GetInspectionReportListResponse, error)
  8201. //根据门诊ID获取检查结果列表
  8202. GetInspectionReportListByHisPatientId(ctx context.Context, in *GetInspectionReportListByHisPatientIdRequest, opts ...grpc.CallOption) (*GetInspectionReportListByHisPatientIdResponse, error)
  8203. //获取检查结果详情
  8204. GetInspectionReportDetail(ctx context.Context, in *GetInspectionReportDetailRequest, opts ...grpc.CallOption) (*GetInspectionReportDetailResponse, error)
  8205. //获取化验结果列表
  8206. GetLaboratoryReportList(ctx context.Context, in *GetLaboratoryReportListRequest, opts ...grpc.CallOption) (*GetLaboratoryReportListResponse, error)
  8207. //根据门诊ID获取化验结果列表
  8208. GetLaboratoryReportByListByHisPatientId(ctx context.Context, in *GetLaboratoryReportListByHisPatientIdRequest, opts ...grpc.CallOption) (*GetLaboratoryReportListByHisPatientIdResponse, error)
  8209. //获取化验结果详情
  8210. GetLaboratoryReportDetail(ctx context.Context, in *GetLaboratoryReportDetailRequest, opts ...grpc.CallOption) (*GetLaboratoryReportDetailResponse, error)
  8211. //根据就诊流水号获取门诊病历
  8212. GetMedicalRecordByClinicCode(ctx context.Context, in *GetMedicalRecordByClinicCodeRequest, opts ...grpc.CallOption) (*GetMedicalRecordByClinicCodeResponse, error)
  8213. //根据用户名和密码登录
  8214. LoginWithUserAndPsd(ctx context.Context, in *LoginWithUserAndPsdRequest, opts ...grpc.CallOption) (*LoginWithUserAndPsdResponse, error)
  8215. //忘记密码
  8216. UpdatePassword(ctx context.Context, in *UpdatePasswordRequest, opts ...grpc.CallOption) (*Result, error)
  8217. //修改密码
  8218. ChangePassword(ctx context.Context, in *ChangePasswordRequest, opts ...grpc.CallOption) (*Result, error)
  8219. //根据code拉取用户信息
  8220. GetUserInfoByCode(ctx context.Context, in *GetUserInfoByCodeRequest, opts ...grpc.CallOption) (*GetUserInfoByCodeResponse, error)
  8221. //得到加诊排班医生列表 create by daiyihua
  8222. GetScheduleDoctorList(ctx context.Context, in *GetScheduleDoctorListRequest, opts ...grpc.CallOption) (*GetScheduleDoctorListResponse, error)
  8223. //用户创建就诊人 create by daiyihua
  8224. UserCreateMedicalRecord(ctx context.Context, in *UserCreateMedicalRecordRequest, opts ...grpc.CallOption) (*Result, error)
  8225. //根据科室ID搜索医生 create by daiyihua
  8226. GetDoctorListByDeptId(ctx context.Context, in *GetDoctorListByDeptIdRequest, opts ...grpc.CallOption) (*GetDoctorListByDeptIdResponse, error)
  8227. //根据医生ID得到医生团队数量 create by daiyihua
  8228. GetDoctorTeamCount(ctx context.Context, in *GetDoctorTeamCountRequest, opts ...grpc.CallOption) (*Result, error)
  8229. //根据医生ID得到医生加诊记录数量 create by daiyihua
  8230. GetDoctorAdditionalCount(ctx context.Context, in *GetDoctorAdditionalCountRequest, opts ...grpc.CallOption) (*Result, error)
  8231. //根据医院ID得到医院对象 create by daiyihua
  8232. GetHospitalById(ctx context.Context, in *GetHospitalByIdRequest, opts ...grpc.CallOption) (*GetHospitalByIdResponse, error)
  8233. //绑定太和的诊疗卡 create by daiyihua
  8234. AddTaiheMedicalCard(ctx context.Context, in *AddTaiheMedicalCardRequest, opts ...grpc.CallOption) (*ResultInt, error)
  8235. // 微信提现
  8236. WithdrawToWeChat(ctx context.Context, in *WithdrawToWeChatRequest, opts ...grpc.CallOption) (*WithdrawToWeChatResponse, error)
  8237. // 微信提现订单支付
  8238. WithdrawOrderPay(ctx context.Context, in *WithdrawOrderPayRequest, opts ...grpc.CallOption) (*WithdrawOrderPayResponse, error)
  8239. //添加关注(用户扫描关注医生) created by daiyihua
  8240. UserAttentionDoctor(ctx context.Context, in *UserAttentionDoctorRequest, opts ...grpc.CallOption) (*Result, error)
  8241. //用户点击添加、取消关注医生
  8242. SaveAttentionDoctorStatus(ctx context.Context, in *GeneralAttentionDoctorRequest, opts ...grpc.CallOption) (*Result, error)
  8243. //用户点击添加、取消关注医院
  8244. SaveAttentionHospitalStatus(ctx context.Context, in *GeneralAttentionHospitalRequest, opts ...grpc.CallOption) (*Result, error)
  8245. // 得到单个用户个人资料
  8246. GetUserPatientById(ctx context.Context, in *GetUserPatientByIdRequest, opts ...grpc.CallOption) (*GetUserPatientByIdResponse, error)
  8247. // 修改单个用户个人资料
  8248. UpdateUserPatientInfo(ctx context.Context, in *UpdateUserPatientInfo, opts ...grpc.CallOption) (*Result, error)
  8249. // 得到用户的个人资料列表
  8250. GetUserPatientList(ctx context.Context, in *GetUserPatientListRequest, opts ...grpc.CallOption) (*GetUserPatientListResponse, error)
  8251. //保存社交账号信息
  8252. SaveSnsUserInfo(ctx context.Context, in *SaveSnsUserInfoRequest, opts ...grpc.CallOption) (*SaveSnsUserInfoRespose, error)
  8253. // 判断添加个人资料
  8254. CheckAndAddUserPatientInfo(ctx context.Context, in *UpdateUserPatientInfo, opts ...grpc.CallOption) (*Result, error)
  8255. // 绑定微信体系账号
  8256. BindWxNew(ctx context.Context, in *BindWxRequest, opts ...grpc.CallOption) (*Result, error)
  8257. // 删除个人资料
  8258. DelUserPatient(ctx context.Context, in *DelUserPatientRequest, opts ...grpc.CallOption) (*Result, error)
  8259. //根据unionId和terminal判断是否需要更新sns_user_info表的userId
  8260. CheckAndUpdateSnsUserId(ctx context.Context, in *CheckAndUpdateSnsUserIdRequest, opts ...grpc.CallOption) (*Result, error)
  8261. //根据openid拉取用户信息
  8262. GetUserInfoByOpenId(ctx context.Context, in *GetUserInfoByOpenIdRequest, opts ...grpc.CallOption) (*GetUserInfoByOpenIdResponse, error)
  8263. //根据用户ID和Terminal获取用户基本信息
  8264. GetUserInfoByUserIdAndTerminal(ctx context.Context, in *GetUserInfoByUserIdAndTerminalRequest, opts ...grpc.CallOption) (*GetUserInfoByUserIdAndTerminalResponse, error)
  8265. //更新关注医生状态(关注/取消关注)
  8266. UpdateFollowedStatus(ctx context.Context, in *UpdateFollowedStatusRequest, opts ...grpc.CallOption) (*Result, error)
  8267. //保存小程序用户信息
  8268. SaveMinAppUser(ctx context.Context, in *SaveMinAppUserRequest, opts ...grpc.CallOption) (*SaveMinAppUserResponse, error)
  8269. //
  8270. GetSnsUserInfo(ctx context.Context, in *GetSnsUserInfoRequest, opts ...grpc.CallOption) (*GetSnsUserInfoResponse, error)
  8271. //根据用户ID更新用户小程序信息
  8272. UpdateSnsUserInfoByUserId(ctx context.Context, in *UpdateSnsUserInfoByUserIdRequest, opts ...grpc.CallOption) (*UpdateSnsUserInfoByUserIdResponse, error)
  8273. //实名认证
  8274. Authenticate(ctx context.Context, in *AuthenticateRequest, opts ...grpc.CallOption) (*AuthenticateResponse, error)
  8275. // 根据 userId 和 terminal 获取 snsUserInfo
  8276. GetSnsUserInfoByUserIdAndTerminal(ctx context.Context, in *GetSnsUserInfoByUserIdAndTerminalRequest, opts ...grpc.CallOption) (*GetSnsUserInfoByUserIdAndTerminalResponse, error)
  8277. //获取用户列表
  8278. GetUserList(ctx context.Context, in *GetUserListRequest, opts ...grpc.CallOption) (*GetUserListResponse, error)
  8279. }
  8280. type userServiceClient struct {
  8281. cc *grpc.ClientConn
  8282. }
  8283. func NewUserServiceClient(cc *grpc.ClientConn) UserServiceClient {
  8284. return &userServiceClient{cc}
  8285. }
  8286. func (c *userServiceClient) FindByPhone(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  8287. out := new(UserResponse)
  8288. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/findByPhone", in, out, opts...)
  8289. if err != nil {
  8290. return nil, err
  8291. }
  8292. return out, nil
  8293. }
  8294. func (c *userServiceClient) FindByUserId(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  8295. out := new(UserResponse)
  8296. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/findByUserId", in, out, opts...)
  8297. if err != nil {
  8298. return nil, err
  8299. }
  8300. return out, nil
  8301. }
  8302. func (c *userServiceClient) AddUser(ctx context.Context, in *User, opts ...grpc.CallOption) (*Result, error) {
  8303. out := new(Result)
  8304. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/addUser", in, out, opts...)
  8305. if err != nil {
  8306. return nil, err
  8307. }
  8308. return out, nil
  8309. }
  8310. func (c *userServiceClient) AddBankCard(ctx context.Context, in *AddBankCardRequest, opts ...grpc.CallOption) (*AddBankCardResponse, error) {
  8311. out := new(AddBankCardResponse)
  8312. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/addBankCard", in, out, opts...)
  8313. if err != nil {
  8314. return nil, err
  8315. }
  8316. return out, nil
  8317. }
  8318. func (c *userServiceClient) GetBankCardList(ctx context.Context, in *BankCardListRequest, opts ...grpc.CallOption) (*BankCardListResponse, error) {
  8319. out := new(BankCardListResponse)
  8320. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getBankCardList", in, out, opts...)
  8321. if err != nil {
  8322. return nil, err
  8323. }
  8324. return out, nil
  8325. }
  8326. func (c *userServiceClient) GetAccountBalance(ctx context.Context, in *AccountBalanceRequest, opts ...grpc.CallOption) (*ResultDouble, error) {
  8327. out := new(ResultDouble)
  8328. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getAccountBalance", in, out, opts...)
  8329. if err != nil {
  8330. return nil, err
  8331. }
  8332. return out, nil
  8333. }
  8334. func (c *userServiceClient) GetAccountBalanceNew(ctx context.Context, in *AccountBalanceRequest, opts ...grpc.CallOption) (*AccountBalanceResponse, error) {
  8335. out := new(AccountBalanceResponse)
  8336. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getAccountBalanceNew", in, out, opts...)
  8337. if err != nil {
  8338. return nil, err
  8339. }
  8340. return out, nil
  8341. }
  8342. func (c *userServiceClient) GetAccountDetailList(ctx context.Context, in *AccountDetailListRequest, opts ...grpc.CallOption) (*AccountDetailListResponse, error) {
  8343. out := new(AccountDetailListResponse)
  8344. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getAccountDetailList", in, out, opts...)
  8345. if err != nil {
  8346. return nil, err
  8347. }
  8348. return out, nil
  8349. }
  8350. func (c *userServiceClient) Withdraw(ctx context.Context, in *WithdrawRequest, opts ...grpc.CallOption) (*Result, error) {
  8351. out := new(Result)
  8352. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/withdraw", in, out, opts...)
  8353. if err != nil {
  8354. return nil, err
  8355. }
  8356. return out, nil
  8357. }
  8358. func (c *userServiceClient) Feedback(ctx context.Context, in *FeedbackRequest, opts ...grpc.CallOption) (*Result, error) {
  8359. out := new(Result)
  8360. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/feedback", in, out, opts...)
  8361. if err != nil {
  8362. return nil, err
  8363. }
  8364. return out, nil
  8365. }
  8366. func (c *userServiceClient) GetWithdrawRecordList(ctx context.Context, in *WithdrawRecordListRequest, opts ...grpc.CallOption) (*WithdrawRecordListResponse, error) {
  8367. out := new(WithdrawRecordListResponse)
  8368. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getWithdrawRecordList", in, out, opts...)
  8369. if err != nil {
  8370. return nil, err
  8371. }
  8372. return out, nil
  8373. }
  8374. func (c *userServiceClient) DelBankCard(ctx context.Context, in *DelBankCardRequest, opts ...grpc.CallOption) (*Result, error) {
  8375. out := new(Result)
  8376. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/delBankCard", in, out, opts...)
  8377. if err != nil {
  8378. return nil, err
  8379. }
  8380. return out, nil
  8381. }
  8382. func (c *userServiceClient) GetWxAppToken(ctx context.Context, in *GetWxAppTokenRequest, opts ...grpc.CallOption) (*GetWxAppTokenResponse, error) {
  8383. out := new(GetWxAppTokenResponse)
  8384. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getWxAppToken", in, out, opts...)
  8385. if err != nil {
  8386. return nil, err
  8387. }
  8388. return out, nil
  8389. }
  8390. func (c *userServiceClient) BindWxAppMobile(ctx context.Context, in *BindWxAppMobileRequest, opts ...grpc.CallOption) (*Result, error) {
  8391. out := new(Result)
  8392. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/bindWxAppMobile", in, out, opts...)
  8393. if err != nil {
  8394. return nil, err
  8395. }
  8396. return out, nil
  8397. }
  8398. func (c *userServiceClient) GetSnsUser(ctx context.Context, in *GetSnsUserRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error) {
  8399. out := new(GetSnsUserResponse)
  8400. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getSnsUser", in, out, opts...)
  8401. if err != nil {
  8402. return nil, err
  8403. }
  8404. return out, nil
  8405. }
  8406. func (c *userServiceClient) GetSnsUserByOpenId(ctx context.Context, in *GetSnsUserByOpenIdRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error) {
  8407. out := new(GetSnsUserResponse)
  8408. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getSnsUserByOpenId", in, out, opts...)
  8409. if err != nil {
  8410. return nil, err
  8411. }
  8412. return out, nil
  8413. }
  8414. func (c *userServiceClient) GetSnsUserByUserId(ctx context.Context, in *GetSnsUserByUserIdRequest, opts ...grpc.CallOption) (*GetSnsUserResponse, error) {
  8415. out := new(GetSnsUserResponse)
  8416. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getSnsUserByUserId", in, out, opts...)
  8417. if err != nil {
  8418. return nil, err
  8419. }
  8420. return out, nil
  8421. }
  8422. func (c *userServiceClient) AddMedicalCard(ctx context.Context, in *AddMedicalCardRequest, opts ...grpc.CallOption) (*ResultInt, error) {
  8423. out := new(ResultInt)
  8424. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/addMedicalCard", in, out, opts...)
  8425. if err != nil {
  8426. return nil, err
  8427. }
  8428. return out, nil
  8429. }
  8430. func (c *userServiceClient) GetMedicalCardList(ctx context.Context, in *GetMedicalCardListRequest, opts ...grpc.CallOption) (*GetMedicalCardListResponse, error) {
  8431. out := new(GetMedicalCardListResponse)
  8432. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getMedicalCardList", in, out, opts...)
  8433. if err != nil {
  8434. return nil, err
  8435. }
  8436. return out, nil
  8437. }
  8438. func (c *userServiceClient) LoginByMobile(ctx context.Context, in *LoginByMobileRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
  8439. out := new(LoginResponse)
  8440. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/loginByMobile", in, out, opts...)
  8441. if err != nil {
  8442. return nil, err
  8443. }
  8444. return out, nil
  8445. }
  8446. func (c *userServiceClient) LoginByUserName(ctx context.Context, in *LoginByUserNameRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
  8447. out := new(LoginResponse)
  8448. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/loginByUserName", in, out, opts...)
  8449. if err != nil {
  8450. return nil, err
  8451. }
  8452. return out, nil
  8453. }
  8454. func (c *userServiceClient) DeleteMedicalCard(ctx context.Context, in *DeleteMedicalCardRequest, opts ...grpc.CallOption) (*Result, error) {
  8455. out := new(Result)
  8456. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/deleteMedicalCard", in, out, opts...)
  8457. if err != nil {
  8458. return nil, err
  8459. }
  8460. return out, nil
  8461. }
  8462. func (c *userServiceClient) AddSnsUser(ctx context.Context, in *AddSnsUserRequest, opts ...grpc.CallOption) (*Result, error) {
  8463. out := new(Result)
  8464. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/addSnsUser", in, out, opts...)
  8465. if err != nil {
  8466. return nil, err
  8467. }
  8468. return out, nil
  8469. }
  8470. func (c *userServiceClient) BindWx(ctx context.Context, in *BindWxRequest, opts ...grpc.CallOption) (*Result, error) {
  8471. out := new(Result)
  8472. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/bindWx", in, out, opts...)
  8473. if err != nil {
  8474. return nil, err
  8475. }
  8476. return out, nil
  8477. }
  8478. func (c *userServiceClient) GetOffcialUserInfo(ctx context.Context, in *GetOffcialUserInfoRequest, opts ...grpc.CallOption) (*GetOffcialUserInfoResponse, error) {
  8479. out := new(GetOffcialUserInfoResponse)
  8480. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getOffcialUserInfo", in, out, opts...)
  8481. if err != nil {
  8482. return nil, err
  8483. }
  8484. return out, nil
  8485. }
  8486. func (c *userServiceClient) GetMedicalRecordsList(ctx context.Context, in *GetMedicalRecordsListRequest, opts ...grpc.CallOption) (*GetMedicalRecordsListResponse, error) {
  8487. out := new(GetMedicalRecordsListResponse)
  8488. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getMedicalRecordsList", in, out, opts...)
  8489. if err != nil {
  8490. return nil, err
  8491. }
  8492. return out, nil
  8493. }
  8494. func (c *userServiceClient) ChangeMobile(ctx context.Context, in *ChangeMobileRequest, opts ...grpc.CallOption) (*Result, error) {
  8495. out := new(Result)
  8496. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/changeMobile", in, out, opts...)
  8497. if err != nil {
  8498. return nil, err
  8499. }
  8500. return out, nil
  8501. }
  8502. func (c *userServiceClient) GetOfficialUserInfo(ctx context.Context, in *GetOfficialUserInfoRequest, opts ...grpc.CallOption) (*GetOfficialUserInfoResponse, error) {
  8503. out := new(GetOfficialUserInfoResponse)
  8504. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getOfficialUserInfo", in, out, opts...)
  8505. if err != nil {
  8506. return nil, err
  8507. }
  8508. return out, nil
  8509. }
  8510. func (c *userServiceClient) GetMedicalRecordListByUserId(ctx context.Context, in *GetMedicalRecordListByUserIdRequest, opts ...grpc.CallOption) (*GetMedicalRecordListByUserIdResponse, error) {
  8511. out := new(GetMedicalRecordListByUserIdResponse)
  8512. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getMedicalRecordListByUserId", in, out, opts...)
  8513. if err != nil {
  8514. return nil, err
  8515. }
  8516. return out, nil
  8517. }
  8518. func (c *userServiceClient) GetMedicalRecordsDetail(ctx context.Context, in *GetMedicalRecordsDetailRequest, opts ...grpc.CallOption) (*GetMedicalRecordsDetailResponse, error) {
  8519. out := new(GetMedicalRecordsDetailResponse)
  8520. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getMedicalRecordsDetail", in, out, opts...)
  8521. if err != nil {
  8522. return nil, err
  8523. }
  8524. return out, nil
  8525. }
  8526. func (c *userServiceClient) GetInspectionReportList(ctx context.Context, in *GetInspectionReportListRequest, opts ...grpc.CallOption) (*GetInspectionReportListResponse, error) {
  8527. out := new(GetInspectionReportListResponse)
  8528. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getInspectionReportList", in, out, opts...)
  8529. if err != nil {
  8530. return nil, err
  8531. }
  8532. return out, nil
  8533. }
  8534. func (c *userServiceClient) GetInspectionReportListByHisPatientId(ctx context.Context, in *GetInspectionReportListByHisPatientIdRequest, opts ...grpc.CallOption) (*GetInspectionReportListByHisPatientIdResponse, error) {
  8535. out := new(GetInspectionReportListByHisPatientIdResponse)
  8536. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getInspectionReportListByHisPatientId", in, out, opts...)
  8537. if err != nil {
  8538. return nil, err
  8539. }
  8540. return out, nil
  8541. }
  8542. func (c *userServiceClient) GetInspectionReportDetail(ctx context.Context, in *GetInspectionReportDetailRequest, opts ...grpc.CallOption) (*GetInspectionReportDetailResponse, error) {
  8543. out := new(GetInspectionReportDetailResponse)
  8544. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getInspectionReportDetail", in, out, opts...)
  8545. if err != nil {
  8546. return nil, err
  8547. }
  8548. return out, nil
  8549. }
  8550. func (c *userServiceClient) GetLaboratoryReportList(ctx context.Context, in *GetLaboratoryReportListRequest, opts ...grpc.CallOption) (*GetLaboratoryReportListResponse, error) {
  8551. out := new(GetLaboratoryReportListResponse)
  8552. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getLaboratoryReportList", in, out, opts...)
  8553. if err != nil {
  8554. return nil, err
  8555. }
  8556. return out, nil
  8557. }
  8558. func (c *userServiceClient) GetLaboratoryReportByListByHisPatientId(ctx context.Context, in *GetLaboratoryReportListByHisPatientIdRequest, opts ...grpc.CallOption) (*GetLaboratoryReportListByHisPatientIdResponse, error) {
  8559. out := new(GetLaboratoryReportListByHisPatientIdResponse)
  8560. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getLaboratoryReportByListByHisPatientId", in, out, opts...)
  8561. if err != nil {
  8562. return nil, err
  8563. }
  8564. return out, nil
  8565. }
  8566. func (c *userServiceClient) GetLaboratoryReportDetail(ctx context.Context, in *GetLaboratoryReportDetailRequest, opts ...grpc.CallOption) (*GetLaboratoryReportDetailResponse, error) {
  8567. out := new(GetLaboratoryReportDetailResponse)
  8568. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getLaboratoryReportDetail", in, out, opts...)
  8569. if err != nil {
  8570. return nil, err
  8571. }
  8572. return out, nil
  8573. }
  8574. func (c *userServiceClient) GetMedicalRecordByClinicCode(ctx context.Context, in *GetMedicalRecordByClinicCodeRequest, opts ...grpc.CallOption) (*GetMedicalRecordByClinicCodeResponse, error) {
  8575. out := new(GetMedicalRecordByClinicCodeResponse)
  8576. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getMedicalRecordByClinicCode", in, out, opts...)
  8577. if err != nil {
  8578. return nil, err
  8579. }
  8580. return out, nil
  8581. }
  8582. func (c *userServiceClient) LoginWithUserAndPsd(ctx context.Context, in *LoginWithUserAndPsdRequest, opts ...grpc.CallOption) (*LoginWithUserAndPsdResponse, error) {
  8583. out := new(LoginWithUserAndPsdResponse)
  8584. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/loginWithUserAndPsd", in, out, opts...)
  8585. if err != nil {
  8586. return nil, err
  8587. }
  8588. return out, nil
  8589. }
  8590. func (c *userServiceClient) UpdatePassword(ctx context.Context, in *UpdatePasswordRequest, opts ...grpc.CallOption) (*Result, error) {
  8591. out := new(Result)
  8592. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/updatePassword", in, out, opts...)
  8593. if err != nil {
  8594. return nil, err
  8595. }
  8596. return out, nil
  8597. }
  8598. func (c *userServiceClient) ChangePassword(ctx context.Context, in *ChangePasswordRequest, opts ...grpc.CallOption) (*Result, error) {
  8599. out := new(Result)
  8600. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/changePassword", in, out, opts...)
  8601. if err != nil {
  8602. return nil, err
  8603. }
  8604. return out, nil
  8605. }
  8606. func (c *userServiceClient) GetUserInfoByCode(ctx context.Context, in *GetUserInfoByCodeRequest, opts ...grpc.CallOption) (*GetUserInfoByCodeResponse, error) {
  8607. out := new(GetUserInfoByCodeResponse)
  8608. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserInfoByCode", in, out, opts...)
  8609. if err != nil {
  8610. return nil, err
  8611. }
  8612. return out, nil
  8613. }
  8614. func (c *userServiceClient) GetScheduleDoctorList(ctx context.Context, in *GetScheduleDoctorListRequest, opts ...grpc.CallOption) (*GetScheduleDoctorListResponse, error) {
  8615. out := new(GetScheduleDoctorListResponse)
  8616. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getScheduleDoctorList", in, out, opts...)
  8617. if err != nil {
  8618. return nil, err
  8619. }
  8620. return out, nil
  8621. }
  8622. func (c *userServiceClient) UserCreateMedicalRecord(ctx context.Context, in *UserCreateMedicalRecordRequest, opts ...grpc.CallOption) (*Result, error) {
  8623. out := new(Result)
  8624. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/userCreateMedicalRecord", in, out, opts...)
  8625. if err != nil {
  8626. return nil, err
  8627. }
  8628. return out, nil
  8629. }
  8630. func (c *userServiceClient) GetDoctorListByDeptId(ctx context.Context, in *GetDoctorListByDeptIdRequest, opts ...grpc.CallOption) (*GetDoctorListByDeptIdResponse, error) {
  8631. out := new(GetDoctorListByDeptIdResponse)
  8632. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getDoctorListByDeptId", in, out, opts...)
  8633. if err != nil {
  8634. return nil, err
  8635. }
  8636. return out, nil
  8637. }
  8638. func (c *userServiceClient) GetDoctorTeamCount(ctx context.Context, in *GetDoctorTeamCountRequest, opts ...grpc.CallOption) (*Result, error) {
  8639. out := new(Result)
  8640. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getDoctorTeamCount", in, out, opts...)
  8641. if err != nil {
  8642. return nil, err
  8643. }
  8644. return out, nil
  8645. }
  8646. func (c *userServiceClient) GetDoctorAdditionalCount(ctx context.Context, in *GetDoctorAdditionalCountRequest, opts ...grpc.CallOption) (*Result, error) {
  8647. out := new(Result)
  8648. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getDoctorAdditionalCount", in, out, opts...)
  8649. if err != nil {
  8650. return nil, err
  8651. }
  8652. return out, nil
  8653. }
  8654. func (c *userServiceClient) GetHospitalById(ctx context.Context, in *GetHospitalByIdRequest, opts ...grpc.CallOption) (*GetHospitalByIdResponse, error) {
  8655. out := new(GetHospitalByIdResponse)
  8656. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getHospitalById", in, out, opts...)
  8657. if err != nil {
  8658. return nil, err
  8659. }
  8660. return out, nil
  8661. }
  8662. func (c *userServiceClient) AddTaiheMedicalCard(ctx context.Context, in *AddTaiheMedicalCardRequest, opts ...grpc.CallOption) (*ResultInt, error) {
  8663. out := new(ResultInt)
  8664. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/addTaiheMedicalCard", in, out, opts...)
  8665. if err != nil {
  8666. return nil, err
  8667. }
  8668. return out, nil
  8669. }
  8670. func (c *userServiceClient) WithdrawToWeChat(ctx context.Context, in *WithdrawToWeChatRequest, opts ...grpc.CallOption) (*WithdrawToWeChatResponse, error) {
  8671. out := new(WithdrawToWeChatResponse)
  8672. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/withdrawToWeChat", in, out, opts...)
  8673. if err != nil {
  8674. return nil, err
  8675. }
  8676. return out, nil
  8677. }
  8678. func (c *userServiceClient) WithdrawOrderPay(ctx context.Context, in *WithdrawOrderPayRequest, opts ...grpc.CallOption) (*WithdrawOrderPayResponse, error) {
  8679. out := new(WithdrawOrderPayResponse)
  8680. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/withdrawOrderPay", in, out, opts...)
  8681. if err != nil {
  8682. return nil, err
  8683. }
  8684. return out, nil
  8685. }
  8686. func (c *userServiceClient) UserAttentionDoctor(ctx context.Context, in *UserAttentionDoctorRequest, opts ...grpc.CallOption) (*Result, error) {
  8687. out := new(Result)
  8688. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/userAttentionDoctor", in, out, opts...)
  8689. if err != nil {
  8690. return nil, err
  8691. }
  8692. return out, nil
  8693. }
  8694. func (c *userServiceClient) SaveAttentionDoctorStatus(ctx context.Context, in *GeneralAttentionDoctorRequest, opts ...grpc.CallOption) (*Result, error) {
  8695. out := new(Result)
  8696. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/saveAttentionDoctorStatus", in, out, opts...)
  8697. if err != nil {
  8698. return nil, err
  8699. }
  8700. return out, nil
  8701. }
  8702. func (c *userServiceClient) SaveAttentionHospitalStatus(ctx context.Context, in *GeneralAttentionHospitalRequest, opts ...grpc.CallOption) (*Result, error) {
  8703. out := new(Result)
  8704. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/saveAttentionHospitalStatus", in, out, opts...)
  8705. if err != nil {
  8706. return nil, err
  8707. }
  8708. return out, nil
  8709. }
  8710. func (c *userServiceClient) GetUserPatientById(ctx context.Context, in *GetUserPatientByIdRequest, opts ...grpc.CallOption) (*GetUserPatientByIdResponse, error) {
  8711. out := new(GetUserPatientByIdResponse)
  8712. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserPatientById", in, out, opts...)
  8713. if err != nil {
  8714. return nil, err
  8715. }
  8716. return out, nil
  8717. }
  8718. func (c *userServiceClient) UpdateUserPatientInfo(ctx context.Context, in *UpdateUserPatientInfo, opts ...grpc.CallOption) (*Result, error) {
  8719. out := new(Result)
  8720. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/updateUserPatientInfo", in, out, opts...)
  8721. if err != nil {
  8722. return nil, err
  8723. }
  8724. return out, nil
  8725. }
  8726. func (c *userServiceClient) GetUserPatientList(ctx context.Context, in *GetUserPatientListRequest, opts ...grpc.CallOption) (*GetUserPatientListResponse, error) {
  8727. out := new(GetUserPatientListResponse)
  8728. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserPatientList", in, out, opts...)
  8729. if err != nil {
  8730. return nil, err
  8731. }
  8732. return out, nil
  8733. }
  8734. func (c *userServiceClient) SaveSnsUserInfo(ctx context.Context, in *SaveSnsUserInfoRequest, opts ...grpc.CallOption) (*SaveSnsUserInfoRespose, error) {
  8735. out := new(SaveSnsUserInfoRespose)
  8736. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/saveSnsUserInfo", in, out, opts...)
  8737. if err != nil {
  8738. return nil, err
  8739. }
  8740. return out, nil
  8741. }
  8742. func (c *userServiceClient) CheckAndAddUserPatientInfo(ctx context.Context, in *UpdateUserPatientInfo, opts ...grpc.CallOption) (*Result, error) {
  8743. out := new(Result)
  8744. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/checkAndAddUserPatientInfo", in, out, opts...)
  8745. if err != nil {
  8746. return nil, err
  8747. }
  8748. return out, nil
  8749. }
  8750. func (c *userServiceClient) BindWxNew(ctx context.Context, in *BindWxRequest, opts ...grpc.CallOption) (*Result, error) {
  8751. out := new(Result)
  8752. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/bindWxNew", in, out, opts...)
  8753. if err != nil {
  8754. return nil, err
  8755. }
  8756. return out, nil
  8757. }
  8758. func (c *userServiceClient) DelUserPatient(ctx context.Context, in *DelUserPatientRequest, opts ...grpc.CallOption) (*Result, error) {
  8759. out := new(Result)
  8760. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/delUserPatient", in, out, opts...)
  8761. if err != nil {
  8762. return nil, err
  8763. }
  8764. return out, nil
  8765. }
  8766. func (c *userServiceClient) CheckAndUpdateSnsUserId(ctx context.Context, in *CheckAndUpdateSnsUserIdRequest, opts ...grpc.CallOption) (*Result, error) {
  8767. out := new(Result)
  8768. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/checkAndUpdateSnsUserId", in, out, opts...)
  8769. if err != nil {
  8770. return nil, err
  8771. }
  8772. return out, nil
  8773. }
  8774. func (c *userServiceClient) GetUserInfoByOpenId(ctx context.Context, in *GetUserInfoByOpenIdRequest, opts ...grpc.CallOption) (*GetUserInfoByOpenIdResponse, error) {
  8775. out := new(GetUserInfoByOpenIdResponse)
  8776. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserInfoByOpenId", in, out, opts...)
  8777. if err != nil {
  8778. return nil, err
  8779. }
  8780. return out, nil
  8781. }
  8782. func (c *userServiceClient) GetUserInfoByUserIdAndTerminal(ctx context.Context, in *GetUserInfoByUserIdAndTerminalRequest, opts ...grpc.CallOption) (*GetUserInfoByUserIdAndTerminalResponse, error) {
  8783. out := new(GetUserInfoByUserIdAndTerminalResponse)
  8784. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserInfoByUserIdAndTerminal", in, out, opts...)
  8785. if err != nil {
  8786. return nil, err
  8787. }
  8788. return out, nil
  8789. }
  8790. func (c *userServiceClient) UpdateFollowedStatus(ctx context.Context, in *UpdateFollowedStatusRequest, opts ...grpc.CallOption) (*Result, error) {
  8791. out := new(Result)
  8792. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/updateFollowedStatus", in, out, opts...)
  8793. if err != nil {
  8794. return nil, err
  8795. }
  8796. return out, nil
  8797. }
  8798. func (c *userServiceClient) SaveMinAppUser(ctx context.Context, in *SaveMinAppUserRequest, opts ...grpc.CallOption) (*SaveMinAppUserResponse, error) {
  8799. out := new(SaveMinAppUserResponse)
  8800. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/saveMinAppUser", in, out, opts...)
  8801. if err != nil {
  8802. return nil, err
  8803. }
  8804. return out, nil
  8805. }
  8806. func (c *userServiceClient) GetSnsUserInfo(ctx context.Context, in *GetSnsUserInfoRequest, opts ...grpc.CallOption) (*GetSnsUserInfoResponse, error) {
  8807. out := new(GetSnsUserInfoResponse)
  8808. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getSnsUserInfo", in, out, opts...)
  8809. if err != nil {
  8810. return nil, err
  8811. }
  8812. return out, nil
  8813. }
  8814. func (c *userServiceClient) UpdateSnsUserInfoByUserId(ctx context.Context, in *UpdateSnsUserInfoByUserIdRequest, opts ...grpc.CallOption) (*UpdateSnsUserInfoByUserIdResponse, error) {
  8815. out := new(UpdateSnsUserInfoByUserIdResponse)
  8816. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/updateSnsUserInfoByUserId", in, out, opts...)
  8817. if err != nil {
  8818. return nil, err
  8819. }
  8820. return out, nil
  8821. }
  8822. func (c *userServiceClient) Authenticate(ctx context.Context, in *AuthenticateRequest, opts ...grpc.CallOption) (*AuthenticateResponse, error) {
  8823. out := new(AuthenticateResponse)
  8824. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/authenticate", in, out, opts...)
  8825. if err != nil {
  8826. return nil, err
  8827. }
  8828. return out, nil
  8829. }
  8830. func (c *userServiceClient) GetSnsUserInfoByUserIdAndTerminal(ctx context.Context, in *GetSnsUserInfoByUserIdAndTerminalRequest, opts ...grpc.CallOption) (*GetSnsUserInfoByUserIdAndTerminalResponse, error) {
  8831. out := new(GetSnsUserInfoByUserIdAndTerminalResponse)
  8832. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getSnsUserInfoByUserIdAndTerminal", in, out, opts...)
  8833. if err != nil {
  8834. return nil, err
  8835. }
  8836. return out, nil
  8837. }
  8838. func (c *userServiceClient) GetUserList(ctx context.Context, in *GetUserListRequest, opts ...grpc.CallOption) (*GetUserListResponse, error) {
  8839. out := new(GetUserListResponse)
  8840. err := c.cc.Invoke(ctx, "/com.ywt.gapi.user.UserService/getUserList", in, out, opts...)
  8841. if err != nil {
  8842. return nil, err
  8843. }
  8844. return out, nil
  8845. }
  8846. // UserServiceServer is the server API for UserService service.
  8847. type UserServiceServer interface {
  8848. FindByPhone(context.Context, *UserRequest) (*UserResponse, error)
  8849. FindByUserId(context.Context, *UserRequest) (*UserResponse, error)
  8850. AddUser(context.Context, *User) (*Result, error)
  8851. AddBankCard(context.Context, *AddBankCardRequest) (*AddBankCardResponse, error)
  8852. GetBankCardList(context.Context, *BankCardListRequest) (*BankCardListResponse, error)
  8853. GetAccountBalance(context.Context, *AccountBalanceRequest) (*ResultDouble, error)
  8854. // 获取我的账户余额,返回总余额以及可提现余额
  8855. GetAccountBalanceNew(context.Context, *AccountBalanceRequest) (*AccountBalanceResponse, error)
  8856. GetAccountDetailList(context.Context, *AccountDetailListRequest) (*AccountDetailListResponse, error)
  8857. Withdraw(context.Context, *WithdrawRequest) (*Result, error)
  8858. Feedback(context.Context, *FeedbackRequest) (*Result, error)
  8859. GetWithdrawRecordList(context.Context, *WithdrawRecordListRequest) (*WithdrawRecordListResponse, error)
  8860. DelBankCard(context.Context, *DelBankCardRequest) (*Result, error)
  8861. GetWxAppToken(context.Context, *GetWxAppTokenRequest) (*GetWxAppTokenResponse, error)
  8862. BindWxAppMobile(context.Context, *BindWxAppMobileRequest) (*Result, error)
  8863. GetSnsUser(context.Context, *GetSnsUserRequest) (*GetSnsUserResponse, error)
  8864. GetSnsUserByOpenId(context.Context, *GetSnsUserByOpenIdRequest) (*GetSnsUserResponse, error)
  8865. GetSnsUserByUserId(context.Context, *GetSnsUserByUserIdRequest) (*GetSnsUserResponse, error)
  8866. AddMedicalCard(context.Context, *AddMedicalCardRequest) (*ResultInt, error)
  8867. GetMedicalCardList(context.Context, *GetMedicalCardListRequest) (*GetMedicalCardListResponse, error)
  8868. LoginByMobile(context.Context, *LoginByMobileRequest) (*LoginResponse, error)
  8869. LoginByUserName(context.Context, *LoginByUserNameRequest) (*LoginResponse, error)
  8870. DeleteMedicalCard(context.Context, *DeleteMedicalCardRequest) (*Result, error)
  8871. AddSnsUser(context.Context, *AddSnsUserRequest) (*Result, error)
  8872. BindWx(context.Context, *BindWxRequest) (*Result, error)
  8873. GetOffcialUserInfo(context.Context, *GetOffcialUserInfoRequest) (*GetOffcialUserInfoResponse, error)
  8874. GetMedicalRecordsList(context.Context, *GetMedicalRecordsListRequest) (*GetMedicalRecordsListResponse, error)
  8875. ChangeMobile(context.Context, *ChangeMobileRequest) (*Result, error)
  8876. GetOfficialUserInfo(context.Context, *GetOfficialUserInfoRequest) (*GetOfficialUserInfoResponse, error)
  8877. //获取用户病历列表
  8878. GetMedicalRecordListByUserId(context.Context, *GetMedicalRecordListByUserIdRequest) (*GetMedicalRecordListByUserIdResponse, error)
  8879. //获取病历详情
  8880. GetMedicalRecordsDetail(context.Context, *GetMedicalRecordsDetailRequest) (*GetMedicalRecordsDetailResponse, error)
  8881. //获取检查结果列表
  8882. GetInspectionReportList(context.Context, *GetInspectionReportListRequest) (*GetInspectionReportListResponse, error)
  8883. //根据门诊ID获取检查结果列表
  8884. GetInspectionReportListByHisPatientId(context.Context, *GetInspectionReportListByHisPatientIdRequest) (*GetInspectionReportListByHisPatientIdResponse, error)
  8885. //获取检查结果详情
  8886. GetInspectionReportDetail(context.Context, *GetInspectionReportDetailRequest) (*GetInspectionReportDetailResponse, error)
  8887. //获取化验结果列表
  8888. GetLaboratoryReportList(context.Context, *GetLaboratoryReportListRequest) (*GetLaboratoryReportListResponse, error)
  8889. //根据门诊ID获取化验结果列表
  8890. GetLaboratoryReportByListByHisPatientId(context.Context, *GetLaboratoryReportListByHisPatientIdRequest) (*GetLaboratoryReportListByHisPatientIdResponse, error)
  8891. //获取化验结果详情
  8892. GetLaboratoryReportDetail(context.Context, *GetLaboratoryReportDetailRequest) (*GetLaboratoryReportDetailResponse, error)
  8893. //根据就诊流水号获取门诊病历
  8894. GetMedicalRecordByClinicCode(context.Context, *GetMedicalRecordByClinicCodeRequest) (*GetMedicalRecordByClinicCodeResponse, error)
  8895. //根据用户名和密码登录
  8896. LoginWithUserAndPsd(context.Context, *LoginWithUserAndPsdRequest) (*LoginWithUserAndPsdResponse, error)
  8897. //忘记密码
  8898. UpdatePassword(context.Context, *UpdatePasswordRequest) (*Result, error)
  8899. //修改密码
  8900. ChangePassword(context.Context, *ChangePasswordRequest) (*Result, error)
  8901. //根据code拉取用户信息
  8902. GetUserInfoByCode(context.Context, *GetUserInfoByCodeRequest) (*GetUserInfoByCodeResponse, error)
  8903. //得到加诊排班医生列表 create by daiyihua
  8904. GetScheduleDoctorList(context.Context, *GetScheduleDoctorListRequest) (*GetScheduleDoctorListResponse, error)
  8905. //用户创建就诊人 create by daiyihua
  8906. UserCreateMedicalRecord(context.Context, *UserCreateMedicalRecordRequest) (*Result, error)
  8907. //根据科室ID搜索医生 create by daiyihua
  8908. GetDoctorListByDeptId(context.Context, *GetDoctorListByDeptIdRequest) (*GetDoctorListByDeptIdResponse, error)
  8909. //根据医生ID得到医生团队数量 create by daiyihua
  8910. GetDoctorTeamCount(context.Context, *GetDoctorTeamCountRequest) (*Result, error)
  8911. //根据医生ID得到医生加诊记录数量 create by daiyihua
  8912. GetDoctorAdditionalCount(context.Context, *GetDoctorAdditionalCountRequest) (*Result, error)
  8913. //根据医院ID得到医院对象 create by daiyihua
  8914. GetHospitalById(context.Context, *GetHospitalByIdRequest) (*GetHospitalByIdResponse, error)
  8915. //绑定太和的诊疗卡 create by daiyihua
  8916. AddTaiheMedicalCard(context.Context, *AddTaiheMedicalCardRequest) (*ResultInt, error)
  8917. // 微信提现
  8918. WithdrawToWeChat(context.Context, *WithdrawToWeChatRequest) (*WithdrawToWeChatResponse, error)
  8919. // 微信提现订单支付
  8920. WithdrawOrderPay(context.Context, *WithdrawOrderPayRequest) (*WithdrawOrderPayResponse, error)
  8921. //添加关注(用户扫描关注医生) created by daiyihua
  8922. UserAttentionDoctor(context.Context, *UserAttentionDoctorRequest) (*Result, error)
  8923. //用户点击添加、取消关注医生
  8924. SaveAttentionDoctorStatus(context.Context, *GeneralAttentionDoctorRequest) (*Result, error)
  8925. //用户点击添加、取消关注医院
  8926. SaveAttentionHospitalStatus(context.Context, *GeneralAttentionHospitalRequest) (*Result, error)
  8927. // 得到单个用户个人资料
  8928. GetUserPatientById(context.Context, *GetUserPatientByIdRequest) (*GetUserPatientByIdResponse, error)
  8929. // 修改单个用户个人资料
  8930. UpdateUserPatientInfo(context.Context, *UpdateUserPatientInfo) (*Result, error)
  8931. // 得到用户的个人资料列表
  8932. GetUserPatientList(context.Context, *GetUserPatientListRequest) (*GetUserPatientListResponse, error)
  8933. //保存社交账号信息
  8934. SaveSnsUserInfo(context.Context, *SaveSnsUserInfoRequest) (*SaveSnsUserInfoRespose, error)
  8935. // 判断添加个人资料
  8936. CheckAndAddUserPatientInfo(context.Context, *UpdateUserPatientInfo) (*Result, error)
  8937. // 绑定微信体系账号
  8938. BindWxNew(context.Context, *BindWxRequest) (*Result, error)
  8939. // 删除个人资料
  8940. DelUserPatient(context.Context, *DelUserPatientRequest) (*Result, error)
  8941. //根据unionId和terminal判断是否需要更新sns_user_info表的userId
  8942. CheckAndUpdateSnsUserId(context.Context, *CheckAndUpdateSnsUserIdRequest) (*Result, error)
  8943. //根据openid拉取用户信息
  8944. GetUserInfoByOpenId(context.Context, *GetUserInfoByOpenIdRequest) (*GetUserInfoByOpenIdResponse, error)
  8945. //根据用户ID和Terminal获取用户基本信息
  8946. GetUserInfoByUserIdAndTerminal(context.Context, *GetUserInfoByUserIdAndTerminalRequest) (*GetUserInfoByUserIdAndTerminalResponse, error)
  8947. //更新关注医生状态(关注/取消关注)
  8948. UpdateFollowedStatus(context.Context, *UpdateFollowedStatusRequest) (*Result, error)
  8949. //保存小程序用户信息
  8950. SaveMinAppUser(context.Context, *SaveMinAppUserRequest) (*SaveMinAppUserResponse, error)
  8951. //
  8952. GetSnsUserInfo(context.Context, *GetSnsUserInfoRequest) (*GetSnsUserInfoResponse, error)
  8953. //根据用户ID更新用户小程序信息
  8954. UpdateSnsUserInfoByUserId(context.Context, *UpdateSnsUserInfoByUserIdRequest) (*UpdateSnsUserInfoByUserIdResponse, error)
  8955. //实名认证
  8956. Authenticate(context.Context, *AuthenticateRequest) (*AuthenticateResponse, error)
  8957. // 根据 userId 和 terminal 获取 snsUserInfo
  8958. GetSnsUserInfoByUserIdAndTerminal(context.Context, *GetSnsUserInfoByUserIdAndTerminalRequest) (*GetSnsUserInfoByUserIdAndTerminalResponse, error)
  8959. //获取用户列表
  8960. GetUserList(context.Context, *GetUserListRequest) (*GetUserListResponse, error)
  8961. }
  8962. // UnimplementedUserServiceServer can be embedded to have forward compatible implementations.
  8963. type UnimplementedUserServiceServer struct {
  8964. }
  8965. func (*UnimplementedUserServiceServer) FindByPhone(ctx context.Context, req *UserRequest) (*UserResponse, error) {
  8966. return nil, status.Errorf(codes.Unimplemented, "method FindByPhone not implemented")
  8967. }
  8968. func (*UnimplementedUserServiceServer) FindByUserId(ctx context.Context, req *UserRequest) (*UserResponse, error) {
  8969. return nil, status.Errorf(codes.Unimplemented, "method FindByUserId not implemented")
  8970. }
  8971. func (*UnimplementedUserServiceServer) AddUser(ctx context.Context, req *User) (*Result, error) {
  8972. return nil, status.Errorf(codes.Unimplemented, "method AddUser not implemented")
  8973. }
  8974. func (*UnimplementedUserServiceServer) AddBankCard(ctx context.Context, req *AddBankCardRequest) (*AddBankCardResponse, error) {
  8975. return nil, status.Errorf(codes.Unimplemented, "method AddBankCard not implemented")
  8976. }
  8977. func (*UnimplementedUserServiceServer) GetBankCardList(ctx context.Context, req *BankCardListRequest) (*BankCardListResponse, error) {
  8978. return nil, status.Errorf(codes.Unimplemented, "method GetBankCardList not implemented")
  8979. }
  8980. func (*UnimplementedUserServiceServer) GetAccountBalance(ctx context.Context, req *AccountBalanceRequest) (*ResultDouble, error) {
  8981. return nil, status.Errorf(codes.Unimplemented, "method GetAccountBalance not implemented")
  8982. }
  8983. func (*UnimplementedUserServiceServer) GetAccountBalanceNew(ctx context.Context, req *AccountBalanceRequest) (*AccountBalanceResponse, error) {
  8984. return nil, status.Errorf(codes.Unimplemented, "method GetAccountBalanceNew not implemented")
  8985. }
  8986. func (*UnimplementedUserServiceServer) GetAccountDetailList(ctx context.Context, req *AccountDetailListRequest) (*AccountDetailListResponse, error) {
  8987. return nil, status.Errorf(codes.Unimplemented, "method GetAccountDetailList not implemented")
  8988. }
  8989. func (*UnimplementedUserServiceServer) Withdraw(ctx context.Context, req *WithdrawRequest) (*Result, error) {
  8990. return nil, status.Errorf(codes.Unimplemented, "method Withdraw not implemented")
  8991. }
  8992. func (*UnimplementedUserServiceServer) Feedback(ctx context.Context, req *FeedbackRequest) (*Result, error) {
  8993. return nil, status.Errorf(codes.Unimplemented, "method Feedback not implemented")
  8994. }
  8995. func (*UnimplementedUserServiceServer) GetWithdrawRecordList(ctx context.Context, req *WithdrawRecordListRequest) (*WithdrawRecordListResponse, error) {
  8996. return nil, status.Errorf(codes.Unimplemented, "method GetWithdrawRecordList not implemented")
  8997. }
  8998. func (*UnimplementedUserServiceServer) DelBankCard(ctx context.Context, req *DelBankCardRequest) (*Result, error) {
  8999. return nil, status.Errorf(codes.Unimplemented, "method DelBankCard not implemented")
  9000. }
  9001. func (*UnimplementedUserServiceServer) GetWxAppToken(ctx context.Context, req *GetWxAppTokenRequest) (*GetWxAppTokenResponse, error) {
  9002. return nil, status.Errorf(codes.Unimplemented, "method GetWxAppToken not implemented")
  9003. }
  9004. func (*UnimplementedUserServiceServer) BindWxAppMobile(ctx context.Context, req *BindWxAppMobileRequest) (*Result, error) {
  9005. return nil, status.Errorf(codes.Unimplemented, "method BindWxAppMobile not implemented")
  9006. }
  9007. func (*UnimplementedUserServiceServer) GetSnsUser(ctx context.Context, req *GetSnsUserRequest) (*GetSnsUserResponse, error) {
  9008. return nil, status.Errorf(codes.Unimplemented, "method GetSnsUser not implemented")
  9009. }
  9010. func (*UnimplementedUserServiceServer) GetSnsUserByOpenId(ctx context.Context, req *GetSnsUserByOpenIdRequest) (*GetSnsUserResponse, error) {
  9011. return nil, status.Errorf(codes.Unimplemented, "method GetSnsUserByOpenId not implemented")
  9012. }
  9013. func (*UnimplementedUserServiceServer) GetSnsUserByUserId(ctx context.Context, req *GetSnsUserByUserIdRequest) (*GetSnsUserResponse, error) {
  9014. return nil, status.Errorf(codes.Unimplemented, "method GetSnsUserByUserId not implemented")
  9015. }
  9016. func (*UnimplementedUserServiceServer) AddMedicalCard(ctx context.Context, req *AddMedicalCardRequest) (*ResultInt, error) {
  9017. return nil, status.Errorf(codes.Unimplemented, "method AddMedicalCard not implemented")
  9018. }
  9019. func (*UnimplementedUserServiceServer) GetMedicalCardList(ctx context.Context, req *GetMedicalCardListRequest) (*GetMedicalCardListResponse, error) {
  9020. return nil, status.Errorf(codes.Unimplemented, "method GetMedicalCardList not implemented")
  9021. }
  9022. func (*UnimplementedUserServiceServer) LoginByMobile(ctx context.Context, req *LoginByMobileRequest) (*LoginResponse, error) {
  9023. return nil, status.Errorf(codes.Unimplemented, "method LoginByMobile not implemented")
  9024. }
  9025. func (*UnimplementedUserServiceServer) LoginByUserName(ctx context.Context, req *LoginByUserNameRequest) (*LoginResponse, error) {
  9026. return nil, status.Errorf(codes.Unimplemented, "method LoginByUserName not implemented")
  9027. }
  9028. func (*UnimplementedUserServiceServer) DeleteMedicalCard(ctx context.Context, req *DeleteMedicalCardRequest) (*Result, error) {
  9029. return nil, status.Errorf(codes.Unimplemented, "method DeleteMedicalCard not implemented")
  9030. }
  9031. func (*UnimplementedUserServiceServer) AddSnsUser(ctx context.Context, req *AddSnsUserRequest) (*Result, error) {
  9032. return nil, status.Errorf(codes.Unimplemented, "method AddSnsUser not implemented")
  9033. }
  9034. func (*UnimplementedUserServiceServer) BindWx(ctx context.Context, req *BindWxRequest) (*Result, error) {
  9035. return nil, status.Errorf(codes.Unimplemented, "method BindWx not implemented")
  9036. }
  9037. func (*UnimplementedUserServiceServer) GetOffcialUserInfo(ctx context.Context, req *GetOffcialUserInfoRequest) (*GetOffcialUserInfoResponse, error) {
  9038. return nil, status.Errorf(codes.Unimplemented, "method GetOffcialUserInfo not implemented")
  9039. }
  9040. func (*UnimplementedUserServiceServer) GetMedicalRecordsList(ctx context.Context, req *GetMedicalRecordsListRequest) (*GetMedicalRecordsListResponse, error) {
  9041. return nil, status.Errorf(codes.Unimplemented, "method GetMedicalRecordsList not implemented")
  9042. }
  9043. func (*UnimplementedUserServiceServer) ChangeMobile(ctx context.Context, req *ChangeMobileRequest) (*Result, error) {
  9044. return nil, status.Errorf(codes.Unimplemented, "method ChangeMobile not implemented")
  9045. }
  9046. func (*UnimplementedUserServiceServer) GetOfficialUserInfo(ctx context.Context, req *GetOfficialUserInfoRequest) (*GetOfficialUserInfoResponse, error) {
  9047. return nil, status.Errorf(codes.Unimplemented, "method GetOfficialUserInfo not implemented")
  9048. }
  9049. func (*UnimplementedUserServiceServer) GetMedicalRecordListByUserId(ctx context.Context, req *GetMedicalRecordListByUserIdRequest) (*GetMedicalRecordListByUserIdResponse, error) {
  9050. return nil, status.Errorf(codes.Unimplemented, "method GetMedicalRecordListByUserId not implemented")
  9051. }
  9052. func (*UnimplementedUserServiceServer) GetMedicalRecordsDetail(ctx context.Context, req *GetMedicalRecordsDetailRequest) (*GetMedicalRecordsDetailResponse, error) {
  9053. return nil, status.Errorf(codes.Unimplemented, "method GetMedicalRecordsDetail not implemented")
  9054. }
  9055. func (*UnimplementedUserServiceServer) GetInspectionReportList(ctx context.Context, req *GetInspectionReportListRequest) (*GetInspectionReportListResponse, error) {
  9056. return nil, status.Errorf(codes.Unimplemented, "method GetInspectionReportList not implemented")
  9057. }
  9058. func (*UnimplementedUserServiceServer) GetInspectionReportListByHisPatientId(ctx context.Context, req *GetInspectionReportListByHisPatientIdRequest) (*GetInspectionReportListByHisPatientIdResponse, error) {
  9059. return nil, status.Errorf(codes.Unimplemented, "method GetInspectionReportListByHisPatientId not implemented")
  9060. }
  9061. func (*UnimplementedUserServiceServer) GetInspectionReportDetail(ctx context.Context, req *GetInspectionReportDetailRequest) (*GetInspectionReportDetailResponse, error) {
  9062. return nil, status.Errorf(codes.Unimplemented, "method GetInspectionReportDetail not implemented")
  9063. }
  9064. func (*UnimplementedUserServiceServer) GetLaboratoryReportList(ctx context.Context, req *GetLaboratoryReportListRequest) (*GetLaboratoryReportListResponse, error) {
  9065. return nil, status.Errorf(codes.Unimplemented, "method GetLaboratoryReportList not implemented")
  9066. }
  9067. func (*UnimplementedUserServiceServer) GetLaboratoryReportByListByHisPatientId(ctx context.Context, req *GetLaboratoryReportListByHisPatientIdRequest) (*GetLaboratoryReportListByHisPatientIdResponse, error) {
  9068. return nil, status.Errorf(codes.Unimplemented, "method GetLaboratoryReportByListByHisPatientId not implemented")
  9069. }
  9070. func (*UnimplementedUserServiceServer) GetLaboratoryReportDetail(ctx context.Context, req *GetLaboratoryReportDetailRequest) (*GetLaboratoryReportDetailResponse, error) {
  9071. return nil, status.Errorf(codes.Unimplemented, "method GetLaboratoryReportDetail not implemented")
  9072. }
  9073. func (*UnimplementedUserServiceServer) GetMedicalRecordByClinicCode(ctx context.Context, req *GetMedicalRecordByClinicCodeRequest) (*GetMedicalRecordByClinicCodeResponse, error) {
  9074. return nil, status.Errorf(codes.Unimplemented, "method GetMedicalRecordByClinicCode not implemented")
  9075. }
  9076. func (*UnimplementedUserServiceServer) LoginWithUserAndPsd(ctx context.Context, req *LoginWithUserAndPsdRequest) (*LoginWithUserAndPsdResponse, error) {
  9077. return nil, status.Errorf(codes.Unimplemented, "method LoginWithUserAndPsd not implemented")
  9078. }
  9079. func (*UnimplementedUserServiceServer) UpdatePassword(ctx context.Context, req *UpdatePasswordRequest) (*Result, error) {
  9080. return nil, status.Errorf(codes.Unimplemented, "method UpdatePassword not implemented")
  9081. }
  9082. func (*UnimplementedUserServiceServer) ChangePassword(ctx context.Context, req *ChangePasswordRequest) (*Result, error) {
  9083. return nil, status.Errorf(codes.Unimplemented, "method ChangePassword not implemented")
  9084. }
  9085. func (*UnimplementedUserServiceServer) GetUserInfoByCode(ctx context.Context, req *GetUserInfoByCodeRequest) (*GetUserInfoByCodeResponse, error) {
  9086. return nil, status.Errorf(codes.Unimplemented, "method GetUserInfoByCode not implemented")
  9087. }
  9088. func (*UnimplementedUserServiceServer) GetScheduleDoctorList(ctx context.Context, req *GetScheduleDoctorListRequest) (*GetScheduleDoctorListResponse, error) {
  9089. return nil, status.Errorf(codes.Unimplemented, "method GetScheduleDoctorList not implemented")
  9090. }
  9091. func (*UnimplementedUserServiceServer) UserCreateMedicalRecord(ctx context.Context, req *UserCreateMedicalRecordRequest) (*Result, error) {
  9092. return nil, status.Errorf(codes.Unimplemented, "method UserCreateMedicalRecord not implemented")
  9093. }
  9094. func (*UnimplementedUserServiceServer) GetDoctorListByDeptId(ctx context.Context, req *GetDoctorListByDeptIdRequest) (*GetDoctorListByDeptIdResponse, error) {
  9095. return nil, status.Errorf(codes.Unimplemented, "method GetDoctorListByDeptId not implemented")
  9096. }
  9097. func (*UnimplementedUserServiceServer) GetDoctorTeamCount(ctx context.Context, req *GetDoctorTeamCountRequest) (*Result, error) {
  9098. return nil, status.Errorf(codes.Unimplemented, "method GetDoctorTeamCount not implemented")
  9099. }
  9100. func (*UnimplementedUserServiceServer) GetDoctorAdditionalCount(ctx context.Context, req *GetDoctorAdditionalCountRequest) (*Result, error) {
  9101. return nil, status.Errorf(codes.Unimplemented, "method GetDoctorAdditionalCount not implemented")
  9102. }
  9103. func (*UnimplementedUserServiceServer) GetHospitalById(ctx context.Context, req *GetHospitalByIdRequest) (*GetHospitalByIdResponse, error) {
  9104. return nil, status.Errorf(codes.Unimplemented, "method GetHospitalById not implemented")
  9105. }
  9106. func (*UnimplementedUserServiceServer) AddTaiheMedicalCard(ctx context.Context, req *AddTaiheMedicalCardRequest) (*ResultInt, error) {
  9107. return nil, status.Errorf(codes.Unimplemented, "method AddTaiheMedicalCard not implemented")
  9108. }
  9109. func (*UnimplementedUserServiceServer) WithdrawToWeChat(ctx context.Context, req *WithdrawToWeChatRequest) (*WithdrawToWeChatResponse, error) {
  9110. return nil, status.Errorf(codes.Unimplemented, "method WithdrawToWeChat not implemented")
  9111. }
  9112. func (*UnimplementedUserServiceServer) WithdrawOrderPay(ctx context.Context, req *WithdrawOrderPayRequest) (*WithdrawOrderPayResponse, error) {
  9113. return nil, status.Errorf(codes.Unimplemented, "method WithdrawOrderPay not implemented")
  9114. }
  9115. func (*UnimplementedUserServiceServer) UserAttentionDoctor(ctx context.Context, req *UserAttentionDoctorRequest) (*Result, error) {
  9116. return nil, status.Errorf(codes.Unimplemented, "method UserAttentionDoctor not implemented")
  9117. }
  9118. func (*UnimplementedUserServiceServer) SaveAttentionDoctorStatus(ctx context.Context, req *GeneralAttentionDoctorRequest) (*Result, error) {
  9119. return nil, status.Errorf(codes.Unimplemented, "method SaveAttentionDoctorStatus not implemented")
  9120. }
  9121. func (*UnimplementedUserServiceServer) SaveAttentionHospitalStatus(ctx context.Context, req *GeneralAttentionHospitalRequest) (*Result, error) {
  9122. return nil, status.Errorf(codes.Unimplemented, "method SaveAttentionHospitalStatus not implemented")
  9123. }
  9124. func (*UnimplementedUserServiceServer) GetUserPatientById(ctx context.Context, req *GetUserPatientByIdRequest) (*GetUserPatientByIdResponse, error) {
  9125. return nil, status.Errorf(codes.Unimplemented, "method GetUserPatientById not implemented")
  9126. }
  9127. func (*UnimplementedUserServiceServer) UpdateUserPatientInfo(ctx context.Context, req *UpdateUserPatientInfo) (*Result, error) {
  9128. return nil, status.Errorf(codes.Unimplemented, "method UpdateUserPatientInfo not implemented")
  9129. }
  9130. func (*UnimplementedUserServiceServer) GetUserPatientList(ctx context.Context, req *GetUserPatientListRequest) (*GetUserPatientListResponse, error) {
  9131. return nil, status.Errorf(codes.Unimplemented, "method GetUserPatientList not implemented")
  9132. }
  9133. func (*UnimplementedUserServiceServer) SaveSnsUserInfo(ctx context.Context, req *SaveSnsUserInfoRequest) (*SaveSnsUserInfoRespose, error) {
  9134. return nil, status.Errorf(codes.Unimplemented, "method SaveSnsUserInfo not implemented")
  9135. }
  9136. func (*UnimplementedUserServiceServer) CheckAndAddUserPatientInfo(ctx context.Context, req *UpdateUserPatientInfo) (*Result, error) {
  9137. return nil, status.Errorf(codes.Unimplemented, "method CheckAndAddUserPatientInfo not implemented")
  9138. }
  9139. func (*UnimplementedUserServiceServer) BindWxNew(ctx context.Context, req *BindWxRequest) (*Result, error) {
  9140. return nil, status.Errorf(codes.Unimplemented, "method BindWxNew not implemented")
  9141. }
  9142. func (*UnimplementedUserServiceServer) DelUserPatient(ctx context.Context, req *DelUserPatientRequest) (*Result, error) {
  9143. return nil, status.Errorf(codes.Unimplemented, "method DelUserPatient not implemented")
  9144. }
  9145. func (*UnimplementedUserServiceServer) CheckAndUpdateSnsUserId(ctx context.Context, req *CheckAndUpdateSnsUserIdRequest) (*Result, error) {
  9146. return nil, status.Errorf(codes.Unimplemented, "method CheckAndUpdateSnsUserId not implemented")
  9147. }
  9148. func (*UnimplementedUserServiceServer) GetUserInfoByOpenId(ctx context.Context, req *GetUserInfoByOpenIdRequest) (*GetUserInfoByOpenIdResponse, error) {
  9149. return nil, status.Errorf(codes.Unimplemented, "method GetUserInfoByOpenId not implemented")
  9150. }
  9151. func (*UnimplementedUserServiceServer) GetUserInfoByUserIdAndTerminal(ctx context.Context, req *GetUserInfoByUserIdAndTerminalRequest) (*GetUserInfoByUserIdAndTerminalResponse, error) {
  9152. return nil, status.Errorf(codes.Unimplemented, "method GetUserInfoByUserIdAndTerminal not implemented")
  9153. }
  9154. func (*UnimplementedUserServiceServer) UpdateFollowedStatus(ctx context.Context, req *UpdateFollowedStatusRequest) (*Result, error) {
  9155. return nil, status.Errorf(codes.Unimplemented, "method UpdateFollowedStatus not implemented")
  9156. }
  9157. func (*UnimplementedUserServiceServer) SaveMinAppUser(ctx context.Context, req *SaveMinAppUserRequest) (*SaveMinAppUserResponse, error) {
  9158. return nil, status.Errorf(codes.Unimplemented, "method SaveMinAppUser not implemented")
  9159. }
  9160. func (*UnimplementedUserServiceServer) GetSnsUserInfo(ctx context.Context, req *GetSnsUserInfoRequest) (*GetSnsUserInfoResponse, error) {
  9161. return nil, status.Errorf(codes.Unimplemented, "method GetSnsUserInfo not implemented")
  9162. }
  9163. func (*UnimplementedUserServiceServer) UpdateSnsUserInfoByUserId(ctx context.Context, req *UpdateSnsUserInfoByUserIdRequest) (*UpdateSnsUserInfoByUserIdResponse, error) {
  9164. return nil, status.Errorf(codes.Unimplemented, "method UpdateSnsUserInfoByUserId not implemented")
  9165. }
  9166. func (*UnimplementedUserServiceServer) Authenticate(ctx context.Context, req *AuthenticateRequest) (*AuthenticateResponse, error) {
  9167. return nil, status.Errorf(codes.Unimplemented, "method Authenticate not implemented")
  9168. }
  9169. func (*UnimplementedUserServiceServer) GetSnsUserInfoByUserIdAndTerminal(ctx context.Context, req *GetSnsUserInfoByUserIdAndTerminalRequest) (*GetSnsUserInfoByUserIdAndTerminalResponse, error) {
  9170. return nil, status.Errorf(codes.Unimplemented, "method GetSnsUserInfoByUserIdAndTerminal not implemented")
  9171. }
  9172. func (*UnimplementedUserServiceServer) GetUserList(ctx context.Context, req *GetUserListRequest) (*GetUserListResponse, error) {
  9173. return nil, status.Errorf(codes.Unimplemented, "method GetUserList not implemented")
  9174. }
  9175. func RegisterUserServiceServer(s *grpc.Server, srv UserServiceServer) {
  9176. s.RegisterService(&_UserService_serviceDesc, srv)
  9177. }
  9178. func _UserService_FindByPhone_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9179. in := new(UserRequest)
  9180. if err := dec(in); err != nil {
  9181. return nil, err
  9182. }
  9183. if interceptor == nil {
  9184. return srv.(UserServiceServer).FindByPhone(ctx, in)
  9185. }
  9186. info := &grpc.UnaryServerInfo{
  9187. Server: srv,
  9188. FullMethod: "/com.ywt.gapi.user.UserService/FindByPhone",
  9189. }
  9190. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9191. return srv.(UserServiceServer).FindByPhone(ctx, req.(*UserRequest))
  9192. }
  9193. return interceptor(ctx, in, info, handler)
  9194. }
  9195. func _UserService_FindByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9196. in := new(UserRequest)
  9197. if err := dec(in); err != nil {
  9198. return nil, err
  9199. }
  9200. if interceptor == nil {
  9201. return srv.(UserServiceServer).FindByUserId(ctx, in)
  9202. }
  9203. info := &grpc.UnaryServerInfo{
  9204. Server: srv,
  9205. FullMethod: "/com.ywt.gapi.user.UserService/FindByUserId",
  9206. }
  9207. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9208. return srv.(UserServiceServer).FindByUserId(ctx, req.(*UserRequest))
  9209. }
  9210. return interceptor(ctx, in, info, handler)
  9211. }
  9212. func _UserService_AddUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9213. in := new(User)
  9214. if err := dec(in); err != nil {
  9215. return nil, err
  9216. }
  9217. if interceptor == nil {
  9218. return srv.(UserServiceServer).AddUser(ctx, in)
  9219. }
  9220. info := &grpc.UnaryServerInfo{
  9221. Server: srv,
  9222. FullMethod: "/com.ywt.gapi.user.UserService/AddUser",
  9223. }
  9224. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9225. return srv.(UserServiceServer).AddUser(ctx, req.(*User))
  9226. }
  9227. return interceptor(ctx, in, info, handler)
  9228. }
  9229. func _UserService_AddBankCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9230. in := new(AddBankCardRequest)
  9231. if err := dec(in); err != nil {
  9232. return nil, err
  9233. }
  9234. if interceptor == nil {
  9235. return srv.(UserServiceServer).AddBankCard(ctx, in)
  9236. }
  9237. info := &grpc.UnaryServerInfo{
  9238. Server: srv,
  9239. FullMethod: "/com.ywt.gapi.user.UserService/AddBankCard",
  9240. }
  9241. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9242. return srv.(UserServiceServer).AddBankCard(ctx, req.(*AddBankCardRequest))
  9243. }
  9244. return interceptor(ctx, in, info, handler)
  9245. }
  9246. func _UserService_GetBankCardList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9247. in := new(BankCardListRequest)
  9248. if err := dec(in); err != nil {
  9249. return nil, err
  9250. }
  9251. if interceptor == nil {
  9252. return srv.(UserServiceServer).GetBankCardList(ctx, in)
  9253. }
  9254. info := &grpc.UnaryServerInfo{
  9255. Server: srv,
  9256. FullMethod: "/com.ywt.gapi.user.UserService/GetBankCardList",
  9257. }
  9258. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9259. return srv.(UserServiceServer).GetBankCardList(ctx, req.(*BankCardListRequest))
  9260. }
  9261. return interceptor(ctx, in, info, handler)
  9262. }
  9263. func _UserService_GetAccountBalance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9264. in := new(AccountBalanceRequest)
  9265. if err := dec(in); err != nil {
  9266. return nil, err
  9267. }
  9268. if interceptor == nil {
  9269. return srv.(UserServiceServer).GetAccountBalance(ctx, in)
  9270. }
  9271. info := &grpc.UnaryServerInfo{
  9272. Server: srv,
  9273. FullMethod: "/com.ywt.gapi.user.UserService/GetAccountBalance",
  9274. }
  9275. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9276. return srv.(UserServiceServer).GetAccountBalance(ctx, req.(*AccountBalanceRequest))
  9277. }
  9278. return interceptor(ctx, in, info, handler)
  9279. }
  9280. func _UserService_GetAccountBalanceNew_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9281. in := new(AccountBalanceRequest)
  9282. if err := dec(in); err != nil {
  9283. return nil, err
  9284. }
  9285. if interceptor == nil {
  9286. return srv.(UserServiceServer).GetAccountBalanceNew(ctx, in)
  9287. }
  9288. info := &grpc.UnaryServerInfo{
  9289. Server: srv,
  9290. FullMethod: "/com.ywt.gapi.user.UserService/GetAccountBalanceNew",
  9291. }
  9292. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9293. return srv.(UserServiceServer).GetAccountBalanceNew(ctx, req.(*AccountBalanceRequest))
  9294. }
  9295. return interceptor(ctx, in, info, handler)
  9296. }
  9297. func _UserService_GetAccountDetailList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9298. in := new(AccountDetailListRequest)
  9299. if err := dec(in); err != nil {
  9300. return nil, err
  9301. }
  9302. if interceptor == nil {
  9303. return srv.(UserServiceServer).GetAccountDetailList(ctx, in)
  9304. }
  9305. info := &grpc.UnaryServerInfo{
  9306. Server: srv,
  9307. FullMethod: "/com.ywt.gapi.user.UserService/GetAccountDetailList",
  9308. }
  9309. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9310. return srv.(UserServiceServer).GetAccountDetailList(ctx, req.(*AccountDetailListRequest))
  9311. }
  9312. return interceptor(ctx, in, info, handler)
  9313. }
  9314. func _UserService_Withdraw_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9315. in := new(WithdrawRequest)
  9316. if err := dec(in); err != nil {
  9317. return nil, err
  9318. }
  9319. if interceptor == nil {
  9320. return srv.(UserServiceServer).Withdraw(ctx, in)
  9321. }
  9322. info := &grpc.UnaryServerInfo{
  9323. Server: srv,
  9324. FullMethod: "/com.ywt.gapi.user.UserService/Withdraw",
  9325. }
  9326. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9327. return srv.(UserServiceServer).Withdraw(ctx, req.(*WithdrawRequest))
  9328. }
  9329. return interceptor(ctx, in, info, handler)
  9330. }
  9331. func _UserService_Feedback_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9332. in := new(FeedbackRequest)
  9333. if err := dec(in); err != nil {
  9334. return nil, err
  9335. }
  9336. if interceptor == nil {
  9337. return srv.(UserServiceServer).Feedback(ctx, in)
  9338. }
  9339. info := &grpc.UnaryServerInfo{
  9340. Server: srv,
  9341. FullMethod: "/com.ywt.gapi.user.UserService/Feedback",
  9342. }
  9343. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9344. return srv.(UserServiceServer).Feedback(ctx, req.(*FeedbackRequest))
  9345. }
  9346. return interceptor(ctx, in, info, handler)
  9347. }
  9348. func _UserService_GetWithdrawRecordList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9349. in := new(WithdrawRecordListRequest)
  9350. if err := dec(in); err != nil {
  9351. return nil, err
  9352. }
  9353. if interceptor == nil {
  9354. return srv.(UserServiceServer).GetWithdrawRecordList(ctx, in)
  9355. }
  9356. info := &grpc.UnaryServerInfo{
  9357. Server: srv,
  9358. FullMethod: "/com.ywt.gapi.user.UserService/GetWithdrawRecordList",
  9359. }
  9360. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9361. return srv.(UserServiceServer).GetWithdrawRecordList(ctx, req.(*WithdrawRecordListRequest))
  9362. }
  9363. return interceptor(ctx, in, info, handler)
  9364. }
  9365. func _UserService_DelBankCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9366. in := new(DelBankCardRequest)
  9367. if err := dec(in); err != nil {
  9368. return nil, err
  9369. }
  9370. if interceptor == nil {
  9371. return srv.(UserServiceServer).DelBankCard(ctx, in)
  9372. }
  9373. info := &grpc.UnaryServerInfo{
  9374. Server: srv,
  9375. FullMethod: "/com.ywt.gapi.user.UserService/DelBankCard",
  9376. }
  9377. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9378. return srv.(UserServiceServer).DelBankCard(ctx, req.(*DelBankCardRequest))
  9379. }
  9380. return interceptor(ctx, in, info, handler)
  9381. }
  9382. func _UserService_GetWxAppToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9383. in := new(GetWxAppTokenRequest)
  9384. if err := dec(in); err != nil {
  9385. return nil, err
  9386. }
  9387. if interceptor == nil {
  9388. return srv.(UserServiceServer).GetWxAppToken(ctx, in)
  9389. }
  9390. info := &grpc.UnaryServerInfo{
  9391. Server: srv,
  9392. FullMethod: "/com.ywt.gapi.user.UserService/GetWxAppToken",
  9393. }
  9394. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9395. return srv.(UserServiceServer).GetWxAppToken(ctx, req.(*GetWxAppTokenRequest))
  9396. }
  9397. return interceptor(ctx, in, info, handler)
  9398. }
  9399. func _UserService_BindWxAppMobile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9400. in := new(BindWxAppMobileRequest)
  9401. if err := dec(in); err != nil {
  9402. return nil, err
  9403. }
  9404. if interceptor == nil {
  9405. return srv.(UserServiceServer).BindWxAppMobile(ctx, in)
  9406. }
  9407. info := &grpc.UnaryServerInfo{
  9408. Server: srv,
  9409. FullMethod: "/com.ywt.gapi.user.UserService/BindWxAppMobile",
  9410. }
  9411. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9412. return srv.(UserServiceServer).BindWxAppMobile(ctx, req.(*BindWxAppMobileRequest))
  9413. }
  9414. return interceptor(ctx, in, info, handler)
  9415. }
  9416. func _UserService_GetSnsUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9417. in := new(GetSnsUserRequest)
  9418. if err := dec(in); err != nil {
  9419. return nil, err
  9420. }
  9421. if interceptor == nil {
  9422. return srv.(UserServiceServer).GetSnsUser(ctx, in)
  9423. }
  9424. info := &grpc.UnaryServerInfo{
  9425. Server: srv,
  9426. FullMethod: "/com.ywt.gapi.user.UserService/GetSnsUser",
  9427. }
  9428. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9429. return srv.(UserServiceServer).GetSnsUser(ctx, req.(*GetSnsUserRequest))
  9430. }
  9431. return interceptor(ctx, in, info, handler)
  9432. }
  9433. func _UserService_GetSnsUserByOpenId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9434. in := new(GetSnsUserByOpenIdRequest)
  9435. if err := dec(in); err != nil {
  9436. return nil, err
  9437. }
  9438. if interceptor == nil {
  9439. return srv.(UserServiceServer).GetSnsUserByOpenId(ctx, in)
  9440. }
  9441. info := &grpc.UnaryServerInfo{
  9442. Server: srv,
  9443. FullMethod: "/com.ywt.gapi.user.UserService/GetSnsUserByOpenId",
  9444. }
  9445. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9446. return srv.(UserServiceServer).GetSnsUserByOpenId(ctx, req.(*GetSnsUserByOpenIdRequest))
  9447. }
  9448. return interceptor(ctx, in, info, handler)
  9449. }
  9450. func _UserService_GetSnsUserByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9451. in := new(GetSnsUserByUserIdRequest)
  9452. if err := dec(in); err != nil {
  9453. return nil, err
  9454. }
  9455. if interceptor == nil {
  9456. return srv.(UserServiceServer).GetSnsUserByUserId(ctx, in)
  9457. }
  9458. info := &grpc.UnaryServerInfo{
  9459. Server: srv,
  9460. FullMethod: "/com.ywt.gapi.user.UserService/GetSnsUserByUserId",
  9461. }
  9462. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9463. return srv.(UserServiceServer).GetSnsUserByUserId(ctx, req.(*GetSnsUserByUserIdRequest))
  9464. }
  9465. return interceptor(ctx, in, info, handler)
  9466. }
  9467. func _UserService_AddMedicalCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9468. in := new(AddMedicalCardRequest)
  9469. if err := dec(in); err != nil {
  9470. return nil, err
  9471. }
  9472. if interceptor == nil {
  9473. return srv.(UserServiceServer).AddMedicalCard(ctx, in)
  9474. }
  9475. info := &grpc.UnaryServerInfo{
  9476. Server: srv,
  9477. FullMethod: "/com.ywt.gapi.user.UserService/AddMedicalCard",
  9478. }
  9479. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9480. return srv.(UserServiceServer).AddMedicalCard(ctx, req.(*AddMedicalCardRequest))
  9481. }
  9482. return interceptor(ctx, in, info, handler)
  9483. }
  9484. func _UserService_GetMedicalCardList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9485. in := new(GetMedicalCardListRequest)
  9486. if err := dec(in); err != nil {
  9487. return nil, err
  9488. }
  9489. if interceptor == nil {
  9490. return srv.(UserServiceServer).GetMedicalCardList(ctx, in)
  9491. }
  9492. info := &grpc.UnaryServerInfo{
  9493. Server: srv,
  9494. FullMethod: "/com.ywt.gapi.user.UserService/GetMedicalCardList",
  9495. }
  9496. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9497. return srv.(UserServiceServer).GetMedicalCardList(ctx, req.(*GetMedicalCardListRequest))
  9498. }
  9499. return interceptor(ctx, in, info, handler)
  9500. }
  9501. func _UserService_LoginByMobile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9502. in := new(LoginByMobileRequest)
  9503. if err := dec(in); err != nil {
  9504. return nil, err
  9505. }
  9506. if interceptor == nil {
  9507. return srv.(UserServiceServer).LoginByMobile(ctx, in)
  9508. }
  9509. info := &grpc.UnaryServerInfo{
  9510. Server: srv,
  9511. FullMethod: "/com.ywt.gapi.user.UserService/LoginByMobile",
  9512. }
  9513. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9514. return srv.(UserServiceServer).LoginByMobile(ctx, req.(*LoginByMobileRequest))
  9515. }
  9516. return interceptor(ctx, in, info, handler)
  9517. }
  9518. func _UserService_LoginByUserName_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9519. in := new(LoginByUserNameRequest)
  9520. if err := dec(in); err != nil {
  9521. return nil, err
  9522. }
  9523. if interceptor == nil {
  9524. return srv.(UserServiceServer).LoginByUserName(ctx, in)
  9525. }
  9526. info := &grpc.UnaryServerInfo{
  9527. Server: srv,
  9528. FullMethod: "/com.ywt.gapi.user.UserService/LoginByUserName",
  9529. }
  9530. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9531. return srv.(UserServiceServer).LoginByUserName(ctx, req.(*LoginByUserNameRequest))
  9532. }
  9533. return interceptor(ctx, in, info, handler)
  9534. }
  9535. func _UserService_DeleteMedicalCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9536. in := new(DeleteMedicalCardRequest)
  9537. if err := dec(in); err != nil {
  9538. return nil, err
  9539. }
  9540. if interceptor == nil {
  9541. return srv.(UserServiceServer).DeleteMedicalCard(ctx, in)
  9542. }
  9543. info := &grpc.UnaryServerInfo{
  9544. Server: srv,
  9545. FullMethod: "/com.ywt.gapi.user.UserService/DeleteMedicalCard",
  9546. }
  9547. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9548. return srv.(UserServiceServer).DeleteMedicalCard(ctx, req.(*DeleteMedicalCardRequest))
  9549. }
  9550. return interceptor(ctx, in, info, handler)
  9551. }
  9552. func _UserService_AddSnsUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9553. in := new(AddSnsUserRequest)
  9554. if err := dec(in); err != nil {
  9555. return nil, err
  9556. }
  9557. if interceptor == nil {
  9558. return srv.(UserServiceServer).AddSnsUser(ctx, in)
  9559. }
  9560. info := &grpc.UnaryServerInfo{
  9561. Server: srv,
  9562. FullMethod: "/com.ywt.gapi.user.UserService/AddSnsUser",
  9563. }
  9564. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9565. return srv.(UserServiceServer).AddSnsUser(ctx, req.(*AddSnsUserRequest))
  9566. }
  9567. return interceptor(ctx, in, info, handler)
  9568. }
  9569. func _UserService_BindWx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9570. in := new(BindWxRequest)
  9571. if err := dec(in); err != nil {
  9572. return nil, err
  9573. }
  9574. if interceptor == nil {
  9575. return srv.(UserServiceServer).BindWx(ctx, in)
  9576. }
  9577. info := &grpc.UnaryServerInfo{
  9578. Server: srv,
  9579. FullMethod: "/com.ywt.gapi.user.UserService/BindWx",
  9580. }
  9581. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9582. return srv.(UserServiceServer).BindWx(ctx, req.(*BindWxRequest))
  9583. }
  9584. return interceptor(ctx, in, info, handler)
  9585. }
  9586. func _UserService_GetOffcialUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9587. in := new(GetOffcialUserInfoRequest)
  9588. if err := dec(in); err != nil {
  9589. return nil, err
  9590. }
  9591. if interceptor == nil {
  9592. return srv.(UserServiceServer).GetOffcialUserInfo(ctx, in)
  9593. }
  9594. info := &grpc.UnaryServerInfo{
  9595. Server: srv,
  9596. FullMethod: "/com.ywt.gapi.user.UserService/GetOffcialUserInfo",
  9597. }
  9598. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9599. return srv.(UserServiceServer).GetOffcialUserInfo(ctx, req.(*GetOffcialUserInfoRequest))
  9600. }
  9601. return interceptor(ctx, in, info, handler)
  9602. }
  9603. func _UserService_GetMedicalRecordsList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9604. in := new(GetMedicalRecordsListRequest)
  9605. if err := dec(in); err != nil {
  9606. return nil, err
  9607. }
  9608. if interceptor == nil {
  9609. return srv.(UserServiceServer).GetMedicalRecordsList(ctx, in)
  9610. }
  9611. info := &grpc.UnaryServerInfo{
  9612. Server: srv,
  9613. FullMethod: "/com.ywt.gapi.user.UserService/GetMedicalRecordsList",
  9614. }
  9615. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9616. return srv.(UserServiceServer).GetMedicalRecordsList(ctx, req.(*GetMedicalRecordsListRequest))
  9617. }
  9618. return interceptor(ctx, in, info, handler)
  9619. }
  9620. func _UserService_ChangeMobile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9621. in := new(ChangeMobileRequest)
  9622. if err := dec(in); err != nil {
  9623. return nil, err
  9624. }
  9625. if interceptor == nil {
  9626. return srv.(UserServiceServer).ChangeMobile(ctx, in)
  9627. }
  9628. info := &grpc.UnaryServerInfo{
  9629. Server: srv,
  9630. FullMethod: "/com.ywt.gapi.user.UserService/ChangeMobile",
  9631. }
  9632. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9633. return srv.(UserServiceServer).ChangeMobile(ctx, req.(*ChangeMobileRequest))
  9634. }
  9635. return interceptor(ctx, in, info, handler)
  9636. }
  9637. func _UserService_GetOfficialUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9638. in := new(GetOfficialUserInfoRequest)
  9639. if err := dec(in); err != nil {
  9640. return nil, err
  9641. }
  9642. if interceptor == nil {
  9643. return srv.(UserServiceServer).GetOfficialUserInfo(ctx, in)
  9644. }
  9645. info := &grpc.UnaryServerInfo{
  9646. Server: srv,
  9647. FullMethod: "/com.ywt.gapi.user.UserService/GetOfficialUserInfo",
  9648. }
  9649. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9650. return srv.(UserServiceServer).GetOfficialUserInfo(ctx, req.(*GetOfficialUserInfoRequest))
  9651. }
  9652. return interceptor(ctx, in, info, handler)
  9653. }
  9654. func _UserService_GetMedicalRecordListByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9655. in := new(GetMedicalRecordListByUserIdRequest)
  9656. if err := dec(in); err != nil {
  9657. return nil, err
  9658. }
  9659. if interceptor == nil {
  9660. return srv.(UserServiceServer).GetMedicalRecordListByUserId(ctx, in)
  9661. }
  9662. info := &grpc.UnaryServerInfo{
  9663. Server: srv,
  9664. FullMethod: "/com.ywt.gapi.user.UserService/GetMedicalRecordListByUserId",
  9665. }
  9666. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9667. return srv.(UserServiceServer).GetMedicalRecordListByUserId(ctx, req.(*GetMedicalRecordListByUserIdRequest))
  9668. }
  9669. return interceptor(ctx, in, info, handler)
  9670. }
  9671. func _UserService_GetMedicalRecordsDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9672. in := new(GetMedicalRecordsDetailRequest)
  9673. if err := dec(in); err != nil {
  9674. return nil, err
  9675. }
  9676. if interceptor == nil {
  9677. return srv.(UserServiceServer).GetMedicalRecordsDetail(ctx, in)
  9678. }
  9679. info := &grpc.UnaryServerInfo{
  9680. Server: srv,
  9681. FullMethod: "/com.ywt.gapi.user.UserService/GetMedicalRecordsDetail",
  9682. }
  9683. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9684. return srv.(UserServiceServer).GetMedicalRecordsDetail(ctx, req.(*GetMedicalRecordsDetailRequest))
  9685. }
  9686. return interceptor(ctx, in, info, handler)
  9687. }
  9688. func _UserService_GetInspectionReportList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9689. in := new(GetInspectionReportListRequest)
  9690. if err := dec(in); err != nil {
  9691. return nil, err
  9692. }
  9693. if interceptor == nil {
  9694. return srv.(UserServiceServer).GetInspectionReportList(ctx, in)
  9695. }
  9696. info := &grpc.UnaryServerInfo{
  9697. Server: srv,
  9698. FullMethod: "/com.ywt.gapi.user.UserService/GetInspectionReportList",
  9699. }
  9700. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9701. return srv.(UserServiceServer).GetInspectionReportList(ctx, req.(*GetInspectionReportListRequest))
  9702. }
  9703. return interceptor(ctx, in, info, handler)
  9704. }
  9705. func _UserService_GetInspectionReportListByHisPatientId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9706. in := new(GetInspectionReportListByHisPatientIdRequest)
  9707. if err := dec(in); err != nil {
  9708. return nil, err
  9709. }
  9710. if interceptor == nil {
  9711. return srv.(UserServiceServer).GetInspectionReportListByHisPatientId(ctx, in)
  9712. }
  9713. info := &grpc.UnaryServerInfo{
  9714. Server: srv,
  9715. FullMethod: "/com.ywt.gapi.user.UserService/GetInspectionReportListByHisPatientId",
  9716. }
  9717. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9718. return srv.(UserServiceServer).GetInspectionReportListByHisPatientId(ctx, req.(*GetInspectionReportListByHisPatientIdRequest))
  9719. }
  9720. return interceptor(ctx, in, info, handler)
  9721. }
  9722. func _UserService_GetInspectionReportDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9723. in := new(GetInspectionReportDetailRequest)
  9724. if err := dec(in); err != nil {
  9725. return nil, err
  9726. }
  9727. if interceptor == nil {
  9728. return srv.(UserServiceServer).GetInspectionReportDetail(ctx, in)
  9729. }
  9730. info := &grpc.UnaryServerInfo{
  9731. Server: srv,
  9732. FullMethod: "/com.ywt.gapi.user.UserService/GetInspectionReportDetail",
  9733. }
  9734. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9735. return srv.(UserServiceServer).GetInspectionReportDetail(ctx, req.(*GetInspectionReportDetailRequest))
  9736. }
  9737. return interceptor(ctx, in, info, handler)
  9738. }
  9739. func _UserService_GetLaboratoryReportList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9740. in := new(GetLaboratoryReportListRequest)
  9741. if err := dec(in); err != nil {
  9742. return nil, err
  9743. }
  9744. if interceptor == nil {
  9745. return srv.(UserServiceServer).GetLaboratoryReportList(ctx, in)
  9746. }
  9747. info := &grpc.UnaryServerInfo{
  9748. Server: srv,
  9749. FullMethod: "/com.ywt.gapi.user.UserService/GetLaboratoryReportList",
  9750. }
  9751. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9752. return srv.(UserServiceServer).GetLaboratoryReportList(ctx, req.(*GetLaboratoryReportListRequest))
  9753. }
  9754. return interceptor(ctx, in, info, handler)
  9755. }
  9756. func _UserService_GetLaboratoryReportByListByHisPatientId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9757. in := new(GetLaboratoryReportListByHisPatientIdRequest)
  9758. if err := dec(in); err != nil {
  9759. return nil, err
  9760. }
  9761. if interceptor == nil {
  9762. return srv.(UserServiceServer).GetLaboratoryReportByListByHisPatientId(ctx, in)
  9763. }
  9764. info := &grpc.UnaryServerInfo{
  9765. Server: srv,
  9766. FullMethod: "/com.ywt.gapi.user.UserService/GetLaboratoryReportByListByHisPatientId",
  9767. }
  9768. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9769. return srv.(UserServiceServer).GetLaboratoryReportByListByHisPatientId(ctx, req.(*GetLaboratoryReportListByHisPatientIdRequest))
  9770. }
  9771. return interceptor(ctx, in, info, handler)
  9772. }
  9773. func _UserService_GetLaboratoryReportDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9774. in := new(GetLaboratoryReportDetailRequest)
  9775. if err := dec(in); err != nil {
  9776. return nil, err
  9777. }
  9778. if interceptor == nil {
  9779. return srv.(UserServiceServer).GetLaboratoryReportDetail(ctx, in)
  9780. }
  9781. info := &grpc.UnaryServerInfo{
  9782. Server: srv,
  9783. FullMethod: "/com.ywt.gapi.user.UserService/GetLaboratoryReportDetail",
  9784. }
  9785. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9786. return srv.(UserServiceServer).GetLaboratoryReportDetail(ctx, req.(*GetLaboratoryReportDetailRequest))
  9787. }
  9788. return interceptor(ctx, in, info, handler)
  9789. }
  9790. func _UserService_GetMedicalRecordByClinicCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9791. in := new(GetMedicalRecordByClinicCodeRequest)
  9792. if err := dec(in); err != nil {
  9793. return nil, err
  9794. }
  9795. if interceptor == nil {
  9796. return srv.(UserServiceServer).GetMedicalRecordByClinicCode(ctx, in)
  9797. }
  9798. info := &grpc.UnaryServerInfo{
  9799. Server: srv,
  9800. FullMethod: "/com.ywt.gapi.user.UserService/GetMedicalRecordByClinicCode",
  9801. }
  9802. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9803. return srv.(UserServiceServer).GetMedicalRecordByClinicCode(ctx, req.(*GetMedicalRecordByClinicCodeRequest))
  9804. }
  9805. return interceptor(ctx, in, info, handler)
  9806. }
  9807. func _UserService_LoginWithUserAndPsd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9808. in := new(LoginWithUserAndPsdRequest)
  9809. if err := dec(in); err != nil {
  9810. return nil, err
  9811. }
  9812. if interceptor == nil {
  9813. return srv.(UserServiceServer).LoginWithUserAndPsd(ctx, in)
  9814. }
  9815. info := &grpc.UnaryServerInfo{
  9816. Server: srv,
  9817. FullMethod: "/com.ywt.gapi.user.UserService/LoginWithUserAndPsd",
  9818. }
  9819. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9820. return srv.(UserServiceServer).LoginWithUserAndPsd(ctx, req.(*LoginWithUserAndPsdRequest))
  9821. }
  9822. return interceptor(ctx, in, info, handler)
  9823. }
  9824. func _UserService_UpdatePassword_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9825. in := new(UpdatePasswordRequest)
  9826. if err := dec(in); err != nil {
  9827. return nil, err
  9828. }
  9829. if interceptor == nil {
  9830. return srv.(UserServiceServer).UpdatePassword(ctx, in)
  9831. }
  9832. info := &grpc.UnaryServerInfo{
  9833. Server: srv,
  9834. FullMethod: "/com.ywt.gapi.user.UserService/UpdatePassword",
  9835. }
  9836. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9837. return srv.(UserServiceServer).UpdatePassword(ctx, req.(*UpdatePasswordRequest))
  9838. }
  9839. return interceptor(ctx, in, info, handler)
  9840. }
  9841. func _UserService_ChangePassword_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9842. in := new(ChangePasswordRequest)
  9843. if err := dec(in); err != nil {
  9844. return nil, err
  9845. }
  9846. if interceptor == nil {
  9847. return srv.(UserServiceServer).ChangePassword(ctx, in)
  9848. }
  9849. info := &grpc.UnaryServerInfo{
  9850. Server: srv,
  9851. FullMethod: "/com.ywt.gapi.user.UserService/ChangePassword",
  9852. }
  9853. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9854. return srv.(UserServiceServer).ChangePassword(ctx, req.(*ChangePasswordRequest))
  9855. }
  9856. return interceptor(ctx, in, info, handler)
  9857. }
  9858. func _UserService_GetUserInfoByCode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9859. in := new(GetUserInfoByCodeRequest)
  9860. if err := dec(in); err != nil {
  9861. return nil, err
  9862. }
  9863. if interceptor == nil {
  9864. return srv.(UserServiceServer).GetUserInfoByCode(ctx, in)
  9865. }
  9866. info := &grpc.UnaryServerInfo{
  9867. Server: srv,
  9868. FullMethod: "/com.ywt.gapi.user.UserService/GetUserInfoByCode",
  9869. }
  9870. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9871. return srv.(UserServiceServer).GetUserInfoByCode(ctx, req.(*GetUserInfoByCodeRequest))
  9872. }
  9873. return interceptor(ctx, in, info, handler)
  9874. }
  9875. func _UserService_GetScheduleDoctorList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9876. in := new(GetScheduleDoctorListRequest)
  9877. if err := dec(in); err != nil {
  9878. return nil, err
  9879. }
  9880. if interceptor == nil {
  9881. return srv.(UserServiceServer).GetScheduleDoctorList(ctx, in)
  9882. }
  9883. info := &grpc.UnaryServerInfo{
  9884. Server: srv,
  9885. FullMethod: "/com.ywt.gapi.user.UserService/GetScheduleDoctorList",
  9886. }
  9887. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9888. return srv.(UserServiceServer).GetScheduleDoctorList(ctx, req.(*GetScheduleDoctorListRequest))
  9889. }
  9890. return interceptor(ctx, in, info, handler)
  9891. }
  9892. func _UserService_UserCreateMedicalRecord_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9893. in := new(UserCreateMedicalRecordRequest)
  9894. if err := dec(in); err != nil {
  9895. return nil, err
  9896. }
  9897. if interceptor == nil {
  9898. return srv.(UserServiceServer).UserCreateMedicalRecord(ctx, in)
  9899. }
  9900. info := &grpc.UnaryServerInfo{
  9901. Server: srv,
  9902. FullMethod: "/com.ywt.gapi.user.UserService/UserCreateMedicalRecord",
  9903. }
  9904. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9905. return srv.(UserServiceServer).UserCreateMedicalRecord(ctx, req.(*UserCreateMedicalRecordRequest))
  9906. }
  9907. return interceptor(ctx, in, info, handler)
  9908. }
  9909. func _UserService_GetDoctorListByDeptId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9910. in := new(GetDoctorListByDeptIdRequest)
  9911. if err := dec(in); err != nil {
  9912. return nil, err
  9913. }
  9914. if interceptor == nil {
  9915. return srv.(UserServiceServer).GetDoctorListByDeptId(ctx, in)
  9916. }
  9917. info := &grpc.UnaryServerInfo{
  9918. Server: srv,
  9919. FullMethod: "/com.ywt.gapi.user.UserService/GetDoctorListByDeptId",
  9920. }
  9921. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9922. return srv.(UserServiceServer).GetDoctorListByDeptId(ctx, req.(*GetDoctorListByDeptIdRequest))
  9923. }
  9924. return interceptor(ctx, in, info, handler)
  9925. }
  9926. func _UserService_GetDoctorTeamCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9927. in := new(GetDoctorTeamCountRequest)
  9928. if err := dec(in); err != nil {
  9929. return nil, err
  9930. }
  9931. if interceptor == nil {
  9932. return srv.(UserServiceServer).GetDoctorTeamCount(ctx, in)
  9933. }
  9934. info := &grpc.UnaryServerInfo{
  9935. Server: srv,
  9936. FullMethod: "/com.ywt.gapi.user.UserService/GetDoctorTeamCount",
  9937. }
  9938. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9939. return srv.(UserServiceServer).GetDoctorTeamCount(ctx, req.(*GetDoctorTeamCountRequest))
  9940. }
  9941. return interceptor(ctx, in, info, handler)
  9942. }
  9943. func _UserService_GetDoctorAdditionalCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9944. in := new(GetDoctorAdditionalCountRequest)
  9945. if err := dec(in); err != nil {
  9946. return nil, err
  9947. }
  9948. if interceptor == nil {
  9949. return srv.(UserServiceServer).GetDoctorAdditionalCount(ctx, in)
  9950. }
  9951. info := &grpc.UnaryServerInfo{
  9952. Server: srv,
  9953. FullMethod: "/com.ywt.gapi.user.UserService/GetDoctorAdditionalCount",
  9954. }
  9955. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9956. return srv.(UserServiceServer).GetDoctorAdditionalCount(ctx, req.(*GetDoctorAdditionalCountRequest))
  9957. }
  9958. return interceptor(ctx, in, info, handler)
  9959. }
  9960. func _UserService_GetHospitalById_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9961. in := new(GetHospitalByIdRequest)
  9962. if err := dec(in); err != nil {
  9963. return nil, err
  9964. }
  9965. if interceptor == nil {
  9966. return srv.(UserServiceServer).GetHospitalById(ctx, in)
  9967. }
  9968. info := &grpc.UnaryServerInfo{
  9969. Server: srv,
  9970. FullMethod: "/com.ywt.gapi.user.UserService/GetHospitalById",
  9971. }
  9972. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9973. return srv.(UserServiceServer).GetHospitalById(ctx, req.(*GetHospitalByIdRequest))
  9974. }
  9975. return interceptor(ctx, in, info, handler)
  9976. }
  9977. func _UserService_AddTaiheMedicalCard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9978. in := new(AddTaiheMedicalCardRequest)
  9979. if err := dec(in); err != nil {
  9980. return nil, err
  9981. }
  9982. if interceptor == nil {
  9983. return srv.(UserServiceServer).AddTaiheMedicalCard(ctx, in)
  9984. }
  9985. info := &grpc.UnaryServerInfo{
  9986. Server: srv,
  9987. FullMethod: "/com.ywt.gapi.user.UserService/AddTaiheMedicalCard",
  9988. }
  9989. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  9990. return srv.(UserServiceServer).AddTaiheMedicalCard(ctx, req.(*AddTaiheMedicalCardRequest))
  9991. }
  9992. return interceptor(ctx, in, info, handler)
  9993. }
  9994. func _UserService_WithdrawToWeChat_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  9995. in := new(WithdrawToWeChatRequest)
  9996. if err := dec(in); err != nil {
  9997. return nil, err
  9998. }
  9999. if interceptor == nil {
  10000. return srv.(UserServiceServer).WithdrawToWeChat(ctx, in)
  10001. }
  10002. info := &grpc.UnaryServerInfo{
  10003. Server: srv,
  10004. FullMethod: "/com.ywt.gapi.user.UserService/WithdrawToWeChat",
  10005. }
  10006. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10007. return srv.(UserServiceServer).WithdrawToWeChat(ctx, req.(*WithdrawToWeChatRequest))
  10008. }
  10009. return interceptor(ctx, in, info, handler)
  10010. }
  10011. func _UserService_WithdrawOrderPay_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10012. in := new(WithdrawOrderPayRequest)
  10013. if err := dec(in); err != nil {
  10014. return nil, err
  10015. }
  10016. if interceptor == nil {
  10017. return srv.(UserServiceServer).WithdrawOrderPay(ctx, in)
  10018. }
  10019. info := &grpc.UnaryServerInfo{
  10020. Server: srv,
  10021. FullMethod: "/com.ywt.gapi.user.UserService/WithdrawOrderPay",
  10022. }
  10023. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10024. return srv.(UserServiceServer).WithdrawOrderPay(ctx, req.(*WithdrawOrderPayRequest))
  10025. }
  10026. return interceptor(ctx, in, info, handler)
  10027. }
  10028. func _UserService_UserAttentionDoctor_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10029. in := new(UserAttentionDoctorRequest)
  10030. if err := dec(in); err != nil {
  10031. return nil, err
  10032. }
  10033. if interceptor == nil {
  10034. return srv.(UserServiceServer).UserAttentionDoctor(ctx, in)
  10035. }
  10036. info := &grpc.UnaryServerInfo{
  10037. Server: srv,
  10038. FullMethod: "/com.ywt.gapi.user.UserService/UserAttentionDoctor",
  10039. }
  10040. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10041. return srv.(UserServiceServer).UserAttentionDoctor(ctx, req.(*UserAttentionDoctorRequest))
  10042. }
  10043. return interceptor(ctx, in, info, handler)
  10044. }
  10045. func _UserService_SaveAttentionDoctorStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10046. in := new(GeneralAttentionDoctorRequest)
  10047. if err := dec(in); err != nil {
  10048. return nil, err
  10049. }
  10050. if interceptor == nil {
  10051. return srv.(UserServiceServer).SaveAttentionDoctorStatus(ctx, in)
  10052. }
  10053. info := &grpc.UnaryServerInfo{
  10054. Server: srv,
  10055. FullMethod: "/com.ywt.gapi.user.UserService/SaveAttentionDoctorStatus",
  10056. }
  10057. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10058. return srv.(UserServiceServer).SaveAttentionDoctorStatus(ctx, req.(*GeneralAttentionDoctorRequest))
  10059. }
  10060. return interceptor(ctx, in, info, handler)
  10061. }
  10062. func _UserService_SaveAttentionHospitalStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10063. in := new(GeneralAttentionHospitalRequest)
  10064. if err := dec(in); err != nil {
  10065. return nil, err
  10066. }
  10067. if interceptor == nil {
  10068. return srv.(UserServiceServer).SaveAttentionHospitalStatus(ctx, in)
  10069. }
  10070. info := &grpc.UnaryServerInfo{
  10071. Server: srv,
  10072. FullMethod: "/com.ywt.gapi.user.UserService/SaveAttentionHospitalStatus",
  10073. }
  10074. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10075. return srv.(UserServiceServer).SaveAttentionHospitalStatus(ctx, req.(*GeneralAttentionHospitalRequest))
  10076. }
  10077. return interceptor(ctx, in, info, handler)
  10078. }
  10079. func _UserService_GetUserPatientById_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10080. in := new(GetUserPatientByIdRequest)
  10081. if err := dec(in); err != nil {
  10082. return nil, err
  10083. }
  10084. if interceptor == nil {
  10085. return srv.(UserServiceServer).GetUserPatientById(ctx, in)
  10086. }
  10087. info := &grpc.UnaryServerInfo{
  10088. Server: srv,
  10089. FullMethod: "/com.ywt.gapi.user.UserService/GetUserPatientById",
  10090. }
  10091. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10092. return srv.(UserServiceServer).GetUserPatientById(ctx, req.(*GetUserPatientByIdRequest))
  10093. }
  10094. return interceptor(ctx, in, info, handler)
  10095. }
  10096. func _UserService_UpdateUserPatientInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10097. in := new(UpdateUserPatientInfo)
  10098. if err := dec(in); err != nil {
  10099. return nil, err
  10100. }
  10101. if interceptor == nil {
  10102. return srv.(UserServiceServer).UpdateUserPatientInfo(ctx, in)
  10103. }
  10104. info := &grpc.UnaryServerInfo{
  10105. Server: srv,
  10106. FullMethod: "/com.ywt.gapi.user.UserService/UpdateUserPatientInfo",
  10107. }
  10108. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10109. return srv.(UserServiceServer).UpdateUserPatientInfo(ctx, req.(*UpdateUserPatientInfo))
  10110. }
  10111. return interceptor(ctx, in, info, handler)
  10112. }
  10113. func _UserService_GetUserPatientList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10114. in := new(GetUserPatientListRequest)
  10115. if err := dec(in); err != nil {
  10116. return nil, err
  10117. }
  10118. if interceptor == nil {
  10119. return srv.(UserServiceServer).GetUserPatientList(ctx, in)
  10120. }
  10121. info := &grpc.UnaryServerInfo{
  10122. Server: srv,
  10123. FullMethod: "/com.ywt.gapi.user.UserService/GetUserPatientList",
  10124. }
  10125. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10126. return srv.(UserServiceServer).GetUserPatientList(ctx, req.(*GetUserPatientListRequest))
  10127. }
  10128. return interceptor(ctx, in, info, handler)
  10129. }
  10130. func _UserService_SaveSnsUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10131. in := new(SaveSnsUserInfoRequest)
  10132. if err := dec(in); err != nil {
  10133. return nil, err
  10134. }
  10135. if interceptor == nil {
  10136. return srv.(UserServiceServer).SaveSnsUserInfo(ctx, in)
  10137. }
  10138. info := &grpc.UnaryServerInfo{
  10139. Server: srv,
  10140. FullMethod: "/com.ywt.gapi.user.UserService/SaveSnsUserInfo",
  10141. }
  10142. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10143. return srv.(UserServiceServer).SaveSnsUserInfo(ctx, req.(*SaveSnsUserInfoRequest))
  10144. }
  10145. return interceptor(ctx, in, info, handler)
  10146. }
  10147. func _UserService_CheckAndAddUserPatientInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10148. in := new(UpdateUserPatientInfo)
  10149. if err := dec(in); err != nil {
  10150. return nil, err
  10151. }
  10152. if interceptor == nil {
  10153. return srv.(UserServiceServer).CheckAndAddUserPatientInfo(ctx, in)
  10154. }
  10155. info := &grpc.UnaryServerInfo{
  10156. Server: srv,
  10157. FullMethod: "/com.ywt.gapi.user.UserService/CheckAndAddUserPatientInfo",
  10158. }
  10159. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10160. return srv.(UserServiceServer).CheckAndAddUserPatientInfo(ctx, req.(*UpdateUserPatientInfo))
  10161. }
  10162. return interceptor(ctx, in, info, handler)
  10163. }
  10164. func _UserService_BindWxNew_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10165. in := new(BindWxRequest)
  10166. if err := dec(in); err != nil {
  10167. return nil, err
  10168. }
  10169. if interceptor == nil {
  10170. return srv.(UserServiceServer).BindWxNew(ctx, in)
  10171. }
  10172. info := &grpc.UnaryServerInfo{
  10173. Server: srv,
  10174. FullMethod: "/com.ywt.gapi.user.UserService/BindWxNew",
  10175. }
  10176. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10177. return srv.(UserServiceServer).BindWxNew(ctx, req.(*BindWxRequest))
  10178. }
  10179. return interceptor(ctx, in, info, handler)
  10180. }
  10181. func _UserService_DelUserPatient_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10182. in := new(DelUserPatientRequest)
  10183. if err := dec(in); err != nil {
  10184. return nil, err
  10185. }
  10186. if interceptor == nil {
  10187. return srv.(UserServiceServer).DelUserPatient(ctx, in)
  10188. }
  10189. info := &grpc.UnaryServerInfo{
  10190. Server: srv,
  10191. FullMethod: "/com.ywt.gapi.user.UserService/DelUserPatient",
  10192. }
  10193. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10194. return srv.(UserServiceServer).DelUserPatient(ctx, req.(*DelUserPatientRequest))
  10195. }
  10196. return interceptor(ctx, in, info, handler)
  10197. }
  10198. func _UserService_CheckAndUpdateSnsUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10199. in := new(CheckAndUpdateSnsUserIdRequest)
  10200. if err := dec(in); err != nil {
  10201. return nil, err
  10202. }
  10203. if interceptor == nil {
  10204. return srv.(UserServiceServer).CheckAndUpdateSnsUserId(ctx, in)
  10205. }
  10206. info := &grpc.UnaryServerInfo{
  10207. Server: srv,
  10208. FullMethod: "/com.ywt.gapi.user.UserService/CheckAndUpdateSnsUserId",
  10209. }
  10210. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10211. return srv.(UserServiceServer).CheckAndUpdateSnsUserId(ctx, req.(*CheckAndUpdateSnsUserIdRequest))
  10212. }
  10213. return interceptor(ctx, in, info, handler)
  10214. }
  10215. func _UserService_GetUserInfoByOpenId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10216. in := new(GetUserInfoByOpenIdRequest)
  10217. if err := dec(in); err != nil {
  10218. return nil, err
  10219. }
  10220. if interceptor == nil {
  10221. return srv.(UserServiceServer).GetUserInfoByOpenId(ctx, in)
  10222. }
  10223. info := &grpc.UnaryServerInfo{
  10224. Server: srv,
  10225. FullMethod: "/com.ywt.gapi.user.UserService/GetUserInfoByOpenId",
  10226. }
  10227. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10228. return srv.(UserServiceServer).GetUserInfoByOpenId(ctx, req.(*GetUserInfoByOpenIdRequest))
  10229. }
  10230. return interceptor(ctx, in, info, handler)
  10231. }
  10232. func _UserService_GetUserInfoByUserIdAndTerminal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10233. in := new(GetUserInfoByUserIdAndTerminalRequest)
  10234. if err := dec(in); err != nil {
  10235. return nil, err
  10236. }
  10237. if interceptor == nil {
  10238. return srv.(UserServiceServer).GetUserInfoByUserIdAndTerminal(ctx, in)
  10239. }
  10240. info := &grpc.UnaryServerInfo{
  10241. Server: srv,
  10242. FullMethod: "/com.ywt.gapi.user.UserService/GetUserInfoByUserIdAndTerminal",
  10243. }
  10244. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10245. return srv.(UserServiceServer).GetUserInfoByUserIdAndTerminal(ctx, req.(*GetUserInfoByUserIdAndTerminalRequest))
  10246. }
  10247. return interceptor(ctx, in, info, handler)
  10248. }
  10249. func _UserService_UpdateFollowedStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10250. in := new(UpdateFollowedStatusRequest)
  10251. if err := dec(in); err != nil {
  10252. return nil, err
  10253. }
  10254. if interceptor == nil {
  10255. return srv.(UserServiceServer).UpdateFollowedStatus(ctx, in)
  10256. }
  10257. info := &grpc.UnaryServerInfo{
  10258. Server: srv,
  10259. FullMethod: "/com.ywt.gapi.user.UserService/UpdateFollowedStatus",
  10260. }
  10261. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10262. return srv.(UserServiceServer).UpdateFollowedStatus(ctx, req.(*UpdateFollowedStatusRequest))
  10263. }
  10264. return interceptor(ctx, in, info, handler)
  10265. }
  10266. func _UserService_SaveMinAppUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10267. in := new(SaveMinAppUserRequest)
  10268. if err := dec(in); err != nil {
  10269. return nil, err
  10270. }
  10271. if interceptor == nil {
  10272. return srv.(UserServiceServer).SaveMinAppUser(ctx, in)
  10273. }
  10274. info := &grpc.UnaryServerInfo{
  10275. Server: srv,
  10276. FullMethod: "/com.ywt.gapi.user.UserService/SaveMinAppUser",
  10277. }
  10278. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10279. return srv.(UserServiceServer).SaveMinAppUser(ctx, req.(*SaveMinAppUserRequest))
  10280. }
  10281. return interceptor(ctx, in, info, handler)
  10282. }
  10283. func _UserService_GetSnsUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10284. in := new(GetSnsUserInfoRequest)
  10285. if err := dec(in); err != nil {
  10286. return nil, err
  10287. }
  10288. if interceptor == nil {
  10289. return srv.(UserServiceServer).GetSnsUserInfo(ctx, in)
  10290. }
  10291. info := &grpc.UnaryServerInfo{
  10292. Server: srv,
  10293. FullMethod: "/com.ywt.gapi.user.UserService/GetSnsUserInfo",
  10294. }
  10295. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10296. return srv.(UserServiceServer).GetSnsUserInfo(ctx, req.(*GetSnsUserInfoRequest))
  10297. }
  10298. return interceptor(ctx, in, info, handler)
  10299. }
  10300. func _UserService_UpdateSnsUserInfoByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10301. in := new(UpdateSnsUserInfoByUserIdRequest)
  10302. if err := dec(in); err != nil {
  10303. return nil, err
  10304. }
  10305. if interceptor == nil {
  10306. return srv.(UserServiceServer).UpdateSnsUserInfoByUserId(ctx, in)
  10307. }
  10308. info := &grpc.UnaryServerInfo{
  10309. Server: srv,
  10310. FullMethod: "/com.ywt.gapi.user.UserService/UpdateSnsUserInfoByUserId",
  10311. }
  10312. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10313. return srv.(UserServiceServer).UpdateSnsUserInfoByUserId(ctx, req.(*UpdateSnsUserInfoByUserIdRequest))
  10314. }
  10315. return interceptor(ctx, in, info, handler)
  10316. }
  10317. func _UserService_Authenticate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10318. in := new(AuthenticateRequest)
  10319. if err := dec(in); err != nil {
  10320. return nil, err
  10321. }
  10322. if interceptor == nil {
  10323. return srv.(UserServiceServer).Authenticate(ctx, in)
  10324. }
  10325. info := &grpc.UnaryServerInfo{
  10326. Server: srv,
  10327. FullMethod: "/com.ywt.gapi.user.UserService/Authenticate",
  10328. }
  10329. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10330. return srv.(UserServiceServer).Authenticate(ctx, req.(*AuthenticateRequest))
  10331. }
  10332. return interceptor(ctx, in, info, handler)
  10333. }
  10334. func _UserService_GetSnsUserInfoByUserIdAndTerminal_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10335. in := new(GetSnsUserInfoByUserIdAndTerminalRequest)
  10336. if err := dec(in); err != nil {
  10337. return nil, err
  10338. }
  10339. if interceptor == nil {
  10340. return srv.(UserServiceServer).GetSnsUserInfoByUserIdAndTerminal(ctx, in)
  10341. }
  10342. info := &grpc.UnaryServerInfo{
  10343. Server: srv,
  10344. FullMethod: "/com.ywt.gapi.user.UserService/GetSnsUserInfoByUserIdAndTerminal",
  10345. }
  10346. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10347. return srv.(UserServiceServer).GetSnsUserInfoByUserIdAndTerminal(ctx, req.(*GetSnsUserInfoByUserIdAndTerminalRequest))
  10348. }
  10349. return interceptor(ctx, in, info, handler)
  10350. }
  10351. func _UserService_GetUserList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  10352. in := new(GetUserListRequest)
  10353. if err := dec(in); err != nil {
  10354. return nil, err
  10355. }
  10356. if interceptor == nil {
  10357. return srv.(UserServiceServer).GetUserList(ctx, in)
  10358. }
  10359. info := &grpc.UnaryServerInfo{
  10360. Server: srv,
  10361. FullMethod: "/com.ywt.gapi.user.UserService/GetUserList",
  10362. }
  10363. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  10364. return srv.(UserServiceServer).GetUserList(ctx, req.(*GetUserListRequest))
  10365. }
  10366. return interceptor(ctx, in, info, handler)
  10367. }
  10368. var _UserService_serviceDesc = grpc.ServiceDesc{
  10369. ServiceName: "com.ywt.gapi.user.UserService",
  10370. HandlerType: (*UserServiceServer)(nil),
  10371. Methods: []grpc.MethodDesc{
  10372. {
  10373. MethodName: "findByPhone",
  10374. Handler: _UserService_FindByPhone_Handler,
  10375. },
  10376. {
  10377. MethodName: "findByUserId",
  10378. Handler: _UserService_FindByUserId_Handler,
  10379. },
  10380. {
  10381. MethodName: "addUser",
  10382. Handler: _UserService_AddUser_Handler,
  10383. },
  10384. {
  10385. MethodName: "addBankCard",
  10386. Handler: _UserService_AddBankCard_Handler,
  10387. },
  10388. {
  10389. MethodName: "getBankCardList",
  10390. Handler: _UserService_GetBankCardList_Handler,
  10391. },
  10392. {
  10393. MethodName: "getAccountBalance",
  10394. Handler: _UserService_GetAccountBalance_Handler,
  10395. },
  10396. {
  10397. MethodName: "getAccountBalanceNew",
  10398. Handler: _UserService_GetAccountBalanceNew_Handler,
  10399. },
  10400. {
  10401. MethodName: "getAccountDetailList",
  10402. Handler: _UserService_GetAccountDetailList_Handler,
  10403. },
  10404. {
  10405. MethodName: "withdraw",
  10406. Handler: _UserService_Withdraw_Handler,
  10407. },
  10408. {
  10409. MethodName: "feedback",
  10410. Handler: _UserService_Feedback_Handler,
  10411. },
  10412. {
  10413. MethodName: "getWithdrawRecordList",
  10414. Handler: _UserService_GetWithdrawRecordList_Handler,
  10415. },
  10416. {
  10417. MethodName: "delBankCard",
  10418. Handler: _UserService_DelBankCard_Handler,
  10419. },
  10420. {
  10421. MethodName: "getWxAppToken",
  10422. Handler: _UserService_GetWxAppToken_Handler,
  10423. },
  10424. {
  10425. MethodName: "bindWxAppMobile",
  10426. Handler: _UserService_BindWxAppMobile_Handler,
  10427. },
  10428. {
  10429. MethodName: "getSnsUser",
  10430. Handler: _UserService_GetSnsUser_Handler,
  10431. },
  10432. {
  10433. MethodName: "getSnsUserByOpenId",
  10434. Handler: _UserService_GetSnsUserByOpenId_Handler,
  10435. },
  10436. {
  10437. MethodName: "getSnsUserByUserId",
  10438. Handler: _UserService_GetSnsUserByUserId_Handler,
  10439. },
  10440. {
  10441. MethodName: "addMedicalCard",
  10442. Handler: _UserService_AddMedicalCard_Handler,
  10443. },
  10444. {
  10445. MethodName: "getMedicalCardList",
  10446. Handler: _UserService_GetMedicalCardList_Handler,
  10447. },
  10448. {
  10449. MethodName: "loginByMobile",
  10450. Handler: _UserService_LoginByMobile_Handler,
  10451. },
  10452. {
  10453. MethodName: "loginByUserName",
  10454. Handler: _UserService_LoginByUserName_Handler,
  10455. },
  10456. {
  10457. MethodName: "deleteMedicalCard",
  10458. Handler: _UserService_DeleteMedicalCard_Handler,
  10459. },
  10460. {
  10461. MethodName: "addSnsUser",
  10462. Handler: _UserService_AddSnsUser_Handler,
  10463. },
  10464. {
  10465. MethodName: "bindWx",
  10466. Handler: _UserService_BindWx_Handler,
  10467. },
  10468. {
  10469. MethodName: "getOffcialUserInfo",
  10470. Handler: _UserService_GetOffcialUserInfo_Handler,
  10471. },
  10472. {
  10473. MethodName: "getMedicalRecordsList",
  10474. Handler: _UserService_GetMedicalRecordsList_Handler,
  10475. },
  10476. {
  10477. MethodName: "changeMobile",
  10478. Handler: _UserService_ChangeMobile_Handler,
  10479. },
  10480. {
  10481. MethodName: "getOfficialUserInfo",
  10482. Handler: _UserService_GetOfficialUserInfo_Handler,
  10483. },
  10484. {
  10485. MethodName: "getMedicalRecordListByUserId",
  10486. Handler: _UserService_GetMedicalRecordListByUserId_Handler,
  10487. },
  10488. {
  10489. MethodName: "getMedicalRecordsDetail",
  10490. Handler: _UserService_GetMedicalRecordsDetail_Handler,
  10491. },
  10492. {
  10493. MethodName: "getInspectionReportList",
  10494. Handler: _UserService_GetInspectionReportList_Handler,
  10495. },
  10496. {
  10497. MethodName: "getInspectionReportListByHisPatientId",
  10498. Handler: _UserService_GetInspectionReportListByHisPatientId_Handler,
  10499. },
  10500. {
  10501. MethodName: "getInspectionReportDetail",
  10502. Handler: _UserService_GetInspectionReportDetail_Handler,
  10503. },
  10504. {
  10505. MethodName: "getLaboratoryReportList",
  10506. Handler: _UserService_GetLaboratoryReportList_Handler,
  10507. },
  10508. {
  10509. MethodName: "getLaboratoryReportByListByHisPatientId",
  10510. Handler: _UserService_GetLaboratoryReportByListByHisPatientId_Handler,
  10511. },
  10512. {
  10513. MethodName: "getLaboratoryReportDetail",
  10514. Handler: _UserService_GetLaboratoryReportDetail_Handler,
  10515. },
  10516. {
  10517. MethodName: "getMedicalRecordByClinicCode",
  10518. Handler: _UserService_GetMedicalRecordByClinicCode_Handler,
  10519. },
  10520. {
  10521. MethodName: "loginWithUserAndPsd",
  10522. Handler: _UserService_LoginWithUserAndPsd_Handler,
  10523. },
  10524. {
  10525. MethodName: "updatePassword",
  10526. Handler: _UserService_UpdatePassword_Handler,
  10527. },
  10528. {
  10529. MethodName: "changePassword",
  10530. Handler: _UserService_ChangePassword_Handler,
  10531. },
  10532. {
  10533. MethodName: "getUserInfoByCode",
  10534. Handler: _UserService_GetUserInfoByCode_Handler,
  10535. },
  10536. {
  10537. MethodName: "getScheduleDoctorList",
  10538. Handler: _UserService_GetScheduleDoctorList_Handler,
  10539. },
  10540. {
  10541. MethodName: "userCreateMedicalRecord",
  10542. Handler: _UserService_UserCreateMedicalRecord_Handler,
  10543. },
  10544. {
  10545. MethodName: "getDoctorListByDeptId",
  10546. Handler: _UserService_GetDoctorListByDeptId_Handler,
  10547. },
  10548. {
  10549. MethodName: "getDoctorTeamCount",
  10550. Handler: _UserService_GetDoctorTeamCount_Handler,
  10551. },
  10552. {
  10553. MethodName: "getDoctorAdditionalCount",
  10554. Handler: _UserService_GetDoctorAdditionalCount_Handler,
  10555. },
  10556. {
  10557. MethodName: "getHospitalById",
  10558. Handler: _UserService_GetHospitalById_Handler,
  10559. },
  10560. {
  10561. MethodName: "addTaiheMedicalCard",
  10562. Handler: _UserService_AddTaiheMedicalCard_Handler,
  10563. },
  10564. {
  10565. MethodName: "withdrawToWeChat",
  10566. Handler: _UserService_WithdrawToWeChat_Handler,
  10567. },
  10568. {
  10569. MethodName: "withdrawOrderPay",
  10570. Handler: _UserService_WithdrawOrderPay_Handler,
  10571. },
  10572. {
  10573. MethodName: "userAttentionDoctor",
  10574. Handler: _UserService_UserAttentionDoctor_Handler,
  10575. },
  10576. {
  10577. MethodName: "saveAttentionDoctorStatus",
  10578. Handler: _UserService_SaveAttentionDoctorStatus_Handler,
  10579. },
  10580. {
  10581. MethodName: "saveAttentionHospitalStatus",
  10582. Handler: _UserService_SaveAttentionHospitalStatus_Handler,
  10583. },
  10584. {
  10585. MethodName: "getUserPatientById",
  10586. Handler: _UserService_GetUserPatientById_Handler,
  10587. },
  10588. {
  10589. MethodName: "updateUserPatientInfo",
  10590. Handler: _UserService_UpdateUserPatientInfo_Handler,
  10591. },
  10592. {
  10593. MethodName: "getUserPatientList",
  10594. Handler: _UserService_GetUserPatientList_Handler,
  10595. },
  10596. {
  10597. MethodName: "saveSnsUserInfo",
  10598. Handler: _UserService_SaveSnsUserInfo_Handler,
  10599. },
  10600. {
  10601. MethodName: "checkAndAddUserPatientInfo",
  10602. Handler: _UserService_CheckAndAddUserPatientInfo_Handler,
  10603. },
  10604. {
  10605. MethodName: "bindWxNew",
  10606. Handler: _UserService_BindWxNew_Handler,
  10607. },
  10608. {
  10609. MethodName: "delUserPatient",
  10610. Handler: _UserService_DelUserPatient_Handler,
  10611. },
  10612. {
  10613. MethodName: "checkAndUpdateSnsUserId",
  10614. Handler: _UserService_CheckAndUpdateSnsUserId_Handler,
  10615. },
  10616. {
  10617. MethodName: "getUserInfoByOpenId",
  10618. Handler: _UserService_GetUserInfoByOpenId_Handler,
  10619. },
  10620. {
  10621. MethodName: "getUserInfoByUserIdAndTerminal",
  10622. Handler: _UserService_GetUserInfoByUserIdAndTerminal_Handler,
  10623. },
  10624. {
  10625. MethodName: "updateFollowedStatus",
  10626. Handler: _UserService_UpdateFollowedStatus_Handler,
  10627. },
  10628. {
  10629. MethodName: "saveMinAppUser",
  10630. Handler: _UserService_SaveMinAppUser_Handler,
  10631. },
  10632. {
  10633. MethodName: "getSnsUserInfo",
  10634. Handler: _UserService_GetSnsUserInfo_Handler,
  10635. },
  10636. {
  10637. MethodName: "updateSnsUserInfoByUserId",
  10638. Handler: _UserService_UpdateSnsUserInfoByUserId_Handler,
  10639. },
  10640. {
  10641. MethodName: "authenticate",
  10642. Handler: _UserService_Authenticate_Handler,
  10643. },
  10644. {
  10645. MethodName: "getSnsUserInfoByUserIdAndTerminal",
  10646. Handler: _UserService_GetSnsUserInfoByUserIdAndTerminal_Handler,
  10647. },
  10648. {
  10649. MethodName: "getUserList",
  10650. Handler: _UserService_GetUserList_Handler,
  10651. },
  10652. },
  10653. Streams: []grpc.StreamDesc{},
  10654. Metadata: "user.proto",
  10655. }