mtp2.pb.go 455 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0
  4. // protoc v3.11.4
  5. // source: mtp2.proto
  6. package pb
  7. import (
  8. proto "github.com/golang/protobuf/proto"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // This is a compile-time assertion that a sufficiently up-to-date version
  21. // of the legacy proto package is being used.
  22. const _ = proto.ProtoPackageIsVersion4
  23. // 消息头
  24. type MessageHead struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. FunCode *uint32 `protobuf:"varint,1,opt,name=FunCode" json:"FunCode,omitempty"` // 功能号
  29. RequestID *uint32 `protobuf:"varint,2,opt,name=RequestID" json:"RequestID,omitempty"` // 客户端的流水ID
  30. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
  31. AccessID *uint32 `protobuf:"varint,4,opt,name=AccessID" json:"AccessID,omitempty"` //二级分配给客户端的接入ID
  32. ClientTime *int64 `protobuf:"varint,5,opt,name=ClientTime" json:"ClientTime,omitempty"` //消息发起时间
  33. GoodsID *uint32 `protobuf:"varint,6,opt,name=GoodsID" json:"GoodsID,omitempty"` //商品ID
  34. UUID *string `protobuf:"bytes,7,opt,name=UUID" json:"UUID,omitempty"` // 消息唯一ID
  35. MarketID *uint32 `protobuf:"varint,8,opt,name=MarketID" json:"MarketID,omitempty"` // 所属市场ID
  36. UserID *uint32 `protobuf:"varint,9,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  37. ResponseTopic *string `protobuf:"bytes,10,opt,name=ResponseTopic" json:"ResponseTopic,omitempty"` // 应答消息所属主题
  38. AccountID2 *uint64 `protobuf:"varint,11,opt,name=AccountID2" json:"AccountID2,omitempty"` // 账号ID-币币交易使用
  39. }
  40. func (x *MessageHead) Reset() {
  41. *x = MessageHead{}
  42. if protoimpl.UnsafeEnabled {
  43. mi := &file_mtp2_proto_msgTypes[0]
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. ms.StoreMessageInfo(mi)
  46. }
  47. }
  48. func (x *MessageHead) String() string {
  49. return protoimpl.X.MessageStringOf(x)
  50. }
  51. func (*MessageHead) ProtoMessage() {}
  52. func (x *MessageHead) ProtoReflect() protoreflect.Message {
  53. mi := &file_mtp2_proto_msgTypes[0]
  54. if protoimpl.UnsafeEnabled && x != nil {
  55. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  56. if ms.LoadMessageInfo() == nil {
  57. ms.StoreMessageInfo(mi)
  58. }
  59. return ms
  60. }
  61. return mi.MessageOf(x)
  62. }
  63. // Deprecated: Use MessageHead.ProtoReflect.Descriptor instead.
  64. func (*MessageHead) Descriptor() ([]byte, []int) {
  65. return file_mtp2_proto_rawDescGZIP(), []int{0}
  66. }
  67. func (x *MessageHead) GetFunCode() uint32 {
  68. if x != nil && x.FunCode != nil {
  69. return *x.FunCode
  70. }
  71. return 0
  72. }
  73. func (x *MessageHead) GetRequestID() uint32 {
  74. if x != nil && x.RequestID != nil {
  75. return *x.RequestID
  76. }
  77. return 0
  78. }
  79. func (x *MessageHead) GetAccountID() uint64 {
  80. if x != nil && x.AccountID != nil {
  81. return *x.AccountID
  82. }
  83. return 0
  84. }
  85. func (x *MessageHead) GetAccessID() uint32 {
  86. if x != nil && x.AccessID != nil {
  87. return *x.AccessID
  88. }
  89. return 0
  90. }
  91. func (x *MessageHead) GetClientTime() int64 {
  92. if x != nil && x.ClientTime != nil {
  93. return *x.ClientTime
  94. }
  95. return 0
  96. }
  97. func (x *MessageHead) GetGoodsID() uint32 {
  98. if x != nil && x.GoodsID != nil {
  99. return *x.GoodsID
  100. }
  101. return 0
  102. }
  103. func (x *MessageHead) GetUUID() string {
  104. if x != nil && x.UUID != nil {
  105. return *x.UUID
  106. }
  107. return ""
  108. }
  109. func (x *MessageHead) GetMarketID() uint32 {
  110. if x != nil && x.MarketID != nil {
  111. return *x.MarketID
  112. }
  113. return 0
  114. }
  115. func (x *MessageHead) GetUserID() uint32 {
  116. if x != nil && x.UserID != nil {
  117. return *x.UserID
  118. }
  119. return 0
  120. }
  121. func (x *MessageHead) GetResponseTopic() string {
  122. if x != nil && x.ResponseTopic != nil {
  123. return *x.ResponseTopic
  124. }
  125. return ""
  126. }
  127. func (x *MessageHead) GetAccountID2() uint64 {
  128. if x != nil && x.AccountID2 != nil {
  129. return *x.AccountID2
  130. }
  131. return 0
  132. }
  133. // 公共通知消息头
  134. type NotifyHead struct {
  135. state protoimpl.MessageState
  136. sizeCache protoimpl.SizeCache
  137. unknownFields protoimpl.UnknownFields
  138. NtfMode *int32 `protobuf:"varint,1,opt,name=NtfMode" json:"NtfMode,omitempty"` // 消息通知模式(单播、组播、广播)
  139. ExcludeAcctIDs []uint32 `protobuf:"varint,2,rep,name=ExcludeAcctIDs" json:"ExcludeAcctIDs,omitempty"` // 排除账号集合(首先过滤此集合帐号)
  140. ExchIDs []uint32 `protobuf:"varint,3,rep,name=ExchIDs" json:"ExchIDs,omitempty"` // 目标交易所集合(若匹配所属交易所,推送)
  141. MemberIDs []uint32 `protobuf:"varint,4,rep,name=MemberIDs" json:"MemberIDs,omitempty"` // 目标会员集合(若匹配所属会员,推送)
  142. AccountIDs []uint64 `protobuf:"varint,5,rep,name=AccountIDs" json:"AccountIDs,omitempty"` // 目标账号集合(以上均不匹配时,最后检查此集合)
  143. }
  144. func (x *NotifyHead) Reset() {
  145. *x = NotifyHead{}
  146. if protoimpl.UnsafeEnabled {
  147. mi := &file_mtp2_proto_msgTypes[1]
  148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  149. ms.StoreMessageInfo(mi)
  150. }
  151. }
  152. func (x *NotifyHead) String() string {
  153. return protoimpl.X.MessageStringOf(x)
  154. }
  155. func (*NotifyHead) ProtoMessage() {}
  156. func (x *NotifyHead) ProtoReflect() protoreflect.Message {
  157. mi := &file_mtp2_proto_msgTypes[1]
  158. if protoimpl.UnsafeEnabled && x != nil {
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. if ms.LoadMessageInfo() == nil {
  161. ms.StoreMessageInfo(mi)
  162. }
  163. return ms
  164. }
  165. return mi.MessageOf(x)
  166. }
  167. // Deprecated: Use NotifyHead.ProtoReflect.Descriptor instead.
  168. func (*NotifyHead) Descriptor() ([]byte, []int) {
  169. return file_mtp2_proto_rawDescGZIP(), []int{1}
  170. }
  171. func (x *NotifyHead) GetNtfMode() int32 {
  172. if x != nil && x.NtfMode != nil {
  173. return *x.NtfMode
  174. }
  175. return 0
  176. }
  177. func (x *NotifyHead) GetExcludeAcctIDs() []uint32 {
  178. if x != nil {
  179. return x.ExcludeAcctIDs
  180. }
  181. return nil
  182. }
  183. func (x *NotifyHead) GetExchIDs() []uint32 {
  184. if x != nil {
  185. return x.ExchIDs
  186. }
  187. return nil
  188. }
  189. func (x *NotifyHead) GetMemberIDs() []uint32 {
  190. if x != nil {
  191. return x.MemberIDs
  192. }
  193. return nil
  194. }
  195. func (x *NotifyHead) GetAccountIDs() []uint64 {
  196. if x != nil {
  197. return x.AccountIDs
  198. }
  199. return nil
  200. }
  201. // 文件列表
  202. type FileDetail struct {
  203. state protoimpl.MessageState
  204. sizeCache protoimpl.SizeCache
  205. unknownFields protoimpl.UnknownFields
  206. FileName *string `protobuf:"bytes,1,opt,name=FileName" json:"FileName,omitempty"` // 文件名
  207. FilePath *string `protobuf:"bytes,2,opt,name=FilePath" json:"FilePath,omitempty"` // 文件地址
  208. }
  209. func (x *FileDetail) Reset() {
  210. *x = FileDetail{}
  211. if protoimpl.UnsafeEnabled {
  212. mi := &file_mtp2_proto_msgTypes[2]
  213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  214. ms.StoreMessageInfo(mi)
  215. }
  216. }
  217. func (x *FileDetail) String() string {
  218. return protoimpl.X.MessageStringOf(x)
  219. }
  220. func (*FileDetail) ProtoMessage() {}
  221. func (x *FileDetail) ProtoReflect() protoreflect.Message {
  222. mi := &file_mtp2_proto_msgTypes[2]
  223. if protoimpl.UnsafeEnabled && x != nil {
  224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  225. if ms.LoadMessageInfo() == nil {
  226. ms.StoreMessageInfo(mi)
  227. }
  228. return ms
  229. }
  230. return mi.MessageOf(x)
  231. }
  232. // Deprecated: Use FileDetail.ProtoReflect.Descriptor instead.
  233. func (*FileDetail) Descriptor() ([]byte, []int) {
  234. return file_mtp2_proto_rawDescGZIP(), []int{2}
  235. }
  236. func (x *FileDetail) GetFileName() string {
  237. if x != nil && x.FileName != nil {
  238. return *x.FileName
  239. }
  240. return ""
  241. }
  242. func (x *FileDetail) GetFilePath() string {
  243. if x != nil && x.FilePath != nil {
  244. return *x.FilePath
  245. }
  246. return ""
  247. }
  248. // 修改账户密码请求
  249. type ModifyPwdReq struct {
  250. state protoimpl.MessageState
  251. sizeCache protoimpl.SizeCache
  252. unknownFields protoimpl.UnknownFields
  253. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  254. ModifyPwdType *uint32 `protobuf:"varint,2,opt,name=ModifyPwdType" json:"ModifyPwdType,omitempty"` // 修改密码类型1:登陆密码2:资金账户密码
  255. ModifyPwdID *uint64 `protobuf:"varint,3,opt,name=ModifyPwdID" json:"ModifyPwdID,omitempty"` // 被修改的ID(ModifyType=1:LoginIDModifyType=2:AccountID)
  256. OldPwd *string `protobuf:"bytes,4,opt,name=OldPwd" json:"OldPwd,omitempty"` // 旧资金密码
  257. NewPwd *string `protobuf:"bytes,5,opt,name=NewPwd" json:"NewPwd,omitempty"` // 新资金密码
  258. }
  259. func (x *ModifyPwdReq) Reset() {
  260. *x = ModifyPwdReq{}
  261. if protoimpl.UnsafeEnabled {
  262. mi := &file_mtp2_proto_msgTypes[3]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. }
  267. func (x *ModifyPwdReq) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*ModifyPwdReq) ProtoMessage() {}
  271. func (x *ModifyPwdReq) ProtoReflect() protoreflect.Message {
  272. mi := &file_mtp2_proto_msgTypes[3]
  273. if protoimpl.UnsafeEnabled && x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use ModifyPwdReq.ProtoReflect.Descriptor instead.
  283. func (*ModifyPwdReq) Descriptor() ([]byte, []int) {
  284. return file_mtp2_proto_rawDescGZIP(), []int{3}
  285. }
  286. func (x *ModifyPwdReq) GetHeader() *MessageHead {
  287. if x != nil {
  288. return x.Header
  289. }
  290. return nil
  291. }
  292. func (x *ModifyPwdReq) GetModifyPwdType() uint32 {
  293. if x != nil && x.ModifyPwdType != nil {
  294. return *x.ModifyPwdType
  295. }
  296. return 0
  297. }
  298. func (x *ModifyPwdReq) GetModifyPwdID() uint64 {
  299. if x != nil && x.ModifyPwdID != nil {
  300. return *x.ModifyPwdID
  301. }
  302. return 0
  303. }
  304. func (x *ModifyPwdReq) GetOldPwd() string {
  305. if x != nil && x.OldPwd != nil {
  306. return *x.OldPwd
  307. }
  308. return ""
  309. }
  310. func (x *ModifyPwdReq) GetNewPwd() string {
  311. if x != nil && x.NewPwd != nil {
  312. return *x.NewPwd
  313. }
  314. return ""
  315. }
  316. // 修改账户密码应答
  317. type ModifyPwdRsp struct {
  318. state protoimpl.MessageState
  319. sizeCache protoimpl.SizeCache
  320. unknownFields protoimpl.UnknownFields
  321. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  322. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  323. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  324. }
  325. func (x *ModifyPwdRsp) Reset() {
  326. *x = ModifyPwdRsp{}
  327. if protoimpl.UnsafeEnabled {
  328. mi := &file_mtp2_proto_msgTypes[4]
  329. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  330. ms.StoreMessageInfo(mi)
  331. }
  332. }
  333. func (x *ModifyPwdRsp) String() string {
  334. return protoimpl.X.MessageStringOf(x)
  335. }
  336. func (*ModifyPwdRsp) ProtoMessage() {}
  337. func (x *ModifyPwdRsp) ProtoReflect() protoreflect.Message {
  338. mi := &file_mtp2_proto_msgTypes[4]
  339. if protoimpl.UnsafeEnabled && x != nil {
  340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  341. if ms.LoadMessageInfo() == nil {
  342. ms.StoreMessageInfo(mi)
  343. }
  344. return ms
  345. }
  346. return mi.MessageOf(x)
  347. }
  348. // Deprecated: Use ModifyPwdRsp.ProtoReflect.Descriptor instead.
  349. func (*ModifyPwdRsp) Descriptor() ([]byte, []int) {
  350. return file_mtp2_proto_rawDescGZIP(), []int{4}
  351. }
  352. func (x *ModifyPwdRsp) GetHeader() *MessageHead {
  353. if x != nil {
  354. return x.Header
  355. }
  356. return nil
  357. }
  358. func (x *ModifyPwdRsp) GetRetCode() int32 {
  359. if x != nil && x.RetCode != nil {
  360. return *x.RetCode
  361. }
  362. return 0
  363. }
  364. func (x *ModifyPwdRsp) GetRetDesc() string {
  365. if x != nil && x.RetDesc != nil {
  366. return *x.RetDesc
  367. }
  368. return ""
  369. }
  370. // 新增修改收货地址请求
  371. type UserReceiveInfoReq struct {
  372. state protoimpl.MessageState
  373. sizeCache protoimpl.SizeCache
  374. unknownFields protoimpl.UnknownFields
  375. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  376. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  377. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  378. ReceiverName *string `protobuf:"bytes,4,opt,name=ReceiverName" json:"ReceiverName,omitempty"` // 提货人姓名
  379. CardTypeID *uint32 `protobuf:"varint,5,opt,name=CardTypeID" json:"CardTypeID,omitempty"` // 证件类型
  380. CardNum *string `protobuf:"bytes,6,opt,name=CardNum" json:"CardNum,omitempty"` // 证件号码
  381. PhoneNum *string `protobuf:"bytes,7,opt,name=PhoneNum" json:"PhoneNum,omitempty"` // 提货人联系方式
  382. CountryID *uint32 `protobuf:"varint,8,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  383. ProvinceID *uint32 `protobuf:"varint,9,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  384. CityID *uint32 `protobuf:"varint,10,opt,name=CityID" json:"CityID,omitempty"` // 市
  385. DistrictID *uint32 `protobuf:"varint,11,opt,name=DistrictID" json:"DistrictID,omitempty"` // 地区
  386. Address *string `protobuf:"bytes,12,opt,name=Address" json:"Address,omitempty"` // 提货人详细地址
  387. TakeRemark *string `protobuf:"bytes,13,opt,name=TakeRemark" json:"TakeRemark,omitempty"` // 提货备注
  388. ReceiveInfoId *uint64 `protobuf:"varint,14,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 修改时填收货地址id
  389. }
  390. func (x *UserReceiveInfoReq) Reset() {
  391. *x = UserReceiveInfoReq{}
  392. if protoimpl.UnsafeEnabled {
  393. mi := &file_mtp2_proto_msgTypes[5]
  394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  395. ms.StoreMessageInfo(mi)
  396. }
  397. }
  398. func (x *UserReceiveInfoReq) String() string {
  399. return protoimpl.X.MessageStringOf(x)
  400. }
  401. func (*UserReceiveInfoReq) ProtoMessage() {}
  402. func (x *UserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  403. mi := &file_mtp2_proto_msgTypes[5]
  404. if protoimpl.UnsafeEnabled && x != nil {
  405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  406. if ms.LoadMessageInfo() == nil {
  407. ms.StoreMessageInfo(mi)
  408. }
  409. return ms
  410. }
  411. return mi.MessageOf(x)
  412. }
  413. // Deprecated: Use UserReceiveInfoReq.ProtoReflect.Descriptor instead.
  414. func (*UserReceiveInfoReq) Descriptor() ([]byte, []int) {
  415. return file_mtp2_proto_rawDescGZIP(), []int{5}
  416. }
  417. func (x *UserReceiveInfoReq) GetHeader() *MessageHead {
  418. if x != nil {
  419. return x.Header
  420. }
  421. return nil
  422. }
  423. func (x *UserReceiveInfoReq) GetClientSerialID() uint64 {
  424. if x != nil && x.ClientSerialID != nil {
  425. return *x.ClientSerialID
  426. }
  427. return 0
  428. }
  429. func (x *UserReceiveInfoReq) GetUserID() uint32 {
  430. if x != nil && x.UserID != nil {
  431. return *x.UserID
  432. }
  433. return 0
  434. }
  435. func (x *UserReceiveInfoReq) GetReceiverName() string {
  436. if x != nil && x.ReceiverName != nil {
  437. return *x.ReceiverName
  438. }
  439. return ""
  440. }
  441. func (x *UserReceiveInfoReq) GetCardTypeID() uint32 {
  442. if x != nil && x.CardTypeID != nil {
  443. return *x.CardTypeID
  444. }
  445. return 0
  446. }
  447. func (x *UserReceiveInfoReq) GetCardNum() string {
  448. if x != nil && x.CardNum != nil {
  449. return *x.CardNum
  450. }
  451. return ""
  452. }
  453. func (x *UserReceiveInfoReq) GetPhoneNum() string {
  454. if x != nil && x.PhoneNum != nil {
  455. return *x.PhoneNum
  456. }
  457. return ""
  458. }
  459. func (x *UserReceiveInfoReq) GetCountryID() uint32 {
  460. if x != nil && x.CountryID != nil {
  461. return *x.CountryID
  462. }
  463. return 0
  464. }
  465. func (x *UserReceiveInfoReq) GetProvinceID() uint32 {
  466. if x != nil && x.ProvinceID != nil {
  467. return *x.ProvinceID
  468. }
  469. return 0
  470. }
  471. func (x *UserReceiveInfoReq) GetCityID() uint32 {
  472. if x != nil && x.CityID != nil {
  473. return *x.CityID
  474. }
  475. return 0
  476. }
  477. func (x *UserReceiveInfoReq) GetDistrictID() uint32 {
  478. if x != nil && x.DistrictID != nil {
  479. return *x.DistrictID
  480. }
  481. return 0
  482. }
  483. func (x *UserReceiveInfoReq) GetAddress() string {
  484. if x != nil && x.Address != nil {
  485. return *x.Address
  486. }
  487. return ""
  488. }
  489. func (x *UserReceiveInfoReq) GetTakeRemark() string {
  490. if x != nil && x.TakeRemark != nil {
  491. return *x.TakeRemark
  492. }
  493. return ""
  494. }
  495. func (x *UserReceiveInfoReq) GetReceiveInfoId() uint64 {
  496. if x != nil && x.ReceiveInfoId != nil {
  497. return *x.ReceiveInfoId
  498. }
  499. return 0
  500. }
  501. // 新增修改收货地址请求响应
  502. type UserReceiveInfoRsp struct {
  503. state protoimpl.MessageState
  504. sizeCache protoimpl.SizeCache
  505. unknownFields protoimpl.UnknownFields
  506. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  507. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  508. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  509. ReceiveInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 响应返回autoid
  510. }
  511. func (x *UserReceiveInfoRsp) Reset() {
  512. *x = UserReceiveInfoRsp{}
  513. if protoimpl.UnsafeEnabled {
  514. mi := &file_mtp2_proto_msgTypes[6]
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. ms.StoreMessageInfo(mi)
  517. }
  518. }
  519. func (x *UserReceiveInfoRsp) String() string {
  520. return protoimpl.X.MessageStringOf(x)
  521. }
  522. func (*UserReceiveInfoRsp) ProtoMessage() {}
  523. func (x *UserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  524. mi := &file_mtp2_proto_msgTypes[6]
  525. if protoimpl.UnsafeEnabled && x != nil {
  526. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  527. if ms.LoadMessageInfo() == nil {
  528. ms.StoreMessageInfo(mi)
  529. }
  530. return ms
  531. }
  532. return mi.MessageOf(x)
  533. }
  534. // Deprecated: Use UserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  535. func (*UserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  536. return file_mtp2_proto_rawDescGZIP(), []int{6}
  537. }
  538. func (x *UserReceiveInfoRsp) GetHeader() *MessageHead {
  539. if x != nil {
  540. return x.Header
  541. }
  542. return nil
  543. }
  544. func (x *UserReceiveInfoRsp) GetRetCode() int32 {
  545. if x != nil && x.RetCode != nil {
  546. return *x.RetCode
  547. }
  548. return 0
  549. }
  550. func (x *UserReceiveInfoRsp) GetRetDesc() string {
  551. if x != nil && x.RetDesc != nil {
  552. return *x.RetDesc
  553. }
  554. return ""
  555. }
  556. func (x *UserReceiveInfoRsp) GetReceiveInfoId() uint64 {
  557. if x != nil && x.ReceiveInfoId != nil {
  558. return *x.ReceiveInfoId
  559. }
  560. return 0
  561. }
  562. // 删除收货地址请求
  563. type DelUserReceiveInfoReq struct {
  564. state protoimpl.MessageState
  565. sizeCache protoimpl.SizeCache
  566. unknownFields protoimpl.UnknownFields
  567. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  568. ReceiveInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiveInfoId" json:"ReceiveInfoId,omitempty"` // 收货地址id
  569. }
  570. func (x *DelUserReceiveInfoReq) Reset() {
  571. *x = DelUserReceiveInfoReq{}
  572. if protoimpl.UnsafeEnabled {
  573. mi := &file_mtp2_proto_msgTypes[7]
  574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  575. ms.StoreMessageInfo(mi)
  576. }
  577. }
  578. func (x *DelUserReceiveInfoReq) String() string {
  579. return protoimpl.X.MessageStringOf(x)
  580. }
  581. func (*DelUserReceiveInfoReq) ProtoMessage() {}
  582. func (x *DelUserReceiveInfoReq) ProtoReflect() protoreflect.Message {
  583. mi := &file_mtp2_proto_msgTypes[7]
  584. if protoimpl.UnsafeEnabled && x != nil {
  585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  586. if ms.LoadMessageInfo() == nil {
  587. ms.StoreMessageInfo(mi)
  588. }
  589. return ms
  590. }
  591. return mi.MessageOf(x)
  592. }
  593. // Deprecated: Use DelUserReceiveInfoReq.ProtoReflect.Descriptor instead.
  594. func (*DelUserReceiveInfoReq) Descriptor() ([]byte, []int) {
  595. return file_mtp2_proto_rawDescGZIP(), []int{7}
  596. }
  597. func (x *DelUserReceiveInfoReq) GetHeader() *MessageHead {
  598. if x != nil {
  599. return x.Header
  600. }
  601. return nil
  602. }
  603. func (x *DelUserReceiveInfoReq) GetReceiveInfoId() uint64 {
  604. if x != nil && x.ReceiveInfoId != nil {
  605. return *x.ReceiveInfoId
  606. }
  607. return 0
  608. }
  609. // 删除收货地址请求响应
  610. type DelUserReceiveInfoRsp struct {
  611. state protoimpl.MessageState
  612. sizeCache protoimpl.SizeCache
  613. unknownFields protoimpl.UnknownFields
  614. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  615. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  616. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  617. }
  618. func (x *DelUserReceiveInfoRsp) Reset() {
  619. *x = DelUserReceiveInfoRsp{}
  620. if protoimpl.UnsafeEnabled {
  621. mi := &file_mtp2_proto_msgTypes[8]
  622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  623. ms.StoreMessageInfo(mi)
  624. }
  625. }
  626. func (x *DelUserReceiveInfoRsp) String() string {
  627. return protoimpl.X.MessageStringOf(x)
  628. }
  629. func (*DelUserReceiveInfoRsp) ProtoMessage() {}
  630. func (x *DelUserReceiveInfoRsp) ProtoReflect() protoreflect.Message {
  631. mi := &file_mtp2_proto_msgTypes[8]
  632. if protoimpl.UnsafeEnabled && x != nil {
  633. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  634. if ms.LoadMessageInfo() == nil {
  635. ms.StoreMessageInfo(mi)
  636. }
  637. return ms
  638. }
  639. return mi.MessageOf(x)
  640. }
  641. // Deprecated: Use DelUserReceiveInfoRsp.ProtoReflect.Descriptor instead.
  642. func (*DelUserReceiveInfoRsp) Descriptor() ([]byte, []int) {
  643. return file_mtp2_proto_rawDescGZIP(), []int{8}
  644. }
  645. func (x *DelUserReceiveInfoRsp) GetHeader() *MessageHead {
  646. if x != nil {
  647. return x.Header
  648. }
  649. return nil
  650. }
  651. func (x *DelUserReceiveInfoRsp) GetRetCode() int32 {
  652. if x != nil && x.RetCode != nil {
  653. return *x.RetCode
  654. }
  655. return 0
  656. }
  657. func (x *DelUserReceiveInfoRsp) GetRetDesc() string {
  658. if x != nil && x.RetDesc != nil {
  659. return *x.RetDesc
  660. }
  661. return ""
  662. }
  663. // 设置默认收货地址请求
  664. type UserReceiveIsDefaultReq struct {
  665. state protoimpl.MessageState
  666. sizeCache protoimpl.SizeCache
  667. unknownFields protoimpl.UnknownFields
  668. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  669. AutoId *uint64 `protobuf:"varint,2,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  670. UserId *uint64 `protobuf:"varint,3,opt,name=UserId" json:"UserId,omitempty"` // 用户ID
  671. }
  672. func (x *UserReceiveIsDefaultReq) Reset() {
  673. *x = UserReceiveIsDefaultReq{}
  674. if protoimpl.UnsafeEnabled {
  675. mi := &file_mtp2_proto_msgTypes[9]
  676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  677. ms.StoreMessageInfo(mi)
  678. }
  679. }
  680. func (x *UserReceiveIsDefaultReq) String() string {
  681. return protoimpl.X.MessageStringOf(x)
  682. }
  683. func (*UserReceiveIsDefaultReq) ProtoMessage() {}
  684. func (x *UserReceiveIsDefaultReq) ProtoReflect() protoreflect.Message {
  685. mi := &file_mtp2_proto_msgTypes[9]
  686. if protoimpl.UnsafeEnabled && x != nil {
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. if ms.LoadMessageInfo() == nil {
  689. ms.StoreMessageInfo(mi)
  690. }
  691. return ms
  692. }
  693. return mi.MessageOf(x)
  694. }
  695. // Deprecated: Use UserReceiveIsDefaultReq.ProtoReflect.Descriptor instead.
  696. func (*UserReceiveIsDefaultReq) Descriptor() ([]byte, []int) {
  697. return file_mtp2_proto_rawDescGZIP(), []int{9}
  698. }
  699. func (x *UserReceiveIsDefaultReq) GetHeader() *MessageHead {
  700. if x != nil {
  701. return x.Header
  702. }
  703. return nil
  704. }
  705. func (x *UserReceiveIsDefaultReq) GetAutoId() uint64 {
  706. if x != nil && x.AutoId != nil {
  707. return *x.AutoId
  708. }
  709. return 0
  710. }
  711. func (x *UserReceiveIsDefaultReq) GetUserId() uint64 {
  712. if x != nil && x.UserId != nil {
  713. return *x.UserId
  714. }
  715. return 0
  716. }
  717. // 设置默认收货地址应答
  718. type UserReceiveIsDefaultRsp struct {
  719. state protoimpl.MessageState
  720. sizeCache protoimpl.SizeCache
  721. unknownFields protoimpl.UnknownFields
  722. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  723. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  724. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  725. AutoId *uint64 `protobuf:"varint,4,opt,name=AutoId" json:"AutoId,omitempty"` // 提货地址ID
  726. }
  727. func (x *UserReceiveIsDefaultRsp) Reset() {
  728. *x = UserReceiveIsDefaultRsp{}
  729. if protoimpl.UnsafeEnabled {
  730. mi := &file_mtp2_proto_msgTypes[10]
  731. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  732. ms.StoreMessageInfo(mi)
  733. }
  734. }
  735. func (x *UserReceiveIsDefaultRsp) String() string {
  736. return protoimpl.X.MessageStringOf(x)
  737. }
  738. func (*UserReceiveIsDefaultRsp) ProtoMessage() {}
  739. func (x *UserReceiveIsDefaultRsp) ProtoReflect() protoreflect.Message {
  740. mi := &file_mtp2_proto_msgTypes[10]
  741. if protoimpl.UnsafeEnabled && x != nil {
  742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  743. if ms.LoadMessageInfo() == nil {
  744. ms.StoreMessageInfo(mi)
  745. }
  746. return ms
  747. }
  748. return mi.MessageOf(x)
  749. }
  750. // Deprecated: Use UserReceiveIsDefaultRsp.ProtoReflect.Descriptor instead.
  751. func (*UserReceiveIsDefaultRsp) Descriptor() ([]byte, []int) {
  752. return file_mtp2_proto_rawDescGZIP(), []int{10}
  753. }
  754. func (x *UserReceiveIsDefaultRsp) GetHeader() *MessageHead {
  755. if x != nil {
  756. return x.Header
  757. }
  758. return nil
  759. }
  760. func (x *UserReceiveIsDefaultRsp) GetRetCode() int32 {
  761. if x != nil && x.RetCode != nil {
  762. return *x.RetCode
  763. }
  764. return 0
  765. }
  766. func (x *UserReceiveIsDefaultRsp) GetRetDesc() string {
  767. if x != nil && x.RetDesc != nil {
  768. return *x.RetDesc
  769. }
  770. return ""
  771. }
  772. func (x *UserReceiveIsDefaultRsp) GetAutoId() uint64 {
  773. if x != nil && x.AutoId != nil {
  774. return *x.AutoId
  775. }
  776. return 0
  777. }
  778. // 新增修改用户发票信息请求
  779. type UserReceiptInfoReq struct {
  780. state protoimpl.MessageState
  781. sizeCache protoimpl.SizeCache
  782. unknownFields protoimpl.UnknownFields
  783. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  784. ClientSerialID *uint64 `protobuf:"varint,2,opt,name=ClientSerialID" json:"ClientSerialID,omitempty"` // 客户端唯一ID
  785. UserID *uint32 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  786. UserName *string `protobuf:"bytes,4,opt,name=UserName" json:"UserName,omitempty"` // 发票抬头姓名
  787. ReceiptType *uint32 `protobuf:"varint,5,opt,name=ReceiptType" json:"ReceiptType,omitempty"` // 发票类型
  788. TaxpayerID *string `protobuf:"bytes,6,opt,name=TaxpayerID" json:"TaxpayerID,omitempty"` // 纳税人识别号
  789. ContactInfo *string `protobuf:"bytes,7,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // 联系方式
  790. ReceiptInfoId *uint64 `protobuf:"varint,8,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 修改时填用户发票信息id
  791. ReceiptBank *string `protobuf:"bytes,9,opt,name=ReceiptBank" json:"ReceiptBank,omitempty"` // 发票开户行[发票类型:企业]
  792. ReceiptAccount *string `protobuf:"bytes,10,opt,name=ReceiptAccount" json:"ReceiptAccount,omitempty"` // 发票帐号[发票类型:企业]
  793. Address *string `protobuf:"bytes,11,opt,name=Address" json:"Address,omitempty"` // 地址[发票类型:企业]
  794. IDNum *string `protobuf:"bytes,12,opt,name=IDNum" json:"IDNum,omitempty"` // 身份证号码[发票类型:个人]
  795. }
  796. func (x *UserReceiptInfoReq) Reset() {
  797. *x = UserReceiptInfoReq{}
  798. if protoimpl.UnsafeEnabled {
  799. mi := &file_mtp2_proto_msgTypes[11]
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. ms.StoreMessageInfo(mi)
  802. }
  803. }
  804. func (x *UserReceiptInfoReq) String() string {
  805. return protoimpl.X.MessageStringOf(x)
  806. }
  807. func (*UserReceiptInfoReq) ProtoMessage() {}
  808. func (x *UserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  809. mi := &file_mtp2_proto_msgTypes[11]
  810. if protoimpl.UnsafeEnabled && x != nil {
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. if ms.LoadMessageInfo() == nil {
  813. ms.StoreMessageInfo(mi)
  814. }
  815. return ms
  816. }
  817. return mi.MessageOf(x)
  818. }
  819. // Deprecated: Use UserReceiptInfoReq.ProtoReflect.Descriptor instead.
  820. func (*UserReceiptInfoReq) Descriptor() ([]byte, []int) {
  821. return file_mtp2_proto_rawDescGZIP(), []int{11}
  822. }
  823. func (x *UserReceiptInfoReq) GetHeader() *MessageHead {
  824. if x != nil {
  825. return x.Header
  826. }
  827. return nil
  828. }
  829. func (x *UserReceiptInfoReq) GetClientSerialID() uint64 {
  830. if x != nil && x.ClientSerialID != nil {
  831. return *x.ClientSerialID
  832. }
  833. return 0
  834. }
  835. func (x *UserReceiptInfoReq) GetUserID() uint32 {
  836. if x != nil && x.UserID != nil {
  837. return *x.UserID
  838. }
  839. return 0
  840. }
  841. func (x *UserReceiptInfoReq) GetUserName() string {
  842. if x != nil && x.UserName != nil {
  843. return *x.UserName
  844. }
  845. return ""
  846. }
  847. func (x *UserReceiptInfoReq) GetReceiptType() uint32 {
  848. if x != nil && x.ReceiptType != nil {
  849. return *x.ReceiptType
  850. }
  851. return 0
  852. }
  853. func (x *UserReceiptInfoReq) GetTaxpayerID() string {
  854. if x != nil && x.TaxpayerID != nil {
  855. return *x.TaxpayerID
  856. }
  857. return ""
  858. }
  859. func (x *UserReceiptInfoReq) GetContactInfo() string {
  860. if x != nil && x.ContactInfo != nil {
  861. return *x.ContactInfo
  862. }
  863. return ""
  864. }
  865. func (x *UserReceiptInfoReq) GetReceiptInfoId() uint64 {
  866. if x != nil && x.ReceiptInfoId != nil {
  867. return *x.ReceiptInfoId
  868. }
  869. return 0
  870. }
  871. func (x *UserReceiptInfoReq) GetReceiptBank() string {
  872. if x != nil && x.ReceiptBank != nil {
  873. return *x.ReceiptBank
  874. }
  875. return ""
  876. }
  877. func (x *UserReceiptInfoReq) GetReceiptAccount() string {
  878. if x != nil && x.ReceiptAccount != nil {
  879. return *x.ReceiptAccount
  880. }
  881. return ""
  882. }
  883. func (x *UserReceiptInfoReq) GetAddress() string {
  884. if x != nil && x.Address != nil {
  885. return *x.Address
  886. }
  887. return ""
  888. }
  889. func (x *UserReceiptInfoReq) GetIDNum() string {
  890. if x != nil && x.IDNum != nil {
  891. return *x.IDNum
  892. }
  893. return ""
  894. }
  895. // 新增修改用户发票信息请求响应
  896. type UserReceiptInfoRsp struct {
  897. state protoimpl.MessageState
  898. sizeCache protoimpl.SizeCache
  899. unknownFields protoimpl.UnknownFields
  900. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  901. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  902. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  903. ReceiptInfoId *uint64 `protobuf:"varint,4,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 响应返回发票信息id
  904. }
  905. func (x *UserReceiptInfoRsp) Reset() {
  906. *x = UserReceiptInfoRsp{}
  907. if protoimpl.UnsafeEnabled {
  908. mi := &file_mtp2_proto_msgTypes[12]
  909. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  910. ms.StoreMessageInfo(mi)
  911. }
  912. }
  913. func (x *UserReceiptInfoRsp) String() string {
  914. return protoimpl.X.MessageStringOf(x)
  915. }
  916. func (*UserReceiptInfoRsp) ProtoMessage() {}
  917. func (x *UserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  918. mi := &file_mtp2_proto_msgTypes[12]
  919. if protoimpl.UnsafeEnabled && x != nil {
  920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  921. if ms.LoadMessageInfo() == nil {
  922. ms.StoreMessageInfo(mi)
  923. }
  924. return ms
  925. }
  926. return mi.MessageOf(x)
  927. }
  928. // Deprecated: Use UserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  929. func (*UserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  930. return file_mtp2_proto_rawDescGZIP(), []int{12}
  931. }
  932. func (x *UserReceiptInfoRsp) GetHeader() *MessageHead {
  933. if x != nil {
  934. return x.Header
  935. }
  936. return nil
  937. }
  938. func (x *UserReceiptInfoRsp) GetRetCode() int32 {
  939. if x != nil && x.RetCode != nil {
  940. return *x.RetCode
  941. }
  942. return 0
  943. }
  944. func (x *UserReceiptInfoRsp) GetRetDesc() string {
  945. if x != nil && x.RetDesc != nil {
  946. return *x.RetDesc
  947. }
  948. return ""
  949. }
  950. func (x *UserReceiptInfoRsp) GetReceiptInfoId() uint64 {
  951. if x != nil && x.ReceiptInfoId != nil {
  952. return *x.ReceiptInfoId
  953. }
  954. return 0
  955. }
  956. // 删除用户发票信息请求
  957. type DelUserReceiptInfoReq struct {
  958. state protoimpl.MessageState
  959. sizeCache protoimpl.SizeCache
  960. unknownFields protoimpl.UnknownFields
  961. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  962. ReceiptInfoId *uint64 `protobuf:"varint,2,opt,name=ReceiptInfoId" json:"ReceiptInfoId,omitempty"` // 删除发票信息id
  963. }
  964. func (x *DelUserReceiptInfoReq) Reset() {
  965. *x = DelUserReceiptInfoReq{}
  966. if protoimpl.UnsafeEnabled {
  967. mi := &file_mtp2_proto_msgTypes[13]
  968. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  969. ms.StoreMessageInfo(mi)
  970. }
  971. }
  972. func (x *DelUserReceiptInfoReq) String() string {
  973. return protoimpl.X.MessageStringOf(x)
  974. }
  975. func (*DelUserReceiptInfoReq) ProtoMessage() {}
  976. func (x *DelUserReceiptInfoReq) ProtoReflect() protoreflect.Message {
  977. mi := &file_mtp2_proto_msgTypes[13]
  978. if protoimpl.UnsafeEnabled && x != nil {
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. if ms.LoadMessageInfo() == nil {
  981. ms.StoreMessageInfo(mi)
  982. }
  983. return ms
  984. }
  985. return mi.MessageOf(x)
  986. }
  987. // Deprecated: Use DelUserReceiptInfoReq.ProtoReflect.Descriptor instead.
  988. func (*DelUserReceiptInfoReq) Descriptor() ([]byte, []int) {
  989. return file_mtp2_proto_rawDescGZIP(), []int{13}
  990. }
  991. func (x *DelUserReceiptInfoReq) GetHeader() *MessageHead {
  992. if x != nil {
  993. return x.Header
  994. }
  995. return nil
  996. }
  997. func (x *DelUserReceiptInfoReq) GetReceiptInfoId() uint64 {
  998. if x != nil && x.ReceiptInfoId != nil {
  999. return *x.ReceiptInfoId
  1000. }
  1001. return 0
  1002. }
  1003. // 删除用户发票信息请求响应
  1004. type DelUserReceiptInfoRsp struct {
  1005. state protoimpl.MessageState
  1006. sizeCache protoimpl.SizeCache
  1007. unknownFields protoimpl.UnknownFields
  1008. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1009. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1010. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1011. }
  1012. func (x *DelUserReceiptInfoRsp) Reset() {
  1013. *x = DelUserReceiptInfoRsp{}
  1014. if protoimpl.UnsafeEnabled {
  1015. mi := &file_mtp2_proto_msgTypes[14]
  1016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1017. ms.StoreMessageInfo(mi)
  1018. }
  1019. }
  1020. func (x *DelUserReceiptInfoRsp) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*DelUserReceiptInfoRsp) ProtoMessage() {}
  1024. func (x *DelUserReceiptInfoRsp) ProtoReflect() protoreflect.Message {
  1025. mi := &file_mtp2_proto_msgTypes[14]
  1026. if protoimpl.UnsafeEnabled && x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use DelUserReceiptInfoRsp.ProtoReflect.Descriptor instead.
  1036. func (*DelUserReceiptInfoRsp) Descriptor() ([]byte, []int) {
  1037. return file_mtp2_proto_rawDescGZIP(), []int{14}
  1038. }
  1039. func (x *DelUserReceiptInfoRsp) GetHeader() *MessageHead {
  1040. if x != nil {
  1041. return x.Header
  1042. }
  1043. return nil
  1044. }
  1045. func (x *DelUserReceiptInfoRsp) GetRetCode() int32 {
  1046. if x != nil && x.RetCode != nil {
  1047. return *x.RetCode
  1048. }
  1049. return 0
  1050. }
  1051. func (x *DelUserReceiptInfoRsp) GetRetDesc() string {
  1052. if x != nil && x.RetDesc != nil {
  1053. return *x.RetDesc
  1054. }
  1055. return ""
  1056. }
  1057. // 签约请求
  1058. type T2BBankSignReq struct {
  1059. state protoimpl.MessageState
  1060. sizeCache protoimpl.SizeCache
  1061. unknownFields protoimpl.UnknownFields
  1062. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1063. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1064. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1065. TradeDate *string `protobuf:"bytes,4,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1066. ExchTicket *string `protobuf:"bytes,5,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1067. AccountCode *string `protobuf:"bytes,6,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1068. AccountName *string `protobuf:"bytes,7,req,name=AccountName" json:"AccountName,omitempty"` // 客户名称
  1069. CusBankID *string `protobuf:"bytes,8,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1070. OperateType *int32 `protobuf:"varint,9,req,name=OperateType" json:"OperateType,omitempty"` // 变更类型[1-增加;2-修改;4-绑卡;
  1071. IsForce *int32 `protobuf:"varint,10,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制[0-否;1-是]强制,只更新中心签约信息,不发送银行。用于银行信息不一致的情况
  1072. Currency *string `protobuf:"bytes,11,opt,name=Currency" json:"Currency,omitempty"` // 币种
  1073. AccountType *int32 `protobuf:"varint,12,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型[1-对私;2-对公]
  1074. OpenBankAccId *string `protobuf:"bytes,13,req,name=OpenBankAccId" json:"OpenBankAccId,omitempty"` // 银行卡行号
  1075. ForceSignBankAccountNo *string `protobuf:"bytes,14,opt,name=ForceSignBankAccountNo" json:"ForceSignBankAccountNo,omitempty"` // 银行账户[强制签约时填写]
  1076. ForceSignBankAccountName *string `protobuf:"bytes,15,opt,name=ForceSignBankAccountName" json:"ForceSignBankAccountName,omitempty"` // 银行账户名称[强制签约时填写]
  1077. BankAccountNo *string `protobuf:"bytes,16,req,name=BankAccountNo" json:"BankAccountNo,omitempty"` // 银行账户
  1078. BankAccountName *string `protobuf:"bytes,17,opt,name=BankAccountName" json:"BankAccountName,omitempty"` // 银行账户名称
  1079. ExBankName *string `protobuf:"bytes,18,req,name=ExBankName" json:"ExBankName,omitempty"` // 开户行名称
  1080. OpenBankNo *string `protobuf:"bytes,19,opt,name=OpenBankNo" json:"OpenBankNo,omitempty"` // 开户支行编号
  1081. OpenBankName *string `protobuf:"bytes,20,opt,name=OpenBankName" json:"OpenBankName,omitempty"` // 开户支行名称
  1082. CertType *string `protobuf:"bytes,21,req,name=CertType" json:"CertType,omitempty"` // 证件类型
  1083. CertID *string `protobuf:"bytes,22,req,name=CertID" json:"CertID,omitempty"` // 证件号码
  1084. BankAccountPWD *string `protobuf:"bytes,23,opt,name=BankAccountPWD" json:"BankAccountPWD,omitempty"` // 银行账户密码
  1085. AgentName *string `protobuf:"bytes,24,opt,name=AgentName" json:"AgentName,omitempty"` // 授权代理人姓名
  1086. AgentCertType *int32 `protobuf:"varint,25,opt,name=AgentCertType" json:"AgentCertType,omitempty"` // 授权代理人证件类型
  1087. AgentCertID *string `protobuf:"bytes,26,opt,name=AgentCertID" json:"AgentCertID,omitempty"` // 授权代理人证件号
  1088. BankAccountType *int32 `protobuf:"varint,27,opt,name=BankAccountType" json:"BankAccountType,omitempty"` // 银行账户类型
  1089. BankProvince *string `protobuf:"bytes,28,opt,name=BankProvince" json:"BankProvince,omitempty"` // 开户银行所在省份
  1090. BankCity *string `protobuf:"bytes,29,opt,name=BankCity" json:"BankCity,omitempty"` // 开户银行所在市
  1091. BankCardType *int32 `protobuf:"varint,30,opt,name=BankCardType" json:"BankCardType,omitempty"` // 银行卡类型
  1092. MobilePhone *string `protobuf:"bytes,31,opt,name=MobilePhone" json:"MobilePhone,omitempty"` // 移动电话
  1093. IdentifyCode *string `protobuf:"bytes,32,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  1094. Email *string `protobuf:"bytes,33,opt,name=email" json:"email,omitempty"` // 电子邮箱
  1095. ExtendInfo *string `protobuf:"bytes,34,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1096. }
  1097. func (x *T2BBankSignReq) Reset() {
  1098. *x = T2BBankSignReq{}
  1099. if protoimpl.UnsafeEnabled {
  1100. mi := &file_mtp2_proto_msgTypes[15]
  1101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1102. ms.StoreMessageInfo(mi)
  1103. }
  1104. }
  1105. func (x *T2BBankSignReq) String() string {
  1106. return protoimpl.X.MessageStringOf(x)
  1107. }
  1108. func (*T2BBankSignReq) ProtoMessage() {}
  1109. func (x *T2BBankSignReq) ProtoReflect() protoreflect.Message {
  1110. mi := &file_mtp2_proto_msgTypes[15]
  1111. if protoimpl.UnsafeEnabled && x != nil {
  1112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1113. if ms.LoadMessageInfo() == nil {
  1114. ms.StoreMessageInfo(mi)
  1115. }
  1116. return ms
  1117. }
  1118. return mi.MessageOf(x)
  1119. }
  1120. // Deprecated: Use T2BBankSignReq.ProtoReflect.Descriptor instead.
  1121. func (*T2BBankSignReq) Descriptor() ([]byte, []int) {
  1122. return file_mtp2_proto_rawDescGZIP(), []int{15}
  1123. }
  1124. func (x *T2BBankSignReq) GetHeader() *MessageHead {
  1125. if x != nil {
  1126. return x.Header
  1127. }
  1128. return nil
  1129. }
  1130. func (x *T2BBankSignReq) GetExtOperatorID() uint64 {
  1131. if x != nil && x.ExtOperatorID != nil {
  1132. return *x.ExtOperatorID
  1133. }
  1134. return 0
  1135. }
  1136. func (x *T2BBankSignReq) GetExchId() string {
  1137. if x != nil && x.ExchId != nil {
  1138. return *x.ExchId
  1139. }
  1140. return ""
  1141. }
  1142. func (x *T2BBankSignReq) GetTradeDate() string {
  1143. if x != nil && x.TradeDate != nil {
  1144. return *x.TradeDate
  1145. }
  1146. return ""
  1147. }
  1148. func (x *T2BBankSignReq) GetExchTicket() string {
  1149. if x != nil && x.ExchTicket != nil {
  1150. return *x.ExchTicket
  1151. }
  1152. return ""
  1153. }
  1154. func (x *T2BBankSignReq) GetAccountCode() string {
  1155. if x != nil && x.AccountCode != nil {
  1156. return *x.AccountCode
  1157. }
  1158. return ""
  1159. }
  1160. func (x *T2BBankSignReq) GetAccountName() string {
  1161. if x != nil && x.AccountName != nil {
  1162. return *x.AccountName
  1163. }
  1164. return ""
  1165. }
  1166. func (x *T2BBankSignReq) GetCusBankID() string {
  1167. if x != nil && x.CusBankID != nil {
  1168. return *x.CusBankID
  1169. }
  1170. return ""
  1171. }
  1172. func (x *T2BBankSignReq) GetOperateType() int32 {
  1173. if x != nil && x.OperateType != nil {
  1174. return *x.OperateType
  1175. }
  1176. return 0
  1177. }
  1178. func (x *T2BBankSignReq) GetIsForce() int32 {
  1179. if x != nil && x.IsForce != nil {
  1180. return *x.IsForce
  1181. }
  1182. return 0
  1183. }
  1184. func (x *T2BBankSignReq) GetCurrency() string {
  1185. if x != nil && x.Currency != nil {
  1186. return *x.Currency
  1187. }
  1188. return ""
  1189. }
  1190. func (x *T2BBankSignReq) GetAccountType() int32 {
  1191. if x != nil && x.AccountType != nil {
  1192. return *x.AccountType
  1193. }
  1194. return 0
  1195. }
  1196. func (x *T2BBankSignReq) GetOpenBankAccId() string {
  1197. if x != nil && x.OpenBankAccId != nil {
  1198. return *x.OpenBankAccId
  1199. }
  1200. return ""
  1201. }
  1202. func (x *T2BBankSignReq) GetForceSignBankAccountNo() string {
  1203. if x != nil && x.ForceSignBankAccountNo != nil {
  1204. return *x.ForceSignBankAccountNo
  1205. }
  1206. return ""
  1207. }
  1208. func (x *T2BBankSignReq) GetForceSignBankAccountName() string {
  1209. if x != nil && x.ForceSignBankAccountName != nil {
  1210. return *x.ForceSignBankAccountName
  1211. }
  1212. return ""
  1213. }
  1214. func (x *T2BBankSignReq) GetBankAccountNo() string {
  1215. if x != nil && x.BankAccountNo != nil {
  1216. return *x.BankAccountNo
  1217. }
  1218. return ""
  1219. }
  1220. func (x *T2BBankSignReq) GetBankAccountName() string {
  1221. if x != nil && x.BankAccountName != nil {
  1222. return *x.BankAccountName
  1223. }
  1224. return ""
  1225. }
  1226. func (x *T2BBankSignReq) GetExBankName() string {
  1227. if x != nil && x.ExBankName != nil {
  1228. return *x.ExBankName
  1229. }
  1230. return ""
  1231. }
  1232. func (x *T2BBankSignReq) GetOpenBankNo() string {
  1233. if x != nil && x.OpenBankNo != nil {
  1234. return *x.OpenBankNo
  1235. }
  1236. return ""
  1237. }
  1238. func (x *T2BBankSignReq) GetOpenBankName() string {
  1239. if x != nil && x.OpenBankName != nil {
  1240. return *x.OpenBankName
  1241. }
  1242. return ""
  1243. }
  1244. func (x *T2BBankSignReq) GetCertType() string {
  1245. if x != nil && x.CertType != nil {
  1246. return *x.CertType
  1247. }
  1248. return ""
  1249. }
  1250. func (x *T2BBankSignReq) GetCertID() string {
  1251. if x != nil && x.CertID != nil {
  1252. return *x.CertID
  1253. }
  1254. return ""
  1255. }
  1256. func (x *T2BBankSignReq) GetBankAccountPWD() string {
  1257. if x != nil && x.BankAccountPWD != nil {
  1258. return *x.BankAccountPWD
  1259. }
  1260. return ""
  1261. }
  1262. func (x *T2BBankSignReq) GetAgentName() string {
  1263. if x != nil && x.AgentName != nil {
  1264. return *x.AgentName
  1265. }
  1266. return ""
  1267. }
  1268. func (x *T2BBankSignReq) GetAgentCertType() int32 {
  1269. if x != nil && x.AgentCertType != nil {
  1270. return *x.AgentCertType
  1271. }
  1272. return 0
  1273. }
  1274. func (x *T2BBankSignReq) GetAgentCertID() string {
  1275. if x != nil && x.AgentCertID != nil {
  1276. return *x.AgentCertID
  1277. }
  1278. return ""
  1279. }
  1280. func (x *T2BBankSignReq) GetBankAccountType() int32 {
  1281. if x != nil && x.BankAccountType != nil {
  1282. return *x.BankAccountType
  1283. }
  1284. return 0
  1285. }
  1286. func (x *T2BBankSignReq) GetBankProvince() string {
  1287. if x != nil && x.BankProvince != nil {
  1288. return *x.BankProvince
  1289. }
  1290. return ""
  1291. }
  1292. func (x *T2BBankSignReq) GetBankCity() string {
  1293. if x != nil && x.BankCity != nil {
  1294. return *x.BankCity
  1295. }
  1296. return ""
  1297. }
  1298. func (x *T2BBankSignReq) GetBankCardType() int32 {
  1299. if x != nil && x.BankCardType != nil {
  1300. return *x.BankCardType
  1301. }
  1302. return 0
  1303. }
  1304. func (x *T2BBankSignReq) GetMobilePhone() string {
  1305. if x != nil && x.MobilePhone != nil {
  1306. return *x.MobilePhone
  1307. }
  1308. return ""
  1309. }
  1310. func (x *T2BBankSignReq) GetIdentifyCode() string {
  1311. if x != nil && x.IdentifyCode != nil {
  1312. return *x.IdentifyCode
  1313. }
  1314. return ""
  1315. }
  1316. func (x *T2BBankSignReq) GetEmail() string {
  1317. if x != nil && x.Email != nil {
  1318. return *x.Email
  1319. }
  1320. return ""
  1321. }
  1322. func (x *T2BBankSignReq) GetExtendInfo() string {
  1323. if x != nil && x.ExtendInfo != nil {
  1324. return *x.ExtendInfo
  1325. }
  1326. return ""
  1327. }
  1328. // 签约应答
  1329. type T2BBankSignRsp struct {
  1330. state protoimpl.MessageState
  1331. sizeCache protoimpl.SizeCache
  1332. unknownFields protoimpl.UnknownFields
  1333. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1334. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1335. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1336. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1337. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1338. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1339. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1340. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1341. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1342. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1343. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1344. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1345. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1346. BankChildAcc *string `protobuf:"bytes,14,opt,name=bankChildAcc" json:"bankChildAcc,omitempty"` // 银行账号
  1347. BankChildAccName *string `protobuf:"bytes,15,opt,name=bankChildAccName" json:"bankChildAccName,omitempty"` // 银行账户名
  1348. BankId *string `protobuf:"bytes,16,opt,name=BankId" json:"BankId,omitempty"` // 银行卡行号
  1349. BankAccNum *string `protobuf:"bytes,17,opt,name=BankAccNum" json:"BankAccNum,omitempty"` // 银行卡号
  1350. BankAccName *string `protobuf:"bytes,18,opt,name=BankAccName" json:"BankAccName,omitempty"` // 银行卡户名
  1351. }
  1352. func (x *T2BBankSignRsp) Reset() {
  1353. *x = T2BBankSignRsp{}
  1354. if protoimpl.UnsafeEnabled {
  1355. mi := &file_mtp2_proto_msgTypes[16]
  1356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1357. ms.StoreMessageInfo(mi)
  1358. }
  1359. }
  1360. func (x *T2BBankSignRsp) String() string {
  1361. return protoimpl.X.MessageStringOf(x)
  1362. }
  1363. func (*T2BBankSignRsp) ProtoMessage() {}
  1364. func (x *T2BBankSignRsp) ProtoReflect() protoreflect.Message {
  1365. mi := &file_mtp2_proto_msgTypes[16]
  1366. if protoimpl.UnsafeEnabled && x != nil {
  1367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1368. if ms.LoadMessageInfo() == nil {
  1369. ms.StoreMessageInfo(mi)
  1370. }
  1371. return ms
  1372. }
  1373. return mi.MessageOf(x)
  1374. }
  1375. // Deprecated: Use T2BBankSignRsp.ProtoReflect.Descriptor instead.
  1376. func (*T2BBankSignRsp) Descriptor() ([]byte, []int) {
  1377. return file_mtp2_proto_rawDescGZIP(), []int{16}
  1378. }
  1379. func (x *T2BBankSignRsp) GetHeader() *MessageHead {
  1380. if x != nil {
  1381. return x.Header
  1382. }
  1383. return nil
  1384. }
  1385. func (x *T2BBankSignRsp) GetRetCode() int32 {
  1386. if x != nil && x.RetCode != nil {
  1387. return *x.RetCode
  1388. }
  1389. return 0
  1390. }
  1391. func (x *T2BBankSignRsp) GetRetDesc() string {
  1392. if x != nil && x.RetDesc != nil {
  1393. return *x.RetDesc
  1394. }
  1395. return ""
  1396. }
  1397. func (x *T2BBankSignRsp) GetExtOperatorID() uint64 {
  1398. if x != nil && x.ExtOperatorID != nil {
  1399. return *x.ExtOperatorID
  1400. }
  1401. return 0
  1402. }
  1403. func (x *T2BBankSignRsp) GetAccountCode() string {
  1404. if x != nil && x.AccountCode != nil {
  1405. return *x.AccountCode
  1406. }
  1407. return ""
  1408. }
  1409. func (x *T2BBankSignRsp) GetNetAddr() string {
  1410. if x != nil && x.NetAddr != nil {
  1411. return *x.NetAddr
  1412. }
  1413. return ""
  1414. }
  1415. func (x *T2BBankSignRsp) GetStatus() int32 {
  1416. if x != nil && x.Status != nil {
  1417. return *x.Status
  1418. }
  1419. return 0
  1420. }
  1421. func (x *T2BBankSignRsp) GetExchTicket() string {
  1422. if x != nil && x.ExchTicket != nil {
  1423. return *x.ExchTicket
  1424. }
  1425. return ""
  1426. }
  1427. func (x *T2BBankSignRsp) GetExchId() string {
  1428. if x != nil && x.ExchId != nil {
  1429. return *x.ExchId
  1430. }
  1431. return ""
  1432. }
  1433. func (x *T2BBankSignRsp) GetTradeDate() string {
  1434. if x != nil && x.TradeDate != nil {
  1435. return *x.TradeDate
  1436. }
  1437. return ""
  1438. }
  1439. func (x *T2BBankSignRsp) GetCenterTicket() string {
  1440. if x != nil && x.CenterTicket != nil {
  1441. return *x.CenterTicket
  1442. }
  1443. return ""
  1444. }
  1445. func (x *T2BBankSignRsp) GetCenterErrCode() string {
  1446. if x != nil && x.CenterErrCode != nil {
  1447. return *x.CenterErrCode
  1448. }
  1449. return ""
  1450. }
  1451. func (x *T2BBankSignRsp) GetCenterErrMsg() string {
  1452. if x != nil && x.CenterErrMsg != nil {
  1453. return *x.CenterErrMsg
  1454. }
  1455. return ""
  1456. }
  1457. func (x *T2BBankSignRsp) GetBankChildAcc() string {
  1458. if x != nil && x.BankChildAcc != nil {
  1459. return *x.BankChildAcc
  1460. }
  1461. return ""
  1462. }
  1463. func (x *T2BBankSignRsp) GetBankChildAccName() string {
  1464. if x != nil && x.BankChildAccName != nil {
  1465. return *x.BankChildAccName
  1466. }
  1467. return ""
  1468. }
  1469. func (x *T2BBankSignRsp) GetBankId() string {
  1470. if x != nil && x.BankId != nil {
  1471. return *x.BankId
  1472. }
  1473. return ""
  1474. }
  1475. func (x *T2BBankSignRsp) GetBankAccNum() string {
  1476. if x != nil && x.BankAccNum != nil {
  1477. return *x.BankAccNum
  1478. }
  1479. return ""
  1480. }
  1481. func (x *T2BBankSignRsp) GetBankAccName() string {
  1482. if x != nil && x.BankAccName != nil {
  1483. return *x.BankAccName
  1484. }
  1485. return ""
  1486. }
  1487. // 解约请求
  1488. type T2BBankCancelSignReq struct {
  1489. state protoimpl.MessageState
  1490. sizeCache protoimpl.SizeCache
  1491. unknownFields protoimpl.UnknownFields
  1492. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1493. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1494. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1495. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1496. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1497. IsForce *int32 `protobuf:"varint,6,req,name=IsForce" json:"IsForce,omitempty"` // 是否强制
  1498. Currency *string `protobuf:"bytes,7,opt,name=Currency" json:"Currency,omitempty"` // 币种
  1499. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1500. ExchTicket *string `protobuf:"bytes,9,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1501. BankChildAcc *string `protobuf:"bytes,10,opt,name=BankChildAcc" json:"BankChildAcc,omitempty"` // 银行子账号
  1502. BankChildAccName *string `protobuf:"bytes,11,opt,name=BankChildAccName" json:"BankChildAccName,omitempty"` // 银行子账号名
  1503. }
  1504. func (x *T2BBankCancelSignReq) Reset() {
  1505. *x = T2BBankCancelSignReq{}
  1506. if protoimpl.UnsafeEnabled {
  1507. mi := &file_mtp2_proto_msgTypes[17]
  1508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1509. ms.StoreMessageInfo(mi)
  1510. }
  1511. }
  1512. func (x *T2BBankCancelSignReq) String() string {
  1513. return protoimpl.X.MessageStringOf(x)
  1514. }
  1515. func (*T2BBankCancelSignReq) ProtoMessage() {}
  1516. func (x *T2BBankCancelSignReq) ProtoReflect() protoreflect.Message {
  1517. mi := &file_mtp2_proto_msgTypes[17]
  1518. if protoimpl.UnsafeEnabled && x != nil {
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. if ms.LoadMessageInfo() == nil {
  1521. ms.StoreMessageInfo(mi)
  1522. }
  1523. return ms
  1524. }
  1525. return mi.MessageOf(x)
  1526. }
  1527. // Deprecated: Use T2BBankCancelSignReq.ProtoReflect.Descriptor instead.
  1528. func (*T2BBankCancelSignReq) Descriptor() ([]byte, []int) {
  1529. return file_mtp2_proto_rawDescGZIP(), []int{17}
  1530. }
  1531. func (x *T2BBankCancelSignReq) GetHeader() *MessageHead {
  1532. if x != nil {
  1533. return x.Header
  1534. }
  1535. return nil
  1536. }
  1537. func (x *T2BBankCancelSignReq) GetExtOperatorID() uint64 {
  1538. if x != nil && x.ExtOperatorID != nil {
  1539. return *x.ExtOperatorID
  1540. }
  1541. return 0
  1542. }
  1543. func (x *T2BBankCancelSignReq) GetExchId() string {
  1544. if x != nil && x.ExchId != nil {
  1545. return *x.ExchId
  1546. }
  1547. return ""
  1548. }
  1549. func (x *T2BBankCancelSignReq) GetAccountCode() string {
  1550. if x != nil && x.AccountCode != nil {
  1551. return *x.AccountCode
  1552. }
  1553. return ""
  1554. }
  1555. func (x *T2BBankCancelSignReq) GetCusBankID() string {
  1556. if x != nil && x.CusBankID != nil {
  1557. return *x.CusBankID
  1558. }
  1559. return ""
  1560. }
  1561. func (x *T2BBankCancelSignReq) GetIsForce() int32 {
  1562. if x != nil && x.IsForce != nil {
  1563. return *x.IsForce
  1564. }
  1565. return 0
  1566. }
  1567. func (x *T2BBankCancelSignReq) GetCurrency() string {
  1568. if x != nil && x.Currency != nil {
  1569. return *x.Currency
  1570. }
  1571. return ""
  1572. }
  1573. func (x *T2BBankCancelSignReq) GetTradeDate() string {
  1574. if x != nil && x.TradeDate != nil {
  1575. return *x.TradeDate
  1576. }
  1577. return ""
  1578. }
  1579. func (x *T2BBankCancelSignReq) GetExchTicket() string {
  1580. if x != nil && x.ExchTicket != nil {
  1581. return *x.ExchTicket
  1582. }
  1583. return ""
  1584. }
  1585. func (x *T2BBankCancelSignReq) GetBankChildAcc() string {
  1586. if x != nil && x.BankChildAcc != nil {
  1587. return *x.BankChildAcc
  1588. }
  1589. return ""
  1590. }
  1591. func (x *T2BBankCancelSignReq) GetBankChildAccName() string {
  1592. if x != nil && x.BankChildAccName != nil {
  1593. return *x.BankChildAccName
  1594. }
  1595. return ""
  1596. }
  1597. // 解约应答
  1598. type T2BBankCancelSignRsp struct {
  1599. state protoimpl.MessageState
  1600. sizeCache protoimpl.SizeCache
  1601. unknownFields protoimpl.UnknownFields
  1602. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1603. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1604. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1605. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1606. AccountCode *string `protobuf:"bytes,5,opt,name=AccountCode" json:"AccountCode,omitempty"` // 账户
  1607. NetAddr *string `protobuf:"bytes,6,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1608. Status *int32 `protobuf:"varint,7,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1609. ExchTicket *string `protobuf:"bytes,8,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1610. ExchId *string `protobuf:"bytes,9,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1611. TradeDate *string `protobuf:"bytes,10,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易所业务日期
  1612. CenterTicket *string `protobuf:"bytes,11,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1613. CenterErrCode *string `protobuf:"bytes,12,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 返回码
  1614. CenterErrMsg *string `protobuf:"bytes,13,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 返回结果说明
  1615. }
  1616. func (x *T2BBankCancelSignRsp) Reset() {
  1617. *x = T2BBankCancelSignRsp{}
  1618. if protoimpl.UnsafeEnabled {
  1619. mi := &file_mtp2_proto_msgTypes[18]
  1620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1621. ms.StoreMessageInfo(mi)
  1622. }
  1623. }
  1624. func (x *T2BBankCancelSignRsp) String() string {
  1625. return protoimpl.X.MessageStringOf(x)
  1626. }
  1627. func (*T2BBankCancelSignRsp) ProtoMessage() {}
  1628. func (x *T2BBankCancelSignRsp) ProtoReflect() protoreflect.Message {
  1629. mi := &file_mtp2_proto_msgTypes[18]
  1630. if protoimpl.UnsafeEnabled && x != nil {
  1631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1632. if ms.LoadMessageInfo() == nil {
  1633. ms.StoreMessageInfo(mi)
  1634. }
  1635. return ms
  1636. }
  1637. return mi.MessageOf(x)
  1638. }
  1639. // Deprecated: Use T2BBankCancelSignRsp.ProtoReflect.Descriptor instead.
  1640. func (*T2BBankCancelSignRsp) Descriptor() ([]byte, []int) {
  1641. return file_mtp2_proto_rawDescGZIP(), []int{18}
  1642. }
  1643. func (x *T2BBankCancelSignRsp) GetHeader() *MessageHead {
  1644. if x != nil {
  1645. return x.Header
  1646. }
  1647. return nil
  1648. }
  1649. func (x *T2BBankCancelSignRsp) GetRetCode() int32 {
  1650. if x != nil && x.RetCode != nil {
  1651. return *x.RetCode
  1652. }
  1653. return 0
  1654. }
  1655. func (x *T2BBankCancelSignRsp) GetRetDesc() string {
  1656. if x != nil && x.RetDesc != nil {
  1657. return *x.RetDesc
  1658. }
  1659. return ""
  1660. }
  1661. func (x *T2BBankCancelSignRsp) GetExtOperatorID() uint64 {
  1662. if x != nil && x.ExtOperatorID != nil {
  1663. return *x.ExtOperatorID
  1664. }
  1665. return 0
  1666. }
  1667. func (x *T2BBankCancelSignRsp) GetAccountCode() string {
  1668. if x != nil && x.AccountCode != nil {
  1669. return *x.AccountCode
  1670. }
  1671. return ""
  1672. }
  1673. func (x *T2BBankCancelSignRsp) GetNetAddr() string {
  1674. if x != nil && x.NetAddr != nil {
  1675. return *x.NetAddr
  1676. }
  1677. return ""
  1678. }
  1679. func (x *T2BBankCancelSignRsp) GetStatus() int32 {
  1680. if x != nil && x.Status != nil {
  1681. return *x.Status
  1682. }
  1683. return 0
  1684. }
  1685. func (x *T2BBankCancelSignRsp) GetExchTicket() string {
  1686. if x != nil && x.ExchTicket != nil {
  1687. return *x.ExchTicket
  1688. }
  1689. return ""
  1690. }
  1691. func (x *T2BBankCancelSignRsp) GetExchId() string {
  1692. if x != nil && x.ExchId != nil {
  1693. return *x.ExchId
  1694. }
  1695. return ""
  1696. }
  1697. func (x *T2BBankCancelSignRsp) GetTradeDate() string {
  1698. if x != nil && x.TradeDate != nil {
  1699. return *x.TradeDate
  1700. }
  1701. return ""
  1702. }
  1703. func (x *T2BBankCancelSignRsp) GetCenterTicket() string {
  1704. if x != nil && x.CenterTicket != nil {
  1705. return *x.CenterTicket
  1706. }
  1707. return ""
  1708. }
  1709. func (x *T2BBankCancelSignRsp) GetCenterErrCode() string {
  1710. if x != nil && x.CenterErrCode != nil {
  1711. return *x.CenterErrCode
  1712. }
  1713. return ""
  1714. }
  1715. func (x *T2BBankCancelSignRsp) GetCenterErrMsg() string {
  1716. if x != nil && x.CenterErrMsg != nil {
  1717. return *x.CenterErrMsg
  1718. }
  1719. return ""
  1720. }
  1721. // 出金请求
  1722. type T2BBankWithdrawReq struct {
  1723. state protoimpl.MessageState
  1724. sizeCache protoimpl.SizeCache
  1725. unknownFields protoimpl.UnknownFields
  1726. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  1727. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1728. ExchId *string `protobuf:"bytes,3,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1729. AccountCode *string `protobuf:"bytes,4,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  1730. CusBankID *string `protobuf:"bytes,5,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  1731. Currency *string `protobuf:"bytes,6,req,name=Currency" json:"Currency,omitempty"` // 币种
  1732. AccountType *int32 `protobuf:"varint,7,opt,name=AccountType" json:"AccountType,omitempty"` // 账户类型
  1733. BankChildAccount *string `protobuf:"bytes,8,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  1734. BankChildAccountName *string `protobuf:"bytes,9,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  1735. OpenCardBankId *string `protobuf:"bytes,10,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  1736. BankAccoutNum *string `protobuf:"bytes,11,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  1737. BankAccoutName *string `protobuf:"bytes,12,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  1738. Amount *float64 `protobuf:"fixed64,13,req,name=Amount" json:"Amount,omitempty"` // 出金金额
  1739. AppDateTime *string `protobuf:"bytes,14,opt,name=AppDateTime" json:"AppDateTime,omitempty"` // 申请日期和时间
  1740. OldTaPWD *string `protobuf:"bytes,15,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  1741. Desc *string `protobuf:"bytes,16,opt,name=Desc" json:"Desc,omitempty"` // 备注
  1742. IdentifyCode *string `protobuf:"bytes,17,opt,name=IdentifyCode" json:"IdentifyCode,omitempty"` // 验证码
  1743. BranchBankName *string `protobuf:"bytes,18,opt,name=BranchBankName" json:"BranchBankName,omitempty"` // 收款支行名称
  1744. ExtendInfo *string `protobuf:"bytes,19,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  1745. Remark *string `protobuf:"bytes,20,opt,name=Remark" json:"Remark,omitempty"` // 备注
  1746. ExchTicket *string `protobuf:"bytes,21,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1747. }
  1748. func (x *T2BBankWithdrawReq) Reset() {
  1749. *x = T2BBankWithdrawReq{}
  1750. if protoimpl.UnsafeEnabled {
  1751. mi := &file_mtp2_proto_msgTypes[19]
  1752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1753. ms.StoreMessageInfo(mi)
  1754. }
  1755. }
  1756. func (x *T2BBankWithdrawReq) String() string {
  1757. return protoimpl.X.MessageStringOf(x)
  1758. }
  1759. func (*T2BBankWithdrawReq) ProtoMessage() {}
  1760. func (x *T2BBankWithdrawReq) ProtoReflect() protoreflect.Message {
  1761. mi := &file_mtp2_proto_msgTypes[19]
  1762. if protoimpl.UnsafeEnabled && x != nil {
  1763. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1764. if ms.LoadMessageInfo() == nil {
  1765. ms.StoreMessageInfo(mi)
  1766. }
  1767. return ms
  1768. }
  1769. return mi.MessageOf(x)
  1770. }
  1771. // Deprecated: Use T2BBankWithdrawReq.ProtoReflect.Descriptor instead.
  1772. func (*T2BBankWithdrawReq) Descriptor() ([]byte, []int) {
  1773. return file_mtp2_proto_rawDescGZIP(), []int{19}
  1774. }
  1775. func (x *T2BBankWithdrawReq) GetHeader() *MessageHead {
  1776. if x != nil {
  1777. return x.Header
  1778. }
  1779. return nil
  1780. }
  1781. func (x *T2BBankWithdrawReq) GetExtOperatorID() uint64 {
  1782. if x != nil && x.ExtOperatorID != nil {
  1783. return *x.ExtOperatorID
  1784. }
  1785. return 0
  1786. }
  1787. func (x *T2BBankWithdrawReq) GetExchId() string {
  1788. if x != nil && x.ExchId != nil {
  1789. return *x.ExchId
  1790. }
  1791. return ""
  1792. }
  1793. func (x *T2BBankWithdrawReq) GetAccountCode() string {
  1794. if x != nil && x.AccountCode != nil {
  1795. return *x.AccountCode
  1796. }
  1797. return ""
  1798. }
  1799. func (x *T2BBankWithdrawReq) GetCusBankID() string {
  1800. if x != nil && x.CusBankID != nil {
  1801. return *x.CusBankID
  1802. }
  1803. return ""
  1804. }
  1805. func (x *T2BBankWithdrawReq) GetCurrency() string {
  1806. if x != nil && x.Currency != nil {
  1807. return *x.Currency
  1808. }
  1809. return ""
  1810. }
  1811. func (x *T2BBankWithdrawReq) GetAccountType() int32 {
  1812. if x != nil && x.AccountType != nil {
  1813. return *x.AccountType
  1814. }
  1815. return 0
  1816. }
  1817. func (x *T2BBankWithdrawReq) GetBankChildAccount() string {
  1818. if x != nil && x.BankChildAccount != nil {
  1819. return *x.BankChildAccount
  1820. }
  1821. return ""
  1822. }
  1823. func (x *T2BBankWithdrawReq) GetBankChildAccountName() string {
  1824. if x != nil && x.BankChildAccountName != nil {
  1825. return *x.BankChildAccountName
  1826. }
  1827. return ""
  1828. }
  1829. func (x *T2BBankWithdrawReq) GetOpenCardBankId() string {
  1830. if x != nil && x.OpenCardBankId != nil {
  1831. return *x.OpenCardBankId
  1832. }
  1833. return ""
  1834. }
  1835. func (x *T2BBankWithdrawReq) GetBankAccoutNum() string {
  1836. if x != nil && x.BankAccoutNum != nil {
  1837. return *x.BankAccoutNum
  1838. }
  1839. return ""
  1840. }
  1841. func (x *T2BBankWithdrawReq) GetBankAccoutName() string {
  1842. if x != nil && x.BankAccoutName != nil {
  1843. return *x.BankAccoutName
  1844. }
  1845. return ""
  1846. }
  1847. func (x *T2BBankWithdrawReq) GetAmount() float64 {
  1848. if x != nil && x.Amount != nil {
  1849. return *x.Amount
  1850. }
  1851. return 0
  1852. }
  1853. func (x *T2BBankWithdrawReq) GetAppDateTime() string {
  1854. if x != nil && x.AppDateTime != nil {
  1855. return *x.AppDateTime
  1856. }
  1857. return ""
  1858. }
  1859. func (x *T2BBankWithdrawReq) GetOldTaPWD() string {
  1860. if x != nil && x.OldTaPWD != nil {
  1861. return *x.OldTaPWD
  1862. }
  1863. return ""
  1864. }
  1865. func (x *T2BBankWithdrawReq) GetDesc() string {
  1866. if x != nil && x.Desc != nil {
  1867. return *x.Desc
  1868. }
  1869. return ""
  1870. }
  1871. func (x *T2BBankWithdrawReq) GetIdentifyCode() string {
  1872. if x != nil && x.IdentifyCode != nil {
  1873. return *x.IdentifyCode
  1874. }
  1875. return ""
  1876. }
  1877. func (x *T2BBankWithdrawReq) GetBranchBankName() string {
  1878. if x != nil && x.BranchBankName != nil {
  1879. return *x.BranchBankName
  1880. }
  1881. return ""
  1882. }
  1883. func (x *T2BBankWithdrawReq) GetExtendInfo() string {
  1884. if x != nil && x.ExtendInfo != nil {
  1885. return *x.ExtendInfo
  1886. }
  1887. return ""
  1888. }
  1889. func (x *T2BBankWithdrawReq) GetRemark() string {
  1890. if x != nil && x.Remark != nil {
  1891. return *x.Remark
  1892. }
  1893. return ""
  1894. }
  1895. func (x *T2BBankWithdrawReq) GetExchTicket() string {
  1896. if x != nil && x.ExchTicket != nil {
  1897. return *x.ExchTicket
  1898. }
  1899. return ""
  1900. }
  1901. // 出金应答
  1902. type T2BBankWithdrawRsp struct {
  1903. state protoimpl.MessageState
  1904. sizeCache protoimpl.SizeCache
  1905. unknownFields protoimpl.UnknownFields
  1906. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  1907. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  1908. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  1909. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  1910. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  1911. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  1912. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  1913. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  1914. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  1915. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  1916. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  1917. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  1918. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  1919. }
  1920. func (x *T2BBankWithdrawRsp) Reset() {
  1921. *x = T2BBankWithdrawRsp{}
  1922. if protoimpl.UnsafeEnabled {
  1923. mi := &file_mtp2_proto_msgTypes[20]
  1924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1925. ms.StoreMessageInfo(mi)
  1926. }
  1927. }
  1928. func (x *T2BBankWithdrawRsp) String() string {
  1929. return protoimpl.X.MessageStringOf(x)
  1930. }
  1931. func (*T2BBankWithdrawRsp) ProtoMessage() {}
  1932. func (x *T2BBankWithdrawRsp) ProtoReflect() protoreflect.Message {
  1933. mi := &file_mtp2_proto_msgTypes[20]
  1934. if protoimpl.UnsafeEnabled && x != nil {
  1935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1936. if ms.LoadMessageInfo() == nil {
  1937. ms.StoreMessageInfo(mi)
  1938. }
  1939. return ms
  1940. }
  1941. return mi.MessageOf(x)
  1942. }
  1943. // Deprecated: Use T2BBankWithdrawRsp.ProtoReflect.Descriptor instead.
  1944. func (*T2BBankWithdrawRsp) Descriptor() ([]byte, []int) {
  1945. return file_mtp2_proto_rawDescGZIP(), []int{20}
  1946. }
  1947. func (x *T2BBankWithdrawRsp) GetHeader() *MessageHead {
  1948. if x != nil {
  1949. return x.Header
  1950. }
  1951. return nil
  1952. }
  1953. func (x *T2BBankWithdrawRsp) GetRetCode() int32 {
  1954. if x != nil && x.RetCode != nil {
  1955. return *x.RetCode
  1956. }
  1957. return 0
  1958. }
  1959. func (x *T2BBankWithdrawRsp) GetRetDesc() string {
  1960. if x != nil && x.RetDesc != nil {
  1961. return *x.RetDesc
  1962. }
  1963. return ""
  1964. }
  1965. func (x *T2BBankWithdrawRsp) GetExtOperatorID() uint64 {
  1966. if x != nil && x.ExtOperatorID != nil {
  1967. return *x.ExtOperatorID
  1968. }
  1969. return 0
  1970. }
  1971. func (x *T2BBankWithdrawRsp) GetStatus() int32 {
  1972. if x != nil && x.Status != nil {
  1973. return *x.Status
  1974. }
  1975. return 0
  1976. }
  1977. func (x *T2BBankWithdrawRsp) GetExchTicket() string {
  1978. if x != nil && x.ExchTicket != nil {
  1979. return *x.ExchTicket
  1980. }
  1981. return ""
  1982. }
  1983. func (x *T2BBankWithdrawRsp) GetExchId() string {
  1984. if x != nil && x.ExchId != nil {
  1985. return *x.ExchId
  1986. }
  1987. return ""
  1988. }
  1989. func (x *T2BBankWithdrawRsp) GetTradeDate() string {
  1990. if x != nil && x.TradeDate != nil {
  1991. return *x.TradeDate
  1992. }
  1993. return ""
  1994. }
  1995. func (x *T2BBankWithdrawRsp) GetCenterTicket() string {
  1996. if x != nil && x.CenterTicket != nil {
  1997. return *x.CenterTicket
  1998. }
  1999. return ""
  2000. }
  2001. func (x *T2BBankWithdrawRsp) GetCenterErrCode() string {
  2002. if x != nil && x.CenterErrCode != nil {
  2003. return *x.CenterErrCode
  2004. }
  2005. return ""
  2006. }
  2007. func (x *T2BBankWithdrawRsp) GetCenterErrMsg() string {
  2008. if x != nil && x.CenterErrMsg != nil {
  2009. return *x.CenterErrMsg
  2010. }
  2011. return ""
  2012. }
  2013. func (x *T2BBankWithdrawRsp) GetCerterCheckDate() string {
  2014. if x != nil && x.CerterCheckDate != nil {
  2015. return *x.CerterCheckDate
  2016. }
  2017. return ""
  2018. }
  2019. func (x *T2BBankWithdrawRsp) GetNetAddr() string {
  2020. if x != nil && x.NetAddr != nil {
  2021. return *x.NetAddr
  2022. }
  2023. return ""
  2024. }
  2025. // 入金请求
  2026. type T2BBankDepositReq struct {
  2027. state protoimpl.MessageState
  2028. sizeCache protoimpl.SizeCache
  2029. unknownFields protoimpl.UnknownFields
  2030. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  2031. ExtOperatorID *uint64 `protobuf:"varint,2,req,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  2032. CusBankID *string `protobuf:"bytes,3,req,name=CusBankID" json:"CusBankID,omitempty"` // 托管银行编号
  2033. ExchId *string `protobuf:"bytes,4,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  2034. TradeDate *string `protobuf:"bytes,5,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  2035. ExchTicket *string `protobuf:"bytes,6,opt,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  2036. AccountCode *string `protobuf:"bytes,7,req,name=AccountCode" json:"AccountCode,omitempty"` // 资金账户
  2037. BusinessNo *string `protobuf:"bytes,8,opt,name=BusinessNo" json:"BusinessNo,omitempty"` // 银行业务编号
  2038. BankChildAccount *string `protobuf:"bytes,9,opt,name=BankChildAccount" json:"BankChildAccount,omitempty"` // 银行子账号
  2039. BankChildAccountName *string `protobuf:"bytes,10,opt,name=BankChildAccountName" json:"BankChildAccountName,omitempty"` // 银行子账号名
  2040. OldTaPWD *string `protobuf:"bytes,11,opt,name=OldTaPWD" json:"OldTaPWD,omitempty"` // 资金密码
  2041. Amount *float64 `protobuf:"fixed64,12,req,name=Amount" json:"Amount,omitempty"` // 金额
  2042. Currency *string `protobuf:"bytes,13,req,name=Currency" json:"Currency,omitempty"` // 币种
  2043. Remark *string `protobuf:"bytes,14,opt,name=Remark" json:"Remark,omitempty"` // 备注
  2044. OpenCardBankId *string `protobuf:"bytes,15,opt,name=OpenCardBankId" json:"OpenCardBankId,omitempty"` // 银行卡行号
  2045. BankAccoutNum *string `protobuf:"bytes,16,opt,name=BankAccoutNum" json:"BankAccoutNum,omitempty"` // 银行卡号
  2046. BankAccoutName *string `protobuf:"bytes,17,opt,name=BankAccoutName" json:"BankAccoutName,omitempty"` // 银行卡户名
  2047. ExtendInfo *string `protobuf:"bytes,18,opt,name=extend_info,json=extendInfo" json:"extend_info,omitempty"` // 扩展信息(JSON串,参考配置要求进行填充)
  2048. }
  2049. func (x *T2BBankDepositReq) Reset() {
  2050. *x = T2BBankDepositReq{}
  2051. if protoimpl.UnsafeEnabled {
  2052. mi := &file_mtp2_proto_msgTypes[21]
  2053. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2054. ms.StoreMessageInfo(mi)
  2055. }
  2056. }
  2057. func (x *T2BBankDepositReq) String() string {
  2058. return protoimpl.X.MessageStringOf(x)
  2059. }
  2060. func (*T2BBankDepositReq) ProtoMessage() {}
  2061. func (x *T2BBankDepositReq) ProtoReflect() protoreflect.Message {
  2062. mi := &file_mtp2_proto_msgTypes[21]
  2063. if protoimpl.UnsafeEnabled && x != nil {
  2064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2065. if ms.LoadMessageInfo() == nil {
  2066. ms.StoreMessageInfo(mi)
  2067. }
  2068. return ms
  2069. }
  2070. return mi.MessageOf(x)
  2071. }
  2072. // Deprecated: Use T2BBankDepositReq.ProtoReflect.Descriptor instead.
  2073. func (*T2BBankDepositReq) Descriptor() ([]byte, []int) {
  2074. return file_mtp2_proto_rawDescGZIP(), []int{21}
  2075. }
  2076. func (x *T2BBankDepositReq) GetHeader() *MessageHead {
  2077. if x != nil {
  2078. return x.Header
  2079. }
  2080. return nil
  2081. }
  2082. func (x *T2BBankDepositReq) GetExtOperatorID() uint64 {
  2083. if x != nil && x.ExtOperatorID != nil {
  2084. return *x.ExtOperatorID
  2085. }
  2086. return 0
  2087. }
  2088. func (x *T2BBankDepositReq) GetCusBankID() string {
  2089. if x != nil && x.CusBankID != nil {
  2090. return *x.CusBankID
  2091. }
  2092. return ""
  2093. }
  2094. func (x *T2BBankDepositReq) GetExchId() string {
  2095. if x != nil && x.ExchId != nil {
  2096. return *x.ExchId
  2097. }
  2098. return ""
  2099. }
  2100. func (x *T2BBankDepositReq) GetTradeDate() string {
  2101. if x != nil && x.TradeDate != nil {
  2102. return *x.TradeDate
  2103. }
  2104. return ""
  2105. }
  2106. func (x *T2BBankDepositReq) GetExchTicket() string {
  2107. if x != nil && x.ExchTicket != nil {
  2108. return *x.ExchTicket
  2109. }
  2110. return ""
  2111. }
  2112. func (x *T2BBankDepositReq) GetAccountCode() string {
  2113. if x != nil && x.AccountCode != nil {
  2114. return *x.AccountCode
  2115. }
  2116. return ""
  2117. }
  2118. func (x *T2BBankDepositReq) GetBusinessNo() string {
  2119. if x != nil && x.BusinessNo != nil {
  2120. return *x.BusinessNo
  2121. }
  2122. return ""
  2123. }
  2124. func (x *T2BBankDepositReq) GetBankChildAccount() string {
  2125. if x != nil && x.BankChildAccount != nil {
  2126. return *x.BankChildAccount
  2127. }
  2128. return ""
  2129. }
  2130. func (x *T2BBankDepositReq) GetBankChildAccountName() string {
  2131. if x != nil && x.BankChildAccountName != nil {
  2132. return *x.BankChildAccountName
  2133. }
  2134. return ""
  2135. }
  2136. func (x *T2BBankDepositReq) GetOldTaPWD() string {
  2137. if x != nil && x.OldTaPWD != nil {
  2138. return *x.OldTaPWD
  2139. }
  2140. return ""
  2141. }
  2142. func (x *T2BBankDepositReq) GetAmount() float64 {
  2143. if x != nil && x.Amount != nil {
  2144. return *x.Amount
  2145. }
  2146. return 0
  2147. }
  2148. func (x *T2BBankDepositReq) GetCurrency() string {
  2149. if x != nil && x.Currency != nil {
  2150. return *x.Currency
  2151. }
  2152. return ""
  2153. }
  2154. func (x *T2BBankDepositReq) GetRemark() string {
  2155. if x != nil && x.Remark != nil {
  2156. return *x.Remark
  2157. }
  2158. return ""
  2159. }
  2160. func (x *T2BBankDepositReq) GetOpenCardBankId() string {
  2161. if x != nil && x.OpenCardBankId != nil {
  2162. return *x.OpenCardBankId
  2163. }
  2164. return ""
  2165. }
  2166. func (x *T2BBankDepositReq) GetBankAccoutNum() string {
  2167. if x != nil && x.BankAccoutNum != nil {
  2168. return *x.BankAccoutNum
  2169. }
  2170. return ""
  2171. }
  2172. func (x *T2BBankDepositReq) GetBankAccoutName() string {
  2173. if x != nil && x.BankAccoutName != nil {
  2174. return *x.BankAccoutName
  2175. }
  2176. return ""
  2177. }
  2178. func (x *T2BBankDepositReq) GetExtendInfo() string {
  2179. if x != nil && x.ExtendInfo != nil {
  2180. return *x.ExtendInfo
  2181. }
  2182. return ""
  2183. }
  2184. // 入金应答
  2185. type T2BBankDepositRsp struct {
  2186. state protoimpl.MessageState
  2187. sizeCache protoimpl.SizeCache
  2188. unknownFields protoimpl.UnknownFields
  2189. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  2190. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  2191. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  2192. ExtOperatorID *uint64 `protobuf:"varint,4,opt,name=ExtOperatorID" json:"ExtOperatorID,omitempty"` // 外部操作流水号
  2193. Status *int32 `protobuf:"varint,5,opt,name=Status" json:"Status,omitempty"` // 状态(0成功,其他数值参考银行服务的错误码)
  2194. ExchTicket *string `protobuf:"bytes,6,req,name=ExchTicket" json:"ExchTicket,omitempty"` // 交易所流水号
  2195. ExchId *string `protobuf:"bytes,7,opt,name=ExchId" json:"ExchId,omitempty"` // 交易所编号
  2196. TradeDate *string `protobuf:"bytes,8,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日
  2197. CenterTicket *string `protobuf:"bytes,9,opt,name=CenterTicket" json:"CenterTicket,omitempty"` // 中心流水号
  2198. CenterErrCode *string `protobuf:"bytes,10,opt,name=CenterErrCode" json:"CenterErrCode,omitempty"` // 中心返回码
  2199. CenterErrMsg *string `protobuf:"bytes,11,opt,name=CenterErrMsg" json:"CenterErrMsg,omitempty"` // 中心返回结果说明
  2200. CerterCheckDate *string `protobuf:"bytes,12,opt,name=CerterCheckDate" json:"CerterCheckDate,omitempty"` // 中心对账日期
  2201. NetAddr *string `protobuf:"bytes,13,opt,name=NetAddr" json:"NetAddr,omitempty"` // 网络地址(当这里有网址时,应自动跳转网页)
  2202. }
  2203. func (x *T2BBankDepositRsp) Reset() {
  2204. *x = T2BBankDepositRsp{}
  2205. if protoimpl.UnsafeEnabled {
  2206. mi := &file_mtp2_proto_msgTypes[22]
  2207. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2208. ms.StoreMessageInfo(mi)
  2209. }
  2210. }
  2211. func (x *T2BBankDepositRsp) String() string {
  2212. return protoimpl.X.MessageStringOf(x)
  2213. }
  2214. func (*T2BBankDepositRsp) ProtoMessage() {}
  2215. func (x *T2BBankDepositRsp) ProtoReflect() protoreflect.Message {
  2216. mi := &file_mtp2_proto_msgTypes[22]
  2217. if protoimpl.UnsafeEnabled && x != nil {
  2218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2219. if ms.LoadMessageInfo() == nil {
  2220. ms.StoreMessageInfo(mi)
  2221. }
  2222. return ms
  2223. }
  2224. return mi.MessageOf(x)
  2225. }
  2226. // Deprecated: Use T2BBankDepositRsp.ProtoReflect.Descriptor instead.
  2227. func (*T2BBankDepositRsp) Descriptor() ([]byte, []int) {
  2228. return file_mtp2_proto_rawDescGZIP(), []int{22}
  2229. }
  2230. func (x *T2BBankDepositRsp) GetHeader() *MessageHead {
  2231. if x != nil {
  2232. return x.Header
  2233. }
  2234. return nil
  2235. }
  2236. func (x *T2BBankDepositRsp) GetRetCode() int32 {
  2237. if x != nil && x.RetCode != nil {
  2238. return *x.RetCode
  2239. }
  2240. return 0
  2241. }
  2242. func (x *T2BBankDepositRsp) GetRetDesc() string {
  2243. if x != nil && x.RetDesc != nil {
  2244. return *x.RetDesc
  2245. }
  2246. return ""
  2247. }
  2248. func (x *T2BBankDepositRsp) GetExtOperatorID() uint64 {
  2249. if x != nil && x.ExtOperatorID != nil {
  2250. return *x.ExtOperatorID
  2251. }
  2252. return 0
  2253. }
  2254. func (x *T2BBankDepositRsp) GetStatus() int32 {
  2255. if x != nil && x.Status != nil {
  2256. return *x.Status
  2257. }
  2258. return 0
  2259. }
  2260. func (x *T2BBankDepositRsp) GetExchTicket() string {
  2261. if x != nil && x.ExchTicket != nil {
  2262. return *x.ExchTicket
  2263. }
  2264. return ""
  2265. }
  2266. func (x *T2BBankDepositRsp) GetExchId() string {
  2267. if x != nil && x.ExchId != nil {
  2268. return *x.ExchId
  2269. }
  2270. return ""
  2271. }
  2272. func (x *T2BBankDepositRsp) GetTradeDate() string {
  2273. if x != nil && x.TradeDate != nil {
  2274. return *x.TradeDate
  2275. }
  2276. return ""
  2277. }
  2278. func (x *T2BBankDepositRsp) GetCenterTicket() string {
  2279. if x != nil && x.CenterTicket != nil {
  2280. return *x.CenterTicket
  2281. }
  2282. return ""
  2283. }
  2284. func (x *T2BBankDepositRsp) GetCenterErrCode() string {
  2285. if x != nil && x.CenterErrCode != nil {
  2286. return *x.CenterErrCode
  2287. }
  2288. return ""
  2289. }
  2290. func (x *T2BBankDepositRsp) GetCenterErrMsg() string {
  2291. if x != nil && x.CenterErrMsg != nil {
  2292. return *x.CenterErrMsg
  2293. }
  2294. return ""
  2295. }
  2296. func (x *T2BBankDepositRsp) GetCerterCheckDate() string {
  2297. if x != nil && x.CerterCheckDate != nil {
  2298. return *x.CerterCheckDate
  2299. }
  2300. return ""
  2301. }
  2302. func (x *T2BBankDepositRsp) GetNetAddr() string {
  2303. if x != nil && x.NetAddr != nil {
  2304. return *x.NetAddr
  2305. }
  2306. return ""
  2307. }
  2308. // 仓单服务公共协议结构
  2309. type WRCommon struct {
  2310. state protoimpl.MessageState
  2311. sizeCache protoimpl.SizeCache
  2312. unknownFields protoimpl.UnknownFields
  2313. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  2314. RelatedOrderID *uint64 `protobuf:"varint,2,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 关联ID
  2315. BusinessID *uint64 `protobuf:"varint,3,opt,name=BusinessID" json:"BusinessID,omitempty"` // 业务ID
  2316. TradeID *uint64 `protobuf:"varint,4,opt,name=TradeID" json:"TradeID,omitempty"` // 成交ID
  2317. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
  2318. }
  2319. func (x *WRCommon) Reset() {
  2320. *x = WRCommon{}
  2321. if protoimpl.UnsafeEnabled {
  2322. mi := &file_mtp2_proto_msgTypes[23]
  2323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2324. ms.StoreMessageInfo(mi)
  2325. }
  2326. }
  2327. func (x *WRCommon) String() string {
  2328. return protoimpl.X.MessageStringOf(x)
  2329. }
  2330. func (*WRCommon) ProtoMessage() {}
  2331. func (x *WRCommon) ProtoReflect() protoreflect.Message {
  2332. mi := &file_mtp2_proto_msgTypes[23]
  2333. if protoimpl.UnsafeEnabled && x != nil {
  2334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2335. if ms.LoadMessageInfo() == nil {
  2336. ms.StoreMessageInfo(mi)
  2337. }
  2338. return ms
  2339. }
  2340. return mi.MessageOf(x)
  2341. }
  2342. // Deprecated: Use WRCommon.ProtoReflect.Descriptor instead.
  2343. func (*WRCommon) Descriptor() ([]byte, []int) {
  2344. return file_mtp2_proto_rawDescGZIP(), []int{23}
  2345. }
  2346. func (x *WRCommon) GetUserID() uint64 {
  2347. if x != nil && x.UserID != nil {
  2348. return *x.UserID
  2349. }
  2350. return 0
  2351. }
  2352. func (x *WRCommon) GetRelatedOrderID() uint64 {
  2353. if x != nil && x.RelatedOrderID != nil {
  2354. return *x.RelatedOrderID
  2355. }
  2356. return 0
  2357. }
  2358. func (x *WRCommon) GetBusinessID() uint64 {
  2359. if x != nil && x.BusinessID != nil {
  2360. return *x.BusinessID
  2361. }
  2362. return 0
  2363. }
  2364. func (x *WRCommon) GetTradeID() uint64 {
  2365. if x != nil && x.TradeID != nil {
  2366. return *x.TradeID
  2367. }
  2368. return 0
  2369. }
  2370. func (x *WRCommon) GetAccountID() uint64 {
  2371. if x != nil && x.AccountID != nil {
  2372. return *x.AccountID
  2373. }
  2374. return 0
  2375. }
  2376. // 仓库申请请求 0 29 141
  2377. type WarehouseApplyReq struct {
  2378. state protoimpl.MessageState
  2379. sizeCache protoimpl.SizeCache
  2380. unknownFields protoimpl.UnknownFields
  2381. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2382. Userid *uint64 `protobuf:"varint,2,opt,name=userid" json:"userid,omitempty"` // uint64 用户ID
  2383. Type *int32 `protobuf:"varint,3,opt,name=type" json:"type,omitempty"` // int32 类型 1 新增 2 修改
  2384. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2385. Warehousecode *string `protobuf:"bytes,5,opt,name=warehousecode" json:"warehousecode,omitempty"` // string 仓库代码
  2386. Warehousename *string `protobuf:"bytes,6,opt,name=warehousename" json:"warehousename,omitempty"` // string 仓库名称
  2387. Warehousetype *int32 `protobuf:"varint,7,opt,name=warehousetype" json:"warehousetype,omitempty"` // int32 仓库类型 - 1 厂库 2 自有库 3 合作库
  2388. Provinceid *uint64 `protobuf:"varint,8,opt,name=provinceid" json:"provinceid,omitempty"` // uint64 省
  2389. Cityid *uint64 `protobuf:"varint,9,opt,name=cityid" json:"cityid,omitempty"` // uint64 市
  2390. Districtid *int32 `protobuf:"varint,10,opt,name=districtid" json:"districtid,omitempty"` // int32 区
  2391. Address *string `protobuf:"bytes,11,opt,name=address" json:"address,omitempty"` // string 详细地址
  2392. Contactname *string `protobuf:"bytes,12,opt,name=contactname" json:"contactname,omitempty"` // string 联系人
  2393. Contactnum *string `protobuf:"bytes,13,opt,name=contactnum" json:"contactnum,omitempty"` // string 联系电话
  2394. }
  2395. func (x *WarehouseApplyReq) Reset() {
  2396. *x = WarehouseApplyReq{}
  2397. if protoimpl.UnsafeEnabled {
  2398. mi := &file_mtp2_proto_msgTypes[24]
  2399. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2400. ms.StoreMessageInfo(mi)
  2401. }
  2402. }
  2403. func (x *WarehouseApplyReq) String() string {
  2404. return protoimpl.X.MessageStringOf(x)
  2405. }
  2406. func (*WarehouseApplyReq) ProtoMessage() {}
  2407. func (x *WarehouseApplyReq) ProtoReflect() protoreflect.Message {
  2408. mi := &file_mtp2_proto_msgTypes[24]
  2409. if protoimpl.UnsafeEnabled && x != nil {
  2410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2411. if ms.LoadMessageInfo() == nil {
  2412. ms.StoreMessageInfo(mi)
  2413. }
  2414. return ms
  2415. }
  2416. return mi.MessageOf(x)
  2417. }
  2418. // Deprecated: Use WarehouseApplyReq.ProtoReflect.Descriptor instead.
  2419. func (*WarehouseApplyReq) Descriptor() ([]byte, []int) {
  2420. return file_mtp2_proto_rawDescGZIP(), []int{24}
  2421. }
  2422. func (x *WarehouseApplyReq) GetHeader() *MessageHead {
  2423. if x != nil {
  2424. return x.Header
  2425. }
  2426. return nil
  2427. }
  2428. func (x *WarehouseApplyReq) GetUserid() uint64 {
  2429. if x != nil && x.Userid != nil {
  2430. return *x.Userid
  2431. }
  2432. return 0
  2433. }
  2434. func (x *WarehouseApplyReq) GetType() int32 {
  2435. if x != nil && x.Type != nil {
  2436. return *x.Type
  2437. }
  2438. return 0
  2439. }
  2440. func (x *WarehouseApplyReq) GetWarehouseid() uint64 {
  2441. if x != nil && x.Warehouseid != nil {
  2442. return *x.Warehouseid
  2443. }
  2444. return 0
  2445. }
  2446. func (x *WarehouseApplyReq) GetWarehousecode() string {
  2447. if x != nil && x.Warehousecode != nil {
  2448. return *x.Warehousecode
  2449. }
  2450. return ""
  2451. }
  2452. func (x *WarehouseApplyReq) GetWarehousename() string {
  2453. if x != nil && x.Warehousename != nil {
  2454. return *x.Warehousename
  2455. }
  2456. return ""
  2457. }
  2458. func (x *WarehouseApplyReq) GetWarehousetype() int32 {
  2459. if x != nil && x.Warehousetype != nil {
  2460. return *x.Warehousetype
  2461. }
  2462. return 0
  2463. }
  2464. func (x *WarehouseApplyReq) GetProvinceid() uint64 {
  2465. if x != nil && x.Provinceid != nil {
  2466. return *x.Provinceid
  2467. }
  2468. return 0
  2469. }
  2470. func (x *WarehouseApplyReq) GetCityid() uint64 {
  2471. if x != nil && x.Cityid != nil {
  2472. return *x.Cityid
  2473. }
  2474. return 0
  2475. }
  2476. func (x *WarehouseApplyReq) GetDistrictid() int32 {
  2477. if x != nil && x.Districtid != nil {
  2478. return *x.Districtid
  2479. }
  2480. return 0
  2481. }
  2482. func (x *WarehouseApplyReq) GetAddress() string {
  2483. if x != nil && x.Address != nil {
  2484. return *x.Address
  2485. }
  2486. return ""
  2487. }
  2488. func (x *WarehouseApplyReq) GetContactname() string {
  2489. if x != nil && x.Contactname != nil {
  2490. return *x.Contactname
  2491. }
  2492. return ""
  2493. }
  2494. func (x *WarehouseApplyReq) GetContactnum() string {
  2495. if x != nil && x.Contactnum != nil {
  2496. return *x.Contactnum
  2497. }
  2498. return ""
  2499. }
  2500. // 仓库申请请求 0 29 142
  2501. type WarehouseApplyRsp struct {
  2502. state protoimpl.MessageState
  2503. sizeCache protoimpl.SizeCache
  2504. unknownFields protoimpl.UnknownFields
  2505. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2506. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2507. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2508. Warehouseid *uint64 `protobuf:"varint,4,opt,name=warehouseid" json:"warehouseid,omitempty"` // uint64 仓库ID
  2509. }
  2510. func (x *WarehouseApplyRsp) Reset() {
  2511. *x = WarehouseApplyRsp{}
  2512. if protoimpl.UnsafeEnabled {
  2513. mi := &file_mtp2_proto_msgTypes[25]
  2514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2515. ms.StoreMessageInfo(mi)
  2516. }
  2517. }
  2518. func (x *WarehouseApplyRsp) String() string {
  2519. return protoimpl.X.MessageStringOf(x)
  2520. }
  2521. func (*WarehouseApplyRsp) ProtoMessage() {}
  2522. func (x *WarehouseApplyRsp) ProtoReflect() protoreflect.Message {
  2523. mi := &file_mtp2_proto_msgTypes[25]
  2524. if protoimpl.UnsafeEnabled && x != nil {
  2525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2526. if ms.LoadMessageInfo() == nil {
  2527. ms.StoreMessageInfo(mi)
  2528. }
  2529. return ms
  2530. }
  2531. return mi.MessageOf(x)
  2532. }
  2533. // Deprecated: Use WarehouseApplyRsp.ProtoReflect.Descriptor instead.
  2534. func (*WarehouseApplyRsp) Descriptor() ([]byte, []int) {
  2535. return file_mtp2_proto_rawDescGZIP(), []int{25}
  2536. }
  2537. func (x *WarehouseApplyRsp) GetHeader() *MessageHead {
  2538. if x != nil {
  2539. return x.Header
  2540. }
  2541. return nil
  2542. }
  2543. func (x *WarehouseApplyRsp) GetRetCode() int32 {
  2544. if x != nil && x.RetCode != nil {
  2545. return *x.RetCode
  2546. }
  2547. return 0
  2548. }
  2549. func (x *WarehouseApplyRsp) GetRetDesc() string {
  2550. if x != nil && x.RetDesc != nil {
  2551. return *x.RetDesc
  2552. }
  2553. return ""
  2554. }
  2555. func (x *WarehouseApplyRsp) GetWarehouseid() uint64 {
  2556. if x != nil && x.Warehouseid != nil {
  2557. return *x.Warehouseid
  2558. }
  2559. return 0
  2560. }
  2561. // 违约申请请求 0 20 9
  2562. type PerformanceContractedApplyReq struct {
  2563. state protoimpl.MessageState
  2564. sizeCache protoimpl.SizeCache
  2565. unknownFields protoimpl.UnknownFields
  2566. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2567. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2568. BreachType *uint32 `protobuf:"varint,3,opt,name=BreachType" json:"BreachType,omitempty"` // uint32 违约方类型
  2569. Applicant *uint64 `protobuf:"varint,4,opt,name=Applicant" json:"Applicant,omitempty"` // uint64 违约申请人
  2570. ApplyRemark *string `protobuf:"bytes,5,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // string 申请备注
  2571. Attachment *string `protobuf:"bytes,6,opt,name=Attachment" json:"Attachment,omitempty"` // string 附件
  2572. }
  2573. func (x *PerformanceContractedApplyReq) Reset() {
  2574. *x = PerformanceContractedApplyReq{}
  2575. if protoimpl.UnsafeEnabled {
  2576. mi := &file_mtp2_proto_msgTypes[26]
  2577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2578. ms.StoreMessageInfo(mi)
  2579. }
  2580. }
  2581. func (x *PerformanceContractedApplyReq) String() string {
  2582. return protoimpl.X.MessageStringOf(x)
  2583. }
  2584. func (*PerformanceContractedApplyReq) ProtoMessage() {}
  2585. func (x *PerformanceContractedApplyReq) ProtoReflect() protoreflect.Message {
  2586. mi := &file_mtp2_proto_msgTypes[26]
  2587. if protoimpl.UnsafeEnabled && x != nil {
  2588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2589. if ms.LoadMessageInfo() == nil {
  2590. ms.StoreMessageInfo(mi)
  2591. }
  2592. return ms
  2593. }
  2594. return mi.MessageOf(x)
  2595. }
  2596. // Deprecated: Use PerformanceContractedApplyReq.ProtoReflect.Descriptor instead.
  2597. func (*PerformanceContractedApplyReq) Descriptor() ([]byte, []int) {
  2598. return file_mtp2_proto_rawDescGZIP(), []int{26}
  2599. }
  2600. func (x *PerformanceContractedApplyReq) GetHeader() *MessageHead {
  2601. if x != nil {
  2602. return x.Header
  2603. }
  2604. return nil
  2605. }
  2606. func (x *PerformanceContractedApplyReq) GetPerformancePlanID() uint64 {
  2607. if x != nil && x.PerformancePlanID != nil {
  2608. return *x.PerformancePlanID
  2609. }
  2610. return 0
  2611. }
  2612. func (x *PerformanceContractedApplyReq) GetBreachType() uint32 {
  2613. if x != nil && x.BreachType != nil {
  2614. return *x.BreachType
  2615. }
  2616. return 0
  2617. }
  2618. func (x *PerformanceContractedApplyReq) GetApplicant() uint64 {
  2619. if x != nil && x.Applicant != nil {
  2620. return *x.Applicant
  2621. }
  2622. return 0
  2623. }
  2624. func (x *PerformanceContractedApplyReq) GetApplyRemark() string {
  2625. if x != nil && x.ApplyRemark != nil {
  2626. return *x.ApplyRemark
  2627. }
  2628. return ""
  2629. }
  2630. func (x *PerformanceContractedApplyReq) GetAttachment() string {
  2631. if x != nil && x.Attachment != nil {
  2632. return *x.Attachment
  2633. }
  2634. return ""
  2635. }
  2636. // 违约申请应答 0 20 10
  2637. type PerformanceContractedApplyRsp struct {
  2638. state protoimpl.MessageState
  2639. sizeCache protoimpl.SizeCache
  2640. unknownFields protoimpl.UnknownFields
  2641. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2642. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2643. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2644. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2645. }
  2646. func (x *PerformanceContractedApplyRsp) Reset() {
  2647. *x = PerformanceContractedApplyRsp{}
  2648. if protoimpl.UnsafeEnabled {
  2649. mi := &file_mtp2_proto_msgTypes[27]
  2650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2651. ms.StoreMessageInfo(mi)
  2652. }
  2653. }
  2654. func (x *PerformanceContractedApplyRsp) String() string {
  2655. return protoimpl.X.MessageStringOf(x)
  2656. }
  2657. func (*PerformanceContractedApplyRsp) ProtoMessage() {}
  2658. func (x *PerformanceContractedApplyRsp) ProtoReflect() protoreflect.Message {
  2659. mi := &file_mtp2_proto_msgTypes[27]
  2660. if protoimpl.UnsafeEnabled && x != nil {
  2661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2662. if ms.LoadMessageInfo() == nil {
  2663. ms.StoreMessageInfo(mi)
  2664. }
  2665. return ms
  2666. }
  2667. return mi.MessageOf(x)
  2668. }
  2669. // Deprecated: Use PerformanceContractedApplyRsp.ProtoReflect.Descriptor instead.
  2670. func (*PerformanceContractedApplyRsp) Descriptor() ([]byte, []int) {
  2671. return file_mtp2_proto_rawDescGZIP(), []int{27}
  2672. }
  2673. func (x *PerformanceContractedApplyRsp) GetHeader() *MessageHead {
  2674. if x != nil {
  2675. return x.Header
  2676. }
  2677. return nil
  2678. }
  2679. func (x *PerformanceContractedApplyRsp) GetRetCode() int32 {
  2680. if x != nil && x.RetCode != nil {
  2681. return *x.RetCode
  2682. }
  2683. return 0
  2684. }
  2685. func (x *PerformanceContractedApplyRsp) GetRetDesc() string {
  2686. if x != nil && x.RetDesc != nil {
  2687. return *x.RetDesc
  2688. }
  2689. return ""
  2690. }
  2691. func (x *PerformanceContractedApplyRsp) GetPerformancePlanID() uint64 {
  2692. if x != nil && x.PerformancePlanID != nil {
  2693. return *x.PerformancePlanID
  2694. }
  2695. return 0
  2696. }
  2697. // 延期申请请求 0 20 5
  2698. type PerformanceDelayApplyReq struct {
  2699. state protoimpl.MessageState
  2700. sizeCache protoimpl.SizeCache
  2701. unknownFields protoimpl.UnknownFields
  2702. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2703. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2704. Delaydays *uint32 `protobuf:"varint,3,opt,name=delaydays" json:"delaydays,omitempty"` // uint32 申请延期天数
  2705. Applicant *uint64 `protobuf:"varint,4,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2706. Applyremark *string `protobuf:"bytes,5,opt,name=applyremark" json:"applyremark,omitempty"` // string 申请备注
  2707. }
  2708. func (x *PerformanceDelayApplyReq) Reset() {
  2709. *x = PerformanceDelayApplyReq{}
  2710. if protoimpl.UnsafeEnabled {
  2711. mi := &file_mtp2_proto_msgTypes[28]
  2712. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2713. ms.StoreMessageInfo(mi)
  2714. }
  2715. }
  2716. func (x *PerformanceDelayApplyReq) String() string {
  2717. return protoimpl.X.MessageStringOf(x)
  2718. }
  2719. func (*PerformanceDelayApplyReq) ProtoMessage() {}
  2720. func (x *PerformanceDelayApplyReq) ProtoReflect() protoreflect.Message {
  2721. mi := &file_mtp2_proto_msgTypes[28]
  2722. if protoimpl.UnsafeEnabled && x != nil {
  2723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2724. if ms.LoadMessageInfo() == nil {
  2725. ms.StoreMessageInfo(mi)
  2726. }
  2727. return ms
  2728. }
  2729. return mi.MessageOf(x)
  2730. }
  2731. // Deprecated: Use PerformanceDelayApplyReq.ProtoReflect.Descriptor instead.
  2732. func (*PerformanceDelayApplyReq) Descriptor() ([]byte, []int) {
  2733. return file_mtp2_proto_rawDescGZIP(), []int{28}
  2734. }
  2735. func (x *PerformanceDelayApplyReq) GetHeader() *MessageHead {
  2736. if x != nil {
  2737. return x.Header
  2738. }
  2739. return nil
  2740. }
  2741. func (x *PerformanceDelayApplyReq) GetPerformancePlanStepID() uint64 {
  2742. if x != nil && x.PerformancePlanStepID != nil {
  2743. return *x.PerformancePlanStepID
  2744. }
  2745. return 0
  2746. }
  2747. func (x *PerformanceDelayApplyReq) GetDelaydays() uint32 {
  2748. if x != nil && x.Delaydays != nil {
  2749. return *x.Delaydays
  2750. }
  2751. return 0
  2752. }
  2753. func (x *PerformanceDelayApplyReq) GetApplicant() uint64 {
  2754. if x != nil && x.Applicant != nil {
  2755. return *x.Applicant
  2756. }
  2757. return 0
  2758. }
  2759. func (x *PerformanceDelayApplyReq) GetApplyremark() string {
  2760. if x != nil && x.Applyremark != nil {
  2761. return *x.Applyremark
  2762. }
  2763. return ""
  2764. }
  2765. // 延期申请应答 0 20 6
  2766. type PerformanceDelayApplyRsp struct {
  2767. state protoimpl.MessageState
  2768. sizeCache protoimpl.SizeCache
  2769. unknownFields protoimpl.UnknownFields
  2770. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2771. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2772. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2773. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2774. Applicant *uint64 `protobuf:"varint,5,opt,name=applicant" json:"applicant,omitempty"` // uint64 申请人
  2775. }
  2776. func (x *PerformanceDelayApplyRsp) Reset() {
  2777. *x = PerformanceDelayApplyRsp{}
  2778. if protoimpl.UnsafeEnabled {
  2779. mi := &file_mtp2_proto_msgTypes[29]
  2780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2781. ms.StoreMessageInfo(mi)
  2782. }
  2783. }
  2784. func (x *PerformanceDelayApplyRsp) String() string {
  2785. return protoimpl.X.MessageStringOf(x)
  2786. }
  2787. func (*PerformanceDelayApplyRsp) ProtoMessage() {}
  2788. func (x *PerformanceDelayApplyRsp) ProtoReflect() protoreflect.Message {
  2789. mi := &file_mtp2_proto_msgTypes[29]
  2790. if protoimpl.UnsafeEnabled && x != nil {
  2791. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2792. if ms.LoadMessageInfo() == nil {
  2793. ms.StoreMessageInfo(mi)
  2794. }
  2795. return ms
  2796. }
  2797. return mi.MessageOf(x)
  2798. }
  2799. // Deprecated: Use PerformanceDelayApplyRsp.ProtoReflect.Descriptor instead.
  2800. func (*PerformanceDelayApplyRsp) Descriptor() ([]byte, []int) {
  2801. return file_mtp2_proto_rawDescGZIP(), []int{29}
  2802. }
  2803. func (x *PerformanceDelayApplyRsp) GetHeader() *MessageHead {
  2804. if x != nil {
  2805. return x.Header
  2806. }
  2807. return nil
  2808. }
  2809. func (x *PerformanceDelayApplyRsp) GetRetCode() int32 {
  2810. if x != nil && x.RetCode != nil {
  2811. return *x.RetCode
  2812. }
  2813. return 0
  2814. }
  2815. func (x *PerformanceDelayApplyRsp) GetRetDesc() string {
  2816. if x != nil && x.RetDesc != nil {
  2817. return *x.RetDesc
  2818. }
  2819. return ""
  2820. }
  2821. func (x *PerformanceDelayApplyRsp) GetPerformancePlanStepID() uint64 {
  2822. if x != nil && x.PerformancePlanStepID != nil {
  2823. return *x.PerformancePlanStepID
  2824. }
  2825. return 0
  2826. }
  2827. func (x *PerformanceDelayApplyRsp) GetApplicant() uint64 {
  2828. if x != nil && x.Applicant != nil {
  2829. return *x.Applicant
  2830. }
  2831. return 0
  2832. }
  2833. // 履约手动确认请求 0 20 3
  2834. type PerformanceManualConfirmReq struct {
  2835. state protoimpl.MessageState
  2836. sizeCache protoimpl.SizeCache
  2837. unknownFields protoimpl.UnknownFields
  2838. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2839. PerformancePlanStepID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2840. OverShortAmount *float64 `protobuf:"fixed64,3,opt,name=OverShortAmount" json:"OverShortAmount,omitempty"` // double 溢短金额
  2841. PerformanceExecuteSide *uint32 `protobuf:"varint,4,opt,name=PerformanceExecuteSide" json:"PerformanceExecuteSide,omitempty"` // uint32 履约步骤执行方 1买方 2 卖方
  2842. StepRemark *string `protobuf:"bytes,5,opt,name=StepRemark" json:"StepRemark,omitempty"` // string 步骤备注
  2843. OverShortQty *float64 `protobuf:"fixed64,6,opt,name=OverShortQty" json:"OverShortQty,omitempty"` // double 溢短数量
  2844. ExpressFee *float64 `protobuf:"fixed64,7,opt,name=ExpressFee" json:"ExpressFee,omitempty"` // double 运费金额
  2845. }
  2846. func (x *PerformanceManualConfirmReq) Reset() {
  2847. *x = PerformanceManualConfirmReq{}
  2848. if protoimpl.UnsafeEnabled {
  2849. mi := &file_mtp2_proto_msgTypes[30]
  2850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2851. ms.StoreMessageInfo(mi)
  2852. }
  2853. }
  2854. func (x *PerformanceManualConfirmReq) String() string {
  2855. return protoimpl.X.MessageStringOf(x)
  2856. }
  2857. func (*PerformanceManualConfirmReq) ProtoMessage() {}
  2858. func (x *PerformanceManualConfirmReq) ProtoReflect() protoreflect.Message {
  2859. mi := &file_mtp2_proto_msgTypes[30]
  2860. if protoimpl.UnsafeEnabled && x != nil {
  2861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2862. if ms.LoadMessageInfo() == nil {
  2863. ms.StoreMessageInfo(mi)
  2864. }
  2865. return ms
  2866. }
  2867. return mi.MessageOf(x)
  2868. }
  2869. // Deprecated: Use PerformanceManualConfirmReq.ProtoReflect.Descriptor instead.
  2870. func (*PerformanceManualConfirmReq) Descriptor() ([]byte, []int) {
  2871. return file_mtp2_proto_rawDescGZIP(), []int{30}
  2872. }
  2873. func (x *PerformanceManualConfirmReq) GetHeader() *MessageHead {
  2874. if x != nil {
  2875. return x.Header
  2876. }
  2877. return nil
  2878. }
  2879. func (x *PerformanceManualConfirmReq) GetPerformancePlanStepID() uint64 {
  2880. if x != nil && x.PerformancePlanStepID != nil {
  2881. return *x.PerformancePlanStepID
  2882. }
  2883. return 0
  2884. }
  2885. func (x *PerformanceManualConfirmReq) GetOverShortAmount() float64 {
  2886. if x != nil && x.OverShortAmount != nil {
  2887. return *x.OverShortAmount
  2888. }
  2889. return 0
  2890. }
  2891. func (x *PerformanceManualConfirmReq) GetPerformanceExecuteSide() uint32 {
  2892. if x != nil && x.PerformanceExecuteSide != nil {
  2893. return *x.PerformanceExecuteSide
  2894. }
  2895. return 0
  2896. }
  2897. func (x *PerformanceManualConfirmReq) GetStepRemark() string {
  2898. if x != nil && x.StepRemark != nil {
  2899. return *x.StepRemark
  2900. }
  2901. return ""
  2902. }
  2903. func (x *PerformanceManualConfirmReq) GetOverShortQty() float64 {
  2904. if x != nil && x.OverShortQty != nil {
  2905. return *x.OverShortQty
  2906. }
  2907. return 0
  2908. }
  2909. func (x *PerformanceManualConfirmReq) GetExpressFee() float64 {
  2910. if x != nil && x.ExpressFee != nil {
  2911. return *x.ExpressFee
  2912. }
  2913. return 0
  2914. }
  2915. // 履约手动确认应答 0 20 4
  2916. type PerformanceManualConfirmRsp struct {
  2917. state protoimpl.MessageState
  2918. sizeCache protoimpl.SizeCache
  2919. unknownFields protoimpl.UnknownFields
  2920. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  2921. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  2922. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  2923. PerformancePlanStepID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanStepID" json:"PerformancePlanStepID,omitempty"` // uint64 履约计划步骤ID
  2924. }
  2925. func (x *PerformanceManualConfirmRsp) Reset() {
  2926. *x = PerformanceManualConfirmRsp{}
  2927. if protoimpl.UnsafeEnabled {
  2928. mi := &file_mtp2_proto_msgTypes[31]
  2929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2930. ms.StoreMessageInfo(mi)
  2931. }
  2932. }
  2933. func (x *PerformanceManualConfirmRsp) String() string {
  2934. return protoimpl.X.MessageStringOf(x)
  2935. }
  2936. func (*PerformanceManualConfirmRsp) ProtoMessage() {}
  2937. func (x *PerformanceManualConfirmRsp) ProtoReflect() protoreflect.Message {
  2938. mi := &file_mtp2_proto_msgTypes[31]
  2939. if protoimpl.UnsafeEnabled && x != nil {
  2940. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2941. if ms.LoadMessageInfo() == nil {
  2942. ms.StoreMessageInfo(mi)
  2943. }
  2944. return ms
  2945. }
  2946. return mi.MessageOf(x)
  2947. }
  2948. // Deprecated: Use PerformanceManualConfirmRsp.ProtoReflect.Descriptor instead.
  2949. func (*PerformanceManualConfirmRsp) Descriptor() ([]byte, []int) {
  2950. return file_mtp2_proto_rawDescGZIP(), []int{31}
  2951. }
  2952. func (x *PerformanceManualConfirmRsp) GetHeader() *MessageHead {
  2953. if x != nil {
  2954. return x.Header
  2955. }
  2956. return nil
  2957. }
  2958. func (x *PerformanceManualConfirmRsp) GetRetCode() int32 {
  2959. if x != nil && x.RetCode != nil {
  2960. return *x.RetCode
  2961. }
  2962. return 0
  2963. }
  2964. func (x *PerformanceManualConfirmRsp) GetRetDesc() string {
  2965. if x != nil && x.RetDesc != nil {
  2966. return *x.RetDesc
  2967. }
  2968. return ""
  2969. }
  2970. func (x *PerformanceManualConfirmRsp) GetPerformancePlanStepID() uint64 {
  2971. if x != nil && x.PerformancePlanStepID != nil {
  2972. return *x.PerformancePlanStepID
  2973. }
  2974. return 0
  2975. }
  2976. // 履约修改联络信息请求 0 20 15
  2977. type PerformanceModifyContactReq struct {
  2978. state protoimpl.MessageState
  2979. sizeCache protoimpl.SizeCache
  2980. unknownFields protoimpl.UnknownFields
  2981. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead
  2982. PerformancePlanID *uint64 `protobuf:"varint,2,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  2983. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  2984. ContactInfo *string `protobuf:"bytes,4,opt,name=ContactInfo" json:"ContactInfo,omitempty"` // string 联络信息
  2985. }
  2986. func (x *PerformanceModifyContactReq) Reset() {
  2987. *x = PerformanceModifyContactReq{}
  2988. if protoimpl.UnsafeEnabled {
  2989. mi := &file_mtp2_proto_msgTypes[32]
  2990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2991. ms.StoreMessageInfo(mi)
  2992. }
  2993. }
  2994. func (x *PerformanceModifyContactReq) String() string {
  2995. return protoimpl.X.MessageStringOf(x)
  2996. }
  2997. func (*PerformanceModifyContactReq) ProtoMessage() {}
  2998. func (x *PerformanceModifyContactReq) ProtoReflect() protoreflect.Message {
  2999. mi := &file_mtp2_proto_msgTypes[32]
  3000. if protoimpl.UnsafeEnabled && x != nil {
  3001. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3002. if ms.LoadMessageInfo() == nil {
  3003. ms.StoreMessageInfo(mi)
  3004. }
  3005. return ms
  3006. }
  3007. return mi.MessageOf(x)
  3008. }
  3009. // Deprecated: Use PerformanceModifyContactReq.ProtoReflect.Descriptor instead.
  3010. func (*PerformanceModifyContactReq) Descriptor() ([]byte, []int) {
  3011. return file_mtp2_proto_rawDescGZIP(), []int{32}
  3012. }
  3013. func (x *PerformanceModifyContactReq) GetHeader() *MessageHead {
  3014. if x != nil {
  3015. return x.Header
  3016. }
  3017. return nil
  3018. }
  3019. func (x *PerformanceModifyContactReq) GetPerformancePlanID() uint64 {
  3020. if x != nil && x.PerformancePlanID != nil {
  3021. return *x.PerformancePlanID
  3022. }
  3023. return 0
  3024. }
  3025. func (x *PerformanceModifyContactReq) GetAccountID() uint64 {
  3026. if x != nil && x.AccountID != nil {
  3027. return *x.AccountID
  3028. }
  3029. return 0
  3030. }
  3031. func (x *PerformanceModifyContactReq) GetContactInfo() string {
  3032. if x != nil && x.ContactInfo != nil {
  3033. return *x.ContactInfo
  3034. }
  3035. return ""
  3036. }
  3037. // 履约修改联络信息回应 0 20 16
  3038. type PerformanceModifyContactRsp struct {
  3039. state protoimpl.MessageState
  3040. sizeCache protoimpl.SizeCache
  3041. unknownFields protoimpl.UnknownFields
  3042. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // MessageHead 消息头
  3043. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // int32 返回码
  3044. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // string 描述信息
  3045. PerformancePlanID *uint64 `protobuf:"varint,4,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  3046. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // uint64 账号
  3047. }
  3048. func (x *PerformanceModifyContactRsp) Reset() {
  3049. *x = PerformanceModifyContactRsp{}
  3050. if protoimpl.UnsafeEnabled {
  3051. mi := &file_mtp2_proto_msgTypes[33]
  3052. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3053. ms.StoreMessageInfo(mi)
  3054. }
  3055. }
  3056. func (x *PerformanceModifyContactRsp) String() string {
  3057. return protoimpl.X.MessageStringOf(x)
  3058. }
  3059. func (*PerformanceModifyContactRsp) ProtoMessage() {}
  3060. func (x *PerformanceModifyContactRsp) ProtoReflect() protoreflect.Message {
  3061. mi := &file_mtp2_proto_msgTypes[33]
  3062. if protoimpl.UnsafeEnabled && x != nil {
  3063. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3064. if ms.LoadMessageInfo() == nil {
  3065. ms.StoreMessageInfo(mi)
  3066. }
  3067. return ms
  3068. }
  3069. return mi.MessageOf(x)
  3070. }
  3071. // Deprecated: Use PerformanceModifyContactRsp.ProtoReflect.Descriptor instead.
  3072. func (*PerformanceModifyContactRsp) Descriptor() ([]byte, []int) {
  3073. return file_mtp2_proto_rawDescGZIP(), []int{33}
  3074. }
  3075. func (x *PerformanceModifyContactRsp) GetHeader() *MessageHead {
  3076. if x != nil {
  3077. return x.Header
  3078. }
  3079. return nil
  3080. }
  3081. func (x *PerformanceModifyContactRsp) GetRetCode() int32 {
  3082. if x != nil && x.RetCode != nil {
  3083. return *x.RetCode
  3084. }
  3085. return 0
  3086. }
  3087. func (x *PerformanceModifyContactRsp) GetRetDesc() string {
  3088. if x != nil && x.RetDesc != nil {
  3089. return *x.RetDesc
  3090. }
  3091. return ""
  3092. }
  3093. func (x *PerformanceModifyContactRsp) GetPerformancePlanID() uint64 {
  3094. if x != nil && x.PerformancePlanID != nil {
  3095. return *x.PerformancePlanID
  3096. }
  3097. return 0
  3098. }
  3099. func (x *PerformanceModifyContactRsp) GetAccountID() uint64 {
  3100. if x != nil && x.AccountID != nil {
  3101. return *x.AccountID
  3102. }
  3103. return 0
  3104. }
  3105. // 新增钻石商品接口响应
  3106. type AddZSGoodsRsp struct {
  3107. state protoimpl.MessageState
  3108. sizeCache protoimpl.SizeCache
  3109. unknownFields protoimpl.UnknownFields
  3110. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3111. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3112. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3113. UserID *uint64 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3114. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3115. WRStandardID *uint64 `protobuf:"varint,6,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID
  3116. WRFactorTypeID *uint64 `protobuf:"varint,7,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID
  3117. LadingBillID *uint64 `protobuf:"varint,8,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID
  3118. SubNum *uint32 `protobuf:"varint,9,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号
  3119. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3120. }
  3121. func (x *AddZSGoodsRsp) Reset() {
  3122. *x = AddZSGoodsRsp{}
  3123. if protoimpl.UnsafeEnabled {
  3124. mi := &file_mtp2_proto_msgTypes[34]
  3125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3126. ms.StoreMessageInfo(mi)
  3127. }
  3128. }
  3129. func (x *AddZSGoodsRsp) String() string {
  3130. return protoimpl.X.MessageStringOf(x)
  3131. }
  3132. func (*AddZSGoodsRsp) ProtoMessage() {}
  3133. func (x *AddZSGoodsRsp) ProtoReflect() protoreflect.Message {
  3134. mi := &file_mtp2_proto_msgTypes[34]
  3135. if protoimpl.UnsafeEnabled && x != nil {
  3136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3137. if ms.LoadMessageInfo() == nil {
  3138. ms.StoreMessageInfo(mi)
  3139. }
  3140. return ms
  3141. }
  3142. return mi.MessageOf(x)
  3143. }
  3144. // Deprecated: Use AddZSGoodsRsp.ProtoReflect.Descriptor instead.
  3145. func (*AddZSGoodsRsp) Descriptor() ([]byte, []int) {
  3146. return file_mtp2_proto_rawDescGZIP(), []int{34}
  3147. }
  3148. func (x *AddZSGoodsRsp) GetHeader() *MessageHead {
  3149. if x != nil {
  3150. return x.Header
  3151. }
  3152. return nil
  3153. }
  3154. func (x *AddZSGoodsRsp) GetRetCode() int32 {
  3155. if x != nil && x.RetCode != nil {
  3156. return *x.RetCode
  3157. }
  3158. return 0
  3159. }
  3160. func (x *AddZSGoodsRsp) GetRetDesc() string {
  3161. if x != nil && x.RetDesc != nil {
  3162. return *x.RetDesc
  3163. }
  3164. return ""
  3165. }
  3166. func (x *AddZSGoodsRsp) GetUserID() uint64 {
  3167. if x != nil && x.UserID != nil {
  3168. return *x.UserID
  3169. }
  3170. return 0
  3171. }
  3172. func (x *AddZSGoodsRsp) GetAccountID() uint64 {
  3173. if x != nil && x.AccountID != nil {
  3174. return *x.AccountID
  3175. }
  3176. return 0
  3177. }
  3178. func (x *AddZSGoodsRsp) GetWRStandardID() uint64 {
  3179. if x != nil && x.WRStandardID != nil {
  3180. return *x.WRStandardID
  3181. }
  3182. return 0
  3183. }
  3184. func (x *AddZSGoodsRsp) GetWRFactorTypeID() uint64 {
  3185. if x != nil && x.WRFactorTypeID != nil {
  3186. return *x.WRFactorTypeID
  3187. }
  3188. return 0
  3189. }
  3190. func (x *AddZSGoodsRsp) GetLadingBillID() uint64 {
  3191. if x != nil && x.LadingBillID != nil {
  3192. return *x.LadingBillID
  3193. }
  3194. return 0
  3195. }
  3196. func (x *AddZSGoodsRsp) GetSubNum() uint32 {
  3197. if x != nil && x.SubNum != nil {
  3198. return *x.SubNum
  3199. }
  3200. return 0
  3201. }
  3202. func (x *AddZSGoodsRsp) GetClientSerialNo() string {
  3203. if x != nil && x.ClientSerialNo != nil {
  3204. return *x.ClientSerialNo
  3205. }
  3206. return ""
  3207. }
  3208. // 商品收藏操作接口请求
  3209. type GoodsFavoriteOperateReq struct {
  3210. state protoimpl.MessageState
  3211. sizeCache protoimpl.SizeCache
  3212. unknownFields protoimpl.UnknownFields
  3213. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3214. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3215. WRTradeOrderID *uint64 `protobuf:"varint,3,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID,必填
  3216. OperateType *uint32 `protobuf:"varint,4,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:添加2:删除,必填
  3217. ClientType *uint32 `protobuf:"varint,5,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3218. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3219. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3220. }
  3221. func (x *GoodsFavoriteOperateReq) Reset() {
  3222. *x = GoodsFavoriteOperateReq{}
  3223. if protoimpl.UnsafeEnabled {
  3224. mi := &file_mtp2_proto_msgTypes[35]
  3225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3226. ms.StoreMessageInfo(mi)
  3227. }
  3228. }
  3229. func (x *GoodsFavoriteOperateReq) String() string {
  3230. return protoimpl.X.MessageStringOf(x)
  3231. }
  3232. func (*GoodsFavoriteOperateReq) ProtoMessage() {}
  3233. func (x *GoodsFavoriteOperateReq) ProtoReflect() protoreflect.Message {
  3234. mi := &file_mtp2_proto_msgTypes[35]
  3235. if protoimpl.UnsafeEnabled && x != nil {
  3236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3237. if ms.LoadMessageInfo() == nil {
  3238. ms.StoreMessageInfo(mi)
  3239. }
  3240. return ms
  3241. }
  3242. return mi.MessageOf(x)
  3243. }
  3244. // Deprecated: Use GoodsFavoriteOperateReq.ProtoReflect.Descriptor instead.
  3245. func (*GoodsFavoriteOperateReq) Descriptor() ([]byte, []int) {
  3246. return file_mtp2_proto_rawDescGZIP(), []int{35}
  3247. }
  3248. func (x *GoodsFavoriteOperateReq) GetHeader() *MessageHead {
  3249. if x != nil {
  3250. return x.Header
  3251. }
  3252. return nil
  3253. }
  3254. func (x *GoodsFavoriteOperateReq) GetUserID() uint32 {
  3255. if x != nil && x.UserID != nil {
  3256. return *x.UserID
  3257. }
  3258. return 0
  3259. }
  3260. func (x *GoodsFavoriteOperateReq) GetWRTradeOrderID() uint64 {
  3261. if x != nil && x.WRTradeOrderID != nil {
  3262. return *x.WRTradeOrderID
  3263. }
  3264. return 0
  3265. }
  3266. func (x *GoodsFavoriteOperateReq) GetOperateType() uint32 {
  3267. if x != nil && x.OperateType != nil {
  3268. return *x.OperateType
  3269. }
  3270. return 0
  3271. }
  3272. func (x *GoodsFavoriteOperateReq) GetClientType() uint32 {
  3273. if x != nil && x.ClientType != nil {
  3274. return *x.ClientType
  3275. }
  3276. return 0
  3277. }
  3278. func (x *GoodsFavoriteOperateReq) GetMarketID() uint32 {
  3279. if x != nil && x.MarketID != nil {
  3280. return *x.MarketID
  3281. }
  3282. return 0
  3283. }
  3284. func (x *GoodsFavoriteOperateReq) GetClientSerialNo() string {
  3285. if x != nil && x.ClientSerialNo != nil {
  3286. return *x.ClientSerialNo
  3287. }
  3288. return ""
  3289. }
  3290. // 商品收藏操作接口应答
  3291. type GoodsFavoriteOperateRsp struct {
  3292. state protoimpl.MessageState
  3293. sizeCache protoimpl.SizeCache
  3294. unknownFields protoimpl.UnknownFields
  3295. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3296. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3297. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3298. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3299. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  3300. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3301. }
  3302. func (x *GoodsFavoriteOperateRsp) Reset() {
  3303. *x = GoodsFavoriteOperateRsp{}
  3304. if protoimpl.UnsafeEnabled {
  3305. mi := &file_mtp2_proto_msgTypes[36]
  3306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3307. ms.StoreMessageInfo(mi)
  3308. }
  3309. }
  3310. func (x *GoodsFavoriteOperateRsp) String() string {
  3311. return protoimpl.X.MessageStringOf(x)
  3312. }
  3313. func (*GoodsFavoriteOperateRsp) ProtoMessage() {}
  3314. func (x *GoodsFavoriteOperateRsp) ProtoReflect() protoreflect.Message {
  3315. mi := &file_mtp2_proto_msgTypes[36]
  3316. if protoimpl.UnsafeEnabled && x != nil {
  3317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3318. if ms.LoadMessageInfo() == nil {
  3319. ms.StoreMessageInfo(mi)
  3320. }
  3321. return ms
  3322. }
  3323. return mi.MessageOf(x)
  3324. }
  3325. // Deprecated: Use GoodsFavoriteOperateRsp.ProtoReflect.Descriptor instead.
  3326. func (*GoodsFavoriteOperateRsp) Descriptor() ([]byte, []int) {
  3327. return file_mtp2_proto_rawDescGZIP(), []int{36}
  3328. }
  3329. func (x *GoodsFavoriteOperateRsp) GetHeader() *MessageHead {
  3330. if x != nil {
  3331. return x.Header
  3332. }
  3333. return nil
  3334. }
  3335. func (x *GoodsFavoriteOperateRsp) GetRetCode() int32 {
  3336. if x != nil && x.RetCode != nil {
  3337. return *x.RetCode
  3338. }
  3339. return 0
  3340. }
  3341. func (x *GoodsFavoriteOperateRsp) GetRetDesc() string {
  3342. if x != nil && x.RetDesc != nil {
  3343. return *x.RetDesc
  3344. }
  3345. return ""
  3346. }
  3347. func (x *GoodsFavoriteOperateRsp) GetUserID() uint32 {
  3348. if x != nil && x.UserID != nil {
  3349. return *x.UserID
  3350. }
  3351. return 0
  3352. }
  3353. func (x *GoodsFavoriteOperateRsp) GetWRTradeOrderID() uint64 {
  3354. if x != nil && x.WRTradeOrderID != nil {
  3355. return *x.WRTradeOrderID
  3356. }
  3357. return 0
  3358. }
  3359. func (x *GoodsFavoriteOperateRsp) GetClientSerialNo() string {
  3360. if x != nil && x.ClientSerialNo != nil {
  3361. return *x.ClientSerialNo
  3362. }
  3363. return ""
  3364. }
  3365. // 钻石买挂牌属性
  3366. type GZBuyOrderDetailExInfo struct {
  3367. state protoimpl.MessageState
  3368. sizeCache protoimpl.SizeCache
  3369. unknownFields protoimpl.UnknownFields
  3370. UserID *uint64 `protobuf:"varint,1,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3371. AccountID *uint64 `protobuf:"varint,2,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  3372. ZSCategory *uint32 `protobuf:"varint,3,opt,name=ZSCategory" json:"ZSCategory,omitempty"` // 钻石分类
  3373. ZSCurrencyType []uint32 `protobuf:"varint,4,rep,name=ZSCurrencyType" json:"ZSCurrencyType,omitempty"` // 货币类型
  3374. ZSShapeType []uint32 `protobuf:"varint,5,rep,name=ZSShapeType" json:"ZSShapeType,omitempty"` // 形状
  3375. ZSColorType []uint32 `protobuf:"varint,6,rep,name=ZSColorType" json:"ZSColorType,omitempty"` // 颜色
  3376. ZSClarityType []uint32 `protobuf:"varint,7,rep,name=ZSClarityType" json:"ZSClarityType,omitempty"` // 净度
  3377. ZSCutType []uint32 `protobuf:"varint,8,rep,name=ZSCutType" json:"ZSCutType,omitempty"` // 切工
  3378. ZSSymmetryType []uint32 `protobuf:"varint,9,rep,name=ZSSymmetryType" json:"ZSSymmetryType,omitempty"` // 对称度
  3379. ZSPolishType []uint32 `protobuf:"varint,10,rep,name=ZSPolishType" json:"ZSPolishType,omitempty"` // 抛光度
  3380. ZSFluorescenceType []uint32 `protobuf:"varint,11,rep,name=ZSFluorescenceType" json:"ZSFluorescenceType,omitempty"` // 荧光
  3381. Size []float64 `protobuf:"fixed64,12,rep,name=Size" json:"Size,omitempty"` // 尺寸
  3382. ZSCrystalType []uint32 `protobuf:"varint,13,rep,name=ZSCrystalType" json:"ZSCrystalType,omitempty"` // 晶型
  3383. Origin *string `protobuf:"bytes,14,opt,name=Origin" json:"Origin,omitempty"` // 原产地
  3384. ZSStyleType []uint32 `protobuf:"varint,15,rep,name=ZSStyleType" json:"ZSStyleType,omitempty"` // 款式
  3385. ZSCZColor1Type []uint32 `protobuf:"varint,16,rep,name=ZSCZColor1Type" json:"ZSCZColor1Type,omitempty"` // 彩钻颜色1
  3386. ZSCZColor2Type []uint32 `protobuf:"varint,17,rep,name=ZSCZColor2Type" json:"ZSCZColor2Type,omitempty"` // 彩钻颜色2
  3387. ZSCZColor3Type []uint32 `protobuf:"varint,18,rep,name=ZSCZColor3Type" json:"ZSCZColor3Type,omitempty"` // 彩钻颜色3
  3388. Remark *string `protobuf:"bytes,19,opt,name=Remark" json:"Remark,omitempty"` // 备注
  3389. WarehouseIDs []uint64 `protobuf:"varint,20,rep,name=WarehouseIDs" json:"WarehouseIDs,omitempty"` // 仓库ID
  3390. }
  3391. func (x *GZBuyOrderDetailExInfo) Reset() {
  3392. *x = GZBuyOrderDetailExInfo{}
  3393. if protoimpl.UnsafeEnabled {
  3394. mi := &file_mtp2_proto_msgTypes[37]
  3395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3396. ms.StoreMessageInfo(mi)
  3397. }
  3398. }
  3399. func (x *GZBuyOrderDetailExInfo) String() string {
  3400. return protoimpl.X.MessageStringOf(x)
  3401. }
  3402. func (*GZBuyOrderDetailExInfo) ProtoMessage() {}
  3403. func (x *GZBuyOrderDetailExInfo) ProtoReflect() protoreflect.Message {
  3404. mi := &file_mtp2_proto_msgTypes[37]
  3405. if protoimpl.UnsafeEnabled && x != nil {
  3406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3407. if ms.LoadMessageInfo() == nil {
  3408. ms.StoreMessageInfo(mi)
  3409. }
  3410. return ms
  3411. }
  3412. return mi.MessageOf(x)
  3413. }
  3414. // Deprecated: Use GZBuyOrderDetailExInfo.ProtoReflect.Descriptor instead.
  3415. func (*GZBuyOrderDetailExInfo) Descriptor() ([]byte, []int) {
  3416. return file_mtp2_proto_rawDescGZIP(), []int{37}
  3417. }
  3418. func (x *GZBuyOrderDetailExInfo) GetUserID() uint64 {
  3419. if x != nil && x.UserID != nil {
  3420. return *x.UserID
  3421. }
  3422. return 0
  3423. }
  3424. func (x *GZBuyOrderDetailExInfo) GetAccountID() uint64 {
  3425. if x != nil && x.AccountID != nil {
  3426. return *x.AccountID
  3427. }
  3428. return 0
  3429. }
  3430. func (x *GZBuyOrderDetailExInfo) GetZSCategory() uint32 {
  3431. if x != nil && x.ZSCategory != nil {
  3432. return *x.ZSCategory
  3433. }
  3434. return 0
  3435. }
  3436. func (x *GZBuyOrderDetailExInfo) GetZSCurrencyType() []uint32 {
  3437. if x != nil {
  3438. return x.ZSCurrencyType
  3439. }
  3440. return nil
  3441. }
  3442. func (x *GZBuyOrderDetailExInfo) GetZSShapeType() []uint32 {
  3443. if x != nil {
  3444. return x.ZSShapeType
  3445. }
  3446. return nil
  3447. }
  3448. func (x *GZBuyOrderDetailExInfo) GetZSColorType() []uint32 {
  3449. if x != nil {
  3450. return x.ZSColorType
  3451. }
  3452. return nil
  3453. }
  3454. func (x *GZBuyOrderDetailExInfo) GetZSClarityType() []uint32 {
  3455. if x != nil {
  3456. return x.ZSClarityType
  3457. }
  3458. return nil
  3459. }
  3460. func (x *GZBuyOrderDetailExInfo) GetZSCutType() []uint32 {
  3461. if x != nil {
  3462. return x.ZSCutType
  3463. }
  3464. return nil
  3465. }
  3466. func (x *GZBuyOrderDetailExInfo) GetZSSymmetryType() []uint32 {
  3467. if x != nil {
  3468. return x.ZSSymmetryType
  3469. }
  3470. return nil
  3471. }
  3472. func (x *GZBuyOrderDetailExInfo) GetZSPolishType() []uint32 {
  3473. if x != nil {
  3474. return x.ZSPolishType
  3475. }
  3476. return nil
  3477. }
  3478. func (x *GZBuyOrderDetailExInfo) GetZSFluorescenceType() []uint32 {
  3479. if x != nil {
  3480. return x.ZSFluorescenceType
  3481. }
  3482. return nil
  3483. }
  3484. func (x *GZBuyOrderDetailExInfo) GetSize() []float64 {
  3485. if x != nil {
  3486. return x.Size
  3487. }
  3488. return nil
  3489. }
  3490. func (x *GZBuyOrderDetailExInfo) GetZSCrystalType() []uint32 {
  3491. if x != nil {
  3492. return x.ZSCrystalType
  3493. }
  3494. return nil
  3495. }
  3496. func (x *GZBuyOrderDetailExInfo) GetOrigin() string {
  3497. if x != nil && x.Origin != nil {
  3498. return *x.Origin
  3499. }
  3500. return ""
  3501. }
  3502. func (x *GZBuyOrderDetailExInfo) GetZSStyleType() []uint32 {
  3503. if x != nil {
  3504. return x.ZSStyleType
  3505. }
  3506. return nil
  3507. }
  3508. func (x *GZBuyOrderDetailExInfo) GetZSCZColor1Type() []uint32 {
  3509. if x != nil {
  3510. return x.ZSCZColor1Type
  3511. }
  3512. return nil
  3513. }
  3514. func (x *GZBuyOrderDetailExInfo) GetZSCZColor2Type() []uint32 {
  3515. if x != nil {
  3516. return x.ZSCZColor2Type
  3517. }
  3518. return nil
  3519. }
  3520. func (x *GZBuyOrderDetailExInfo) GetZSCZColor3Type() []uint32 {
  3521. if x != nil {
  3522. return x.ZSCZColor3Type
  3523. }
  3524. return nil
  3525. }
  3526. func (x *GZBuyOrderDetailExInfo) GetRemark() string {
  3527. if x != nil && x.Remark != nil {
  3528. return *x.Remark
  3529. }
  3530. return ""
  3531. }
  3532. func (x *GZBuyOrderDetailExInfo) GetWarehouseIDs() []uint64 {
  3533. if x != nil {
  3534. return x.WarehouseIDs
  3535. }
  3536. return nil
  3537. }
  3538. // 钻石买挂牌接口请求
  3539. type ZSBuyOrderListingReq struct {
  3540. state protoimpl.MessageState
  3541. sizeCache protoimpl.SizeCache
  3542. unknownFields protoimpl.UnknownFields
  3543. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3544. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3545. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3546. GZ_BuyOrderDetailExInfo *GZBuyOrderDetailExInfo `protobuf:"bytes,4,opt,name=GZ_BuyOrderDetailExInfo,json=GZBuyOrderDetailExInfo" json:"GZ_BuyOrderDetailExInfo,omitempty"` // 钻石买挂牌属性
  3547. PerformanceTemplateID *int64 `protobuf:"varint,5,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3548. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3549. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3550. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3551. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3552. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3553. }
  3554. func (x *ZSBuyOrderListingReq) Reset() {
  3555. *x = ZSBuyOrderListingReq{}
  3556. if protoimpl.UnsafeEnabled {
  3557. mi := &file_mtp2_proto_msgTypes[38]
  3558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3559. ms.StoreMessageInfo(mi)
  3560. }
  3561. }
  3562. func (x *ZSBuyOrderListingReq) String() string {
  3563. return protoimpl.X.MessageStringOf(x)
  3564. }
  3565. func (*ZSBuyOrderListingReq) ProtoMessage() {}
  3566. func (x *ZSBuyOrderListingReq) ProtoReflect() protoreflect.Message {
  3567. mi := &file_mtp2_proto_msgTypes[38]
  3568. if protoimpl.UnsafeEnabled && x != nil {
  3569. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3570. if ms.LoadMessageInfo() == nil {
  3571. ms.StoreMessageInfo(mi)
  3572. }
  3573. return ms
  3574. }
  3575. return mi.MessageOf(x)
  3576. }
  3577. // Deprecated: Use ZSBuyOrderListingReq.ProtoReflect.Descriptor instead.
  3578. func (*ZSBuyOrderListingReq) Descriptor() ([]byte, []int) {
  3579. return file_mtp2_proto_rawDescGZIP(), []int{38}
  3580. }
  3581. func (x *ZSBuyOrderListingReq) GetHeader() *MessageHead {
  3582. if x != nil {
  3583. return x.Header
  3584. }
  3585. return nil
  3586. }
  3587. func (x *ZSBuyOrderListingReq) GetUserID() uint32 {
  3588. if x != nil && x.UserID != nil {
  3589. return *x.UserID
  3590. }
  3591. return 0
  3592. }
  3593. func (x *ZSBuyOrderListingReq) GetAccountID() uint64 {
  3594. if x != nil && x.AccountID != nil {
  3595. return *x.AccountID
  3596. }
  3597. return 0
  3598. }
  3599. func (x *ZSBuyOrderListingReq) GetGZ_BuyOrderDetailExInfo() *GZBuyOrderDetailExInfo {
  3600. if x != nil {
  3601. return x.GZ_BuyOrderDetailExInfo
  3602. }
  3603. return nil
  3604. }
  3605. func (x *ZSBuyOrderListingReq) GetPerformanceTemplateID() int64 {
  3606. if x != nil && x.PerformanceTemplateID != nil {
  3607. return *x.PerformanceTemplateID
  3608. }
  3609. return 0
  3610. }
  3611. func (x *ZSBuyOrderListingReq) GetMarketID() uint32 {
  3612. if x != nil && x.MarketID != nil {
  3613. return *x.MarketID
  3614. }
  3615. return 0
  3616. }
  3617. func (x *ZSBuyOrderListingReq) GetOrderSrc() uint32 {
  3618. if x != nil && x.OrderSrc != nil {
  3619. return *x.OrderSrc
  3620. }
  3621. return 0
  3622. }
  3623. func (x *ZSBuyOrderListingReq) GetClientOrderTime() string {
  3624. if x != nil && x.ClientOrderTime != nil {
  3625. return *x.ClientOrderTime
  3626. }
  3627. return ""
  3628. }
  3629. func (x *ZSBuyOrderListingReq) GetClientType() uint32 {
  3630. if x != nil && x.ClientType != nil {
  3631. return *x.ClientType
  3632. }
  3633. return 0
  3634. }
  3635. func (x *ZSBuyOrderListingReq) GetClientSerialNo() string {
  3636. if x != nil && x.ClientSerialNo != nil {
  3637. return *x.ClientSerialNo
  3638. }
  3639. return ""
  3640. }
  3641. // 钻石买挂牌接口应答
  3642. type ZSBuyOrderListingRsp struct {
  3643. state protoimpl.MessageState
  3644. sizeCache protoimpl.SizeCache
  3645. unknownFields protoimpl.UnknownFields
  3646. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3647. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3648. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3649. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3650. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3651. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3652. OrderTime *string `protobuf:"bytes,7,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3653. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3654. }
  3655. func (x *ZSBuyOrderListingRsp) Reset() {
  3656. *x = ZSBuyOrderListingRsp{}
  3657. if protoimpl.UnsafeEnabled {
  3658. mi := &file_mtp2_proto_msgTypes[39]
  3659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3660. ms.StoreMessageInfo(mi)
  3661. }
  3662. }
  3663. func (x *ZSBuyOrderListingRsp) String() string {
  3664. return protoimpl.X.MessageStringOf(x)
  3665. }
  3666. func (*ZSBuyOrderListingRsp) ProtoMessage() {}
  3667. func (x *ZSBuyOrderListingRsp) ProtoReflect() protoreflect.Message {
  3668. mi := &file_mtp2_proto_msgTypes[39]
  3669. if protoimpl.UnsafeEnabled && x != nil {
  3670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3671. if ms.LoadMessageInfo() == nil {
  3672. ms.StoreMessageInfo(mi)
  3673. }
  3674. return ms
  3675. }
  3676. return mi.MessageOf(x)
  3677. }
  3678. // Deprecated: Use ZSBuyOrderListingRsp.ProtoReflect.Descriptor instead.
  3679. func (*ZSBuyOrderListingRsp) Descriptor() ([]byte, []int) {
  3680. return file_mtp2_proto_rawDescGZIP(), []int{39}
  3681. }
  3682. func (x *ZSBuyOrderListingRsp) GetHeader() *MessageHead {
  3683. if x != nil {
  3684. return x.Header
  3685. }
  3686. return nil
  3687. }
  3688. func (x *ZSBuyOrderListingRsp) GetRetCode() int32 {
  3689. if x != nil && x.RetCode != nil {
  3690. return *x.RetCode
  3691. }
  3692. return 0
  3693. }
  3694. func (x *ZSBuyOrderListingRsp) GetRetDesc() string {
  3695. if x != nil && x.RetDesc != nil {
  3696. return *x.RetDesc
  3697. }
  3698. return ""
  3699. }
  3700. func (x *ZSBuyOrderListingRsp) GetUserID() uint32 {
  3701. if x != nil && x.UserID != nil {
  3702. return *x.UserID
  3703. }
  3704. return 0
  3705. }
  3706. func (x *ZSBuyOrderListingRsp) GetAccountID() uint64 {
  3707. if x != nil && x.AccountID != nil {
  3708. return *x.AccountID
  3709. }
  3710. return 0
  3711. }
  3712. func (x *ZSBuyOrderListingRsp) GetWRTradeOrderID() uint64 {
  3713. if x != nil && x.WRTradeOrderID != nil {
  3714. return *x.WRTradeOrderID
  3715. }
  3716. return 0
  3717. }
  3718. func (x *ZSBuyOrderListingRsp) GetOrderTime() string {
  3719. if x != nil && x.OrderTime != nil {
  3720. return *x.OrderTime
  3721. }
  3722. return ""
  3723. }
  3724. func (x *ZSBuyOrderListingRsp) GetClientSerialNo() string {
  3725. if x != nil && x.ClientSerialNo != nil {
  3726. return *x.ClientSerialNo
  3727. }
  3728. return ""
  3729. }
  3730. // 钻石卖挂牌接口请求
  3731. type ZSSellOrderListingReq struct {
  3732. state protoimpl.MessageState
  3733. sizeCache protoimpl.SizeCache
  3734. unknownFields protoimpl.UnknownFields
  3735. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3736. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3737. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  3738. WRStandardID *uint64 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  3739. WRFactorTypeID *uint64 `protobuf:"varint,5,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  3740. OrderQty *float64 `protobuf:"fixed64,6,opt,name=OrderQty" json:"OrderQty,omitempty"` // 挂牌数量,必填2位小数,为WeigthAvg的整数倍
  3741. LadingBillID *uint64 `protobuf:"varint,7,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  3742. SubNum *uint32 `protobuf:"varint,8,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  3743. PerformanceTemplateID *int64 `protobuf:"varint,9,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID
  3744. TimevalidType *uint32 `protobuf:"varint,10,opt,name=TimevalidType" json:"TimevalidType,omitempty"` // 时间有效类型
  3745. ValidTime *string `protobuf:"bytes,11,opt,name=ValidTime" json:"ValidTime,omitempty"` // 有效期限
  3746. OrderSrc *uint32 `protobuf:"varint,12,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3747. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3748. ClientOrderTime *string `protobuf:"bytes,14,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3749. ClientType *uint32 `protobuf:"varint,15,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3750. MarketID *uint64 `protobuf:"varint,16,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3751. }
  3752. func (x *ZSSellOrderListingReq) Reset() {
  3753. *x = ZSSellOrderListingReq{}
  3754. if protoimpl.UnsafeEnabled {
  3755. mi := &file_mtp2_proto_msgTypes[40]
  3756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3757. ms.StoreMessageInfo(mi)
  3758. }
  3759. }
  3760. func (x *ZSSellOrderListingReq) String() string {
  3761. return protoimpl.X.MessageStringOf(x)
  3762. }
  3763. func (*ZSSellOrderListingReq) ProtoMessage() {}
  3764. func (x *ZSSellOrderListingReq) ProtoReflect() protoreflect.Message {
  3765. mi := &file_mtp2_proto_msgTypes[40]
  3766. if protoimpl.UnsafeEnabled && x != nil {
  3767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3768. if ms.LoadMessageInfo() == nil {
  3769. ms.StoreMessageInfo(mi)
  3770. }
  3771. return ms
  3772. }
  3773. return mi.MessageOf(x)
  3774. }
  3775. // Deprecated: Use ZSSellOrderListingReq.ProtoReflect.Descriptor instead.
  3776. func (*ZSSellOrderListingReq) Descriptor() ([]byte, []int) {
  3777. return file_mtp2_proto_rawDescGZIP(), []int{40}
  3778. }
  3779. func (x *ZSSellOrderListingReq) GetHeader() *MessageHead {
  3780. if x != nil {
  3781. return x.Header
  3782. }
  3783. return nil
  3784. }
  3785. func (x *ZSSellOrderListingReq) GetUserID() uint64 {
  3786. if x != nil && x.UserID != nil {
  3787. return *x.UserID
  3788. }
  3789. return 0
  3790. }
  3791. func (x *ZSSellOrderListingReq) GetAccountID() uint64 {
  3792. if x != nil && x.AccountID != nil {
  3793. return *x.AccountID
  3794. }
  3795. return 0
  3796. }
  3797. func (x *ZSSellOrderListingReq) GetWRStandardID() uint64 {
  3798. if x != nil && x.WRStandardID != nil {
  3799. return *x.WRStandardID
  3800. }
  3801. return 0
  3802. }
  3803. func (x *ZSSellOrderListingReq) GetWRFactorTypeID() uint64 {
  3804. if x != nil && x.WRFactorTypeID != nil {
  3805. return *x.WRFactorTypeID
  3806. }
  3807. return 0
  3808. }
  3809. func (x *ZSSellOrderListingReq) GetOrderQty() float64 {
  3810. if x != nil && x.OrderQty != nil {
  3811. return *x.OrderQty
  3812. }
  3813. return 0
  3814. }
  3815. func (x *ZSSellOrderListingReq) GetLadingBillID() uint64 {
  3816. if x != nil && x.LadingBillID != nil {
  3817. return *x.LadingBillID
  3818. }
  3819. return 0
  3820. }
  3821. func (x *ZSSellOrderListingReq) GetSubNum() uint32 {
  3822. if x != nil && x.SubNum != nil {
  3823. return *x.SubNum
  3824. }
  3825. return 0
  3826. }
  3827. func (x *ZSSellOrderListingReq) GetPerformanceTemplateID() int64 {
  3828. if x != nil && x.PerformanceTemplateID != nil {
  3829. return *x.PerformanceTemplateID
  3830. }
  3831. return 0
  3832. }
  3833. func (x *ZSSellOrderListingReq) GetTimevalidType() uint32 {
  3834. if x != nil && x.TimevalidType != nil {
  3835. return *x.TimevalidType
  3836. }
  3837. return 0
  3838. }
  3839. func (x *ZSSellOrderListingReq) GetValidTime() string {
  3840. if x != nil && x.ValidTime != nil {
  3841. return *x.ValidTime
  3842. }
  3843. return ""
  3844. }
  3845. func (x *ZSSellOrderListingReq) GetOrderSrc() uint32 {
  3846. if x != nil && x.OrderSrc != nil {
  3847. return *x.OrderSrc
  3848. }
  3849. return 0
  3850. }
  3851. func (x *ZSSellOrderListingReq) GetClientSerialNo() string {
  3852. if x != nil && x.ClientSerialNo != nil {
  3853. return *x.ClientSerialNo
  3854. }
  3855. return ""
  3856. }
  3857. func (x *ZSSellOrderListingReq) GetClientOrderTime() string {
  3858. if x != nil && x.ClientOrderTime != nil {
  3859. return *x.ClientOrderTime
  3860. }
  3861. return ""
  3862. }
  3863. func (x *ZSSellOrderListingReq) GetClientType() uint32 {
  3864. if x != nil && x.ClientType != nil {
  3865. return *x.ClientType
  3866. }
  3867. return 0
  3868. }
  3869. func (x *ZSSellOrderListingReq) GetMarketID() uint64 {
  3870. if x != nil && x.MarketID != nil {
  3871. return *x.MarketID
  3872. }
  3873. return 0
  3874. }
  3875. // 钻石卖挂牌接口响应
  3876. type ZSSellOrderListingRsp struct {
  3877. state protoimpl.MessageState
  3878. sizeCache protoimpl.SizeCache
  3879. unknownFields protoimpl.UnknownFields
  3880. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  3881. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  3882. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  3883. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  3884. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  3885. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  3886. FreezeQty *uint64 `protobuf:"varint,7,opt,name=FreezeQty" json:"FreezeQty,omitempty"` // 冻结数量
  3887. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  3888. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3889. }
  3890. func (x *ZSSellOrderListingRsp) Reset() {
  3891. *x = ZSSellOrderListingRsp{}
  3892. if protoimpl.UnsafeEnabled {
  3893. mi := &file_mtp2_proto_msgTypes[41]
  3894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3895. ms.StoreMessageInfo(mi)
  3896. }
  3897. }
  3898. func (x *ZSSellOrderListingRsp) String() string {
  3899. return protoimpl.X.MessageStringOf(x)
  3900. }
  3901. func (*ZSSellOrderListingRsp) ProtoMessage() {}
  3902. func (x *ZSSellOrderListingRsp) ProtoReflect() protoreflect.Message {
  3903. mi := &file_mtp2_proto_msgTypes[41]
  3904. if protoimpl.UnsafeEnabled && x != nil {
  3905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3906. if ms.LoadMessageInfo() == nil {
  3907. ms.StoreMessageInfo(mi)
  3908. }
  3909. return ms
  3910. }
  3911. return mi.MessageOf(x)
  3912. }
  3913. // Deprecated: Use ZSSellOrderListingRsp.ProtoReflect.Descriptor instead.
  3914. func (*ZSSellOrderListingRsp) Descriptor() ([]byte, []int) {
  3915. return file_mtp2_proto_rawDescGZIP(), []int{41}
  3916. }
  3917. func (x *ZSSellOrderListingRsp) GetHeader() *MessageHead {
  3918. if x != nil {
  3919. return x.Header
  3920. }
  3921. return nil
  3922. }
  3923. func (x *ZSSellOrderListingRsp) GetRetCode() int32 {
  3924. if x != nil && x.RetCode != nil {
  3925. return *x.RetCode
  3926. }
  3927. return 0
  3928. }
  3929. func (x *ZSSellOrderListingRsp) GetRetDesc() string {
  3930. if x != nil && x.RetDesc != nil {
  3931. return *x.RetDesc
  3932. }
  3933. return ""
  3934. }
  3935. func (x *ZSSellOrderListingRsp) GetUserID() uint32 {
  3936. if x != nil && x.UserID != nil {
  3937. return *x.UserID
  3938. }
  3939. return 0
  3940. }
  3941. func (x *ZSSellOrderListingRsp) GetAccountID() uint64 {
  3942. if x != nil && x.AccountID != nil {
  3943. return *x.AccountID
  3944. }
  3945. return 0
  3946. }
  3947. func (x *ZSSellOrderListingRsp) GetWRTradeOrderID() uint64 {
  3948. if x != nil && x.WRTradeOrderID != nil {
  3949. return *x.WRTradeOrderID
  3950. }
  3951. return 0
  3952. }
  3953. func (x *ZSSellOrderListingRsp) GetFreezeQty() uint64 {
  3954. if x != nil && x.FreezeQty != nil {
  3955. return *x.FreezeQty
  3956. }
  3957. return 0
  3958. }
  3959. func (x *ZSSellOrderListingRsp) GetOrderTime() string {
  3960. if x != nil && x.OrderTime != nil {
  3961. return *x.OrderTime
  3962. }
  3963. return ""
  3964. }
  3965. func (x *ZSSellOrderListingRsp) GetClientSerialNo() string {
  3966. if x != nil && x.ClientSerialNo != nil {
  3967. return *x.ClientSerialNo
  3968. }
  3969. return ""
  3970. }
  3971. // 钻石买摘牌接口请求
  3972. type ZSBuyOrderDestingReq struct {
  3973. state protoimpl.MessageState
  3974. sizeCache protoimpl.SizeCache
  3975. unknownFields protoimpl.UnknownFields
  3976. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  3977. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  3978. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  3979. RelatedWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 卖委托单号,必填
  3980. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 委托数量,必填2位小数,为WeigthAvg的整数倍
  3981. OrderSrc *uint32 `protobuf:"varint,6,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  3982. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  3983. ClientOrderTime *string `protobuf:"bytes,8,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  3984. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  3985. OperatorID *uint64 `protobuf:"varint,10,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  3986. MarketID *uint64 `protobuf:"varint,11,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  3987. }
  3988. func (x *ZSBuyOrderDestingReq) Reset() {
  3989. *x = ZSBuyOrderDestingReq{}
  3990. if protoimpl.UnsafeEnabled {
  3991. mi := &file_mtp2_proto_msgTypes[42]
  3992. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3993. ms.StoreMessageInfo(mi)
  3994. }
  3995. }
  3996. func (x *ZSBuyOrderDestingReq) String() string {
  3997. return protoimpl.X.MessageStringOf(x)
  3998. }
  3999. func (*ZSBuyOrderDestingReq) ProtoMessage() {}
  4000. func (x *ZSBuyOrderDestingReq) ProtoReflect() protoreflect.Message {
  4001. mi := &file_mtp2_proto_msgTypes[42]
  4002. if protoimpl.UnsafeEnabled && x != nil {
  4003. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4004. if ms.LoadMessageInfo() == nil {
  4005. ms.StoreMessageInfo(mi)
  4006. }
  4007. return ms
  4008. }
  4009. return mi.MessageOf(x)
  4010. }
  4011. // Deprecated: Use ZSBuyOrderDestingReq.ProtoReflect.Descriptor instead.
  4012. func (*ZSBuyOrderDestingReq) Descriptor() ([]byte, []int) {
  4013. return file_mtp2_proto_rawDescGZIP(), []int{42}
  4014. }
  4015. func (x *ZSBuyOrderDestingReq) GetHeader() *MessageHead {
  4016. if x != nil {
  4017. return x.Header
  4018. }
  4019. return nil
  4020. }
  4021. func (x *ZSBuyOrderDestingReq) GetUserID() uint32 {
  4022. if x != nil && x.UserID != nil {
  4023. return *x.UserID
  4024. }
  4025. return 0
  4026. }
  4027. func (x *ZSBuyOrderDestingReq) GetAccountID() uint64 {
  4028. if x != nil && x.AccountID != nil {
  4029. return *x.AccountID
  4030. }
  4031. return 0
  4032. }
  4033. func (x *ZSBuyOrderDestingReq) GetRelatedWRTradeOrderID() uint64 {
  4034. if x != nil && x.RelatedWRTradeOrderID != nil {
  4035. return *x.RelatedWRTradeOrderID
  4036. }
  4037. return 0
  4038. }
  4039. func (x *ZSBuyOrderDestingReq) GetOrderQty() float64 {
  4040. if x != nil && x.OrderQty != nil {
  4041. return *x.OrderQty
  4042. }
  4043. return 0
  4044. }
  4045. func (x *ZSBuyOrderDestingReq) GetOrderSrc() uint32 {
  4046. if x != nil && x.OrderSrc != nil {
  4047. return *x.OrderSrc
  4048. }
  4049. return 0
  4050. }
  4051. func (x *ZSBuyOrderDestingReq) GetClientSerialNo() string {
  4052. if x != nil && x.ClientSerialNo != nil {
  4053. return *x.ClientSerialNo
  4054. }
  4055. return ""
  4056. }
  4057. func (x *ZSBuyOrderDestingReq) GetClientOrderTime() string {
  4058. if x != nil && x.ClientOrderTime != nil {
  4059. return *x.ClientOrderTime
  4060. }
  4061. return ""
  4062. }
  4063. func (x *ZSBuyOrderDestingReq) GetClientType() uint32 {
  4064. if x != nil && x.ClientType != nil {
  4065. return *x.ClientType
  4066. }
  4067. return 0
  4068. }
  4069. func (x *ZSBuyOrderDestingReq) GetOperatorID() uint64 {
  4070. if x != nil && x.OperatorID != nil {
  4071. return *x.OperatorID
  4072. }
  4073. return 0
  4074. }
  4075. func (x *ZSBuyOrderDestingReq) GetMarketID() uint64 {
  4076. if x != nil && x.MarketID != nil {
  4077. return *x.MarketID
  4078. }
  4079. return 0
  4080. }
  4081. // 钻石买摘牌接口响应
  4082. type ZSBuyOrderDestingRsp struct {
  4083. state protoimpl.MessageState
  4084. sizeCache protoimpl.SizeCache
  4085. unknownFields protoimpl.UnknownFields
  4086. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4087. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4088. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4089. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4090. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4091. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  4092. RelatedWRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=RelatedWRTradeOrderID" json:"RelatedWRTradeOrderID,omitempty"` // 关联委托单号(摘牌委托关联挂牌委托单ID)
  4093. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  4094. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4095. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4096. }
  4097. func (x *ZSBuyOrderDestingRsp) Reset() {
  4098. *x = ZSBuyOrderDestingRsp{}
  4099. if protoimpl.UnsafeEnabled {
  4100. mi := &file_mtp2_proto_msgTypes[43]
  4101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4102. ms.StoreMessageInfo(mi)
  4103. }
  4104. }
  4105. func (x *ZSBuyOrderDestingRsp) String() string {
  4106. return protoimpl.X.MessageStringOf(x)
  4107. }
  4108. func (*ZSBuyOrderDestingRsp) ProtoMessage() {}
  4109. func (x *ZSBuyOrderDestingRsp) ProtoReflect() protoreflect.Message {
  4110. mi := &file_mtp2_proto_msgTypes[43]
  4111. if protoimpl.UnsafeEnabled && x != nil {
  4112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4113. if ms.LoadMessageInfo() == nil {
  4114. ms.StoreMessageInfo(mi)
  4115. }
  4116. return ms
  4117. }
  4118. return mi.MessageOf(x)
  4119. }
  4120. // Deprecated: Use ZSBuyOrderDestingRsp.ProtoReflect.Descriptor instead.
  4121. func (*ZSBuyOrderDestingRsp) Descriptor() ([]byte, []int) {
  4122. return file_mtp2_proto_rawDescGZIP(), []int{43}
  4123. }
  4124. func (x *ZSBuyOrderDestingRsp) GetHeader() *MessageHead {
  4125. if x != nil {
  4126. return x.Header
  4127. }
  4128. return nil
  4129. }
  4130. func (x *ZSBuyOrderDestingRsp) GetRetCode() int32 {
  4131. if x != nil && x.RetCode != nil {
  4132. return *x.RetCode
  4133. }
  4134. return 0
  4135. }
  4136. func (x *ZSBuyOrderDestingRsp) GetRetDesc() string {
  4137. if x != nil && x.RetDesc != nil {
  4138. return *x.RetDesc
  4139. }
  4140. return ""
  4141. }
  4142. func (x *ZSBuyOrderDestingRsp) GetUserID() uint32 {
  4143. if x != nil && x.UserID != nil {
  4144. return *x.UserID
  4145. }
  4146. return 0
  4147. }
  4148. func (x *ZSBuyOrderDestingRsp) GetAccountID() uint64 {
  4149. if x != nil && x.AccountID != nil {
  4150. return *x.AccountID
  4151. }
  4152. return 0
  4153. }
  4154. func (x *ZSBuyOrderDestingRsp) GetWRTradeOrderID() uint64 {
  4155. if x != nil && x.WRTradeOrderID != nil {
  4156. return *x.WRTradeOrderID
  4157. }
  4158. return 0
  4159. }
  4160. func (x *ZSBuyOrderDestingRsp) GetRelatedWRTradeOrderID() uint64 {
  4161. if x != nil && x.RelatedWRTradeOrderID != nil {
  4162. return *x.RelatedWRTradeOrderID
  4163. }
  4164. return 0
  4165. }
  4166. func (x *ZSBuyOrderDestingRsp) GetFreezeAmount() float64 {
  4167. if x != nil && x.FreezeAmount != nil {
  4168. return *x.FreezeAmount
  4169. }
  4170. return 0
  4171. }
  4172. func (x *ZSBuyOrderDestingRsp) GetOrderTime() string {
  4173. if x != nil && x.OrderTime != nil {
  4174. return *x.OrderTime
  4175. }
  4176. return ""
  4177. }
  4178. func (x *ZSBuyOrderDestingRsp) GetClientSerialNo() string {
  4179. if x != nil && x.ClientSerialNo != nil {
  4180. return *x.ClientSerialNo
  4181. }
  4182. return ""
  4183. }
  4184. // 钻石卖摘牌申请接口请求
  4185. type ZSSellOrderDestingApplyReq struct {
  4186. state protoimpl.MessageState
  4187. sizeCache protoimpl.SizeCache
  4188. unknownFields protoimpl.UnknownFields
  4189. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4190. UserID *uint64 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4191. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  4192. BuyWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=BuyWRTradeOrderID" json:"BuyWRTradeOrderID,omitempty"` // 买挂牌委托单ID,必填
  4193. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  4194. WRFactorTypeID *uint64 `protobuf:"varint,6,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // 仓单要素类型ID,必填
  4195. ApplyQty *float64 `protobuf:"fixed64,7,opt,name=ApplyQty" json:"ApplyQty,omitempty"` // 申请数量,必填,2位小数
  4196. ApplyPrice *float64 `protobuf:"fixed64,8,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 申请价格,必填,2位小数
  4197. LadingBillID *uint64 `protobuf:"varint,9,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  4198. SubNum *uint32 `protobuf:"varint,10,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  4199. ApplyRemark *string `protobuf:"bytes,11,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 备注
  4200. ClientType *uint32 `protobuf:"varint,12,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4201. ClientSerialNo *string `protobuf:"bytes,13,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4202. MarketID *uint64 `protobuf:"varint,14,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4203. }
  4204. func (x *ZSSellOrderDestingApplyReq) Reset() {
  4205. *x = ZSSellOrderDestingApplyReq{}
  4206. if protoimpl.UnsafeEnabled {
  4207. mi := &file_mtp2_proto_msgTypes[44]
  4208. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4209. ms.StoreMessageInfo(mi)
  4210. }
  4211. }
  4212. func (x *ZSSellOrderDestingApplyReq) String() string {
  4213. return protoimpl.X.MessageStringOf(x)
  4214. }
  4215. func (*ZSSellOrderDestingApplyReq) ProtoMessage() {}
  4216. func (x *ZSSellOrderDestingApplyReq) ProtoReflect() protoreflect.Message {
  4217. mi := &file_mtp2_proto_msgTypes[44]
  4218. if protoimpl.UnsafeEnabled && x != nil {
  4219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4220. if ms.LoadMessageInfo() == nil {
  4221. ms.StoreMessageInfo(mi)
  4222. }
  4223. return ms
  4224. }
  4225. return mi.MessageOf(x)
  4226. }
  4227. // Deprecated: Use ZSSellOrderDestingApplyReq.ProtoReflect.Descriptor instead.
  4228. func (*ZSSellOrderDestingApplyReq) Descriptor() ([]byte, []int) {
  4229. return file_mtp2_proto_rawDescGZIP(), []int{44}
  4230. }
  4231. func (x *ZSSellOrderDestingApplyReq) GetHeader() *MessageHead {
  4232. if x != nil {
  4233. return x.Header
  4234. }
  4235. return nil
  4236. }
  4237. func (x *ZSSellOrderDestingApplyReq) GetUserID() uint64 {
  4238. if x != nil && x.UserID != nil {
  4239. return *x.UserID
  4240. }
  4241. return 0
  4242. }
  4243. func (x *ZSSellOrderDestingApplyReq) GetAccountID() uint64 {
  4244. if x != nil && x.AccountID != nil {
  4245. return *x.AccountID
  4246. }
  4247. return 0
  4248. }
  4249. func (x *ZSSellOrderDestingApplyReq) GetBuyWRTradeOrderID() uint64 {
  4250. if x != nil && x.BuyWRTradeOrderID != nil {
  4251. return *x.BuyWRTradeOrderID
  4252. }
  4253. return 0
  4254. }
  4255. func (x *ZSSellOrderDestingApplyReq) GetWRStandardID() uint64 {
  4256. if x != nil && x.WRStandardID != nil {
  4257. return *x.WRStandardID
  4258. }
  4259. return 0
  4260. }
  4261. func (x *ZSSellOrderDestingApplyReq) GetWRFactorTypeID() uint64 {
  4262. if x != nil && x.WRFactorTypeID != nil {
  4263. return *x.WRFactorTypeID
  4264. }
  4265. return 0
  4266. }
  4267. func (x *ZSSellOrderDestingApplyReq) GetApplyQty() float64 {
  4268. if x != nil && x.ApplyQty != nil {
  4269. return *x.ApplyQty
  4270. }
  4271. return 0
  4272. }
  4273. func (x *ZSSellOrderDestingApplyReq) GetApplyPrice() float64 {
  4274. if x != nil && x.ApplyPrice != nil {
  4275. return *x.ApplyPrice
  4276. }
  4277. return 0
  4278. }
  4279. func (x *ZSSellOrderDestingApplyReq) GetLadingBillID() uint64 {
  4280. if x != nil && x.LadingBillID != nil {
  4281. return *x.LadingBillID
  4282. }
  4283. return 0
  4284. }
  4285. func (x *ZSSellOrderDestingApplyReq) GetSubNum() uint32 {
  4286. if x != nil && x.SubNum != nil {
  4287. return *x.SubNum
  4288. }
  4289. return 0
  4290. }
  4291. func (x *ZSSellOrderDestingApplyReq) GetApplyRemark() string {
  4292. if x != nil && x.ApplyRemark != nil {
  4293. return *x.ApplyRemark
  4294. }
  4295. return ""
  4296. }
  4297. func (x *ZSSellOrderDestingApplyReq) GetClientType() uint32 {
  4298. if x != nil && x.ClientType != nil {
  4299. return *x.ClientType
  4300. }
  4301. return 0
  4302. }
  4303. func (x *ZSSellOrderDestingApplyReq) GetClientSerialNo() string {
  4304. if x != nil && x.ClientSerialNo != nil {
  4305. return *x.ClientSerialNo
  4306. }
  4307. return ""
  4308. }
  4309. func (x *ZSSellOrderDestingApplyReq) GetMarketID() uint64 {
  4310. if x != nil && x.MarketID != nil {
  4311. return *x.MarketID
  4312. }
  4313. return 0
  4314. }
  4315. // 钻石卖摘牌申请接口响应
  4316. type ZSSellOrderDestingApplyRsp struct {
  4317. state protoimpl.MessageState
  4318. sizeCache protoimpl.SizeCache
  4319. unknownFields protoimpl.UnknownFields
  4320. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4321. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4322. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4323. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4324. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4325. ApplyID *uint64 `protobuf:"varint,6,opt,name=ApplyID" json:"ApplyID,omitempty"` // 仓单贸易委托单ID
  4326. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4327. }
  4328. func (x *ZSSellOrderDestingApplyRsp) Reset() {
  4329. *x = ZSSellOrderDestingApplyRsp{}
  4330. if protoimpl.UnsafeEnabled {
  4331. mi := &file_mtp2_proto_msgTypes[45]
  4332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4333. ms.StoreMessageInfo(mi)
  4334. }
  4335. }
  4336. func (x *ZSSellOrderDestingApplyRsp) String() string {
  4337. return protoimpl.X.MessageStringOf(x)
  4338. }
  4339. func (*ZSSellOrderDestingApplyRsp) ProtoMessage() {}
  4340. func (x *ZSSellOrderDestingApplyRsp) ProtoReflect() protoreflect.Message {
  4341. mi := &file_mtp2_proto_msgTypes[45]
  4342. if protoimpl.UnsafeEnabled && x != nil {
  4343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4344. if ms.LoadMessageInfo() == nil {
  4345. ms.StoreMessageInfo(mi)
  4346. }
  4347. return ms
  4348. }
  4349. return mi.MessageOf(x)
  4350. }
  4351. // Deprecated: Use ZSSellOrderDestingApplyRsp.ProtoReflect.Descriptor instead.
  4352. func (*ZSSellOrderDestingApplyRsp) Descriptor() ([]byte, []int) {
  4353. return file_mtp2_proto_rawDescGZIP(), []int{45}
  4354. }
  4355. func (x *ZSSellOrderDestingApplyRsp) GetHeader() *MessageHead {
  4356. if x != nil {
  4357. return x.Header
  4358. }
  4359. return nil
  4360. }
  4361. func (x *ZSSellOrderDestingApplyRsp) GetRetCode() int32 {
  4362. if x != nil && x.RetCode != nil {
  4363. return *x.RetCode
  4364. }
  4365. return 0
  4366. }
  4367. func (x *ZSSellOrderDestingApplyRsp) GetRetDesc() string {
  4368. if x != nil && x.RetDesc != nil {
  4369. return *x.RetDesc
  4370. }
  4371. return ""
  4372. }
  4373. func (x *ZSSellOrderDestingApplyRsp) GetUserID() uint32 {
  4374. if x != nil && x.UserID != nil {
  4375. return *x.UserID
  4376. }
  4377. return 0
  4378. }
  4379. func (x *ZSSellOrderDestingApplyRsp) GetAccountID() uint64 {
  4380. if x != nil && x.AccountID != nil {
  4381. return *x.AccountID
  4382. }
  4383. return 0
  4384. }
  4385. func (x *ZSSellOrderDestingApplyRsp) GetApplyID() uint64 {
  4386. if x != nil && x.ApplyID != nil {
  4387. return *x.ApplyID
  4388. }
  4389. return 0
  4390. }
  4391. func (x *ZSSellOrderDestingApplyRsp) GetClientSerialNo() string {
  4392. if x != nil && x.ClientSerialNo != nil {
  4393. return *x.ClientSerialNo
  4394. }
  4395. return ""
  4396. }
  4397. // 钻石卖摘牌申请操作接口请求
  4398. type ZSSellOrderDestingApplyOperateReq struct {
  4399. state protoimpl.MessageState
  4400. sizeCache protoimpl.SizeCache
  4401. unknownFields protoimpl.UnknownFields
  4402. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4403. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4404. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4405. SellDelistingApplyID *uint64 `protobuf:"varint,4,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID,必填
  4406. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4407. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4408. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4409. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4410. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4411. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4412. }
  4413. func (x *ZSSellOrderDestingApplyOperateReq) Reset() {
  4414. *x = ZSSellOrderDestingApplyOperateReq{}
  4415. if protoimpl.UnsafeEnabled {
  4416. mi := &file_mtp2_proto_msgTypes[46]
  4417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4418. ms.StoreMessageInfo(mi)
  4419. }
  4420. }
  4421. func (x *ZSSellOrderDestingApplyOperateReq) String() string {
  4422. return protoimpl.X.MessageStringOf(x)
  4423. }
  4424. func (*ZSSellOrderDestingApplyOperateReq) ProtoMessage() {}
  4425. func (x *ZSSellOrderDestingApplyOperateReq) ProtoReflect() protoreflect.Message {
  4426. mi := &file_mtp2_proto_msgTypes[46]
  4427. if protoimpl.UnsafeEnabled && x != nil {
  4428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4429. if ms.LoadMessageInfo() == nil {
  4430. ms.StoreMessageInfo(mi)
  4431. }
  4432. return ms
  4433. }
  4434. return mi.MessageOf(x)
  4435. }
  4436. // Deprecated: Use ZSSellOrderDestingApplyOperateReq.ProtoReflect.Descriptor instead.
  4437. func (*ZSSellOrderDestingApplyOperateReq) Descriptor() ([]byte, []int) {
  4438. return file_mtp2_proto_rawDescGZIP(), []int{46}
  4439. }
  4440. func (x *ZSSellOrderDestingApplyOperateReq) GetHeader() *MessageHead {
  4441. if x != nil {
  4442. return x.Header
  4443. }
  4444. return nil
  4445. }
  4446. func (x *ZSSellOrderDestingApplyOperateReq) GetUserID() uint32 {
  4447. if x != nil && x.UserID != nil {
  4448. return *x.UserID
  4449. }
  4450. return 0
  4451. }
  4452. func (x *ZSSellOrderDestingApplyOperateReq) GetAccountID() uint64 {
  4453. if x != nil && x.AccountID != nil {
  4454. return *x.AccountID
  4455. }
  4456. return 0
  4457. }
  4458. func (x *ZSSellOrderDestingApplyOperateReq) GetSellDelistingApplyID() uint64 {
  4459. if x != nil && x.SellDelistingApplyID != nil {
  4460. return *x.SellDelistingApplyID
  4461. }
  4462. return 0
  4463. }
  4464. func (x *ZSSellOrderDestingApplyOperateReq) GetAuditRemark() string {
  4465. if x != nil && x.AuditRemark != nil {
  4466. return *x.AuditRemark
  4467. }
  4468. return ""
  4469. }
  4470. func (x *ZSSellOrderDestingApplyOperateReq) GetOperateType() uint32 {
  4471. if x != nil && x.OperateType != nil {
  4472. return *x.OperateType
  4473. }
  4474. return 0
  4475. }
  4476. func (x *ZSSellOrderDestingApplyOperateReq) GetMarketID() uint32 {
  4477. if x != nil && x.MarketID != nil {
  4478. return *x.MarketID
  4479. }
  4480. return 0
  4481. }
  4482. func (x *ZSSellOrderDestingApplyOperateReq) GetClientType() uint32 {
  4483. if x != nil && x.ClientType != nil {
  4484. return *x.ClientType
  4485. }
  4486. return 0
  4487. }
  4488. func (x *ZSSellOrderDestingApplyOperateReq) GetOrderSrc() uint32 {
  4489. if x != nil && x.OrderSrc != nil {
  4490. return *x.OrderSrc
  4491. }
  4492. return 0
  4493. }
  4494. func (x *ZSSellOrderDestingApplyOperateReq) GetClientSerialNo() string {
  4495. if x != nil && x.ClientSerialNo != nil {
  4496. return *x.ClientSerialNo
  4497. }
  4498. return ""
  4499. }
  4500. // 钻石卖摘牌申请操作接口应答
  4501. type ZSSellOrderDestingApplyOperateRsp struct {
  4502. state protoimpl.MessageState
  4503. sizeCache protoimpl.SizeCache
  4504. unknownFields protoimpl.UnknownFields
  4505. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4506. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4507. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4508. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4509. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4510. SellDelistingApplyID *uint64 `protobuf:"varint,6,opt,name=SellDelistingApplyID" json:"SellDelistingApplyID,omitempty"` // 卖摘牌申请ID
  4511. WRTradeOrderID *uint64 `protobuf:"varint,7,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  4512. FreezeAmount *float64 `protobuf:"fixed64,8,opt,name=FreezeAmount" json:"FreezeAmount,omitempty"` // 冻结货款
  4513. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4514. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4515. }
  4516. func (x *ZSSellOrderDestingApplyOperateRsp) Reset() {
  4517. *x = ZSSellOrderDestingApplyOperateRsp{}
  4518. if protoimpl.UnsafeEnabled {
  4519. mi := &file_mtp2_proto_msgTypes[47]
  4520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4521. ms.StoreMessageInfo(mi)
  4522. }
  4523. }
  4524. func (x *ZSSellOrderDestingApplyOperateRsp) String() string {
  4525. return protoimpl.X.MessageStringOf(x)
  4526. }
  4527. func (*ZSSellOrderDestingApplyOperateRsp) ProtoMessage() {}
  4528. func (x *ZSSellOrderDestingApplyOperateRsp) ProtoReflect() protoreflect.Message {
  4529. mi := &file_mtp2_proto_msgTypes[47]
  4530. if protoimpl.UnsafeEnabled && x != nil {
  4531. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4532. if ms.LoadMessageInfo() == nil {
  4533. ms.StoreMessageInfo(mi)
  4534. }
  4535. return ms
  4536. }
  4537. return mi.MessageOf(x)
  4538. }
  4539. // Deprecated: Use ZSSellOrderDestingApplyOperateRsp.ProtoReflect.Descriptor instead.
  4540. func (*ZSSellOrderDestingApplyOperateRsp) Descriptor() ([]byte, []int) {
  4541. return file_mtp2_proto_rawDescGZIP(), []int{47}
  4542. }
  4543. func (x *ZSSellOrderDestingApplyOperateRsp) GetHeader() *MessageHead {
  4544. if x != nil {
  4545. return x.Header
  4546. }
  4547. return nil
  4548. }
  4549. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetCode() int32 {
  4550. if x != nil && x.RetCode != nil {
  4551. return *x.RetCode
  4552. }
  4553. return 0
  4554. }
  4555. func (x *ZSSellOrderDestingApplyOperateRsp) GetRetDesc() string {
  4556. if x != nil && x.RetDesc != nil {
  4557. return *x.RetDesc
  4558. }
  4559. return ""
  4560. }
  4561. func (x *ZSSellOrderDestingApplyOperateRsp) GetUserID() uint32 {
  4562. if x != nil && x.UserID != nil {
  4563. return *x.UserID
  4564. }
  4565. return 0
  4566. }
  4567. func (x *ZSSellOrderDestingApplyOperateRsp) GetAccountID() uint64 {
  4568. if x != nil && x.AccountID != nil {
  4569. return *x.AccountID
  4570. }
  4571. return 0
  4572. }
  4573. func (x *ZSSellOrderDestingApplyOperateRsp) GetSellDelistingApplyID() uint64 {
  4574. if x != nil && x.SellDelistingApplyID != nil {
  4575. return *x.SellDelistingApplyID
  4576. }
  4577. return 0
  4578. }
  4579. func (x *ZSSellOrderDestingApplyOperateRsp) GetWRTradeOrderID() uint64 {
  4580. if x != nil && x.WRTradeOrderID != nil {
  4581. return *x.WRTradeOrderID
  4582. }
  4583. return 0
  4584. }
  4585. func (x *ZSSellOrderDestingApplyOperateRsp) GetFreezeAmount() float64 {
  4586. if x != nil && x.FreezeAmount != nil {
  4587. return *x.FreezeAmount
  4588. }
  4589. return 0
  4590. }
  4591. func (x *ZSSellOrderDestingApplyOperateRsp) GetOrderTime() string {
  4592. if x != nil && x.OrderTime != nil {
  4593. return *x.OrderTime
  4594. }
  4595. return ""
  4596. }
  4597. func (x *ZSSellOrderDestingApplyOperateRsp) GetClientSerialNo() string {
  4598. if x != nil && x.ClientSerialNo != nil {
  4599. return *x.ClientSerialNo
  4600. }
  4601. return ""
  4602. }
  4603. // 买摘牌询价接口请求
  4604. type ZSBuyOrderDestingNegPriceReq struct {
  4605. state protoimpl.MessageState
  4606. sizeCache protoimpl.SizeCache
  4607. unknownFields protoimpl.UnknownFields
  4608. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4609. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4610. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4611. RelatedOrderID *uint64 `protobuf:"varint,4,opt,name=RelatedOrderID" json:"RelatedOrderID,omitempty"` // 卖委托单号,必填
  4612. OrderQty *float64 `protobuf:"fixed64,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 议价数量,2位小数,必填
  4613. ApplyPrice *float64 `protobuf:"fixed64,6,opt,name=ApplyPrice" json:"ApplyPrice,omitempty"` // 协议价格,2位小数,必填
  4614. OrderSrc *uint32 `protobuf:"varint,7,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4615. ClientSerialNo *string `protobuf:"bytes,8,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4616. ClientOrderTime *string `protobuf:"bytes,9,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  4617. ClientType *uint32 `protobuf:"varint,10,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4618. OperatorID *uint64 `protobuf:"varint,11,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  4619. MarketID *uint32 `protobuf:"varint,12,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4620. ApplyRemark *string `protobuf:"bytes,13,opt,name=ApplyRemark" json:"ApplyRemark,omitempty"` // 申请备注
  4621. }
  4622. func (x *ZSBuyOrderDestingNegPriceReq) Reset() {
  4623. *x = ZSBuyOrderDestingNegPriceReq{}
  4624. if protoimpl.UnsafeEnabled {
  4625. mi := &file_mtp2_proto_msgTypes[48]
  4626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4627. ms.StoreMessageInfo(mi)
  4628. }
  4629. }
  4630. func (x *ZSBuyOrderDestingNegPriceReq) String() string {
  4631. return protoimpl.X.MessageStringOf(x)
  4632. }
  4633. func (*ZSBuyOrderDestingNegPriceReq) ProtoMessage() {}
  4634. func (x *ZSBuyOrderDestingNegPriceReq) ProtoReflect() protoreflect.Message {
  4635. mi := &file_mtp2_proto_msgTypes[48]
  4636. if protoimpl.UnsafeEnabled && x != nil {
  4637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4638. if ms.LoadMessageInfo() == nil {
  4639. ms.StoreMessageInfo(mi)
  4640. }
  4641. return ms
  4642. }
  4643. return mi.MessageOf(x)
  4644. }
  4645. // Deprecated: Use ZSBuyOrderDestingNegPriceReq.ProtoReflect.Descriptor instead.
  4646. func (*ZSBuyOrderDestingNegPriceReq) Descriptor() ([]byte, []int) {
  4647. return file_mtp2_proto_rawDescGZIP(), []int{48}
  4648. }
  4649. func (x *ZSBuyOrderDestingNegPriceReq) GetHeader() *MessageHead {
  4650. if x != nil {
  4651. return x.Header
  4652. }
  4653. return nil
  4654. }
  4655. func (x *ZSBuyOrderDestingNegPriceReq) GetUserID() uint32 {
  4656. if x != nil && x.UserID != nil {
  4657. return *x.UserID
  4658. }
  4659. return 0
  4660. }
  4661. func (x *ZSBuyOrderDestingNegPriceReq) GetAccountID() uint64 {
  4662. if x != nil && x.AccountID != nil {
  4663. return *x.AccountID
  4664. }
  4665. return 0
  4666. }
  4667. func (x *ZSBuyOrderDestingNegPriceReq) GetRelatedOrderID() uint64 {
  4668. if x != nil && x.RelatedOrderID != nil {
  4669. return *x.RelatedOrderID
  4670. }
  4671. return 0
  4672. }
  4673. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderQty() float64 {
  4674. if x != nil && x.OrderQty != nil {
  4675. return *x.OrderQty
  4676. }
  4677. return 0
  4678. }
  4679. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyPrice() float64 {
  4680. if x != nil && x.ApplyPrice != nil {
  4681. return *x.ApplyPrice
  4682. }
  4683. return 0
  4684. }
  4685. func (x *ZSBuyOrderDestingNegPriceReq) GetOrderSrc() uint32 {
  4686. if x != nil && x.OrderSrc != nil {
  4687. return *x.OrderSrc
  4688. }
  4689. return 0
  4690. }
  4691. func (x *ZSBuyOrderDestingNegPriceReq) GetClientSerialNo() string {
  4692. if x != nil && x.ClientSerialNo != nil {
  4693. return *x.ClientSerialNo
  4694. }
  4695. return ""
  4696. }
  4697. func (x *ZSBuyOrderDestingNegPriceReq) GetClientOrderTime() string {
  4698. if x != nil && x.ClientOrderTime != nil {
  4699. return *x.ClientOrderTime
  4700. }
  4701. return ""
  4702. }
  4703. func (x *ZSBuyOrderDestingNegPriceReq) GetClientType() uint32 {
  4704. if x != nil && x.ClientType != nil {
  4705. return *x.ClientType
  4706. }
  4707. return 0
  4708. }
  4709. func (x *ZSBuyOrderDestingNegPriceReq) GetOperatorID() uint64 {
  4710. if x != nil && x.OperatorID != nil {
  4711. return *x.OperatorID
  4712. }
  4713. return 0
  4714. }
  4715. func (x *ZSBuyOrderDestingNegPriceReq) GetMarketID() uint32 {
  4716. if x != nil && x.MarketID != nil {
  4717. return *x.MarketID
  4718. }
  4719. return 0
  4720. }
  4721. func (x *ZSBuyOrderDestingNegPriceReq) GetApplyRemark() string {
  4722. if x != nil && x.ApplyRemark != nil {
  4723. return *x.ApplyRemark
  4724. }
  4725. return ""
  4726. }
  4727. // 买摘牌询价接口应答
  4728. type ZSBuyOrderDestingNegPriceRsp struct {
  4729. state protoimpl.MessageState
  4730. sizeCache protoimpl.SizeCache
  4731. unknownFields protoimpl.UnknownFields
  4732. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4733. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4734. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4735. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4736. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4737. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 摘牌委托单ID
  4738. WRBargainID *uint64 `protobuf:"varint,7,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID
  4739. OrderTime *string `protobuf:"bytes,8,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接收委托交易的时间
  4740. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4741. }
  4742. func (x *ZSBuyOrderDestingNegPriceRsp) Reset() {
  4743. *x = ZSBuyOrderDestingNegPriceRsp{}
  4744. if protoimpl.UnsafeEnabled {
  4745. mi := &file_mtp2_proto_msgTypes[49]
  4746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4747. ms.StoreMessageInfo(mi)
  4748. }
  4749. }
  4750. func (x *ZSBuyOrderDestingNegPriceRsp) String() string {
  4751. return protoimpl.X.MessageStringOf(x)
  4752. }
  4753. func (*ZSBuyOrderDestingNegPriceRsp) ProtoMessage() {}
  4754. func (x *ZSBuyOrderDestingNegPriceRsp) ProtoReflect() protoreflect.Message {
  4755. mi := &file_mtp2_proto_msgTypes[49]
  4756. if protoimpl.UnsafeEnabled && x != nil {
  4757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4758. if ms.LoadMessageInfo() == nil {
  4759. ms.StoreMessageInfo(mi)
  4760. }
  4761. return ms
  4762. }
  4763. return mi.MessageOf(x)
  4764. }
  4765. // Deprecated: Use ZSBuyOrderDestingNegPriceRsp.ProtoReflect.Descriptor instead.
  4766. func (*ZSBuyOrderDestingNegPriceRsp) Descriptor() ([]byte, []int) {
  4767. return file_mtp2_proto_rawDescGZIP(), []int{49}
  4768. }
  4769. func (x *ZSBuyOrderDestingNegPriceRsp) GetHeader() *MessageHead {
  4770. if x != nil {
  4771. return x.Header
  4772. }
  4773. return nil
  4774. }
  4775. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetCode() int32 {
  4776. if x != nil && x.RetCode != nil {
  4777. return *x.RetCode
  4778. }
  4779. return 0
  4780. }
  4781. func (x *ZSBuyOrderDestingNegPriceRsp) GetRetDesc() string {
  4782. if x != nil && x.RetDesc != nil {
  4783. return *x.RetDesc
  4784. }
  4785. return ""
  4786. }
  4787. func (x *ZSBuyOrderDestingNegPriceRsp) GetUserID() uint32 {
  4788. if x != nil && x.UserID != nil {
  4789. return *x.UserID
  4790. }
  4791. return 0
  4792. }
  4793. func (x *ZSBuyOrderDestingNegPriceRsp) GetAccountID() uint64 {
  4794. if x != nil && x.AccountID != nil {
  4795. return *x.AccountID
  4796. }
  4797. return 0
  4798. }
  4799. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRTradeOrderID() uint64 {
  4800. if x != nil && x.WRTradeOrderID != nil {
  4801. return *x.WRTradeOrderID
  4802. }
  4803. return 0
  4804. }
  4805. func (x *ZSBuyOrderDestingNegPriceRsp) GetWRBargainID() uint64 {
  4806. if x != nil && x.WRBargainID != nil {
  4807. return *x.WRBargainID
  4808. }
  4809. return 0
  4810. }
  4811. func (x *ZSBuyOrderDestingNegPriceRsp) GetOrderTime() string {
  4812. if x != nil && x.OrderTime != nil {
  4813. return *x.OrderTime
  4814. }
  4815. return ""
  4816. }
  4817. func (x *ZSBuyOrderDestingNegPriceRsp) GetClientSerialNo() string {
  4818. if x != nil && x.ClientSerialNo != nil {
  4819. return *x.ClientSerialNo
  4820. }
  4821. return ""
  4822. }
  4823. // 买摘牌询价操作接口请求
  4824. type ZSBuyOrderDestingNegPriceOperateReq struct {
  4825. state protoimpl.MessageState
  4826. sizeCache protoimpl.SizeCache
  4827. unknownFields protoimpl.UnknownFields
  4828. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  4829. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  4830. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  4831. WRBargainID *uint64 `protobuf:"varint,4,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 议价申请单ID,必填
  4832. AuditRemark *string `protobuf:"bytes,5,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 备注
  4833. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,1:撤销2:拒绝
  4834. MarketID *uint32 `protobuf:"varint,7,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  4835. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  4836. OrderSrc *uint32 `protobuf:"varint,9,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  4837. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4838. }
  4839. func (x *ZSBuyOrderDestingNegPriceOperateReq) Reset() {
  4840. *x = ZSBuyOrderDestingNegPriceOperateReq{}
  4841. if protoimpl.UnsafeEnabled {
  4842. mi := &file_mtp2_proto_msgTypes[50]
  4843. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4844. ms.StoreMessageInfo(mi)
  4845. }
  4846. }
  4847. func (x *ZSBuyOrderDestingNegPriceOperateReq) String() string {
  4848. return protoimpl.X.MessageStringOf(x)
  4849. }
  4850. func (*ZSBuyOrderDestingNegPriceOperateReq) ProtoMessage() {}
  4851. func (x *ZSBuyOrderDestingNegPriceOperateReq) ProtoReflect() protoreflect.Message {
  4852. mi := &file_mtp2_proto_msgTypes[50]
  4853. if protoimpl.UnsafeEnabled && x != nil {
  4854. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4855. if ms.LoadMessageInfo() == nil {
  4856. ms.StoreMessageInfo(mi)
  4857. }
  4858. return ms
  4859. }
  4860. return mi.MessageOf(x)
  4861. }
  4862. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateReq.ProtoReflect.Descriptor instead.
  4863. func (*ZSBuyOrderDestingNegPriceOperateReq) Descriptor() ([]byte, []int) {
  4864. return file_mtp2_proto_rawDescGZIP(), []int{50}
  4865. }
  4866. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetHeader() *MessageHead {
  4867. if x != nil {
  4868. return x.Header
  4869. }
  4870. return nil
  4871. }
  4872. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetUserID() uint32 {
  4873. if x != nil && x.UserID != nil {
  4874. return *x.UserID
  4875. }
  4876. return 0
  4877. }
  4878. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAccountID() uint64 {
  4879. if x != nil && x.AccountID != nil {
  4880. return *x.AccountID
  4881. }
  4882. return 0
  4883. }
  4884. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetWRBargainID() uint64 {
  4885. if x != nil && x.WRBargainID != nil {
  4886. return *x.WRBargainID
  4887. }
  4888. return 0
  4889. }
  4890. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetAuditRemark() string {
  4891. if x != nil && x.AuditRemark != nil {
  4892. return *x.AuditRemark
  4893. }
  4894. return ""
  4895. }
  4896. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOperateType() uint32 {
  4897. if x != nil && x.OperateType != nil {
  4898. return *x.OperateType
  4899. }
  4900. return 0
  4901. }
  4902. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetMarketID() uint32 {
  4903. if x != nil && x.MarketID != nil {
  4904. return *x.MarketID
  4905. }
  4906. return 0
  4907. }
  4908. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientType() uint32 {
  4909. if x != nil && x.ClientType != nil {
  4910. return *x.ClientType
  4911. }
  4912. return 0
  4913. }
  4914. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetOrderSrc() uint32 {
  4915. if x != nil && x.OrderSrc != nil {
  4916. return *x.OrderSrc
  4917. }
  4918. return 0
  4919. }
  4920. func (x *ZSBuyOrderDestingNegPriceOperateReq) GetClientSerialNo() string {
  4921. if x != nil && x.ClientSerialNo != nil {
  4922. return *x.ClientSerialNo
  4923. }
  4924. return ""
  4925. }
  4926. // 买摘牌询价操作接口应答
  4927. type ZSBuyOrderDestingNegPriceOperateRsp struct {
  4928. state protoimpl.MessageState
  4929. sizeCache protoimpl.SizeCache
  4930. unknownFields protoimpl.UnknownFields
  4931. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  4932. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  4933. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  4934. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  4935. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  4936. WRBargainID *uint64 `protobuf:"varint,6,opt,name=WRBargainID" json:"WRBargainID,omitempty"` // 卖委托单号
  4937. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  4938. }
  4939. func (x *ZSBuyOrderDestingNegPriceOperateRsp) Reset() {
  4940. *x = ZSBuyOrderDestingNegPriceOperateRsp{}
  4941. if protoimpl.UnsafeEnabled {
  4942. mi := &file_mtp2_proto_msgTypes[51]
  4943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4944. ms.StoreMessageInfo(mi)
  4945. }
  4946. }
  4947. func (x *ZSBuyOrderDestingNegPriceOperateRsp) String() string {
  4948. return protoimpl.X.MessageStringOf(x)
  4949. }
  4950. func (*ZSBuyOrderDestingNegPriceOperateRsp) ProtoMessage() {}
  4951. func (x *ZSBuyOrderDestingNegPriceOperateRsp) ProtoReflect() protoreflect.Message {
  4952. mi := &file_mtp2_proto_msgTypes[51]
  4953. if protoimpl.UnsafeEnabled && x != nil {
  4954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  4955. if ms.LoadMessageInfo() == nil {
  4956. ms.StoreMessageInfo(mi)
  4957. }
  4958. return ms
  4959. }
  4960. return mi.MessageOf(x)
  4961. }
  4962. // Deprecated: Use ZSBuyOrderDestingNegPriceOperateRsp.ProtoReflect.Descriptor instead.
  4963. func (*ZSBuyOrderDestingNegPriceOperateRsp) Descriptor() ([]byte, []int) {
  4964. return file_mtp2_proto_rawDescGZIP(), []int{51}
  4965. }
  4966. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetHeader() *MessageHead {
  4967. if x != nil {
  4968. return x.Header
  4969. }
  4970. return nil
  4971. }
  4972. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetCode() int32 {
  4973. if x != nil && x.RetCode != nil {
  4974. return *x.RetCode
  4975. }
  4976. return 0
  4977. }
  4978. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetRetDesc() string {
  4979. if x != nil && x.RetDesc != nil {
  4980. return *x.RetDesc
  4981. }
  4982. return ""
  4983. }
  4984. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetUserID() uint32 {
  4985. if x != nil && x.UserID != nil {
  4986. return *x.UserID
  4987. }
  4988. return 0
  4989. }
  4990. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetAccountID() uint64 {
  4991. if x != nil && x.AccountID != nil {
  4992. return *x.AccountID
  4993. }
  4994. return 0
  4995. }
  4996. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetWRBargainID() uint64 {
  4997. if x != nil && x.WRBargainID != nil {
  4998. return *x.WRBargainID
  4999. }
  5000. return 0
  5001. }
  5002. func (x *ZSBuyOrderDestingNegPriceOperateRsp) GetClientSerialNo() string {
  5003. if x != nil && x.ClientSerialNo != nil {
  5004. return *x.ClientSerialNo
  5005. }
  5006. return ""
  5007. }
  5008. // 挂牌撤单请求
  5009. type WRListingCancelOrderReq struct {
  5010. state protoimpl.MessageState
  5011. sizeCache protoimpl.SizeCache
  5012. unknownFields protoimpl.UnknownFields
  5013. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5014. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  5015. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  5016. OldWRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  5017. OrderSrc *uint32 `protobuf:"varint,5,opt,name=OrderSrc" json:"OrderSrc,omitempty"` // 委托来源
  5018. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5019. ClientOrderTime *string `protobuf:"bytes,7,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 客户端委托时间
  5020. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5021. OperatorID *uint64 `protobuf:"varint,9,opt,name=OperatorID" json:"OperatorID,omitempty"` // 操作员账号ID
  5022. BuyOrSell *uint32 `protobuf:"varint,10,opt,name=BuyOrSell" json:"BuyOrSell,omitempty"` // 买卖方向
  5023. WRID *uint64 `protobuf:"varint,11,opt,name=WRID" json:"WRID,omitempty"` // 仓单ID,卖的时候填写
  5024. }
  5025. func (x *WRListingCancelOrderReq) Reset() {
  5026. *x = WRListingCancelOrderReq{}
  5027. if protoimpl.UnsafeEnabled {
  5028. mi := &file_mtp2_proto_msgTypes[52]
  5029. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5030. ms.StoreMessageInfo(mi)
  5031. }
  5032. }
  5033. func (x *WRListingCancelOrderReq) String() string {
  5034. return protoimpl.X.MessageStringOf(x)
  5035. }
  5036. func (*WRListingCancelOrderReq) ProtoMessage() {}
  5037. func (x *WRListingCancelOrderReq) ProtoReflect() protoreflect.Message {
  5038. mi := &file_mtp2_proto_msgTypes[52]
  5039. if protoimpl.UnsafeEnabled && x != nil {
  5040. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5041. if ms.LoadMessageInfo() == nil {
  5042. ms.StoreMessageInfo(mi)
  5043. }
  5044. return ms
  5045. }
  5046. return mi.MessageOf(x)
  5047. }
  5048. // Deprecated: Use WRListingCancelOrderReq.ProtoReflect.Descriptor instead.
  5049. func (*WRListingCancelOrderReq) Descriptor() ([]byte, []int) {
  5050. return file_mtp2_proto_rawDescGZIP(), []int{52}
  5051. }
  5052. func (x *WRListingCancelOrderReq) GetHeader() *MessageHead {
  5053. if x != nil {
  5054. return x.Header
  5055. }
  5056. return nil
  5057. }
  5058. func (x *WRListingCancelOrderReq) GetUserID() uint32 {
  5059. if x != nil && x.UserID != nil {
  5060. return *x.UserID
  5061. }
  5062. return 0
  5063. }
  5064. func (x *WRListingCancelOrderReq) GetAccountID() uint64 {
  5065. if x != nil && x.AccountID != nil {
  5066. return *x.AccountID
  5067. }
  5068. return 0
  5069. }
  5070. func (x *WRListingCancelOrderReq) GetOldWRTradeOrderID() uint64 {
  5071. if x != nil && x.OldWRTradeOrderID != nil {
  5072. return *x.OldWRTradeOrderID
  5073. }
  5074. return 0
  5075. }
  5076. func (x *WRListingCancelOrderReq) GetOrderSrc() uint32 {
  5077. if x != nil && x.OrderSrc != nil {
  5078. return *x.OrderSrc
  5079. }
  5080. return 0
  5081. }
  5082. func (x *WRListingCancelOrderReq) GetClientSerialNo() string {
  5083. if x != nil && x.ClientSerialNo != nil {
  5084. return *x.ClientSerialNo
  5085. }
  5086. return ""
  5087. }
  5088. func (x *WRListingCancelOrderReq) GetClientOrderTime() string {
  5089. if x != nil && x.ClientOrderTime != nil {
  5090. return *x.ClientOrderTime
  5091. }
  5092. return ""
  5093. }
  5094. func (x *WRListingCancelOrderReq) GetClientType() uint32 {
  5095. if x != nil && x.ClientType != nil {
  5096. return *x.ClientType
  5097. }
  5098. return 0
  5099. }
  5100. func (x *WRListingCancelOrderReq) GetOperatorID() uint64 {
  5101. if x != nil && x.OperatorID != nil {
  5102. return *x.OperatorID
  5103. }
  5104. return 0
  5105. }
  5106. func (x *WRListingCancelOrderReq) GetBuyOrSell() uint32 {
  5107. if x != nil && x.BuyOrSell != nil {
  5108. return *x.BuyOrSell
  5109. }
  5110. return 0
  5111. }
  5112. func (x *WRListingCancelOrderReq) GetWRID() uint64 {
  5113. if x != nil && x.WRID != nil {
  5114. return *x.WRID
  5115. }
  5116. return 0
  5117. }
  5118. // 挂牌撤单应答
  5119. type WRListingCancelOrderRsp struct {
  5120. state protoimpl.MessageState
  5121. sizeCache protoimpl.SizeCache
  5122. unknownFields protoimpl.UnknownFields
  5123. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5124. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5125. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5126. WRTradeCancelID *uint64 `protobuf:"varint,4,opt,name=WRTradeCancelID" json:"WRTradeCancelID,omitempty"` // 仓单贸易撤单号
  5127. OldWRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=OldWRTradeOrderID" json:"OldWRTradeOrderID,omitempty"` // 目标仓单贸易委托单ID
  5128. UserID *uint32 `protobuf:"varint,6,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  5129. AccountID *uint64 `protobuf:"varint,7,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  5130. CancelQty *uint64 `protobuf:"varint,8,opt,name=CancelQty" json:"CancelQty,omitempty"` // 撤单数量
  5131. OrderTime *string `protobuf:"bytes,9,opt,name=OrderTime" json:"OrderTime,omitempty"` // 接受撤单的时间
  5132. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5133. }
  5134. func (x *WRListingCancelOrderRsp) Reset() {
  5135. *x = WRListingCancelOrderRsp{}
  5136. if protoimpl.UnsafeEnabled {
  5137. mi := &file_mtp2_proto_msgTypes[53]
  5138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5139. ms.StoreMessageInfo(mi)
  5140. }
  5141. }
  5142. func (x *WRListingCancelOrderRsp) String() string {
  5143. return protoimpl.X.MessageStringOf(x)
  5144. }
  5145. func (*WRListingCancelOrderRsp) ProtoMessage() {}
  5146. func (x *WRListingCancelOrderRsp) ProtoReflect() protoreflect.Message {
  5147. mi := &file_mtp2_proto_msgTypes[53]
  5148. if protoimpl.UnsafeEnabled && x != nil {
  5149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5150. if ms.LoadMessageInfo() == nil {
  5151. ms.StoreMessageInfo(mi)
  5152. }
  5153. return ms
  5154. }
  5155. return mi.MessageOf(x)
  5156. }
  5157. // Deprecated: Use WRListingCancelOrderRsp.ProtoReflect.Descriptor instead.
  5158. func (*WRListingCancelOrderRsp) Descriptor() ([]byte, []int) {
  5159. return file_mtp2_proto_rawDescGZIP(), []int{53}
  5160. }
  5161. func (x *WRListingCancelOrderRsp) GetHeader() *MessageHead {
  5162. if x != nil {
  5163. return x.Header
  5164. }
  5165. return nil
  5166. }
  5167. func (x *WRListingCancelOrderRsp) GetRetCode() int32 {
  5168. if x != nil && x.RetCode != nil {
  5169. return *x.RetCode
  5170. }
  5171. return 0
  5172. }
  5173. func (x *WRListingCancelOrderRsp) GetRetDesc() string {
  5174. if x != nil && x.RetDesc != nil {
  5175. return *x.RetDesc
  5176. }
  5177. return ""
  5178. }
  5179. func (x *WRListingCancelOrderRsp) GetWRTradeCancelID() uint64 {
  5180. if x != nil && x.WRTradeCancelID != nil {
  5181. return *x.WRTradeCancelID
  5182. }
  5183. return 0
  5184. }
  5185. func (x *WRListingCancelOrderRsp) GetOldWRTradeOrderID() uint64 {
  5186. if x != nil && x.OldWRTradeOrderID != nil {
  5187. return *x.OldWRTradeOrderID
  5188. }
  5189. return 0
  5190. }
  5191. func (x *WRListingCancelOrderRsp) GetUserID() uint32 {
  5192. if x != nil && x.UserID != nil {
  5193. return *x.UserID
  5194. }
  5195. return 0
  5196. }
  5197. func (x *WRListingCancelOrderRsp) GetAccountID() uint64 {
  5198. if x != nil && x.AccountID != nil {
  5199. return *x.AccountID
  5200. }
  5201. return 0
  5202. }
  5203. func (x *WRListingCancelOrderRsp) GetCancelQty() uint64 {
  5204. if x != nil && x.CancelQty != nil {
  5205. return *x.CancelQty
  5206. }
  5207. return 0
  5208. }
  5209. func (x *WRListingCancelOrderRsp) GetOrderTime() string {
  5210. if x != nil && x.OrderTime != nil {
  5211. return *x.OrderTime
  5212. }
  5213. return ""
  5214. }
  5215. func (x *WRListingCancelOrderRsp) GetClientSerialNo() string {
  5216. if x != nil && x.ClientSerialNo != nil {
  5217. return *x.ClientSerialNo
  5218. }
  5219. return ""
  5220. }
  5221. // 钻石出库申请接口请求
  5222. type ReceiptZSOutApplyReq struct {
  5223. state protoimpl.MessageState
  5224. sizeCache protoimpl.SizeCache
  5225. unknownFields protoimpl.UnknownFields
  5226. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5227. Common *WRCommon `protobuf:"bytes,2,opt,name=Common" json:"Common,omitempty"` //
  5228. UserID *uint64 `protobuf:"varint,3,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5229. AccountID *uint64 `protobuf:"varint,4,opt,name=AccountID" json:"AccountID,omitempty"` // 用户帐户ID
  5230. WRStandardID *uint64 `protobuf:"varint,5,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货品种ID
  5231. WarehouseID *uint32 `protobuf:"varint,6,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID
  5232. Mobile *string `protobuf:"bytes,7,opt,name=Mobile" json:"Mobile,omitempty"` // 申请人手机号
  5233. AppointmentDate *string `protobuf:"bytes,8,opt,name=AppointmentDate" json:"AppointmentDate,omitempty"` // 预约日期
  5234. AppointmentModel *int32 `protobuf:"varint,9,opt,name=AppointmentModel" json:"AppointmentModel,omitempty"` // 预约方式:1-物流3-自提
  5235. CountryID *uint64 `protobuf:"varint,10,opt,name=CountryID" json:"CountryID,omitempty"` // 国家
  5236. ProvinceID *uint64 `protobuf:"varint,11,opt,name=ProvinceID" json:"ProvinceID,omitempty"` // 省
  5237. DistrictID *uint64 `protobuf:"varint,12,opt,name=DistrictID" json:"DistrictID,omitempty"` // 区
  5238. CityID *uint64 `protobuf:"varint,13,opt,name=CityID" json:"CityID,omitempty"` // 市
  5239. Address *string `protobuf:"bytes,14,opt,name=Address" json:"Address,omitempty"` // 详细地址
  5240. ContactName *string `protobuf:"bytes,15,opt,name=ContactName" json:"ContactName,omitempty"` // 收货人提货人
  5241. ContactNum *string `protobuf:"bytes,16,opt,name=ContactNum" json:"ContactNum,omitempty"` // 收货人提货人手机
  5242. AppointmentRemark *string `protobuf:"bytes,17,opt,name=AppointmentRemark" json:"AppointmentRemark,omitempty"` // 预约备注
  5243. LadingBillID *uint64 `protobuf:"varint,18,opt,name=LadingBillID" json:"LadingBillID,omitempty"` // 提单ID,必填
  5244. SubNum *uint32 `protobuf:"varint,19,opt,name=SubNum" json:"SubNum,omitempty"` // 提单子单号,必填
  5245. Qty *float64 `protobuf:"fixed64,20,opt,name=Qty" json:"Qty,omitempty"` // 出库数量,两位小数,必填
  5246. Remark *string `protobuf:"bytes,21,opt,name=Remark" json:"Remark,omitempty"` // 备注
  5247. ApplyType *uint32 `protobuf:"varint,22,opt,name=ApplyType" json:"ApplyType,omitempty"` // 申请类型1:会员申请2:平台申请
  5248. ClientType *uint32 `protobuf:"varint,23,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5249. ClientTicket *string `protobuf:"bytes,24,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5250. }
  5251. func (x *ReceiptZSOutApplyReq) Reset() {
  5252. *x = ReceiptZSOutApplyReq{}
  5253. if protoimpl.UnsafeEnabled {
  5254. mi := &file_mtp2_proto_msgTypes[54]
  5255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5256. ms.StoreMessageInfo(mi)
  5257. }
  5258. }
  5259. func (x *ReceiptZSOutApplyReq) String() string {
  5260. return protoimpl.X.MessageStringOf(x)
  5261. }
  5262. func (*ReceiptZSOutApplyReq) ProtoMessage() {}
  5263. func (x *ReceiptZSOutApplyReq) ProtoReflect() protoreflect.Message {
  5264. mi := &file_mtp2_proto_msgTypes[54]
  5265. if protoimpl.UnsafeEnabled && x != nil {
  5266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5267. if ms.LoadMessageInfo() == nil {
  5268. ms.StoreMessageInfo(mi)
  5269. }
  5270. return ms
  5271. }
  5272. return mi.MessageOf(x)
  5273. }
  5274. // Deprecated: Use ReceiptZSOutApplyReq.ProtoReflect.Descriptor instead.
  5275. func (*ReceiptZSOutApplyReq) Descriptor() ([]byte, []int) {
  5276. return file_mtp2_proto_rawDescGZIP(), []int{54}
  5277. }
  5278. func (x *ReceiptZSOutApplyReq) GetHeader() *MessageHead {
  5279. if x != nil {
  5280. return x.Header
  5281. }
  5282. return nil
  5283. }
  5284. func (x *ReceiptZSOutApplyReq) GetCommon() *WRCommon {
  5285. if x != nil {
  5286. return x.Common
  5287. }
  5288. return nil
  5289. }
  5290. func (x *ReceiptZSOutApplyReq) GetUserID() uint64 {
  5291. if x != nil && x.UserID != nil {
  5292. return *x.UserID
  5293. }
  5294. return 0
  5295. }
  5296. func (x *ReceiptZSOutApplyReq) GetAccountID() uint64 {
  5297. if x != nil && x.AccountID != nil {
  5298. return *x.AccountID
  5299. }
  5300. return 0
  5301. }
  5302. func (x *ReceiptZSOutApplyReq) GetWRStandardID() uint64 {
  5303. if x != nil && x.WRStandardID != nil {
  5304. return *x.WRStandardID
  5305. }
  5306. return 0
  5307. }
  5308. func (x *ReceiptZSOutApplyReq) GetWarehouseID() uint32 {
  5309. if x != nil && x.WarehouseID != nil {
  5310. return *x.WarehouseID
  5311. }
  5312. return 0
  5313. }
  5314. func (x *ReceiptZSOutApplyReq) GetMobile() string {
  5315. if x != nil && x.Mobile != nil {
  5316. return *x.Mobile
  5317. }
  5318. return ""
  5319. }
  5320. func (x *ReceiptZSOutApplyReq) GetAppointmentDate() string {
  5321. if x != nil && x.AppointmentDate != nil {
  5322. return *x.AppointmentDate
  5323. }
  5324. return ""
  5325. }
  5326. func (x *ReceiptZSOutApplyReq) GetAppointmentModel() int32 {
  5327. if x != nil && x.AppointmentModel != nil {
  5328. return *x.AppointmentModel
  5329. }
  5330. return 0
  5331. }
  5332. func (x *ReceiptZSOutApplyReq) GetCountryID() uint64 {
  5333. if x != nil && x.CountryID != nil {
  5334. return *x.CountryID
  5335. }
  5336. return 0
  5337. }
  5338. func (x *ReceiptZSOutApplyReq) GetProvinceID() uint64 {
  5339. if x != nil && x.ProvinceID != nil {
  5340. return *x.ProvinceID
  5341. }
  5342. return 0
  5343. }
  5344. func (x *ReceiptZSOutApplyReq) GetDistrictID() uint64 {
  5345. if x != nil && x.DistrictID != nil {
  5346. return *x.DistrictID
  5347. }
  5348. return 0
  5349. }
  5350. func (x *ReceiptZSOutApplyReq) GetCityID() uint64 {
  5351. if x != nil && x.CityID != nil {
  5352. return *x.CityID
  5353. }
  5354. return 0
  5355. }
  5356. func (x *ReceiptZSOutApplyReq) GetAddress() string {
  5357. if x != nil && x.Address != nil {
  5358. return *x.Address
  5359. }
  5360. return ""
  5361. }
  5362. func (x *ReceiptZSOutApplyReq) GetContactName() string {
  5363. if x != nil && x.ContactName != nil {
  5364. return *x.ContactName
  5365. }
  5366. return ""
  5367. }
  5368. func (x *ReceiptZSOutApplyReq) GetContactNum() string {
  5369. if x != nil && x.ContactNum != nil {
  5370. return *x.ContactNum
  5371. }
  5372. return ""
  5373. }
  5374. func (x *ReceiptZSOutApplyReq) GetAppointmentRemark() string {
  5375. if x != nil && x.AppointmentRemark != nil {
  5376. return *x.AppointmentRemark
  5377. }
  5378. return ""
  5379. }
  5380. func (x *ReceiptZSOutApplyReq) GetLadingBillID() uint64 {
  5381. if x != nil && x.LadingBillID != nil {
  5382. return *x.LadingBillID
  5383. }
  5384. return 0
  5385. }
  5386. func (x *ReceiptZSOutApplyReq) GetSubNum() uint32 {
  5387. if x != nil && x.SubNum != nil {
  5388. return *x.SubNum
  5389. }
  5390. return 0
  5391. }
  5392. func (x *ReceiptZSOutApplyReq) GetQty() float64 {
  5393. if x != nil && x.Qty != nil {
  5394. return *x.Qty
  5395. }
  5396. return 0
  5397. }
  5398. func (x *ReceiptZSOutApplyReq) GetRemark() string {
  5399. if x != nil && x.Remark != nil {
  5400. return *x.Remark
  5401. }
  5402. return ""
  5403. }
  5404. func (x *ReceiptZSOutApplyReq) GetApplyType() uint32 {
  5405. if x != nil && x.ApplyType != nil {
  5406. return *x.ApplyType
  5407. }
  5408. return 0
  5409. }
  5410. func (x *ReceiptZSOutApplyReq) GetClientType() uint32 {
  5411. if x != nil && x.ClientType != nil {
  5412. return *x.ClientType
  5413. }
  5414. return 0
  5415. }
  5416. func (x *ReceiptZSOutApplyReq) GetClientTicket() string {
  5417. if x != nil && x.ClientTicket != nil {
  5418. return *x.ClientTicket
  5419. }
  5420. return ""
  5421. }
  5422. // 钻石出库申请接口响应
  5423. type ReceiptZSOutApplyRsp struct {
  5424. state protoimpl.MessageState
  5425. sizeCache protoimpl.SizeCache
  5426. unknownFields protoimpl.UnknownFields
  5427. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5428. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5429. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5430. Common *WRCommon `protobuf:"bytes,4,opt,name=Common" json:"Common,omitempty"` //
  5431. ApplyID *uint64 `protobuf:"varint,5,opt,name=ApplyID" json:"ApplyID,omitempty"` // 申请ID
  5432. ClientTicket *string `protobuf:"bytes,6,opt,name=ClientTicket" json:"ClientTicket,omitempty"` // 客户端流水号
  5433. }
  5434. func (x *ReceiptZSOutApplyRsp) Reset() {
  5435. *x = ReceiptZSOutApplyRsp{}
  5436. if protoimpl.UnsafeEnabled {
  5437. mi := &file_mtp2_proto_msgTypes[55]
  5438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5439. ms.StoreMessageInfo(mi)
  5440. }
  5441. }
  5442. func (x *ReceiptZSOutApplyRsp) String() string {
  5443. return protoimpl.X.MessageStringOf(x)
  5444. }
  5445. func (*ReceiptZSOutApplyRsp) ProtoMessage() {}
  5446. func (x *ReceiptZSOutApplyRsp) ProtoReflect() protoreflect.Message {
  5447. mi := &file_mtp2_proto_msgTypes[55]
  5448. if protoimpl.UnsafeEnabled && x != nil {
  5449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5450. if ms.LoadMessageInfo() == nil {
  5451. ms.StoreMessageInfo(mi)
  5452. }
  5453. return ms
  5454. }
  5455. return mi.MessageOf(x)
  5456. }
  5457. // Deprecated: Use ReceiptZSOutApplyRsp.ProtoReflect.Descriptor instead.
  5458. func (*ReceiptZSOutApplyRsp) Descriptor() ([]byte, []int) {
  5459. return file_mtp2_proto_rawDescGZIP(), []int{55}
  5460. }
  5461. func (x *ReceiptZSOutApplyRsp) GetHeader() *MessageHead {
  5462. if x != nil {
  5463. return x.Header
  5464. }
  5465. return nil
  5466. }
  5467. func (x *ReceiptZSOutApplyRsp) GetRetCode() int32 {
  5468. if x != nil && x.RetCode != nil {
  5469. return *x.RetCode
  5470. }
  5471. return 0
  5472. }
  5473. func (x *ReceiptZSOutApplyRsp) GetRetDesc() string {
  5474. if x != nil && x.RetDesc != nil {
  5475. return *x.RetDesc
  5476. }
  5477. return ""
  5478. }
  5479. func (x *ReceiptZSOutApplyRsp) GetCommon() *WRCommon {
  5480. if x != nil {
  5481. return x.Common
  5482. }
  5483. return nil
  5484. }
  5485. func (x *ReceiptZSOutApplyRsp) GetApplyID() uint64 {
  5486. if x != nil && x.ApplyID != nil {
  5487. return *x.ApplyID
  5488. }
  5489. return 0
  5490. }
  5491. func (x *ReceiptZSOutApplyRsp) GetClientTicket() string {
  5492. if x != nil && x.ClientTicket != nil {
  5493. return *x.ClientTicket
  5494. }
  5495. return ""
  5496. }
  5497. // 铁合金保证金配置信息
  5498. type DepositConfigInfo struct {
  5499. state protoimpl.MessageState
  5500. sizeCache protoimpl.SizeCache
  5501. unknownFields protoimpl.UnknownFields
  5502. DepositRate *float64 `protobuf:"fixed64,1,opt,name=DepositRate" json:"DepositRate,omitempty"` // 定金比例
  5503. DiscountAmount *float64 `protobuf:"fixed64,2,opt,name=DiscountAmount" json:"DiscountAmount,omitempty"` // 优惠金额
  5504. }
  5505. func (x *DepositConfigInfo) Reset() {
  5506. *x = DepositConfigInfo{}
  5507. if protoimpl.UnsafeEnabled {
  5508. mi := &file_mtp2_proto_msgTypes[56]
  5509. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5510. ms.StoreMessageInfo(mi)
  5511. }
  5512. }
  5513. func (x *DepositConfigInfo) String() string {
  5514. return protoimpl.X.MessageStringOf(x)
  5515. }
  5516. func (*DepositConfigInfo) ProtoMessage() {}
  5517. func (x *DepositConfigInfo) ProtoReflect() protoreflect.Message {
  5518. mi := &file_mtp2_proto_msgTypes[56]
  5519. if protoimpl.UnsafeEnabled && x != nil {
  5520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5521. if ms.LoadMessageInfo() == nil {
  5522. ms.StoreMessageInfo(mi)
  5523. }
  5524. return ms
  5525. }
  5526. return mi.MessageOf(x)
  5527. }
  5528. // Deprecated: Use DepositConfigInfo.ProtoReflect.Descriptor instead.
  5529. func (*DepositConfigInfo) Descriptor() ([]byte, []int) {
  5530. return file_mtp2_proto_rawDescGZIP(), []int{56}
  5531. }
  5532. func (x *DepositConfigInfo) GetDepositRate() float64 {
  5533. if x != nil && x.DepositRate != nil {
  5534. return *x.DepositRate
  5535. }
  5536. return 0
  5537. }
  5538. func (x *DepositConfigInfo) GetDiscountAmount() float64 {
  5539. if x != nil && x.DiscountAmount != nil {
  5540. return *x.DiscountAmount
  5541. }
  5542. return 0
  5543. }
  5544. // 铁合金现货预售挂牌接口请求
  5545. type SpotPresaleListingOrderReq struct {
  5546. state protoimpl.MessageState
  5547. sizeCache protoimpl.SizeCache
  5548. unknownFields protoimpl.UnknownFields
  5549. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  5550. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  5551. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号,必填
  5552. WRStandardID *uint32 `protobuf:"varint,4,opt,name=WRStandardID" json:"WRStandardID,omitempty"` // 现货商品ID,必填
  5553. WarehouseID *uint32 `protobuf:"varint,5,opt,name=WarehouseID" json:"WarehouseID,omitempty"` // 仓库ID,必填
  5554. Qty *uint64 `protobuf:"varint,6,opt,name=Qty" json:"Qty,omitempty"` // 预售数量,必填
  5555. EndDate *string `protobuf:"bytes,7,opt,name=EndDate" json:"EndDate,omitempty"` // 到期时间,必填
  5556. DepositConfigs []*DepositConfigInfo `protobuf:"bytes,8,rep,name=DepositConfigs" json:"DepositConfigs,omitempty"` // 保证金配置信息,至少一组
  5557. ClientType *uint32 `protobuf:"varint,9,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  5558. ClientSerialNo *string `protobuf:"bytes,10,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5559. UnitPrice *float64 `protobuf:"fixed64,11,opt,name=UnitPrice" json:"UnitPrice,omitempty"` // 参考价,小数,前10,后2,必填
  5560. }
  5561. func (x *SpotPresaleListingOrderReq) Reset() {
  5562. *x = SpotPresaleListingOrderReq{}
  5563. if protoimpl.UnsafeEnabled {
  5564. mi := &file_mtp2_proto_msgTypes[57]
  5565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5566. ms.StoreMessageInfo(mi)
  5567. }
  5568. }
  5569. func (x *SpotPresaleListingOrderReq) String() string {
  5570. return protoimpl.X.MessageStringOf(x)
  5571. }
  5572. func (*SpotPresaleListingOrderReq) ProtoMessage() {}
  5573. func (x *SpotPresaleListingOrderReq) ProtoReflect() protoreflect.Message {
  5574. mi := &file_mtp2_proto_msgTypes[57]
  5575. if protoimpl.UnsafeEnabled && x != nil {
  5576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5577. if ms.LoadMessageInfo() == nil {
  5578. ms.StoreMessageInfo(mi)
  5579. }
  5580. return ms
  5581. }
  5582. return mi.MessageOf(x)
  5583. }
  5584. // Deprecated: Use SpotPresaleListingOrderReq.ProtoReflect.Descriptor instead.
  5585. func (*SpotPresaleListingOrderReq) Descriptor() ([]byte, []int) {
  5586. return file_mtp2_proto_rawDescGZIP(), []int{57}
  5587. }
  5588. func (x *SpotPresaleListingOrderReq) GetHeader() *MessageHead {
  5589. if x != nil {
  5590. return x.Header
  5591. }
  5592. return nil
  5593. }
  5594. func (x *SpotPresaleListingOrderReq) GetUserID() uint32 {
  5595. if x != nil && x.UserID != nil {
  5596. return *x.UserID
  5597. }
  5598. return 0
  5599. }
  5600. func (x *SpotPresaleListingOrderReq) GetAccountID() uint64 {
  5601. if x != nil && x.AccountID != nil {
  5602. return *x.AccountID
  5603. }
  5604. return 0
  5605. }
  5606. func (x *SpotPresaleListingOrderReq) GetWRStandardID() uint32 {
  5607. if x != nil && x.WRStandardID != nil {
  5608. return *x.WRStandardID
  5609. }
  5610. return 0
  5611. }
  5612. func (x *SpotPresaleListingOrderReq) GetWarehouseID() uint32 {
  5613. if x != nil && x.WarehouseID != nil {
  5614. return *x.WarehouseID
  5615. }
  5616. return 0
  5617. }
  5618. func (x *SpotPresaleListingOrderReq) GetQty() uint64 {
  5619. if x != nil && x.Qty != nil {
  5620. return *x.Qty
  5621. }
  5622. return 0
  5623. }
  5624. func (x *SpotPresaleListingOrderReq) GetEndDate() string {
  5625. if x != nil && x.EndDate != nil {
  5626. return *x.EndDate
  5627. }
  5628. return ""
  5629. }
  5630. func (x *SpotPresaleListingOrderReq) GetDepositConfigs() []*DepositConfigInfo {
  5631. if x != nil {
  5632. return x.DepositConfigs
  5633. }
  5634. return nil
  5635. }
  5636. func (x *SpotPresaleListingOrderReq) GetClientType() uint32 {
  5637. if x != nil && x.ClientType != nil {
  5638. return *x.ClientType
  5639. }
  5640. return 0
  5641. }
  5642. func (x *SpotPresaleListingOrderReq) GetClientSerialNo() string {
  5643. if x != nil && x.ClientSerialNo != nil {
  5644. return *x.ClientSerialNo
  5645. }
  5646. return ""
  5647. }
  5648. func (x *SpotPresaleListingOrderReq) GetUnitPrice() float64 {
  5649. if x != nil && x.UnitPrice != nil {
  5650. return *x.UnitPrice
  5651. }
  5652. return 0
  5653. }
  5654. // 铁合金现货预售挂牌接口应答
  5655. type SpotPresaleListingOrderRsp struct {
  5656. state protoimpl.MessageState
  5657. sizeCache protoimpl.SizeCache
  5658. unknownFields protoimpl.UnknownFields
  5659. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5660. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  5661. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  5662. PresaleApplyID *uint64 `protobuf:"varint,4,opt,name=PresaleApplyID" json:"PresaleApplyID,omitempty"` // 预售申请ID
  5663. WRTradeOrderID *uint64 `protobuf:"varint,5,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 委托单ID
  5664. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  5665. }
  5666. func (x *SpotPresaleListingOrderRsp) Reset() {
  5667. *x = SpotPresaleListingOrderRsp{}
  5668. if protoimpl.UnsafeEnabled {
  5669. mi := &file_mtp2_proto_msgTypes[58]
  5670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5671. ms.StoreMessageInfo(mi)
  5672. }
  5673. }
  5674. func (x *SpotPresaleListingOrderRsp) String() string {
  5675. return protoimpl.X.MessageStringOf(x)
  5676. }
  5677. func (*SpotPresaleListingOrderRsp) ProtoMessage() {}
  5678. func (x *SpotPresaleListingOrderRsp) ProtoReflect() protoreflect.Message {
  5679. mi := &file_mtp2_proto_msgTypes[58]
  5680. if protoimpl.UnsafeEnabled && x != nil {
  5681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5682. if ms.LoadMessageInfo() == nil {
  5683. ms.StoreMessageInfo(mi)
  5684. }
  5685. return ms
  5686. }
  5687. return mi.MessageOf(x)
  5688. }
  5689. // Deprecated: Use SpotPresaleListingOrderRsp.ProtoReflect.Descriptor instead.
  5690. func (*SpotPresaleListingOrderRsp) Descriptor() ([]byte, []int) {
  5691. return file_mtp2_proto_rawDescGZIP(), []int{58}
  5692. }
  5693. func (x *SpotPresaleListingOrderRsp) GetHeader() *MessageHead {
  5694. if x != nil {
  5695. return x.Header
  5696. }
  5697. return nil
  5698. }
  5699. func (x *SpotPresaleListingOrderRsp) GetRetCode() int32 {
  5700. if x != nil && x.RetCode != nil {
  5701. return *x.RetCode
  5702. }
  5703. return 0
  5704. }
  5705. func (x *SpotPresaleListingOrderRsp) GetRetDesc() string {
  5706. if x != nil && x.RetDesc != nil {
  5707. return *x.RetDesc
  5708. }
  5709. return ""
  5710. }
  5711. func (x *SpotPresaleListingOrderRsp) GetPresaleApplyID() uint64 {
  5712. if x != nil && x.PresaleApplyID != nil {
  5713. return *x.PresaleApplyID
  5714. }
  5715. return 0
  5716. }
  5717. func (x *SpotPresaleListingOrderRsp) GetWRTradeOrderID() uint64 {
  5718. if x != nil && x.WRTradeOrderID != nil {
  5719. return *x.WRTradeOrderID
  5720. }
  5721. return 0
  5722. }
  5723. func (x *SpotPresaleListingOrderRsp) GetClientSerialNo() string {
  5724. if x != nil && x.ClientSerialNo != nil {
  5725. return *x.ClientSerialNo
  5726. }
  5727. return ""
  5728. }
  5729. // 铁合金成交通知
  5730. type THJPurchaseTradeNtf struct {
  5731. state protoimpl.MessageState
  5732. sizeCache protoimpl.SizeCache
  5733. unknownFields protoimpl.UnknownFields
  5734. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5735. WRTradeDetailID *uint64 `protobuf:"varint,2,opt,name=WRTradeDetailID" json:"WRTradeDetailID,omitempty"` // uint64 预售成交明细ID
  5736. }
  5737. func (x *THJPurchaseTradeNtf) Reset() {
  5738. *x = THJPurchaseTradeNtf{}
  5739. if protoimpl.UnsafeEnabled {
  5740. mi := &file_mtp2_proto_msgTypes[59]
  5741. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5742. ms.StoreMessageInfo(mi)
  5743. }
  5744. }
  5745. func (x *THJPurchaseTradeNtf) String() string {
  5746. return protoimpl.X.MessageStringOf(x)
  5747. }
  5748. func (*THJPurchaseTradeNtf) ProtoMessage() {}
  5749. func (x *THJPurchaseTradeNtf) ProtoReflect() protoreflect.Message {
  5750. mi := &file_mtp2_proto_msgTypes[59]
  5751. if protoimpl.UnsafeEnabled && x != nil {
  5752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5753. if ms.LoadMessageInfo() == nil {
  5754. ms.StoreMessageInfo(mi)
  5755. }
  5756. return ms
  5757. }
  5758. return mi.MessageOf(x)
  5759. }
  5760. // Deprecated: Use THJPurchaseTradeNtf.ProtoReflect.Descriptor instead.
  5761. func (*THJPurchaseTradeNtf) Descriptor() ([]byte, []int) {
  5762. return file_mtp2_proto_rawDescGZIP(), []int{59}
  5763. }
  5764. func (x *THJPurchaseTradeNtf) GetHeader() *MessageHead {
  5765. if x != nil {
  5766. return x.Header
  5767. }
  5768. return nil
  5769. }
  5770. func (x *THJPurchaseTradeNtf) GetWRTradeDetailID() uint64 {
  5771. if x != nil && x.WRTradeDetailID != nil {
  5772. return *x.WRTradeDetailID
  5773. }
  5774. return 0
  5775. }
  5776. // 铁合金协议转让通知
  5777. type PurchaseTransferNtf struct {
  5778. state protoimpl.MessageState
  5779. sizeCache protoimpl.SizeCache
  5780. unknownFields protoimpl.UnknownFields
  5781. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5782. TransferID *uint64 `protobuf:"varint,2,opt,name=TransferID" json:"TransferID,omitempty"` // uint64 协议转让ID
  5783. }
  5784. func (x *PurchaseTransferNtf) Reset() {
  5785. *x = PurchaseTransferNtf{}
  5786. if protoimpl.UnsafeEnabled {
  5787. mi := &file_mtp2_proto_msgTypes[60]
  5788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5789. ms.StoreMessageInfo(mi)
  5790. }
  5791. }
  5792. func (x *PurchaseTransferNtf) String() string {
  5793. return protoimpl.X.MessageStringOf(x)
  5794. }
  5795. func (*PurchaseTransferNtf) ProtoMessage() {}
  5796. func (x *PurchaseTransferNtf) ProtoReflect() protoreflect.Message {
  5797. mi := &file_mtp2_proto_msgTypes[60]
  5798. if protoimpl.UnsafeEnabled && x != nil {
  5799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5800. if ms.LoadMessageInfo() == nil {
  5801. ms.StoreMessageInfo(mi)
  5802. }
  5803. return ms
  5804. }
  5805. return mi.MessageOf(x)
  5806. }
  5807. // Deprecated: Use PurchaseTransferNtf.ProtoReflect.Descriptor instead.
  5808. func (*PurchaseTransferNtf) Descriptor() ([]byte, []int) {
  5809. return file_mtp2_proto_rawDescGZIP(), []int{60}
  5810. }
  5811. func (x *PurchaseTransferNtf) GetHeader() *MessageHead {
  5812. if x != nil {
  5813. return x.Header
  5814. }
  5815. return nil
  5816. }
  5817. func (x *PurchaseTransferNtf) GetTransferID() uint64 {
  5818. if x != nil && x.TransferID != nil {
  5819. return *x.TransferID
  5820. }
  5821. return 0
  5822. }
  5823. // 仓单贸易成交通知
  5824. type WRTradeDealedNtf struct {
  5825. state protoimpl.MessageState
  5826. sizeCache protoimpl.SizeCache
  5827. unknownFields protoimpl.UnknownFields
  5828. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  5829. NtfHeader *NotifyHead `protobuf:"bytes,2,opt,name=NtfHeader" json:"NtfHeader,omitempty"` // NotifyHead 公共消息头
  5830. ListingOrderID *uint64 `protobuf:"varint,3,opt,name=ListingOrderID" json:"ListingOrderID,omitempty"` // uint64 挂牌委托单号
  5831. DelistingOrderID *uint64 `protobuf:"varint,4,opt,name=DelistingOrderID" json:"DelistingOrderID,omitempty"` // uint64 摘牌委托单号
  5832. TradeQty *uint64 `protobuf:"varint,5,opt,name=TradeQty" json:"TradeQty,omitempty"` // uint64 挂牌成交数量
  5833. ActiveQty *uint64 `protobuf:"varint,6,opt,name=ActiveQty" json:"ActiveQty,omitempty"` // uint64 挂牌剩余数量
  5834. RealTradeQty *uint64 `protobuf:"varint,7,opt,name=RealTradeQty" json:"RealTradeQty,omitempty"` // uint64 摘牌实际成交数量
  5835. TradeID *uint64 `protobuf:"varint,8,opt,name=TradeID" json:"TradeID,omitempty"` // uint64 成交单ID
  5836. BuyAccountID *uint64 `protobuf:"varint,9,opt,name=BuyAccountID" json:"BuyAccountID,omitempty"` // uint64 买资金账号
  5837. SellAccountID *uint64 `protobuf:"varint,10,opt,name=SellAccountID" json:"SellAccountID,omitempty"` // uint64 卖资金账号
  5838. TradePrice *float64 `protobuf:"fixed64,11,opt,name=TradePrice" json:"TradePrice,omitempty"` // double 成交价
  5839. TradeTime *string `protobuf:"bytes,12,opt,name=TradeTime" json:"TradeTime,omitempty"` // string 成交时间
  5840. WRFactorTypeID *uint64 `protobuf:"varint,13,opt,name=WRFactorTypeID" json:"WRFactorTypeID,omitempty"` // uint64 仓单要素ID
  5841. WRTransferUserID *uint32 `protobuf:"varint,14,opt,name=WRTransferUserID" json:"WRTransferUserID,omitempty"` // uint32 仓单受让账户
  5842. FreezeFirstAmount *float64 `protobuf:"fixed64,15,opt,name=FreezeFirstAmount" json:"FreezeFirstAmount,omitempty"` // double 冻结首付金额
  5843. UnFreezeFirstAmount *float64 `protobuf:"fixed64,16,opt,name=UnFreezeFirstAmount" json:"UnFreezeFirstAmount,omitempty"` // double 解冻首付金额
  5844. RealTradeAmount *float64 `protobuf:"fixed64,17,opt,name=RealTradeAmount" json:"RealTradeAmount,omitempty"` // double 实际成交金额
  5845. PerformanceAmount *float64 `protobuf:"fixed64,18,opt,name=PerformanceAmount" json:"PerformanceAmount,omitempty"` // double 履约金额
  5846. PerformancePlanID *uint64 `protobuf:"varint,19,opt,name=PerformancePlanID" json:"PerformancePlanID,omitempty"` // uint64 履约计划ID
  5847. PerformanceTemplateID *int64 `protobuf:"varint,20,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // int64 履约计划模板ID
  5848. }
  5849. func (x *WRTradeDealedNtf) Reset() {
  5850. *x = WRTradeDealedNtf{}
  5851. if protoimpl.UnsafeEnabled {
  5852. mi := &file_mtp2_proto_msgTypes[61]
  5853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5854. ms.StoreMessageInfo(mi)
  5855. }
  5856. }
  5857. func (x *WRTradeDealedNtf) String() string {
  5858. return protoimpl.X.MessageStringOf(x)
  5859. }
  5860. func (*WRTradeDealedNtf) ProtoMessage() {}
  5861. func (x *WRTradeDealedNtf) ProtoReflect() protoreflect.Message {
  5862. mi := &file_mtp2_proto_msgTypes[61]
  5863. if protoimpl.UnsafeEnabled && x != nil {
  5864. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  5865. if ms.LoadMessageInfo() == nil {
  5866. ms.StoreMessageInfo(mi)
  5867. }
  5868. return ms
  5869. }
  5870. return mi.MessageOf(x)
  5871. }
  5872. // Deprecated: Use WRTradeDealedNtf.ProtoReflect.Descriptor instead.
  5873. func (*WRTradeDealedNtf) Descriptor() ([]byte, []int) {
  5874. return file_mtp2_proto_rawDescGZIP(), []int{61}
  5875. }
  5876. func (x *WRTradeDealedNtf) GetHeader() *MessageHead {
  5877. if x != nil {
  5878. return x.Header
  5879. }
  5880. return nil
  5881. }
  5882. func (x *WRTradeDealedNtf) GetNtfHeader() *NotifyHead {
  5883. if x != nil {
  5884. return x.NtfHeader
  5885. }
  5886. return nil
  5887. }
  5888. func (x *WRTradeDealedNtf) GetListingOrderID() uint64 {
  5889. if x != nil && x.ListingOrderID != nil {
  5890. return *x.ListingOrderID
  5891. }
  5892. return 0
  5893. }
  5894. func (x *WRTradeDealedNtf) GetDelistingOrderID() uint64 {
  5895. if x != nil && x.DelistingOrderID != nil {
  5896. return *x.DelistingOrderID
  5897. }
  5898. return 0
  5899. }
  5900. func (x *WRTradeDealedNtf) GetTradeQty() uint64 {
  5901. if x != nil && x.TradeQty != nil {
  5902. return *x.TradeQty
  5903. }
  5904. return 0
  5905. }
  5906. func (x *WRTradeDealedNtf) GetActiveQty() uint64 {
  5907. if x != nil && x.ActiveQty != nil {
  5908. return *x.ActiveQty
  5909. }
  5910. return 0
  5911. }
  5912. func (x *WRTradeDealedNtf) GetRealTradeQty() uint64 {
  5913. if x != nil && x.RealTradeQty != nil {
  5914. return *x.RealTradeQty
  5915. }
  5916. return 0
  5917. }
  5918. func (x *WRTradeDealedNtf) GetTradeID() uint64 {
  5919. if x != nil && x.TradeID != nil {
  5920. return *x.TradeID
  5921. }
  5922. return 0
  5923. }
  5924. func (x *WRTradeDealedNtf) GetBuyAccountID() uint64 {
  5925. if x != nil && x.BuyAccountID != nil {
  5926. return *x.BuyAccountID
  5927. }
  5928. return 0
  5929. }
  5930. func (x *WRTradeDealedNtf) GetSellAccountID() uint64 {
  5931. if x != nil && x.SellAccountID != nil {
  5932. return *x.SellAccountID
  5933. }
  5934. return 0
  5935. }
  5936. func (x *WRTradeDealedNtf) GetTradePrice() float64 {
  5937. if x != nil && x.TradePrice != nil {
  5938. return *x.TradePrice
  5939. }
  5940. return 0
  5941. }
  5942. func (x *WRTradeDealedNtf) GetTradeTime() string {
  5943. if x != nil && x.TradeTime != nil {
  5944. return *x.TradeTime
  5945. }
  5946. return ""
  5947. }
  5948. func (x *WRTradeDealedNtf) GetWRFactorTypeID() uint64 {
  5949. if x != nil && x.WRFactorTypeID != nil {
  5950. return *x.WRFactorTypeID
  5951. }
  5952. return 0
  5953. }
  5954. func (x *WRTradeDealedNtf) GetWRTransferUserID() uint32 {
  5955. if x != nil && x.WRTransferUserID != nil {
  5956. return *x.WRTransferUserID
  5957. }
  5958. return 0
  5959. }
  5960. func (x *WRTradeDealedNtf) GetFreezeFirstAmount() float64 {
  5961. if x != nil && x.FreezeFirstAmount != nil {
  5962. return *x.FreezeFirstAmount
  5963. }
  5964. return 0
  5965. }
  5966. func (x *WRTradeDealedNtf) GetUnFreezeFirstAmount() float64 {
  5967. if x != nil && x.UnFreezeFirstAmount != nil {
  5968. return *x.UnFreezeFirstAmount
  5969. }
  5970. return 0
  5971. }
  5972. func (x *WRTradeDealedNtf) GetRealTradeAmount() float64 {
  5973. if x != nil && x.RealTradeAmount != nil {
  5974. return *x.RealTradeAmount
  5975. }
  5976. return 0
  5977. }
  5978. func (x *WRTradeDealedNtf) GetPerformanceAmount() float64 {
  5979. if x != nil && x.PerformanceAmount != nil {
  5980. return *x.PerformanceAmount
  5981. }
  5982. return 0
  5983. }
  5984. func (x *WRTradeDealedNtf) GetPerformancePlanID() uint64 {
  5985. if x != nil && x.PerformancePlanID != nil {
  5986. return *x.PerformancePlanID
  5987. }
  5988. return 0
  5989. }
  5990. func (x *WRTradeDealedNtf) GetPerformanceTemplateID() int64 {
  5991. if x != nil && x.PerformanceTemplateID != nil {
  5992. return *x.PerformanceTemplateID
  5993. }
  5994. return 0
  5995. }
  5996. // 出境检测会员操作请求
  5997. type CJJCMemberOperateReq struct {
  5998. state protoimpl.MessageState
  5999. sizeCache protoimpl.SizeCache
  6000. unknownFields protoimpl.UnknownFields
  6001. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6002. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  6003. OperateID *uint64 `protobuf:"varint,3,opt,name=OperateID" json:"OperateID,omitempty"` // 操作人ID,必填,LoginAccount的LoginID
  6004. OperateAccount *string `protobuf:"bytes,4,opt,name=OperateAccount" json:"OperateAccount,omitempty"` // 操作人账户,LoginAccount的LoginCode,LoginCode为空则填LoginID,必
  6005. OrderID *uint64 `protobuf:"varint,5,opt,name=OrderID" json:"OrderID,omitempty"` // 单据ID,必填
  6006. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,必填,1:撤回2:确认发货3:确认检测结果
  6007. Remark *string `protobuf:"bytes,7,opt,name=Remark" json:"Remark,omitempty"` // 备注
  6008. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6009. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6010. }
  6011. func (x *CJJCMemberOperateReq) Reset() {
  6012. *x = CJJCMemberOperateReq{}
  6013. if protoimpl.UnsafeEnabled {
  6014. mi := &file_mtp2_proto_msgTypes[62]
  6015. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6016. ms.StoreMessageInfo(mi)
  6017. }
  6018. }
  6019. func (x *CJJCMemberOperateReq) String() string {
  6020. return protoimpl.X.MessageStringOf(x)
  6021. }
  6022. func (*CJJCMemberOperateReq) ProtoMessage() {}
  6023. func (x *CJJCMemberOperateReq) ProtoReflect() protoreflect.Message {
  6024. mi := &file_mtp2_proto_msgTypes[62]
  6025. if protoimpl.UnsafeEnabled && x != nil {
  6026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6027. if ms.LoadMessageInfo() == nil {
  6028. ms.StoreMessageInfo(mi)
  6029. }
  6030. return ms
  6031. }
  6032. return mi.MessageOf(x)
  6033. }
  6034. // Deprecated: Use CJJCMemberOperateReq.ProtoReflect.Descriptor instead.
  6035. func (*CJJCMemberOperateReq) Descriptor() ([]byte, []int) {
  6036. return file_mtp2_proto_rawDescGZIP(), []int{62}
  6037. }
  6038. func (x *CJJCMemberOperateReq) GetHeader() *MessageHead {
  6039. if x != nil {
  6040. return x.Header
  6041. }
  6042. return nil
  6043. }
  6044. func (x *CJJCMemberOperateReq) GetUserID() uint32 {
  6045. if x != nil && x.UserID != nil {
  6046. return *x.UserID
  6047. }
  6048. return 0
  6049. }
  6050. func (x *CJJCMemberOperateReq) GetOperateID() uint64 {
  6051. if x != nil && x.OperateID != nil {
  6052. return *x.OperateID
  6053. }
  6054. return 0
  6055. }
  6056. func (x *CJJCMemberOperateReq) GetOperateAccount() string {
  6057. if x != nil && x.OperateAccount != nil {
  6058. return *x.OperateAccount
  6059. }
  6060. return ""
  6061. }
  6062. func (x *CJJCMemberOperateReq) GetOrderID() uint64 {
  6063. if x != nil && x.OrderID != nil {
  6064. return *x.OrderID
  6065. }
  6066. return 0
  6067. }
  6068. func (x *CJJCMemberOperateReq) GetOperateType() uint32 {
  6069. if x != nil && x.OperateType != nil {
  6070. return *x.OperateType
  6071. }
  6072. return 0
  6073. }
  6074. func (x *CJJCMemberOperateReq) GetRemark() string {
  6075. if x != nil && x.Remark != nil {
  6076. return *x.Remark
  6077. }
  6078. return ""
  6079. }
  6080. func (x *CJJCMemberOperateReq) GetClientType() uint32 {
  6081. if x != nil && x.ClientType != nil {
  6082. return *x.ClientType
  6083. }
  6084. return 0
  6085. }
  6086. func (x *CJJCMemberOperateReq) GetClientSerialNo() string {
  6087. if x != nil && x.ClientSerialNo != nil {
  6088. return *x.ClientSerialNo
  6089. }
  6090. return ""
  6091. }
  6092. // 出境检测会员操作响应
  6093. type CJJCMemberOperateRsp struct {
  6094. state protoimpl.MessageState
  6095. sizeCache protoimpl.SizeCache
  6096. unknownFields protoimpl.UnknownFields
  6097. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6098. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6099. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6100. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  6101. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  6102. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6103. }
  6104. func (x *CJJCMemberOperateRsp) Reset() {
  6105. *x = CJJCMemberOperateRsp{}
  6106. if protoimpl.UnsafeEnabled {
  6107. mi := &file_mtp2_proto_msgTypes[63]
  6108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6109. ms.StoreMessageInfo(mi)
  6110. }
  6111. }
  6112. func (x *CJJCMemberOperateRsp) String() string {
  6113. return protoimpl.X.MessageStringOf(x)
  6114. }
  6115. func (*CJJCMemberOperateRsp) ProtoMessage() {}
  6116. func (x *CJJCMemberOperateRsp) ProtoReflect() protoreflect.Message {
  6117. mi := &file_mtp2_proto_msgTypes[63]
  6118. if protoimpl.UnsafeEnabled && x != nil {
  6119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6120. if ms.LoadMessageInfo() == nil {
  6121. ms.StoreMessageInfo(mi)
  6122. }
  6123. return ms
  6124. }
  6125. return mi.MessageOf(x)
  6126. }
  6127. // Deprecated: Use CJJCMemberOperateRsp.ProtoReflect.Descriptor instead.
  6128. func (*CJJCMemberOperateRsp) Descriptor() ([]byte, []int) {
  6129. return file_mtp2_proto_rawDescGZIP(), []int{63}
  6130. }
  6131. func (x *CJJCMemberOperateRsp) GetHeader() *MessageHead {
  6132. if x != nil {
  6133. return x.Header
  6134. }
  6135. return nil
  6136. }
  6137. func (x *CJJCMemberOperateRsp) GetRetCode() int32 {
  6138. if x != nil && x.RetCode != nil {
  6139. return *x.RetCode
  6140. }
  6141. return 0
  6142. }
  6143. func (x *CJJCMemberOperateRsp) GetRetDesc() string {
  6144. if x != nil && x.RetDesc != nil {
  6145. return *x.RetDesc
  6146. }
  6147. return ""
  6148. }
  6149. func (x *CJJCMemberOperateRsp) GetUserID() uint32 {
  6150. if x != nil && x.UserID != nil {
  6151. return *x.UserID
  6152. }
  6153. return 0
  6154. }
  6155. func (x *CJJCMemberOperateRsp) GetAccountID() uint64 {
  6156. if x != nil && x.AccountID != nil {
  6157. return *x.AccountID
  6158. }
  6159. return 0
  6160. }
  6161. func (x *CJJCMemberOperateRsp) GetClientSerialNo() string {
  6162. if x != nil && x.ClientSerialNo != nil {
  6163. return *x.ClientSerialNo
  6164. }
  6165. return ""
  6166. }
  6167. // 保税服务会员操作请求
  6168. type BSFWMemberOperateReq struct {
  6169. state protoimpl.MessageState
  6170. sizeCache protoimpl.SizeCache
  6171. unknownFields protoimpl.UnknownFields
  6172. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6173. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  6174. OperateID *uint64 `protobuf:"varint,3,opt,name=OperateID" json:"OperateID,omitempty"` // 操作人ID,必填,LoginAccount的LoginID
  6175. OperateAccount *string `protobuf:"bytes,4,opt,name=OperateAccount" json:"OperateAccount,omitempty"` // 操作人账户,LoginAccount的LoginCode,LoginCode为空则填LoginID,必
  6176. OrderID *uint64 `protobuf:"varint,5,opt,name=OrderID" json:"OrderID,omitempty"` // 单据ID,必填
  6177. OperateType *uint32 `protobuf:"varint,6,opt,name=OperateType" json:"OperateType,omitempty"` // 操作类型,必填,1:上传发货单2:上传盖章单据3:确认预付款
  6178. FileDetails []*FileDetail `protobuf:"bytes,7,rep,name=FileDetails" json:"FileDetails,omitempty"` // 文件列表
  6179. Remark *string `protobuf:"bytes,8,opt,name=Remark" json:"Remark,omitempty"` // 备注
  6180. GZBSDeliveryType *uint32 `protobuf:"varint,9,opt,name=GZBSDeliveryType" json:"GZBSDeliveryType,omitempty"` // 收货方式,OperateType=1:上传发货单时必填,枚举“GZBSDeliveryType”
  6181. OtherLogistics *string `protobuf:"bytes,10,opt,name=OtherLogistics" json:"OtherLogistics,omitempty"` // 指定其它物流,OperateType=1:上传发货单时填写
  6182. ClientType *uint32 `protobuf:"varint,11,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6183. ClientSerialNo *string `protobuf:"bytes,12,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6184. }
  6185. func (x *BSFWMemberOperateReq) Reset() {
  6186. *x = BSFWMemberOperateReq{}
  6187. if protoimpl.UnsafeEnabled {
  6188. mi := &file_mtp2_proto_msgTypes[64]
  6189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6190. ms.StoreMessageInfo(mi)
  6191. }
  6192. }
  6193. func (x *BSFWMemberOperateReq) String() string {
  6194. return protoimpl.X.MessageStringOf(x)
  6195. }
  6196. func (*BSFWMemberOperateReq) ProtoMessage() {}
  6197. func (x *BSFWMemberOperateReq) ProtoReflect() protoreflect.Message {
  6198. mi := &file_mtp2_proto_msgTypes[64]
  6199. if protoimpl.UnsafeEnabled && x != nil {
  6200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6201. if ms.LoadMessageInfo() == nil {
  6202. ms.StoreMessageInfo(mi)
  6203. }
  6204. return ms
  6205. }
  6206. return mi.MessageOf(x)
  6207. }
  6208. // Deprecated: Use BSFWMemberOperateReq.ProtoReflect.Descriptor instead.
  6209. func (*BSFWMemberOperateReq) Descriptor() ([]byte, []int) {
  6210. return file_mtp2_proto_rawDescGZIP(), []int{64}
  6211. }
  6212. func (x *BSFWMemberOperateReq) GetHeader() *MessageHead {
  6213. if x != nil {
  6214. return x.Header
  6215. }
  6216. return nil
  6217. }
  6218. func (x *BSFWMemberOperateReq) GetUserID() uint32 {
  6219. if x != nil && x.UserID != nil {
  6220. return *x.UserID
  6221. }
  6222. return 0
  6223. }
  6224. func (x *BSFWMemberOperateReq) GetOperateID() uint64 {
  6225. if x != nil && x.OperateID != nil {
  6226. return *x.OperateID
  6227. }
  6228. return 0
  6229. }
  6230. func (x *BSFWMemberOperateReq) GetOperateAccount() string {
  6231. if x != nil && x.OperateAccount != nil {
  6232. return *x.OperateAccount
  6233. }
  6234. return ""
  6235. }
  6236. func (x *BSFWMemberOperateReq) GetOrderID() uint64 {
  6237. if x != nil && x.OrderID != nil {
  6238. return *x.OrderID
  6239. }
  6240. return 0
  6241. }
  6242. func (x *BSFWMemberOperateReq) GetOperateType() uint32 {
  6243. if x != nil && x.OperateType != nil {
  6244. return *x.OperateType
  6245. }
  6246. return 0
  6247. }
  6248. func (x *BSFWMemberOperateReq) GetFileDetails() []*FileDetail {
  6249. if x != nil {
  6250. return x.FileDetails
  6251. }
  6252. return nil
  6253. }
  6254. func (x *BSFWMemberOperateReq) GetRemark() string {
  6255. if x != nil && x.Remark != nil {
  6256. return *x.Remark
  6257. }
  6258. return ""
  6259. }
  6260. func (x *BSFWMemberOperateReq) GetGZBSDeliveryType() uint32 {
  6261. if x != nil && x.GZBSDeliveryType != nil {
  6262. return *x.GZBSDeliveryType
  6263. }
  6264. return 0
  6265. }
  6266. func (x *BSFWMemberOperateReq) GetOtherLogistics() string {
  6267. if x != nil && x.OtherLogistics != nil {
  6268. return *x.OtherLogistics
  6269. }
  6270. return ""
  6271. }
  6272. func (x *BSFWMemberOperateReq) GetClientType() uint32 {
  6273. if x != nil && x.ClientType != nil {
  6274. return *x.ClientType
  6275. }
  6276. return 0
  6277. }
  6278. func (x *BSFWMemberOperateReq) GetClientSerialNo() string {
  6279. if x != nil && x.ClientSerialNo != nil {
  6280. return *x.ClientSerialNo
  6281. }
  6282. return ""
  6283. }
  6284. // 保税服务会员操作响应
  6285. type BSFWMemberOperateRsp struct {
  6286. state protoimpl.MessageState
  6287. sizeCache protoimpl.SizeCache
  6288. unknownFields protoimpl.UnknownFields
  6289. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6290. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6291. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6292. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  6293. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
  6294. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6295. }
  6296. func (x *BSFWMemberOperateRsp) Reset() {
  6297. *x = BSFWMemberOperateRsp{}
  6298. if protoimpl.UnsafeEnabled {
  6299. mi := &file_mtp2_proto_msgTypes[65]
  6300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6301. ms.StoreMessageInfo(mi)
  6302. }
  6303. }
  6304. func (x *BSFWMemberOperateRsp) String() string {
  6305. return protoimpl.X.MessageStringOf(x)
  6306. }
  6307. func (*BSFWMemberOperateRsp) ProtoMessage() {}
  6308. func (x *BSFWMemberOperateRsp) ProtoReflect() protoreflect.Message {
  6309. mi := &file_mtp2_proto_msgTypes[65]
  6310. if protoimpl.UnsafeEnabled && x != nil {
  6311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6312. if ms.LoadMessageInfo() == nil {
  6313. ms.StoreMessageInfo(mi)
  6314. }
  6315. return ms
  6316. }
  6317. return mi.MessageOf(x)
  6318. }
  6319. // Deprecated: Use BSFWMemberOperateRsp.ProtoReflect.Descriptor instead.
  6320. func (*BSFWMemberOperateRsp) Descriptor() ([]byte, []int) {
  6321. return file_mtp2_proto_rawDescGZIP(), []int{65}
  6322. }
  6323. func (x *BSFWMemberOperateRsp) GetHeader() *MessageHead {
  6324. if x != nil {
  6325. return x.Header
  6326. }
  6327. return nil
  6328. }
  6329. func (x *BSFWMemberOperateRsp) GetRetCode() int32 {
  6330. if x != nil && x.RetCode != nil {
  6331. return *x.RetCode
  6332. }
  6333. return 0
  6334. }
  6335. func (x *BSFWMemberOperateRsp) GetRetDesc() string {
  6336. if x != nil && x.RetDesc != nil {
  6337. return *x.RetDesc
  6338. }
  6339. return ""
  6340. }
  6341. func (x *BSFWMemberOperateRsp) GetUserID() uint32 {
  6342. if x != nil && x.UserID != nil {
  6343. return *x.UserID
  6344. }
  6345. return 0
  6346. }
  6347. func (x *BSFWMemberOperateRsp) GetAccountID() uint64 {
  6348. if x != nil && x.AccountID != nil {
  6349. return *x.AccountID
  6350. }
  6351. return 0
  6352. }
  6353. func (x *BSFWMemberOperateRsp) GetClientSerialNo() string {
  6354. if x != nil && x.ClientSerialNo != nil {
  6355. return *x.ClientSerialNo
  6356. }
  6357. return ""
  6358. }
  6359. // 账户资金信息请求
  6360. type AccountFundInfoReq struct {
  6361. state protoimpl.MessageState
  6362. sizeCache protoimpl.SizeCache
  6363. unknownFields protoimpl.UnknownFields
  6364. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6365. OrderId *uint64 `protobuf:"varint,2,opt,name=OrderId" json:"OrderId,omitempty"` // 查询委托单号
  6366. AccountId *uint64 `protobuf:"varint,3,opt,name=AccountId" json:"AccountId,omitempty"` // 查询资金账号
  6367. QueryBitMask *uint32 `protobuf:"varint,4,opt,name=QueryBitMask" json:"QueryBitMask,omitempty"` // 查询位掩码
  6368. }
  6369. func (x *AccountFundInfoReq) Reset() {
  6370. *x = AccountFundInfoReq{}
  6371. if protoimpl.UnsafeEnabled {
  6372. mi := &file_mtp2_proto_msgTypes[66]
  6373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6374. ms.StoreMessageInfo(mi)
  6375. }
  6376. }
  6377. func (x *AccountFundInfoReq) String() string {
  6378. return protoimpl.X.MessageStringOf(x)
  6379. }
  6380. func (*AccountFundInfoReq) ProtoMessage() {}
  6381. func (x *AccountFundInfoReq) ProtoReflect() protoreflect.Message {
  6382. mi := &file_mtp2_proto_msgTypes[66]
  6383. if protoimpl.UnsafeEnabled && x != nil {
  6384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6385. if ms.LoadMessageInfo() == nil {
  6386. ms.StoreMessageInfo(mi)
  6387. }
  6388. return ms
  6389. }
  6390. return mi.MessageOf(x)
  6391. }
  6392. // Deprecated: Use AccountFundInfoReq.ProtoReflect.Descriptor instead.
  6393. func (*AccountFundInfoReq) Descriptor() ([]byte, []int) {
  6394. return file_mtp2_proto_rawDescGZIP(), []int{66}
  6395. }
  6396. func (x *AccountFundInfoReq) GetHeader() *MessageHead {
  6397. if x != nil {
  6398. return x.Header
  6399. }
  6400. return nil
  6401. }
  6402. func (x *AccountFundInfoReq) GetOrderId() uint64 {
  6403. if x != nil && x.OrderId != nil {
  6404. return *x.OrderId
  6405. }
  6406. return 0
  6407. }
  6408. func (x *AccountFundInfoReq) GetAccountId() uint64 {
  6409. if x != nil && x.AccountId != nil {
  6410. return *x.AccountId
  6411. }
  6412. return 0
  6413. }
  6414. func (x *AccountFundInfoReq) GetQueryBitMask() uint32 {
  6415. if x != nil && x.QueryBitMask != nil {
  6416. return *x.QueryBitMask
  6417. }
  6418. return 0
  6419. }
  6420. // 账户资金信息响应
  6421. type AccountFundInfoRsp struct {
  6422. state protoimpl.MessageState
  6423. sizeCache protoimpl.SizeCache
  6424. unknownFields protoimpl.UnknownFields
  6425. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6426. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6427. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6428. OrderId *uint64 `protobuf:"varint,4,opt,name=OrderId" json:"OrderId,omitempty"` // 查询委托单号
  6429. AccountId *uint64 `protobuf:"varint,5,opt,name=AccountId" json:"AccountId,omitempty"` // 查询资金账号
  6430. AvailableMargin *float64 `protobuf:"fixed64,6,opt,name=AvailableMargin" json:"AvailableMargin,omitempty"` // 可用保证金,查询位掩码:1
  6431. AvailableOutMoney *float64 `protobuf:"fixed64,7,opt,name=AvailableOutMoney" json:"AvailableOutMoney,omitempty"` // 可出资金,查询位掩码:2
  6432. IsCleanAccount *int32 `protobuf:"varint,8,opt,name=IsCleanAccount" json:"IsCleanAccount,omitempty"` // 是否是干净账户,查询位掩码:4
  6433. }
  6434. func (x *AccountFundInfoRsp) Reset() {
  6435. *x = AccountFundInfoRsp{}
  6436. if protoimpl.UnsafeEnabled {
  6437. mi := &file_mtp2_proto_msgTypes[67]
  6438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6439. ms.StoreMessageInfo(mi)
  6440. }
  6441. }
  6442. func (x *AccountFundInfoRsp) String() string {
  6443. return protoimpl.X.MessageStringOf(x)
  6444. }
  6445. func (*AccountFundInfoRsp) ProtoMessage() {}
  6446. func (x *AccountFundInfoRsp) ProtoReflect() protoreflect.Message {
  6447. mi := &file_mtp2_proto_msgTypes[67]
  6448. if protoimpl.UnsafeEnabled && x != nil {
  6449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6450. if ms.LoadMessageInfo() == nil {
  6451. ms.StoreMessageInfo(mi)
  6452. }
  6453. return ms
  6454. }
  6455. return mi.MessageOf(x)
  6456. }
  6457. // Deprecated: Use AccountFundInfoRsp.ProtoReflect.Descriptor instead.
  6458. func (*AccountFundInfoRsp) Descriptor() ([]byte, []int) {
  6459. return file_mtp2_proto_rawDescGZIP(), []int{67}
  6460. }
  6461. func (x *AccountFundInfoRsp) GetHeader() *MessageHead {
  6462. if x != nil {
  6463. return x.Header
  6464. }
  6465. return nil
  6466. }
  6467. func (x *AccountFundInfoRsp) GetRetCode() int32 {
  6468. if x != nil && x.RetCode != nil {
  6469. return *x.RetCode
  6470. }
  6471. return 0
  6472. }
  6473. func (x *AccountFundInfoRsp) GetRetDesc() string {
  6474. if x != nil && x.RetDesc != nil {
  6475. return *x.RetDesc
  6476. }
  6477. return ""
  6478. }
  6479. func (x *AccountFundInfoRsp) GetOrderId() uint64 {
  6480. if x != nil && x.OrderId != nil {
  6481. return *x.OrderId
  6482. }
  6483. return 0
  6484. }
  6485. func (x *AccountFundInfoRsp) GetAccountId() uint64 {
  6486. if x != nil && x.AccountId != nil {
  6487. return *x.AccountId
  6488. }
  6489. return 0
  6490. }
  6491. func (x *AccountFundInfoRsp) GetAvailableMargin() float64 {
  6492. if x != nil && x.AvailableMargin != nil {
  6493. return *x.AvailableMargin
  6494. }
  6495. return 0
  6496. }
  6497. func (x *AccountFundInfoRsp) GetAvailableOutMoney() float64 {
  6498. if x != nil && x.AvailableOutMoney != nil {
  6499. return *x.AvailableOutMoney
  6500. }
  6501. return 0
  6502. }
  6503. func (x *AccountFundInfoRsp) GetIsCleanAccount() int32 {
  6504. if x != nil && x.IsCleanAccount != nil {
  6505. return *x.IsCleanAccount
  6506. }
  6507. return 0
  6508. }
  6509. // 广钻预售申请请求
  6510. type GZPresaleApplyReq struct {
  6511. state protoimpl.MessageState
  6512. sizeCache protoimpl.SizeCache
  6513. unknownFields protoimpl.UnknownFields
  6514. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6515. SellUserID *uint32 `protobuf:"varint,2,opt,name=SellUserID" json:"SellUserID,omitempty"` // 发行方用户,必填
  6516. SellAccountID *uint64 `protobuf:"varint,3,opt,name=SellAccountID" json:"SellAccountID,omitempty"` // 发行方资金账户ID,必填
  6517. WRStandardName *string `protobuf:"bytes,4,opt,name=WRStandardName" json:"WRStandardName,omitempty"` // 现货商品名称,必填
  6518. PresaleQty *uint64 `protobuf:"varint,5,opt,name=PresaleQty" json:"PresaleQty,omitempty"` // 预售总量,必填
  6519. MinBuyQty *uint64 `protobuf:"varint,6,opt,name=MinBuyQty" json:"MinBuyQty,omitempty"` // 单人最小申购量,必填
  6520. MaxBuyQty *uint64 `protobuf:"varint,7,opt,name=MaxBuyQty" json:"MaxBuyQty,omitempty"` // 单人最大申购量,必填
  6521. MinSuccessQty *uint64 `protobuf:"varint,8,opt,name=MinSuccessQty" json:"MinSuccessQty,omitempty"` // 最低成团量,必填
  6522. UnitPrice *float64 `protobuf:"fixed64,9,opt,name=UnitPrice" json:"UnitPrice,omitempty"` // 预售价格,小数,两位,必填
  6523. StartDate *string `protobuf:"bytes,10,opt,name=StartDate" json:"StartDate,omitempty"` // 预售开始日期,必填
  6524. EndDate *string `protobuf:"bytes,11,opt,name=EndDate" json:"EndDate,omitempty"` // 预售结束日期,必填
  6525. BuyMarginAlgorithm *uint32 `protobuf:"varint,12,opt,name=BuyMarginAlgorithm" json:"BuyMarginAlgorithm,omitempty"` // 买方保证金方式,必填
  6526. BuyMarginValue *float64 `protobuf:"fixed64,13,opt,name=BuyMarginValue" json:"BuyMarginValue,omitempty"` // 买方保证金设置值,小数,四位,必填
  6527. PerformanceTemplateID *int64 `protobuf:"varint,14,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID,必填
  6528. MarketID *uint32 `protobuf:"varint,15,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  6529. YSZSCategory *uint32 `protobuf:"varint,16,opt,name=YSZSCategory" json:"YSZSCategory,omitempty"` // 预售钻石分类
  6530. ZSColorTypeStr *string `protobuf:"bytes,17,opt,name=ZSColorTypeStr" json:"ZSColorTypeStr,omitempty"` // 颜色,最大允许64个字符
  6531. ZSClarityTypeStr *string `protobuf:"bytes,18,opt,name=ZSClarityTypeStr" json:"ZSClarityTypeStr,omitempty"` // 净度,最大允许64个字符
  6532. SizeStr *string `protobuf:"bytes,19,opt,name=SizeStr" json:"SizeStr,omitempty"` // 尺寸,最大允许64个字符
  6533. YieldRate *string `protobuf:"bytes,20,opt,name=YieldRate" json:"YieldRate,omitempty"` // 成品率,最大允许64个字符
  6534. QtyDesc *string `protobuf:"bytes,21,opt,name=QtyDesc" json:"QtyDesc,omitempty"` // 数量描述,最大允许64个字符
  6535. WeightDesc *string `protobuf:"bytes,22,opt,name=WeightDesc" json:"WeightDesc,omitempty"` // 重量描述,最大允许64个字符
  6536. YSProductionMode *uint32 `protobuf:"varint,23,opt,name=YSProductionMode" json:"YSProductionMode,omitempty"` // 生产方式
  6537. PictureUrls *string `protobuf:"bytes,24,opt,name=PictureUrls" json:"PictureUrls,omitempty"` // 图片路径,CLOB,多张逗号分隔
  6538. Remark *string `protobuf:"bytes,25,opt,name=Remark" json:"Remark,omitempty"` // 备注,最大允许256个字符
  6539. ClientType *uint32 `protobuf:"varint,26,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6540. ClientSerialNo *string `protobuf:"bytes,27,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6541. }
  6542. func (x *GZPresaleApplyReq) Reset() {
  6543. *x = GZPresaleApplyReq{}
  6544. if protoimpl.UnsafeEnabled {
  6545. mi := &file_mtp2_proto_msgTypes[68]
  6546. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6547. ms.StoreMessageInfo(mi)
  6548. }
  6549. }
  6550. func (x *GZPresaleApplyReq) String() string {
  6551. return protoimpl.X.MessageStringOf(x)
  6552. }
  6553. func (*GZPresaleApplyReq) ProtoMessage() {}
  6554. func (x *GZPresaleApplyReq) ProtoReflect() protoreflect.Message {
  6555. mi := &file_mtp2_proto_msgTypes[68]
  6556. if protoimpl.UnsafeEnabled && x != nil {
  6557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6558. if ms.LoadMessageInfo() == nil {
  6559. ms.StoreMessageInfo(mi)
  6560. }
  6561. return ms
  6562. }
  6563. return mi.MessageOf(x)
  6564. }
  6565. // Deprecated: Use GZPresaleApplyReq.ProtoReflect.Descriptor instead.
  6566. func (*GZPresaleApplyReq) Descriptor() ([]byte, []int) {
  6567. return file_mtp2_proto_rawDescGZIP(), []int{68}
  6568. }
  6569. func (x *GZPresaleApplyReq) GetHeader() *MessageHead {
  6570. if x != nil {
  6571. return x.Header
  6572. }
  6573. return nil
  6574. }
  6575. func (x *GZPresaleApplyReq) GetSellUserID() uint32 {
  6576. if x != nil && x.SellUserID != nil {
  6577. return *x.SellUserID
  6578. }
  6579. return 0
  6580. }
  6581. func (x *GZPresaleApplyReq) GetSellAccountID() uint64 {
  6582. if x != nil && x.SellAccountID != nil {
  6583. return *x.SellAccountID
  6584. }
  6585. return 0
  6586. }
  6587. func (x *GZPresaleApplyReq) GetWRStandardName() string {
  6588. if x != nil && x.WRStandardName != nil {
  6589. return *x.WRStandardName
  6590. }
  6591. return ""
  6592. }
  6593. func (x *GZPresaleApplyReq) GetPresaleQty() uint64 {
  6594. if x != nil && x.PresaleQty != nil {
  6595. return *x.PresaleQty
  6596. }
  6597. return 0
  6598. }
  6599. func (x *GZPresaleApplyReq) GetMinBuyQty() uint64 {
  6600. if x != nil && x.MinBuyQty != nil {
  6601. return *x.MinBuyQty
  6602. }
  6603. return 0
  6604. }
  6605. func (x *GZPresaleApplyReq) GetMaxBuyQty() uint64 {
  6606. if x != nil && x.MaxBuyQty != nil {
  6607. return *x.MaxBuyQty
  6608. }
  6609. return 0
  6610. }
  6611. func (x *GZPresaleApplyReq) GetMinSuccessQty() uint64 {
  6612. if x != nil && x.MinSuccessQty != nil {
  6613. return *x.MinSuccessQty
  6614. }
  6615. return 0
  6616. }
  6617. func (x *GZPresaleApplyReq) GetUnitPrice() float64 {
  6618. if x != nil && x.UnitPrice != nil {
  6619. return *x.UnitPrice
  6620. }
  6621. return 0
  6622. }
  6623. func (x *GZPresaleApplyReq) GetStartDate() string {
  6624. if x != nil && x.StartDate != nil {
  6625. return *x.StartDate
  6626. }
  6627. return ""
  6628. }
  6629. func (x *GZPresaleApplyReq) GetEndDate() string {
  6630. if x != nil && x.EndDate != nil {
  6631. return *x.EndDate
  6632. }
  6633. return ""
  6634. }
  6635. func (x *GZPresaleApplyReq) GetBuyMarginAlgorithm() uint32 {
  6636. if x != nil && x.BuyMarginAlgorithm != nil {
  6637. return *x.BuyMarginAlgorithm
  6638. }
  6639. return 0
  6640. }
  6641. func (x *GZPresaleApplyReq) GetBuyMarginValue() float64 {
  6642. if x != nil && x.BuyMarginValue != nil {
  6643. return *x.BuyMarginValue
  6644. }
  6645. return 0
  6646. }
  6647. func (x *GZPresaleApplyReq) GetPerformanceTemplateID() int64 {
  6648. if x != nil && x.PerformanceTemplateID != nil {
  6649. return *x.PerformanceTemplateID
  6650. }
  6651. return 0
  6652. }
  6653. func (x *GZPresaleApplyReq) GetMarketID() uint32 {
  6654. if x != nil && x.MarketID != nil {
  6655. return *x.MarketID
  6656. }
  6657. return 0
  6658. }
  6659. func (x *GZPresaleApplyReq) GetYSZSCategory() uint32 {
  6660. if x != nil && x.YSZSCategory != nil {
  6661. return *x.YSZSCategory
  6662. }
  6663. return 0
  6664. }
  6665. func (x *GZPresaleApplyReq) GetZSColorTypeStr() string {
  6666. if x != nil && x.ZSColorTypeStr != nil {
  6667. return *x.ZSColorTypeStr
  6668. }
  6669. return ""
  6670. }
  6671. func (x *GZPresaleApplyReq) GetZSClarityTypeStr() string {
  6672. if x != nil && x.ZSClarityTypeStr != nil {
  6673. return *x.ZSClarityTypeStr
  6674. }
  6675. return ""
  6676. }
  6677. func (x *GZPresaleApplyReq) GetSizeStr() string {
  6678. if x != nil && x.SizeStr != nil {
  6679. return *x.SizeStr
  6680. }
  6681. return ""
  6682. }
  6683. func (x *GZPresaleApplyReq) GetYieldRate() string {
  6684. if x != nil && x.YieldRate != nil {
  6685. return *x.YieldRate
  6686. }
  6687. return ""
  6688. }
  6689. func (x *GZPresaleApplyReq) GetQtyDesc() string {
  6690. if x != nil && x.QtyDesc != nil {
  6691. return *x.QtyDesc
  6692. }
  6693. return ""
  6694. }
  6695. func (x *GZPresaleApplyReq) GetWeightDesc() string {
  6696. if x != nil && x.WeightDesc != nil {
  6697. return *x.WeightDesc
  6698. }
  6699. return ""
  6700. }
  6701. func (x *GZPresaleApplyReq) GetYSProductionMode() uint32 {
  6702. if x != nil && x.YSProductionMode != nil {
  6703. return *x.YSProductionMode
  6704. }
  6705. return 0
  6706. }
  6707. func (x *GZPresaleApplyReq) GetPictureUrls() string {
  6708. if x != nil && x.PictureUrls != nil {
  6709. return *x.PictureUrls
  6710. }
  6711. return ""
  6712. }
  6713. func (x *GZPresaleApplyReq) GetRemark() string {
  6714. if x != nil && x.Remark != nil {
  6715. return *x.Remark
  6716. }
  6717. return ""
  6718. }
  6719. func (x *GZPresaleApplyReq) GetClientType() uint32 {
  6720. if x != nil && x.ClientType != nil {
  6721. return *x.ClientType
  6722. }
  6723. return 0
  6724. }
  6725. func (x *GZPresaleApplyReq) GetClientSerialNo() string {
  6726. if x != nil && x.ClientSerialNo != nil {
  6727. return *x.ClientSerialNo
  6728. }
  6729. return ""
  6730. }
  6731. // 广钻预售申请响应
  6732. type GZPresaleApplyRsp struct {
  6733. state protoimpl.MessageState
  6734. sizeCache protoimpl.SizeCache
  6735. unknownFields protoimpl.UnknownFields
  6736. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6737. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6738. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6739. SellUserID *uint32 `protobuf:"varint,4,opt,name=SellUserID" json:"SellUserID,omitempty"` // 发行方用户
  6740. PresaleApplyID *uint64 `protobuf:"varint,5,opt,name=PresaleApplyID" json:"PresaleApplyID,omitempty"` // 预售申请ID
  6741. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6742. }
  6743. func (x *GZPresaleApplyRsp) Reset() {
  6744. *x = GZPresaleApplyRsp{}
  6745. if protoimpl.UnsafeEnabled {
  6746. mi := &file_mtp2_proto_msgTypes[69]
  6747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6748. ms.StoreMessageInfo(mi)
  6749. }
  6750. }
  6751. func (x *GZPresaleApplyRsp) String() string {
  6752. return protoimpl.X.MessageStringOf(x)
  6753. }
  6754. func (*GZPresaleApplyRsp) ProtoMessage() {}
  6755. func (x *GZPresaleApplyRsp) ProtoReflect() protoreflect.Message {
  6756. mi := &file_mtp2_proto_msgTypes[69]
  6757. if protoimpl.UnsafeEnabled && x != nil {
  6758. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6759. if ms.LoadMessageInfo() == nil {
  6760. ms.StoreMessageInfo(mi)
  6761. }
  6762. return ms
  6763. }
  6764. return mi.MessageOf(x)
  6765. }
  6766. // Deprecated: Use GZPresaleApplyRsp.ProtoReflect.Descriptor instead.
  6767. func (*GZPresaleApplyRsp) Descriptor() ([]byte, []int) {
  6768. return file_mtp2_proto_rawDescGZIP(), []int{69}
  6769. }
  6770. func (x *GZPresaleApplyRsp) GetHeader() *MessageHead {
  6771. if x != nil {
  6772. return x.Header
  6773. }
  6774. return nil
  6775. }
  6776. func (x *GZPresaleApplyRsp) GetRetCode() int32 {
  6777. if x != nil && x.RetCode != nil {
  6778. return *x.RetCode
  6779. }
  6780. return 0
  6781. }
  6782. func (x *GZPresaleApplyRsp) GetRetDesc() string {
  6783. if x != nil && x.RetDesc != nil {
  6784. return *x.RetDesc
  6785. }
  6786. return ""
  6787. }
  6788. func (x *GZPresaleApplyRsp) GetSellUserID() uint32 {
  6789. if x != nil && x.SellUserID != nil {
  6790. return *x.SellUserID
  6791. }
  6792. return 0
  6793. }
  6794. func (x *GZPresaleApplyRsp) GetPresaleApplyID() uint64 {
  6795. if x != nil && x.PresaleApplyID != nil {
  6796. return *x.PresaleApplyID
  6797. }
  6798. return 0
  6799. }
  6800. func (x *GZPresaleApplyRsp) GetClientSerialNo() string {
  6801. if x != nil && x.ClientSerialNo != nil {
  6802. return *x.ClientSerialNo
  6803. }
  6804. return ""
  6805. }
  6806. // 广钻预售认购下单请求
  6807. type GZPresaleOrderReq struct {
  6808. state protoimpl.MessageState
  6809. sizeCache protoimpl.SizeCache
  6810. unknownFields protoimpl.UnknownFields
  6811. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  6812. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  6813. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  6814. WRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID,必填
  6815. OrderQty *uint64 `protobuf:"varint,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 认购数量,必填
  6816. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  6817. ClientOrderTime *string `protobuf:"bytes,7,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 委托时间,必填
  6818. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  6819. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6820. }
  6821. func (x *GZPresaleOrderReq) Reset() {
  6822. *x = GZPresaleOrderReq{}
  6823. if protoimpl.UnsafeEnabled {
  6824. mi := &file_mtp2_proto_msgTypes[70]
  6825. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6826. ms.StoreMessageInfo(mi)
  6827. }
  6828. }
  6829. func (x *GZPresaleOrderReq) String() string {
  6830. return protoimpl.X.MessageStringOf(x)
  6831. }
  6832. func (*GZPresaleOrderReq) ProtoMessage() {}
  6833. func (x *GZPresaleOrderReq) ProtoReflect() protoreflect.Message {
  6834. mi := &file_mtp2_proto_msgTypes[70]
  6835. if protoimpl.UnsafeEnabled && x != nil {
  6836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6837. if ms.LoadMessageInfo() == nil {
  6838. ms.StoreMessageInfo(mi)
  6839. }
  6840. return ms
  6841. }
  6842. return mi.MessageOf(x)
  6843. }
  6844. // Deprecated: Use GZPresaleOrderReq.ProtoReflect.Descriptor instead.
  6845. func (*GZPresaleOrderReq) Descriptor() ([]byte, []int) {
  6846. return file_mtp2_proto_rawDescGZIP(), []int{70}
  6847. }
  6848. func (x *GZPresaleOrderReq) GetHeader() *MessageHead {
  6849. if x != nil {
  6850. return x.Header
  6851. }
  6852. return nil
  6853. }
  6854. func (x *GZPresaleOrderReq) GetUserID() uint32 {
  6855. if x != nil && x.UserID != nil {
  6856. return *x.UserID
  6857. }
  6858. return 0
  6859. }
  6860. func (x *GZPresaleOrderReq) GetAccountID() uint64 {
  6861. if x != nil && x.AccountID != nil {
  6862. return *x.AccountID
  6863. }
  6864. return 0
  6865. }
  6866. func (x *GZPresaleOrderReq) GetWRTradeOrderID() uint64 {
  6867. if x != nil && x.WRTradeOrderID != nil {
  6868. return *x.WRTradeOrderID
  6869. }
  6870. return 0
  6871. }
  6872. func (x *GZPresaleOrderReq) GetOrderQty() uint64 {
  6873. if x != nil && x.OrderQty != nil {
  6874. return *x.OrderQty
  6875. }
  6876. return 0
  6877. }
  6878. func (x *GZPresaleOrderReq) GetMarketID() uint32 {
  6879. if x != nil && x.MarketID != nil {
  6880. return *x.MarketID
  6881. }
  6882. return 0
  6883. }
  6884. func (x *GZPresaleOrderReq) GetClientOrderTime() string {
  6885. if x != nil && x.ClientOrderTime != nil {
  6886. return *x.ClientOrderTime
  6887. }
  6888. return ""
  6889. }
  6890. func (x *GZPresaleOrderReq) GetClientType() uint32 {
  6891. if x != nil && x.ClientType != nil {
  6892. return *x.ClientType
  6893. }
  6894. return 0
  6895. }
  6896. func (x *GZPresaleOrderReq) GetClientSerialNo() string {
  6897. if x != nil && x.ClientSerialNo != nil {
  6898. return *x.ClientSerialNo
  6899. }
  6900. return ""
  6901. }
  6902. // 广钻预售认购下单响应
  6903. type GZPresaleOrderRsp struct {
  6904. state protoimpl.MessageState
  6905. sizeCache protoimpl.SizeCache
  6906. unknownFields protoimpl.UnknownFields
  6907. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  6908. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  6909. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  6910. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  6911. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  6912. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  6913. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  6914. }
  6915. func (x *GZPresaleOrderRsp) Reset() {
  6916. *x = GZPresaleOrderRsp{}
  6917. if protoimpl.UnsafeEnabled {
  6918. mi := &file_mtp2_proto_msgTypes[71]
  6919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6920. ms.StoreMessageInfo(mi)
  6921. }
  6922. }
  6923. func (x *GZPresaleOrderRsp) String() string {
  6924. return protoimpl.X.MessageStringOf(x)
  6925. }
  6926. func (*GZPresaleOrderRsp) ProtoMessage() {}
  6927. func (x *GZPresaleOrderRsp) ProtoReflect() protoreflect.Message {
  6928. mi := &file_mtp2_proto_msgTypes[71]
  6929. if protoimpl.UnsafeEnabled && x != nil {
  6930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6931. if ms.LoadMessageInfo() == nil {
  6932. ms.StoreMessageInfo(mi)
  6933. }
  6934. return ms
  6935. }
  6936. return mi.MessageOf(x)
  6937. }
  6938. // Deprecated: Use GZPresaleOrderRsp.ProtoReflect.Descriptor instead.
  6939. func (*GZPresaleOrderRsp) Descriptor() ([]byte, []int) {
  6940. return file_mtp2_proto_rawDescGZIP(), []int{71}
  6941. }
  6942. func (x *GZPresaleOrderRsp) GetHeader() *MessageHead {
  6943. if x != nil {
  6944. return x.Header
  6945. }
  6946. return nil
  6947. }
  6948. func (x *GZPresaleOrderRsp) GetRetCode() int32 {
  6949. if x != nil && x.RetCode != nil {
  6950. return *x.RetCode
  6951. }
  6952. return 0
  6953. }
  6954. func (x *GZPresaleOrderRsp) GetRetDesc() string {
  6955. if x != nil && x.RetDesc != nil {
  6956. return *x.RetDesc
  6957. }
  6958. return ""
  6959. }
  6960. func (x *GZPresaleOrderRsp) GetUserID() uint32 {
  6961. if x != nil && x.UserID != nil {
  6962. return *x.UserID
  6963. }
  6964. return 0
  6965. }
  6966. func (x *GZPresaleOrderRsp) GetAccountID() uint64 {
  6967. if x != nil && x.AccountID != nil {
  6968. return *x.AccountID
  6969. }
  6970. return 0
  6971. }
  6972. func (x *GZPresaleOrderRsp) GetWRTradeOrderID() uint64 {
  6973. if x != nil && x.WRTradeOrderID != nil {
  6974. return *x.WRTradeOrderID
  6975. }
  6976. return 0
  6977. }
  6978. func (x *GZPresaleOrderRsp) GetClientSerialNo() string {
  6979. if x != nil && x.ClientSerialNo != nil {
  6980. return *x.ClientSerialNo
  6981. }
  6982. return ""
  6983. }
  6984. // 广钻集采价格列表
  6985. type GZCenterPurchasePriceList struct {
  6986. state protoimpl.MessageState
  6987. sizeCache protoimpl.SizeCache
  6988. unknownFields protoimpl.UnknownFields
  6989. StepIndex *uint32 `protobuf:"varint,1,opt,name=StepIndex" json:"StepIndex,omitempty"` // 档位序号,必填
  6990. Qty *uint64 `protobuf:"varint,2,opt,name=Qty" json:"Qty,omitempty"` // 档位数量,必填
  6991. Price *float64 `protobuf:"fixed64,3,opt,name=Price" json:"Price,omitempty"` // 档位价格,小数,两位,必填
  6992. }
  6993. func (x *GZCenterPurchasePriceList) Reset() {
  6994. *x = GZCenterPurchasePriceList{}
  6995. if protoimpl.UnsafeEnabled {
  6996. mi := &file_mtp2_proto_msgTypes[72]
  6997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  6998. ms.StoreMessageInfo(mi)
  6999. }
  7000. }
  7001. func (x *GZCenterPurchasePriceList) String() string {
  7002. return protoimpl.X.MessageStringOf(x)
  7003. }
  7004. func (*GZCenterPurchasePriceList) ProtoMessage() {}
  7005. func (x *GZCenterPurchasePriceList) ProtoReflect() protoreflect.Message {
  7006. mi := &file_mtp2_proto_msgTypes[72]
  7007. if protoimpl.UnsafeEnabled && x != nil {
  7008. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7009. if ms.LoadMessageInfo() == nil {
  7010. ms.StoreMessageInfo(mi)
  7011. }
  7012. return ms
  7013. }
  7014. return mi.MessageOf(x)
  7015. }
  7016. // Deprecated: Use GZCenterPurchasePriceList.ProtoReflect.Descriptor instead.
  7017. func (*GZCenterPurchasePriceList) Descriptor() ([]byte, []int) {
  7018. return file_mtp2_proto_rawDescGZIP(), []int{72}
  7019. }
  7020. func (x *GZCenterPurchasePriceList) GetStepIndex() uint32 {
  7021. if x != nil && x.StepIndex != nil {
  7022. return *x.StepIndex
  7023. }
  7024. return 0
  7025. }
  7026. func (x *GZCenterPurchasePriceList) GetQty() uint64 {
  7027. if x != nil && x.Qty != nil {
  7028. return *x.Qty
  7029. }
  7030. return 0
  7031. }
  7032. func (x *GZCenterPurchasePriceList) GetPrice() float64 {
  7033. if x != nil && x.Price != nil {
  7034. return *x.Price
  7035. }
  7036. return 0
  7037. }
  7038. // 广钻集采申请请求
  7039. type GZCenterPurchaseApplyReq struct {
  7040. state protoimpl.MessageState
  7041. sizeCache protoimpl.SizeCache
  7042. unknownFields protoimpl.UnknownFields
  7043. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  7044. SellUserID *uint32 `protobuf:"varint,2,opt,name=SellUserID" json:"SellUserID,omitempty"` // 发行方用户,必填
  7045. SellAccountID *uint64 `protobuf:"varint,3,opt,name=SellAccountID" json:"SellAccountID,omitempty"` // 发行方资金账户ID,必填
  7046. WRStandardName *string `protobuf:"bytes,4,opt,name=WRStandardName" json:"WRStandardName,omitempty"` // 现货商品名称,必填
  7047. PresaleQty *uint64 `protobuf:"varint,5,opt,name=PresaleQty" json:"PresaleQty,omitempty"` // 预售总量,必填
  7048. MinBuyQty *uint64 `protobuf:"varint,6,opt,name=MinBuyQty" json:"MinBuyQty,omitempty"` // 单人最小申购量,必填
  7049. MaxBuyQty *uint64 `protobuf:"varint,7,opt,name=MaxBuyQty" json:"MaxBuyQty,omitempty"` // 单人最大申购量,必填
  7050. MinSuccessQty *uint64 `protobuf:"varint,8,opt,name=MinSuccessQty" json:"MinSuccessQty,omitempty"` // 最低成团量,必填
  7051. StartDate *string `protobuf:"bytes,9,opt,name=StartDate" json:"StartDate,omitempty"` // 预售开始日期,必填
  7052. EndDate *string `protobuf:"bytes,10,opt,name=EndDate" json:"EndDate,omitempty"` // 预售结束日期,必填
  7053. BuyMarginAlgorithm *uint32 `protobuf:"varint,11,opt,name=BuyMarginAlgorithm" json:"BuyMarginAlgorithm,omitempty"` // 买方保证金方式,必填
  7054. BuyMarginValue *float64 `protobuf:"fixed64,12,opt,name=BuyMarginValue" json:"BuyMarginValue,omitempty"` // 买方保证金设置值,小数,四位,必填
  7055. PerformanceTemplateID *int64 `protobuf:"varint,13,opt,name=PerformanceTemplateID" json:"PerformanceTemplateID,omitempty"` // 履约计划模板ID,必填
  7056. GZCenterPurchasePriceLists []*GZCenterPurchasePriceList `protobuf:"bytes,14,rep,name=GZCenterPurchasePriceLists" json:"GZCenterPurchasePriceLists,omitempty"` // 价格列表,必填
  7057. MarketID *uint32 `protobuf:"varint,15,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  7058. YSZSCategory *uint32 `protobuf:"varint,16,opt,name=YSZSCategory" json:"YSZSCategory,omitempty"` // 预售钻石分类
  7059. ZSShapeTypeStr *string `protobuf:"bytes,17,opt,name=ZSShapeTypeStr" json:"ZSShapeTypeStr,omitempty"` // 形状,最大允许64个字符
  7060. ZSColorTypeStr *string `protobuf:"bytes,18,opt,name=ZSColorTypeStr" json:"ZSColorTypeStr,omitempty"` // 颜色,最大允许64个字符
  7061. ZSClarityTypeStr *string `protobuf:"bytes,19,opt,name=ZSClarityTypeStr" json:"ZSClarityTypeStr,omitempty"` // 净度,最大允许64个字符
  7062. ZSCutTypeStr *string `protobuf:"bytes,20,opt,name=ZSCutTypeStr" json:"ZSCutTypeStr,omitempty"` // 切工,最大允许64个字符
  7063. ZSSymmetryTypeStr *string `protobuf:"bytes,21,opt,name=ZSSymmetryTypeStr" json:"ZSSymmetryTypeStr,omitempty"` // 对称,最大允许64个字符
  7064. ZSPolishTypeStr *string `protobuf:"bytes,22,opt,name=ZSPolishTypeStr" json:"ZSPolishTypeStr,omitempty"` // 抛光,最大允许64个字符
  7065. ZSFluorescenceTypeStr *string `protobuf:"bytes,23,opt,name=ZSFluorescenceTypeStr" json:"ZSFluorescenceTypeStr,omitempty"` // 荧光,最大允许64个字符
  7066. SizeStr *string `protobuf:"bytes,24,opt,name=SizeStr" json:"SizeStr,omitempty"` // 尺寸,最大允许64个字符
  7067. YieldRate *string `protobuf:"bytes,25,opt,name=YieldRate" json:"YieldRate,omitempty"` // 成品率,最大允许64个字符
  7068. QtyDesc *string `protobuf:"bytes,26,opt,name=QtyDesc" json:"QtyDesc,omitempty"` // 数量描述,最大允许64个字符
  7069. WeightDesc *string `protobuf:"bytes,27,opt,name=WeightDesc" json:"WeightDesc,omitempty"` // 重量描述,最大允许64个字符
  7070. YSProductionMode *uint32 `protobuf:"varint,28,opt,name=YSProductionMode" json:"YSProductionMode,omitempty"` // 生产方式
  7071. PictureUrls *string `protobuf:"bytes,29,opt,name=PictureUrls" json:"PictureUrls,omitempty"` // 图片路径,CLOB,多张逗号分隔
  7072. Remark *string `protobuf:"bytes,30,opt,name=Remark" json:"Remark,omitempty"` // 备注,最大允许256个字符
  7073. ClientType *uint32 `protobuf:"varint,31,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  7074. ClientSerialNo *string `protobuf:"bytes,32,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  7075. }
  7076. func (x *GZCenterPurchaseApplyReq) Reset() {
  7077. *x = GZCenterPurchaseApplyReq{}
  7078. if protoimpl.UnsafeEnabled {
  7079. mi := &file_mtp2_proto_msgTypes[73]
  7080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7081. ms.StoreMessageInfo(mi)
  7082. }
  7083. }
  7084. func (x *GZCenterPurchaseApplyReq) String() string {
  7085. return protoimpl.X.MessageStringOf(x)
  7086. }
  7087. func (*GZCenterPurchaseApplyReq) ProtoMessage() {}
  7088. func (x *GZCenterPurchaseApplyReq) ProtoReflect() protoreflect.Message {
  7089. mi := &file_mtp2_proto_msgTypes[73]
  7090. if protoimpl.UnsafeEnabled && x != nil {
  7091. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7092. if ms.LoadMessageInfo() == nil {
  7093. ms.StoreMessageInfo(mi)
  7094. }
  7095. return ms
  7096. }
  7097. return mi.MessageOf(x)
  7098. }
  7099. // Deprecated: Use GZCenterPurchaseApplyReq.ProtoReflect.Descriptor instead.
  7100. func (*GZCenterPurchaseApplyReq) Descriptor() ([]byte, []int) {
  7101. return file_mtp2_proto_rawDescGZIP(), []int{73}
  7102. }
  7103. func (x *GZCenterPurchaseApplyReq) GetHeader() *MessageHead {
  7104. if x != nil {
  7105. return x.Header
  7106. }
  7107. return nil
  7108. }
  7109. func (x *GZCenterPurchaseApplyReq) GetSellUserID() uint32 {
  7110. if x != nil && x.SellUserID != nil {
  7111. return *x.SellUserID
  7112. }
  7113. return 0
  7114. }
  7115. func (x *GZCenterPurchaseApplyReq) GetSellAccountID() uint64 {
  7116. if x != nil && x.SellAccountID != nil {
  7117. return *x.SellAccountID
  7118. }
  7119. return 0
  7120. }
  7121. func (x *GZCenterPurchaseApplyReq) GetWRStandardName() string {
  7122. if x != nil && x.WRStandardName != nil {
  7123. return *x.WRStandardName
  7124. }
  7125. return ""
  7126. }
  7127. func (x *GZCenterPurchaseApplyReq) GetPresaleQty() uint64 {
  7128. if x != nil && x.PresaleQty != nil {
  7129. return *x.PresaleQty
  7130. }
  7131. return 0
  7132. }
  7133. func (x *GZCenterPurchaseApplyReq) GetMinBuyQty() uint64 {
  7134. if x != nil && x.MinBuyQty != nil {
  7135. return *x.MinBuyQty
  7136. }
  7137. return 0
  7138. }
  7139. func (x *GZCenterPurchaseApplyReq) GetMaxBuyQty() uint64 {
  7140. if x != nil && x.MaxBuyQty != nil {
  7141. return *x.MaxBuyQty
  7142. }
  7143. return 0
  7144. }
  7145. func (x *GZCenterPurchaseApplyReq) GetMinSuccessQty() uint64 {
  7146. if x != nil && x.MinSuccessQty != nil {
  7147. return *x.MinSuccessQty
  7148. }
  7149. return 0
  7150. }
  7151. func (x *GZCenterPurchaseApplyReq) GetStartDate() string {
  7152. if x != nil && x.StartDate != nil {
  7153. return *x.StartDate
  7154. }
  7155. return ""
  7156. }
  7157. func (x *GZCenterPurchaseApplyReq) GetEndDate() string {
  7158. if x != nil && x.EndDate != nil {
  7159. return *x.EndDate
  7160. }
  7161. return ""
  7162. }
  7163. func (x *GZCenterPurchaseApplyReq) GetBuyMarginAlgorithm() uint32 {
  7164. if x != nil && x.BuyMarginAlgorithm != nil {
  7165. return *x.BuyMarginAlgorithm
  7166. }
  7167. return 0
  7168. }
  7169. func (x *GZCenterPurchaseApplyReq) GetBuyMarginValue() float64 {
  7170. if x != nil && x.BuyMarginValue != nil {
  7171. return *x.BuyMarginValue
  7172. }
  7173. return 0
  7174. }
  7175. func (x *GZCenterPurchaseApplyReq) GetPerformanceTemplateID() int64 {
  7176. if x != nil && x.PerformanceTemplateID != nil {
  7177. return *x.PerformanceTemplateID
  7178. }
  7179. return 0
  7180. }
  7181. func (x *GZCenterPurchaseApplyReq) GetGZCenterPurchasePriceLists() []*GZCenterPurchasePriceList {
  7182. if x != nil {
  7183. return x.GZCenterPurchasePriceLists
  7184. }
  7185. return nil
  7186. }
  7187. func (x *GZCenterPurchaseApplyReq) GetMarketID() uint32 {
  7188. if x != nil && x.MarketID != nil {
  7189. return *x.MarketID
  7190. }
  7191. return 0
  7192. }
  7193. func (x *GZCenterPurchaseApplyReq) GetYSZSCategory() uint32 {
  7194. if x != nil && x.YSZSCategory != nil {
  7195. return *x.YSZSCategory
  7196. }
  7197. return 0
  7198. }
  7199. func (x *GZCenterPurchaseApplyReq) GetZSShapeTypeStr() string {
  7200. if x != nil && x.ZSShapeTypeStr != nil {
  7201. return *x.ZSShapeTypeStr
  7202. }
  7203. return ""
  7204. }
  7205. func (x *GZCenterPurchaseApplyReq) GetZSColorTypeStr() string {
  7206. if x != nil && x.ZSColorTypeStr != nil {
  7207. return *x.ZSColorTypeStr
  7208. }
  7209. return ""
  7210. }
  7211. func (x *GZCenterPurchaseApplyReq) GetZSClarityTypeStr() string {
  7212. if x != nil && x.ZSClarityTypeStr != nil {
  7213. return *x.ZSClarityTypeStr
  7214. }
  7215. return ""
  7216. }
  7217. func (x *GZCenterPurchaseApplyReq) GetZSCutTypeStr() string {
  7218. if x != nil && x.ZSCutTypeStr != nil {
  7219. return *x.ZSCutTypeStr
  7220. }
  7221. return ""
  7222. }
  7223. func (x *GZCenterPurchaseApplyReq) GetZSSymmetryTypeStr() string {
  7224. if x != nil && x.ZSSymmetryTypeStr != nil {
  7225. return *x.ZSSymmetryTypeStr
  7226. }
  7227. return ""
  7228. }
  7229. func (x *GZCenterPurchaseApplyReq) GetZSPolishTypeStr() string {
  7230. if x != nil && x.ZSPolishTypeStr != nil {
  7231. return *x.ZSPolishTypeStr
  7232. }
  7233. return ""
  7234. }
  7235. func (x *GZCenterPurchaseApplyReq) GetZSFluorescenceTypeStr() string {
  7236. if x != nil && x.ZSFluorescenceTypeStr != nil {
  7237. return *x.ZSFluorescenceTypeStr
  7238. }
  7239. return ""
  7240. }
  7241. func (x *GZCenterPurchaseApplyReq) GetSizeStr() string {
  7242. if x != nil && x.SizeStr != nil {
  7243. return *x.SizeStr
  7244. }
  7245. return ""
  7246. }
  7247. func (x *GZCenterPurchaseApplyReq) GetYieldRate() string {
  7248. if x != nil && x.YieldRate != nil {
  7249. return *x.YieldRate
  7250. }
  7251. return ""
  7252. }
  7253. func (x *GZCenterPurchaseApplyReq) GetQtyDesc() string {
  7254. if x != nil && x.QtyDesc != nil {
  7255. return *x.QtyDesc
  7256. }
  7257. return ""
  7258. }
  7259. func (x *GZCenterPurchaseApplyReq) GetWeightDesc() string {
  7260. if x != nil && x.WeightDesc != nil {
  7261. return *x.WeightDesc
  7262. }
  7263. return ""
  7264. }
  7265. func (x *GZCenterPurchaseApplyReq) GetYSProductionMode() uint32 {
  7266. if x != nil && x.YSProductionMode != nil {
  7267. return *x.YSProductionMode
  7268. }
  7269. return 0
  7270. }
  7271. func (x *GZCenterPurchaseApplyReq) GetPictureUrls() string {
  7272. if x != nil && x.PictureUrls != nil {
  7273. return *x.PictureUrls
  7274. }
  7275. return ""
  7276. }
  7277. func (x *GZCenterPurchaseApplyReq) GetRemark() string {
  7278. if x != nil && x.Remark != nil {
  7279. return *x.Remark
  7280. }
  7281. return ""
  7282. }
  7283. func (x *GZCenterPurchaseApplyReq) GetClientType() uint32 {
  7284. if x != nil && x.ClientType != nil {
  7285. return *x.ClientType
  7286. }
  7287. return 0
  7288. }
  7289. func (x *GZCenterPurchaseApplyReq) GetClientSerialNo() string {
  7290. if x != nil && x.ClientSerialNo != nil {
  7291. return *x.ClientSerialNo
  7292. }
  7293. return ""
  7294. }
  7295. // 广钻集采申请响应
  7296. type GZCenterPurchaseApplyRsp struct {
  7297. state protoimpl.MessageState
  7298. sizeCache protoimpl.SizeCache
  7299. unknownFields protoimpl.UnknownFields
  7300. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  7301. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  7302. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  7303. SellUserID *uint32 `protobuf:"varint,4,opt,name=SellUserID" json:"SellUserID,omitempty"` // 发行方用户
  7304. PresaleApplyID *uint64 `protobuf:"varint,5,opt,name=PresaleApplyID" json:"PresaleApplyID,omitempty"` // 预售申请ID
  7305. ClientSerialNo *string `protobuf:"bytes,6,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  7306. }
  7307. func (x *GZCenterPurchaseApplyRsp) Reset() {
  7308. *x = GZCenterPurchaseApplyRsp{}
  7309. if protoimpl.UnsafeEnabled {
  7310. mi := &file_mtp2_proto_msgTypes[74]
  7311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7312. ms.StoreMessageInfo(mi)
  7313. }
  7314. }
  7315. func (x *GZCenterPurchaseApplyRsp) String() string {
  7316. return protoimpl.X.MessageStringOf(x)
  7317. }
  7318. func (*GZCenterPurchaseApplyRsp) ProtoMessage() {}
  7319. func (x *GZCenterPurchaseApplyRsp) ProtoReflect() protoreflect.Message {
  7320. mi := &file_mtp2_proto_msgTypes[74]
  7321. if protoimpl.UnsafeEnabled && x != nil {
  7322. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7323. if ms.LoadMessageInfo() == nil {
  7324. ms.StoreMessageInfo(mi)
  7325. }
  7326. return ms
  7327. }
  7328. return mi.MessageOf(x)
  7329. }
  7330. // Deprecated: Use GZCenterPurchaseApplyRsp.ProtoReflect.Descriptor instead.
  7331. func (*GZCenterPurchaseApplyRsp) Descriptor() ([]byte, []int) {
  7332. return file_mtp2_proto_rawDescGZIP(), []int{74}
  7333. }
  7334. func (x *GZCenterPurchaseApplyRsp) GetHeader() *MessageHead {
  7335. if x != nil {
  7336. return x.Header
  7337. }
  7338. return nil
  7339. }
  7340. func (x *GZCenterPurchaseApplyRsp) GetRetCode() int32 {
  7341. if x != nil && x.RetCode != nil {
  7342. return *x.RetCode
  7343. }
  7344. return 0
  7345. }
  7346. func (x *GZCenterPurchaseApplyRsp) GetRetDesc() string {
  7347. if x != nil && x.RetDesc != nil {
  7348. return *x.RetDesc
  7349. }
  7350. return ""
  7351. }
  7352. func (x *GZCenterPurchaseApplyRsp) GetSellUserID() uint32 {
  7353. if x != nil && x.SellUserID != nil {
  7354. return *x.SellUserID
  7355. }
  7356. return 0
  7357. }
  7358. func (x *GZCenterPurchaseApplyRsp) GetPresaleApplyID() uint64 {
  7359. if x != nil && x.PresaleApplyID != nil {
  7360. return *x.PresaleApplyID
  7361. }
  7362. return 0
  7363. }
  7364. func (x *GZCenterPurchaseApplyRsp) GetClientSerialNo() string {
  7365. if x != nil && x.ClientSerialNo != nil {
  7366. return *x.ClientSerialNo
  7367. }
  7368. return ""
  7369. }
  7370. // 广钻集采认购下单请求
  7371. type GZCenterPurchaseOrderReq struct {
  7372. state protoimpl.MessageState
  7373. sizeCache protoimpl.SizeCache
  7374. unknownFields protoimpl.UnknownFields
  7375. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"`
  7376. UserID *uint32 `protobuf:"varint,2,opt,name=UserID" json:"UserID,omitempty"` // 用户ID,必填
  7377. AccountID *uint64 `protobuf:"varint,3,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID,必填
  7378. WRTradeOrderID *uint64 `protobuf:"varint,4,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID,必填
  7379. OrderQty *uint64 `protobuf:"varint,5,opt,name=OrderQty" json:"OrderQty,omitempty"` // 认购数量,必填
  7380. MarketID *uint32 `protobuf:"varint,6,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID,必填
  7381. ClientOrderTime *string `protobuf:"bytes,7,opt,name=ClientOrderTime" json:"ClientOrderTime,omitempty"` // 委托时间,必填
  7382. ClientType *uint32 `protobuf:"varint,8,opt,name=ClientType" json:"ClientType,omitempty"` // 终端类型
  7383. ClientSerialNo *string `protobuf:"bytes,9,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  7384. }
  7385. func (x *GZCenterPurchaseOrderReq) Reset() {
  7386. *x = GZCenterPurchaseOrderReq{}
  7387. if protoimpl.UnsafeEnabled {
  7388. mi := &file_mtp2_proto_msgTypes[75]
  7389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7390. ms.StoreMessageInfo(mi)
  7391. }
  7392. }
  7393. func (x *GZCenterPurchaseOrderReq) String() string {
  7394. return protoimpl.X.MessageStringOf(x)
  7395. }
  7396. func (*GZCenterPurchaseOrderReq) ProtoMessage() {}
  7397. func (x *GZCenterPurchaseOrderReq) ProtoReflect() protoreflect.Message {
  7398. mi := &file_mtp2_proto_msgTypes[75]
  7399. if protoimpl.UnsafeEnabled && x != nil {
  7400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7401. if ms.LoadMessageInfo() == nil {
  7402. ms.StoreMessageInfo(mi)
  7403. }
  7404. return ms
  7405. }
  7406. return mi.MessageOf(x)
  7407. }
  7408. // Deprecated: Use GZCenterPurchaseOrderReq.ProtoReflect.Descriptor instead.
  7409. func (*GZCenterPurchaseOrderReq) Descriptor() ([]byte, []int) {
  7410. return file_mtp2_proto_rawDescGZIP(), []int{75}
  7411. }
  7412. func (x *GZCenterPurchaseOrderReq) GetHeader() *MessageHead {
  7413. if x != nil {
  7414. return x.Header
  7415. }
  7416. return nil
  7417. }
  7418. func (x *GZCenterPurchaseOrderReq) GetUserID() uint32 {
  7419. if x != nil && x.UserID != nil {
  7420. return *x.UserID
  7421. }
  7422. return 0
  7423. }
  7424. func (x *GZCenterPurchaseOrderReq) GetAccountID() uint64 {
  7425. if x != nil && x.AccountID != nil {
  7426. return *x.AccountID
  7427. }
  7428. return 0
  7429. }
  7430. func (x *GZCenterPurchaseOrderReq) GetWRTradeOrderID() uint64 {
  7431. if x != nil && x.WRTradeOrderID != nil {
  7432. return *x.WRTradeOrderID
  7433. }
  7434. return 0
  7435. }
  7436. func (x *GZCenterPurchaseOrderReq) GetOrderQty() uint64 {
  7437. if x != nil && x.OrderQty != nil {
  7438. return *x.OrderQty
  7439. }
  7440. return 0
  7441. }
  7442. func (x *GZCenterPurchaseOrderReq) GetMarketID() uint32 {
  7443. if x != nil && x.MarketID != nil {
  7444. return *x.MarketID
  7445. }
  7446. return 0
  7447. }
  7448. func (x *GZCenterPurchaseOrderReq) GetClientOrderTime() string {
  7449. if x != nil && x.ClientOrderTime != nil {
  7450. return *x.ClientOrderTime
  7451. }
  7452. return ""
  7453. }
  7454. func (x *GZCenterPurchaseOrderReq) GetClientType() uint32 {
  7455. if x != nil && x.ClientType != nil {
  7456. return *x.ClientType
  7457. }
  7458. return 0
  7459. }
  7460. func (x *GZCenterPurchaseOrderReq) GetClientSerialNo() string {
  7461. if x != nil && x.ClientSerialNo != nil {
  7462. return *x.ClientSerialNo
  7463. }
  7464. return ""
  7465. }
  7466. // 广钻集采认购下单响应
  7467. type GZCenterPurchaseOrderRsp struct {
  7468. state protoimpl.MessageState
  7469. sizeCache protoimpl.SizeCache
  7470. unknownFields protoimpl.UnknownFields
  7471. Header *MessageHead `protobuf:"bytes,1,opt,name=Header" json:"Header,omitempty"` // 消息头
  7472. RetCode *int32 `protobuf:"varint,2,opt,name=RetCode" json:"RetCode,omitempty"` // 返回码
  7473. RetDesc *string `protobuf:"bytes,3,opt,name=RetDesc" json:"RetDesc,omitempty"` // 描述信息
  7474. UserID *uint32 `protobuf:"varint,4,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
  7475. AccountID *uint64 `protobuf:"varint,5,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账户ID
  7476. WRTradeOrderID *uint64 `protobuf:"varint,6,opt,name=WRTradeOrderID" json:"WRTradeOrderID,omitempty"` // 仓单贸易委托单ID
  7477. ClientSerialNo *string `protobuf:"bytes,7,opt,name=ClientSerialNo" json:"ClientSerialNo,omitempty"` // 客户端流水号
  7478. }
  7479. func (x *GZCenterPurchaseOrderRsp) Reset() {
  7480. *x = GZCenterPurchaseOrderRsp{}
  7481. if protoimpl.UnsafeEnabled {
  7482. mi := &file_mtp2_proto_msgTypes[76]
  7483. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7484. ms.StoreMessageInfo(mi)
  7485. }
  7486. }
  7487. func (x *GZCenterPurchaseOrderRsp) String() string {
  7488. return protoimpl.X.MessageStringOf(x)
  7489. }
  7490. func (*GZCenterPurchaseOrderRsp) ProtoMessage() {}
  7491. func (x *GZCenterPurchaseOrderRsp) ProtoReflect() protoreflect.Message {
  7492. mi := &file_mtp2_proto_msgTypes[76]
  7493. if protoimpl.UnsafeEnabled && x != nil {
  7494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  7495. if ms.LoadMessageInfo() == nil {
  7496. ms.StoreMessageInfo(mi)
  7497. }
  7498. return ms
  7499. }
  7500. return mi.MessageOf(x)
  7501. }
  7502. // Deprecated: Use GZCenterPurchaseOrderRsp.ProtoReflect.Descriptor instead.
  7503. func (*GZCenterPurchaseOrderRsp) Descriptor() ([]byte, []int) {
  7504. return file_mtp2_proto_rawDescGZIP(), []int{76}
  7505. }
  7506. func (x *GZCenterPurchaseOrderRsp) GetHeader() *MessageHead {
  7507. if x != nil {
  7508. return x.Header
  7509. }
  7510. return nil
  7511. }
  7512. func (x *GZCenterPurchaseOrderRsp) GetRetCode() int32 {
  7513. if x != nil && x.RetCode != nil {
  7514. return *x.RetCode
  7515. }
  7516. return 0
  7517. }
  7518. func (x *GZCenterPurchaseOrderRsp) GetRetDesc() string {
  7519. if x != nil && x.RetDesc != nil {
  7520. return *x.RetDesc
  7521. }
  7522. return ""
  7523. }
  7524. func (x *GZCenterPurchaseOrderRsp) GetUserID() uint32 {
  7525. if x != nil && x.UserID != nil {
  7526. return *x.UserID
  7527. }
  7528. return 0
  7529. }
  7530. func (x *GZCenterPurchaseOrderRsp) GetAccountID() uint64 {
  7531. if x != nil && x.AccountID != nil {
  7532. return *x.AccountID
  7533. }
  7534. return 0
  7535. }
  7536. func (x *GZCenterPurchaseOrderRsp) GetWRTradeOrderID() uint64 {
  7537. if x != nil && x.WRTradeOrderID != nil {
  7538. return *x.WRTradeOrderID
  7539. }
  7540. return 0
  7541. }
  7542. func (x *GZCenterPurchaseOrderRsp) GetClientSerialNo() string {
  7543. if x != nil && x.ClientSerialNo != nil {
  7544. return *x.ClientSerialNo
  7545. }
  7546. return ""
  7547. }
  7548. var File_mtp2_proto protoreflect.FileDescriptor
  7549. var file_mtp2_proto_rawDesc = []byte{
  7550. 0x0a, 0x0a, 0x6d, 0x74, 0x70, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62,
  7551. 0x22, 0xc7, 0x02, 0x0a, 0x0b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7552. 0x12, 0x18, 0x0a, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  7553. 0x0d, 0x52, 0x07, 0x46, 0x75, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x52, 0x65,
  7554. 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x52,
  7555. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
  7556. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
  7557. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  7558. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
  7559. 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65,
  7560. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69,
  7561. 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x06, 0x20,
  7562. 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04,
  7563. 0x55, 0x55, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x55, 0x55, 0x49, 0x44,
  7564. 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01,
  7565. 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  7566. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
  7567. 0x65, 0x72, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  7568. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x52, 0x65, 0x73,
  7569. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x63,
  7570. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a,
  7571. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x32, 0x22, 0xa6, 0x01, 0x0a, 0x0a, 0x4e,
  7572. 0x6f, 0x74, 0x69, 0x66, 0x79, 0x48, 0x65, 0x61, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x74, 0x66,
  7573. 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x4e, 0x74, 0x66, 0x4d,
  7574. 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x41, 0x63,
  7575. 0x63, 0x74, 0x49, 0x44, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x45, 0x78, 0x63,
  7576. 0x6c, 0x75, 0x64, 0x65, 0x41, 0x63, 0x63, 0x74, 0x49, 0x44, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x45,
  7577. 0x78, 0x63, 0x68, 0x49, 0x44, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x07, 0x45, 0x78,
  7578. 0x63, 0x68, 0x49, 0x44, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x49,
  7579. 0x44, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  7580. 0x49, 0x44, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  7581. 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0a, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7582. 0x49, 0x44, 0x73, 0x22, 0x44, 0x0a, 0x0a, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  7583. 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  7584. 0x01, 0x28, 0x09, 0x52, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  7585. 0x08, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  7586. 0x08, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x22, 0xaf, 0x01, 0x0a, 0x0c, 0x4d, 0x6f,
  7587. 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  7588. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  7589. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  7590. 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64,
  7591. 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x4d, 0x6f, 0x64, 0x69,
  7592. 0x66, 0x79, 0x50, 0x77, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x4d, 0x6f, 0x64,
  7593. 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
  7594. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x4f,
  7595. 0x6c, 0x64, 0x50, 0x77, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x6c, 0x64,
  7596. 0x50, 0x77, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x18, 0x05, 0x20,
  7597. 0x01, 0x28, 0x09, 0x52, 0x06, 0x4e, 0x65, 0x77, 0x50, 0x77, 0x64, 0x22, 0x6b, 0x0a, 0x0c, 0x4d,
  7598. 0x6f, 0x64, 0x69, 0x66, 0x79, 0x50, 0x77, 0x64, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7599. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7600. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7601. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  7602. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  7603. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  7604. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xcd, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65,
  7605. 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12,
  7606. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7607. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7608. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  7609. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
  7610. 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44,
  7611. 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
  7612. 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x65,
  7613. 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  7614. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  7615. 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d,
  7616. 0x52, 0x0a, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07,
  7617. 0x43, 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43,
  7618. 0x61, 0x72, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
  7619. 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
  7620. 0x75, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x18,
  7621. 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44,
  7622. 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18, 0x09,
  7623. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44,
  7624. 0x12, 0x16, 0x0a, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d,
  7625. 0x52, 0x06, 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x44, 0x69, 0x73, 0x74,
  7626. 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x44, 0x69,
  7627. 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72,
  7628. 0x65, 0x73, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65,
  7629. 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  7630. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x6b, 0x65, 0x52, 0x65, 0x6d, 0x61,
  7631. 0x72, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66,
  7632. 0x6f, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69,
  7633. 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65,
  7634. 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12,
  7635. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7636. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7637. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  7638. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  7639. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  7640. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d,
  7641. 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20,
  7642. 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  7643. 0x49, 0x64, 0x22, 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  7644. 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7645. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7646. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7647. 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49,
  7648. 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63,
  7649. 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44, 0x65,
  7650. 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  7651. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  7652. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  7653. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  7654. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  7655. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7656. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  7657. 0x22, 0x72, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x49,
  7658. 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  7659. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  7660. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  7661. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18, 0x02,
  7662. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  7663. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73,
  7664. 0x65, 0x72, 0x49, 0x64, 0x22, 0x8e, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  7665. 0x65, 0x69, 0x76, 0x65, 0x49, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x73, 0x70,
  7666. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  7667. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  7668. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  7669. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  7670. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  7671. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a,
  7672. 0x06, 0x41, 0x75, 0x74, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x41,
  7673. 0x75, 0x74, 0x6f, 0x49, 0x64, 0x22, 0x9d, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  7674. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  7675. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  7676. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  7677. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  7678. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x43,
  7679. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a,
  7680. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55,
  7681. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  7682. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  7683. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x54, 0x79, 0x70, 0x65,
  7684. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x54,
  7685. 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65, 0x72, 0x49,
  7686. 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x54, 0x61, 0x78, 0x70, 0x61, 0x79, 0x65,
  7687. 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e,
  7688. 0x66, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  7689. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74,
  7690. 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65,
  7691. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x52,
  7692. 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  7693. 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x42, 0x61, 0x6e, 0x6b, 0x12, 0x26, 0x0a,
  7694. 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  7695. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x41, 0x63,
  7696. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  7697. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12,
  7698. 0x14, 0x0a, 0x05, 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  7699. 0x49, 0x44, 0x4e, 0x75, 0x6d, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  7700. 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06,
  7701. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  7702. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  7703. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  7704. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12,
  7705. 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  7706. 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63,
  7707. 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  7708. 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22,
  7709. 0x66, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70,
  7710. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64,
  7711. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65,
  7712. 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  7713. 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  7714. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70,
  7715. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x22, 0x74, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x55, 0x73,
  7716. 0x65, 0x72, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70,
  7717. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  7718. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  7719. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74,
  7720. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43,
  7721. 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  7722. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x22, 0xac, 0x09,
  7723. 0x0a, 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71,
  7724. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  7725. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  7726. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74,
  7727. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04,
  7728. 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12,
  7729. 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  7730. 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65,
  7731. 0x44, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64,
  7732. 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63,
  7733. 0x6b, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54,
  7734. 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7735. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f,
  7736. 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7737. 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63,
  7738. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75, 0x73,
  7739. 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43, 0x75,
  7740. 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61,
  7741. 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x02, 0x28, 0x05, 0x52, 0x0b, 0x4f, 0x70,
  7742. 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73, 0x46,
  7743. 0x6f, 0x72, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46, 0x6f,
  7744. 0x72, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18,
  7745. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12,
  7746. 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c,
  7747. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70,
  7748. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  7749. 0x49, 0x64, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0d, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61,
  7750. 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x16, 0x46, 0x6f, 0x72, 0x63, 0x65,
  7751. 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e,
  7752. 0x6f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69,
  7753. 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f, 0x12,
  7754. 0x3a, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b,
  7755. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28,
  7756. 0x09, 0x52, 0x18, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x42, 0x61, 0x6e, 0x6b,
  7757. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x42,
  7758. 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x6f, 0x18, 0x10, 0x20, 0x02,
  7759. 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e,
  7760. 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7761. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x42, 0x61, 0x6e, 0x6b,
  7762. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45,
  7763. 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x02, 0x28, 0x09, 0x52,
  7764. 0x0a, 0x45, 0x78, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f,
  7765. 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52,
  7766. 0x0a, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x4f,
  7767. 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28,
  7768. 0x09, 0x52, 0x0c, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  7769. 0x1a, 0x0a, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x15, 0x20, 0x02, 0x28,
  7770. 0x09, 0x52, 0x08, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x43,
  7771. 0x65, 0x72, 0x74, 0x49, 0x44, 0x18, 0x16, 0x20, 0x02, 0x28, 0x09, 0x52, 0x06, 0x43, 0x65, 0x72,
  7772. 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7773. 0x6e, 0x74, 0x50, 0x57, 0x44, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x61, 0x6e,
  7774. 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x50, 0x57, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41,
  7775. 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  7776. 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x41, 0x67, 0x65,
  7777. 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05,
  7778. 0x52, 0x0d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  7779. 0x20, 0x0a, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x49, 0x44, 0x18, 0x1a,
  7780. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x43, 0x65, 0x72, 0x74, 0x49,
  7781. 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7782. 0x54, 0x79, 0x70, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x42, 0x61, 0x6e, 0x6b,
  7783. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x42,
  7784. 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28,
  7785. 0x09, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
  7786. 0x1a, 0x0a, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x18, 0x1d, 0x20, 0x01, 0x28,
  7787. 0x09, 0x52, 0x08, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x42,
  7788. 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28,
  7789. 0x05, 0x52, 0x0c, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12,
  7790. 0x20, 0x0a, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x1f,
  7791. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e,
  7792. 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64,
  7793. 0x65, 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
  7794. 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x21,
  7795. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x65,
  7796. 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x22, 0x20, 0x01, 0x28, 0x09,
  7797. 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xd5, 0x04, 0x0a,
  7798. 0x0e, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x73, 0x70, 0x12,
  7799. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  7800. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  7801. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  7802. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  7803. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  7804. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d,
  7805. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20,
  7806. 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  7807. 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64,
  7808. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  7809. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18,
  7810. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x12, 0x16,
  7811. 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
  7812. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69,
  7813. 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68,
  7814. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64,
  7815. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c,
  7816. 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  7817. 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c,
  7818. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x0b, 0x20, 0x01,
  7819. 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  7820. 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64,
  7821. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45,
  7822. 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  7823. 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65,
  7824. 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x61,
  7825. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09,
  7826. 0x52, 0x0c, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12, 0x2a,
  7827. 0x0a, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61,
  7828. 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x62, 0x61, 0x6e, 0x6b, 0x43, 0x68,
  7829. 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x42, 0x61,
  7830. 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x42, 0x61, 0x6e, 0x6b,
  7831. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x75, 0x6d,
  7832. 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e,
  7833. 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d,
  7834. 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  7835. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x81, 0x03, 0x0a, 0x14, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b,
  7836. 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  7837. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7838. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7839. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  7840. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45,
  7841. 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  7842. 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78,
  7843. 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43,
  7844. 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7845. 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e,
  7846. 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09, 0x52, 0x09, 0x43, 0x75, 0x73, 0x42, 0x61,
  7847. 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x18,
  7848. 0x06, 0x20, 0x02, 0x28, 0x05, 0x52, 0x07, 0x49, 0x73, 0x46, 0x6f, 0x72, 0x63, 0x65, 0x12, 0x1a,
  7849. 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  7850. 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72,
  7851. 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54,
  7852. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68,
  7853. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78,
  7854. 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x61, 0x6e, 0x6b,
  7855. 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  7856. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x12, 0x2a, 0x0a, 0x10,
  7857. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65,
  7858. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c,
  7859. 0x64, 0x41, 0x63, 0x63, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xb1, 0x03, 0x0a, 0x14, 0x74, 0x32, 0x62,
  7860. 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x53, 0x69, 0x67, 0x6e, 0x52, 0x73,
  7861. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  7862. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  7863. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  7864. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  7865. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  7866. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24,
  7867. 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18,
  7868. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  7869. 0x6f, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43,
  7870. 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7871. 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64,
  7872. 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72,
  7873. 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  7874. 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68,
  7875. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x08, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78,
  7876. 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68,
  7877. 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64,
  7878. 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20,
  7879. 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22,
  7880. 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x0b,
  7881. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b,
  7882. 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43,
  7883. 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65,
  7884. 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74,
  7885. 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  7886. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0xde, 0x05, 0x0a,
  7887. 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  7888. 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  7889. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  7890. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d,
  7891. 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20,
  7892. 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  7893. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  7894. 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63,
  7895. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x02, 0x28, 0x09, 0x52,
  7896. 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09,
  7897. 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x05, 0x20, 0x02, 0x28, 0x09, 0x52,
  7898. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75,
  7899. 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75,
  7900. 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  7901. 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x41, 0x63, 0x63,
  7902. 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e, 0x6b,
  7903. 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01,
  7904. 0x28, 0x09, 0x52, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63,
  7905. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x32, 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c,
  7906. 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01,
  7907. 0x28, 0x09, 0x52, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63,
  7908. 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70, 0x65, 0x6e,
  7909. 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  7910. 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64,
  7911. 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75,
  7912. 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63,
  7913. 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63,
  7914. 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  7915. 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16,
  7916. 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x01, 0x52, 0x06,
  7917. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x44, 0x61, 0x74,
  7918. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70,
  7919. 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64, 0x54,
  7920. 0x61, 0x50, 0x57, 0x44, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64, 0x54,
  7921. 0x61, 0x50, 0x57, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x65, 0x73, 0x63, 0x18, 0x10, 0x20, 0x01,
  7922. 0x28, 0x09, 0x52, 0x04, 0x44, 0x65, 0x73, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x49, 0x64, 0x65, 0x6e,
  7923. 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  7924. 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  7925. 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12,
  7926. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x42, 0x72, 0x61, 0x6e, 0x63, 0x68, 0x42, 0x61, 0x6e, 0x6b,
  7927. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69,
  7928. 0x6e, 0x66, 0x6f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e,
  7929. 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  7930. 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a,
  7931. 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28,
  7932. 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xb7, 0x03,
  7933. 0x0a, 0x12, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  7934. 0x77, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  7935. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  7936. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  7937. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  7938. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  7939. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  7940. 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  7941. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  7942. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
  7943. 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  7944. 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06, 0x20,
  7945. 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12,
  7946. 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  7947. 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65,
  7948. 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64,
  7949. 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54,
  7950. 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e,
  7951. 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x43, 0x65, 0x6e,
  7952. 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  7953. 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12,
  7954. 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18,
  7955. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
  7956. 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65,
  7957. 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x65,
  7958. 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
  7959. 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  7960. 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xf7, 0x04, 0x0a, 0x11, 0x74, 0x32, 0x62, 0x42,
  7961. 0x61, 0x6e, 0x6b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  7962. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  7963. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  7964. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65,
  7965. 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x02, 0x28, 0x04, 0x52, 0x0d, 0x45,
  7966. 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  7967. 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x18, 0x03, 0x20, 0x02, 0x28, 0x09, 0x52,
  7968. 0x09, 0x43, 0x75, 0x73, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78,
  7969. 0x63, 0x68, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68,
  7970. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18,
  7971. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65,
  7972. 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06,
  7973. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  7974. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  7975. 0x07, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x43, 0x6f,
  7976. 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x6f,
  7977. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73,
  7978. 0x4e, 0x6f, 0x12, 0x2a, 0x0a, 0x10, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41,
  7979. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x42, 0x61,
  7980. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x32,
  7981. 0x0a, 0x14, 0x42, 0x61, 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75,
  7982. 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x42, 0x61,
  7983. 0x6e, 0x6b, 0x43, 0x68, 0x69, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61,
  7984. 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x18, 0x0b,
  7985. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x6c, 0x64, 0x54, 0x61, 0x50, 0x57, 0x44, 0x12, 0x16,
  7986. 0x0a, 0x06, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x02, 0x28, 0x01, 0x52, 0x06,
  7987. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e,
  7988. 0x63, 0x79, 0x18, 0x0d, 0x20, 0x02, 0x28, 0x09, 0x52, 0x08, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e,
  7989. 0x63, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0e, 0x20, 0x01,
  7990. 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  7991. 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01,
  7992. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x64, 0x42, 0x61, 0x6e, 0x6b,
  7993. 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74,
  7994. 0x4e, 0x75, 0x6d, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x42, 0x61, 0x6e, 0x6b, 0x41,
  7995. 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x61, 0x6e, 0x6b,
  7996. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
  7997. 0x52, 0x0e, 0x42, 0x61, 0x6e, 0x6b, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  7998. 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
  7999. 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x66,
  8000. 0x6f, 0x22, 0xb6, 0x03, 0x0a, 0x11, 0x74, 0x32, 0x62, 0x42, 0x61, 0x6e, 0x6b, 0x44, 0x65, 0x70,
  8001. 0x6f, 0x73, 0x69, 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  8002. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  8003. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  8004. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  8005. 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  8006. 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74,
  8007. 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61,
  8008. 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x45, 0x78, 0x74,
  8009. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74,
  8010. 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74,
  8011. 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  8012. 0x18, 0x06, 0x20, 0x02, 0x28, 0x09, 0x52, 0x0a, 0x45, 0x78, 0x63, 0x68, 0x54, 0x69, 0x63, 0x6b,
  8013. 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01,
  8014. 0x28, 0x09, 0x52, 0x06, 0x45, 0x78, 0x63, 0x68, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72,
  8015. 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54,
  8016. 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74,
  8017. 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  8018. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d,
  8019. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20,
  8020. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x43, 0x6f,
  8021. 0x64, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x4d,
  8022. 0x73, 0x67, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72,
  8023. 0x45, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72,
  8024. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  8025. 0x0f, 0x43, 0x65, 0x72, 0x74, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x65,
  8026. 0x12, 0x18, 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28,
  8027. 0x09, 0x52, 0x07, 0x4e, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x22, 0xa2, 0x01, 0x0a, 0x08, 0x57,
  8028. 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  8029. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  8030. 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  8031. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64,
  8032. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x75, 0x73, 0x69, 0x6e,
  8033. 0x65, 0x73, 0x73, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x42, 0x75, 0x73,
  8034. 0x69, 0x6e, 0x65, 0x73, 0x73, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65,
  8035. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49,
  8036. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05,
  8037. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x22,
  8038. 0xb0, 0x03, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x41, 0x70, 0x70,
  8039. 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  8040. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  8041. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16,
  8042. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  8043. 0x75, 0x73, 0x65, 0x72, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
  8044. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x61,
  8045. 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  8046. 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d,
  8047. 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20,
  8048. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x63, 0x6f,
  8049. 0x64, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x6e,
  8050. 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68,
  8051. 0x6f, 0x75, 0x73, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x61, 0x72, 0x65,
  8052. 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52,
  8053. 0x0d, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1e,
  8054. 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01,
  8055. 0x28, 0x04, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x69, 0x64, 0x12, 0x16,
  8056. 0x0a, 0x06, 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
  8057. 0x63, 0x69, 0x74, 0x79, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  8058. 0x63, 0x74, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, 0x69, 0x73, 0x74,
  8059. 0x72, 0x69, 0x63, 0x74, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
  8060. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  8061. 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  8062. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x61,
  8063. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e, 0x75, 0x6d,
  8064. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x6e,
  8065. 0x75, 0x6d, 0x22, 0x92, 0x01, 0x0a, 0x11, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
  8066. 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64,
  8067. 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65,
  8068. 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  8069. 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
  8070. 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52,
  8071. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65,
  8072. 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75,
  8073. 0x73, 0x65, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x77, 0x61, 0x72, 0x65,
  8074. 0x68, 0x6f, 0x75, 0x73, 0x65, 0x69, 0x64, 0x22, 0xf6, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72, 0x66,
  8075. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65,
  8076. 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  8077. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  8078. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  8079. 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
  8080. 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50,
  8081. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44,
  8082. 0x12, 0x1e, 0x0a, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  8083. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x42, 0x72, 0x65, 0x61, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
  8084. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04, 0x20,
  8085. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12, 0x20,
  8086. 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20,
  8087. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  8088. 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x06,
  8089. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74,
  8090. 0x22, 0xaa, 0x01, 0x0a, 0x1d, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  8091. 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x65, 0x64, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52,
  8092. 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  8093. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  8094. 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52,
  8095. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65,
  8096. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  8097. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12,
  8098. 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  8099. 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66,
  8100. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x22, 0xd7, 0x01,
  8101. 0x0a, 0x18, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x6c,
  8102. 0x61, 0x79, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  8103. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  8104. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  8105. 0x64, 0x65, 0x72, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
  8106. 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
  8107. 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50,
  8108. 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x65, 0x6c,
  8109. 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x64, 0x65,
  8110. 0x6c, 0x61, 0x79, 0x64, 0x61, 0x79, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x69,
  8111. 0x63, 0x61, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c,
  8112. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x72, 0x65,
  8113. 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x6c,
  8114. 0x79, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0xcb, 0x01, 0x0a, 0x18, 0x50, 0x65, 0x72, 0x66,
  8115. 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x41, 0x70, 0x70, 0x6c,
  8116. 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  8117. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  8118. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  8119. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  8120. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  8121. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  8122. 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  8123. 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  8124. 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  8125. 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x69,
  8126. 0x63, 0x61, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c,
  8127. 0x69, 0x63, 0x61, 0x6e, 0x74, 0x22, 0xc2, 0x02, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
  8128. 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  8129. 0x72, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  8130. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  8131. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x34,
  8132. 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  8133. 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x50,
  8134. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74,
  8135. 0x65, 0x70, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72,
  8136. 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f,
  8137. 0x76, 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x36,
  8138. 0x0a, 0x16, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x65,
  8139. 0x63, 0x75, 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x16,
  8140. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x65, 0x63, 0x75,
  8141. 0x74, 0x65, 0x53, 0x69, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x74, 0x65, 0x70, 0x52, 0x65,
  8142. 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x74, 0x65, 0x70,
  8143. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x22, 0x0a, 0x0c, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x68,
  8144. 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x4f, 0x76,
  8145. 0x65, 0x72, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x45, 0x78,
  8146. 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  8147. 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x65, 0x65, 0x22, 0xb0, 0x01, 0x0a, 0x1b, 0x50,
  8148. 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c,
  8149. 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  8150. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  8151. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  8152. 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02,
  8153. 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  8154. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  8155. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f,
  8156. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44,
  8157. 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  8158. 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x74, 0x65, 0x70, 0x49, 0x44, 0x22, 0xb4, 0x01,
  8159. 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f, 0x64,
  8160. 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  8161. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  8162. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  8163. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
  8164. 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  8165. 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c,
  8166. 0x61, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  8167. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8168. 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x49, 0x6e, 0x66,
  8169. 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74,
  8170. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xc6, 0x01, 0x0a, 0x1b, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
  8171. 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  8172. 0x74, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  8173. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  8174. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a,
  8175. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
  8176. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  8177. 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  8178. 0x63, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
  8179. 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65,
  8180. 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x12,
  8181. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  8182. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x22, 0xd2, 0x02,
  8183. 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x5a, 0x53, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x52, 0x73, 0x70, 0x12,
  8184. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  8185. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  8186. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  8187. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  8188. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  8189. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06,
  8190. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73,
  8191. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  8192. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8193. 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  8194. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e,
  8195. 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74,
  8196. 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  8197. 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x22,
  8198. 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x08,
  8199. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c,
  8200. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01,
  8201. 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  8202. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01,
  8203. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8204. 0x4e, 0x6f, 0x22, 0x88, 0x02, 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76, 0x6f,
  8205. 0x72, 0x69, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27,
  8206. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  8207. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  8208. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  8209. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  8210. 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  8211. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65,
  8212. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61,
  8213. 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70,
  8214. 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69,
  8215. 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43,
  8216. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72,
  8217. 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72,
  8218. 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  8219. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43,
  8220. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xde, 0x01,
  8221. 0x0a, 0x17, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4f,
  8222. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  8223. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  8224. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  8225. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  8226. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  8227. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  8228. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  8229. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26,
  8230. 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  8231. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  8232. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8233. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  8234. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xc2,
  8235. 0x05, 0x0a, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74,
  8236. 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  8237. 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  8238. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x02,
  8239. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12,
  8240. 0x1e, 0x0a, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x03, 0x20,
  8241. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12,
  8242. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x54, 0x79, 0x70,
  8243. 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x75, 0x72, 0x72, 0x65,
  8244. 0x6e, 0x63, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53, 0x53, 0x68, 0x61,
  8245. 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0b, 0x5a, 0x53,
  8246. 0x53, 0x68, 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x5a, 0x53, 0x43,
  8247. 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0b,
  8248. 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x5a,
  8249. 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x03,
  8250. 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70,
  8251. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
  8252. 0x20, 0x03, 0x28, 0x0d, 0x52, 0x09, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8253. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70,
  8254. 0x65, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65,
  8255. 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x5a, 0x53, 0x50, 0x6f, 0x6c,
  8256. 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0c, 0x5a,
  8257. 0x53, 0x50, 0x6f, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x5a,
  8258. 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70,
  8259. 0x65, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x12, 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72,
  8260. 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x53,
  8261. 0x69, 0x7a, 0x65, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x01, 0x52, 0x04, 0x53, 0x69, 0x7a, 0x65, 0x12,
  8262. 0x24, 0x0a, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65,
  8263. 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0d, 0x5a, 0x53, 0x43, 0x72, 0x79, 0x73, 0x74, 0x61,
  8264. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x18,
  8265. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x20, 0x0a,
  8266. 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x03,
  8267. 0x28, 0x0d, 0x52, 0x0b, 0x5a, 0x53, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
  8268. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x31, 0x54, 0x79, 0x70,
  8269. 0x65, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c,
  8270. 0x6f, 0x72, 0x31, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43,
  8271. 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0d, 0x52,
  8272. 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x54, 0x79, 0x70, 0x65, 0x12,
  8273. 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x33, 0x54, 0x79, 0x70,
  8274. 0x65, 0x18, 0x12, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x5a, 0x43, 0x6f, 0x6c,
  8275. 0x6f, 0x72, 0x33, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72,
  8276. 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12,
  8277. 0x22, 0x0a, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x73, 0x18,
  8278. 0x14, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65,
  8279. 0x49, 0x44, 0x73, 0x22, 0xaa, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  8280. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  8281. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  8282. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  8283. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  8284. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  8285. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  8286. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x53, 0x0a, 0x17, 0x47,
  8287. 0x5a, 0x5f, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
  8288. 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70,
  8289. 0x62, 0x2e, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61,
  8290. 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x16, 0x47, 0x5a, 0x42, 0x75, 0x79, 0x4f,
  8291. 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x45, 0x78, 0x49, 0x6e, 0x66, 0x6f,
  8292. 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54,
  8293. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  8294. 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70,
  8295. 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  8296. 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  8297. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x07,
  8298. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x28,
  8299. 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d,
  8300. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  8301. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65,
  8302. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c,
  8303. 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  8304. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  8305. 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  8306. 0x22, 0x97, 0x02, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  8307. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  8308. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  8309. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  8310. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  8311. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  8312. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  8313. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  8314. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  8315. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  8316. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e,
  8317. 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06,
  8318. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64,
  8319. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d,
  8320. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69,
  8321. 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  8322. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  8323. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xbe, 0x04, 0x0a, 0x15, 0x5a,
  8324. 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
  8325. 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  8326. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  8327. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
  8328. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55,
  8329. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8330. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  8331. 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  8332. 0x64, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61,
  8333. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63,
  8334. 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  8335. 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12,
  8336. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  8337. 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x4c,
  8338. 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28,
  8339. 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x12,
  8340. 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52,
  8341. 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f,
  8342. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44,
  8343. 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  8344. 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x24, 0x0a,
  8345. 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a,
  8346. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54,
  8347. 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65,
  8348. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d,
  8349. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x0c, 0x20,
  8350. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a,
  8351. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18,
  8352. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  8353. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  8354. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  8355. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12,
  8356. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20,
  8357. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8358. 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x10, 0x20, 0x01, 0x28,
  8359. 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xb6, 0x02, 0x0a, 0x15,
  8360. 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69,
  8361. 0x6e, 0x67, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  8362. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  8363. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18,
  8364. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  8365. 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44,
  8366. 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65,
  8367. 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01,
  8368. 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63,
  8369. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41,
  8370. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72,
  8371. 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  8372. 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  8373. 0x12, 0x1c, 0x0a, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20,
  8374. 0x01, 0x28, 0x04, 0x52, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c,
  8375. 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  8376. 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  8377. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09,
  8378. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  8379. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x91, 0x03, 0x0a, 0x14, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72,
  8380. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  8381. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  8382. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  8383. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  8384. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  8385. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  8386. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  8387. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72,
  8388. 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65, 0x6c,
  8389. 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8390. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x05,
  8391. 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x1a,
  8392. 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d,
  8393. 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  8394. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01,
  8395. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8396. 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65,
  8397. 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69,
  8398. 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  8399. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d,
  8400. 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  8401. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04,
  8402. 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08,
  8403. 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
  8404. 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x22, 0xf1, 0x02, 0x0a, 0x14, 0x5a, 0x53, 0x42,
  8405. 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x73,
  8406. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  8407. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  8408. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  8409. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  8410. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  8411. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16,
  8412. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  8413. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  8414. 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  8415. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  8416. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52,
  8417. 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  8418. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72,
  8419. 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x52, 0x65, 0x6c,
  8420. 0x61, 0x74, 0x65, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8421. 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75,
  8422. 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  8423. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54,
  8424. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8425. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8426. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c,
  8427. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xf3, 0x03, 0x0a,
  8428. 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74,
  8429. 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  8430. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  8431. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  8432. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  8433. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  8434. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  8435. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x42, 0x75,
  8436. 0x79, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18,
  8437. 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x42, 0x75, 0x79, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  8438. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52, 0x53, 0x74,
  8439. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
  8440. 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e,
  8441. 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x18, 0x06,
  8442. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79,
  8443. 0x70, 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74, 0x79,
  8444. 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x51, 0x74, 0x79,
  8445. 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x08,
  8446. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65,
  8447. 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44,
  8448. 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69,
  8449. 0x6c, 0x6c, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x0a,
  8450. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b,
  8451. 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28,
  8452. 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e,
  8453. 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01,
  8454. 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26,
  8455. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  8456. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8457. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  8458. 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
  8459. 0x49, 0x44, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72, 0x64,
  8460. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73,
  8461. 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
  8462. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65,
  8463. 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  8464. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74,
  8465. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18,
  8466. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16,
  8467. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
  8468. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  8469. 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75,
  8470. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18,
  8471. 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26,
  8472. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  8473. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8474. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xfa, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65, 0x6c,
  8475. 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70,
  8476. 0x6c, 0x79, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06,
  8477. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  8478. 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48,
  8479. 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  8480. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a,
  8481. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
  8482. 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a, 0x14, 0x53,
  8483. 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c,
  8484. 0x79, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c, 0x6c, 0x44,
  8485. 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12,
  8486. 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05,
  8487. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72,
  8488. 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65,
  8489. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54,
  8490. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  8491. 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  8492. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  8493. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8494. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28,
  8495. 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  8496. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  8497. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  8498. 0x6c, 0x4e, 0x6f, 0x22, 0xfc, 0x02, 0x0a, 0x21, 0x5a, 0x53, 0x53, 0x65, 0x6c, 0x6c, 0x4f, 0x72,
  8499. 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x4f,
  8500. 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  8501. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  8502. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  8503. 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20,
  8504. 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07,
  8505. 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52,
  8506. 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  8507. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  8508. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  8509. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x32, 0x0a, 0x14,
  8510. 0x53, 0x65, 0x6c, 0x6c, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70,
  8511. 0x6c, 0x79, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x53, 0x65, 0x6c, 0x6c,
  8512. 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44,
  8513. 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8514. 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  8515. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x65,
  8516. 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
  8517. 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09,
  8518. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  8519. 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  8520. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01,
  8521. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8522. 0x4e, 0x6f, 0x22, 0xcd, 0x03, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65,
  8523. 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65,
  8524. 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  8525. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  8526. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06,
  8527. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
  8528. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  8529. 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8530. 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64,
  8531. 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x52, 0x65, 0x6c, 0x61,
  8532. 0x74, 0x65, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72,
  8533. 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x4f, 0x72,
  8534. 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x50,
  8535. 0x72, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c,
  8536. 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53,
  8537. 0x72, 0x63, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53,
  8538. 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  8539. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  8540. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c,
  8541. 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20,
  8542. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8543. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79,
  8544. 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8545. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
  8546. 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
  8547. 0x6f, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  8548. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44,
  8549. 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18,
  8550. 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x6d, 0x61,
  8551. 0x72, 0x6b, 0x22, 0xc1, 0x02, 0x0a, 0x1c, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64, 0x65,
  8552. 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65,
  8553. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  8554. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  8555. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  8556. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  8557. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  8558. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  8559. 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  8560. 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
  8561. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
  8562. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  8563. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  8564. 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20,
  8565. 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x07, 0x20,
  8566. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44,
  8567. 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20,
  8568. 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26,
  8569. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  8570. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8571. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xea, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75, 0x79,
  8572. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50,
  8573. 0x72, 0x69, 0x63, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27,
  8574. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  8575. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  8576. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  8577. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  8578. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  8579. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20, 0x0a,
  8580. 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01,
  8581. 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x12,
  8582. 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x05,
  8583. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72,
  8584. 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65,
  8585. 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54,
  8586. 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  8587. 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  8588. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  8589. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8590. 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x09, 0x20, 0x01, 0x28,
  8591. 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x43,
  8592. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20,
  8593. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61,
  8594. 0x6c, 0x4e, 0x6f, 0x22, 0x82, 0x02, 0x0a, 0x23, 0x5a, 0x53, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x64,
  8595. 0x65, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x67, 0x50, 0x72, 0x69, 0x63,
  8596. 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  8597. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  8598. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  8599. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  8600. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  8601. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  8602. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  8603. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  8604. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20,
  8605. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20,
  8606. 0x0a, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44, 0x18, 0x06, 0x20,
  8607. 0x01, 0x28, 0x04, 0x52, 0x0b, 0x57, 0x52, 0x42, 0x61, 0x72, 0x67, 0x61, 0x69, 0x6e, 0x49, 0x44,
  8608. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8609. 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8610. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x86, 0x03, 0x0a, 0x17, 0x57, 0x52, 0x4c,
  8611. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64, 0x65,
  8612. 0x72, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01,
  8613. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  8614. 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a,
  8615. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55,
  8616. 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8617. 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  8618. 0x74, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64,
  8619. 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11,
  8620. 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  8621. 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x18, 0x05, 0x20,
  8622. 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x72, 0x63, 0x12, 0x26, 0x0a,
  8623. 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18,
  8624. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72,
  8625. 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f,
  8626. 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  8627. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12,
  8628. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20,
  8629. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8630. 0x1e, 0x0a, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20,
  8631. 0x01, 0x28, 0x04, 0x52, 0x0a, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x44, 0x12,
  8632. 0x1c, 0x0a, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x18, 0x0a, 0x20, 0x01,
  8633. 0x28, 0x0d, 0x52, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x12, 0x12, 0x0a,
  8634. 0x04, 0x57, 0x52, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x57, 0x52, 0x49,
  8635. 0x44, 0x22, 0xe8, 0x02, 0x0a, 0x17, 0x57, 0x52, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43,
  8636. 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  8637. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  8638. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  8639. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  8640. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  8641. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  8642. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x57, 0x52,
  8643. 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x49, 0x44, 0x18, 0x04, 0x20,
  8644. 0x01, 0x28, 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x43, 0x61, 0x6e, 0x63,
  8645. 0x65, 0x6c, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61,
  8646. 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  8647. 0x11, 0x4f, 0x6c, 0x64, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8648. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01,
  8649. 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63,
  8650. 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41,
  8651. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x61, 0x6e, 0x63,
  8652. 0x65, 0x6c, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x43, 0x61, 0x6e,
  8653. 0x63, 0x65, 0x6c, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54,
  8654. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8655. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8656. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c,
  8657. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x97, 0x06, 0x0a,
  8658. 0x14, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70, 0x70,
  8659. 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18,
  8660. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  8661. 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24,
  8662. 0x0a, 0x06, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c,
  8663. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43, 0x6f,
  8664. 0x6d, 0x6d, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03,
  8665. 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  8666. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
  8667. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x52,
  8668. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  8669. 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x20,
  8670. 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44, 0x18, 0x06, 0x20,
  8671. 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44,
  8672. 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  8673. 0x52, 0x06, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6f,
  8674. 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  8675. 0x09, 0x52, 0x0f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x61,
  8676. 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e,
  8677. 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x41, 0x70,
  8678. 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x1c,
  8679. 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x18, 0x0a, 0x20, 0x01, 0x28,
  8680. 0x04, 0x52, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  8681. 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04,
  8682. 0x52, 0x0a, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a,
  8683. 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04,
  8684. 0x52, 0x0a, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  8685. 0x43, 0x69, 0x74, 0x79, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x43, 0x69,
  8686. 0x74, 0x79, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18,
  8687. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x20,
  8688. 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20,
  8689. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  8690. 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x10,
  8691. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4e, 0x75, 0x6d,
  8692. 0x12, 0x2c, 0x0a, 0x11, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52,
  8693. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x41, 0x70, 0x70,
  8694. 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x22,
  8695. 0x0a, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c, 0x49, 0x44, 0x18, 0x12,
  8696. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x4c, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x69, 0x6c, 0x6c,
  8697. 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01,
  8698. 0x28, 0x0d, 0x52, 0x06, 0x53, 0x75, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74,
  8699. 0x79, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06,
  8700. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65,
  8701. 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x79, 0x70,
  8702. 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x79,
  8703. 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
  8704. 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79,
  8705. 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b,
  8706. 0x65, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8707. 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xd7, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x63, 0x65, 0x69,
  8708. 0x70, 0x74, 0x5a, 0x53, 0x4f, 0x75, 0x74, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12,
  8709. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  8710. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  8711. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43,
  8712. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f,
  8713. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20,
  8714. 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x06,
  8715. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70,
  8716. 0x62, 0x2e, 0x57, 0x52, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x06, 0x43, 0x6f, 0x6d, 0x6d,
  8717. 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x05, 0x20,
  8718. 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c,
  8719. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01,
  8720. 0x28, 0x09, 0x52, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74,
  8721. 0x22, 0x5d, 0x0a, 0x11, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  8722. 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
  8723. 0x52, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x44, 0x65, 0x70, 0x6f,
  8724. 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f,
  8725. 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
  8726. 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x22,
  8727. 0x92, 0x03, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x4c,
  8728. 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x27,
  8729. 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  8730. 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52,
  8731. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  8732. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  8733. 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  8734. 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a,
  8735. 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x18, 0x04, 0x20,
  8736. 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49,
  8737. 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x49, 0x44,
  8738. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x57, 0x61, 0x72, 0x65, 0x68, 0x6f, 0x75, 0x73,
  8739. 0x65, 0x49, 0x44, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  8740. 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65,
  8741. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12,
  8742. 0x3d, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  8743. 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x70,
  8744. 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e,
  8745. 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x1e,
  8746. 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01,
  8747. 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26,
  8748. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  8749. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  8750. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72,
  8751. 0x69, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50,
  8752. 0x72, 0x69, 0x63, 0x65, 0x22, 0xf1, 0x01, 0x0a, 0x1a, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x72, 0x65,
  8753. 0x73, 0x61, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8754. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  8755. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  8756. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  8757. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  8758. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  8759. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  8760. 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79,
  8761. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c,
  8762. 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72,
  8763. 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04,
  8764. 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  8765. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8766. 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8767. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x68, 0x0a, 0x13, 0x54, 0x48, 0x4a, 0x50,
  8768. 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x74, 0x66, 0x12,
  8769. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  8770. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  8771. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x57, 0x52, 0x54, 0x72,
  8772. 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  8773. 0x04, 0x52, 0x0f, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
  8774. 0x49, 0x44, 0x22, 0x5e, 0x0a, 0x13, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x54, 0x72,
  8775. 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x4e, 0x74, 0x66, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61,
  8776. 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d,
  8777. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64,
  8778. 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x49, 0x44,
  8779. 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72,
  8780. 0x49, 0x44, 0x22, 0xad, 0x06, 0x0a, 0x10, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x65,
  8781. 0x61, 0x6c, 0x65, 0x64, 0x4e, 0x74, 0x66, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  8782. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  8783. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  8784. 0x12, 0x2c, 0x0a, 0x09, 0x4e, 0x74, 0x66, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x02, 0x20,
  8785. 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x48,
  8786. 0x65, 0x61, 0x64, 0x52, 0x09, 0x4e, 0x74, 0x66, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x26,
  8787. 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  8788. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f,
  8789. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74,
  8790. 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
  8791. 0x52, 0x10, 0x44, 0x65, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8792. 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x18, 0x05,
  8793. 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c,
  8794. 0x0a, 0x09, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,
  8795. 0x04, 0x52, 0x09, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
  8796. 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01,
  8797. 0x28, 0x04, 0x52, 0x0c, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x51, 0x74, 0x79,
  8798. 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01, 0x28,
  8799. 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x75,
  8800. 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,
  8801. 0x52, 0x0c, 0x42, 0x75, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x24,
  8802. 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  8803. 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75,
  8804. 0x6e, 0x74, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50, 0x72, 0x69,
  8805. 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50,
  8806. 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x54, 0x69, 0x6d,
  8807. 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x54, 0x69,
  8808. 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79,
  8809. 0x70, 0x65, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x46, 0x61,
  8810. 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x57, 0x52,
  8811. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x0e,
  8812. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x57, 0x52, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72,
  8813. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2c, 0x0a, 0x11, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  8814. 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28,
  8815. 0x01, 0x52, 0x11, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d,
  8816. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x55, 0x6e, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65,
  8817. 0x46, 0x69, 0x72, 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28,
  8818. 0x01, 0x52, 0x13, 0x55, 0x6e, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x46, 0x69, 0x72, 0x73, 0x74,
  8819. 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72,
  8820. 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52,
  8821. 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x72, 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
  8822. 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x41,
  8823. 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x50, 0x65, 0x72,
  8824. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2c,
  8825. 0x0a, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61,
  8826. 0x6e, 0x49, 0x44, 0x18, 0x13, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x50, 0x65, 0x72, 0x66, 0x6f,
  8827. 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x44, 0x12, 0x34, 0x0a, 0x15,
  8828. 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c,
  8829. 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72,
  8830. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  8831. 0x49, 0x44, 0x22, 0xb9, 0x02, 0x0a, 0x14, 0x43, 0x4a, 0x4a, 0x43, 0x4d, 0x65, 0x6d, 0x62, 0x65,
  8832. 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  8833. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  8834. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  8835. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  8836. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  8837. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  8838. 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  8839. 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  8840. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75,
  8841. 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  8842. 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b,
  8843. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  8844. 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16,
  8845. 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  8846. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8847. 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65,
  8848. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8849. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  8850. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xd1,
  8851. 0x01, 0x0a, 0x14, 0x43, 0x4a, 0x4a, 0x43, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x4f, 0x70, 0x65,
  8852. 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  8853. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  8854. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  8855. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  8856. 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  8857. 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74,
  8858. 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04,
  8859. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  8860. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  8861. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c,
  8862. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01,
  8863. 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8864. 0x4e, 0x6f, 0x22, 0xbf, 0x03, 0x0a, 0x14, 0x42, 0x53, 0x46, 0x57, 0x4d, 0x65, 0x6d, 0x62, 0x65,
  8865. 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48,
  8866. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  8867. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  8868. 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02,
  8869. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  8870. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
  8871. 0x09, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x70,
  8872. 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  8873. 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x63, 0x63, 0x6f, 0x75,
  8874. 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  8875. 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b,
  8876. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  8877. 0x0d, 0x52, 0x0b, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x30,
  8878. 0x0a, 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x07, 0x20,
  8879. 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74,
  8880. 0x61, 0x69, 0x6c, 0x52, 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
  8881. 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  8882. 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x2a, 0x0a, 0x10, 0x47, 0x5a, 0x42, 0x53,
  8883. 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01,
  8884. 0x28, 0x0d, 0x52, 0x10, 0x47, 0x5a, 0x42, 0x53, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79,
  8885. 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4c, 0x6f, 0x67,
  8886. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x4f, 0x74,
  8887. 0x68, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x12, 0x1e, 0x0a, 0x0a,
  8888. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d,
  8889. 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e,
  8890. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x0c,
  8891. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  8892. 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xd1, 0x01, 0x0a, 0x14, 0x42, 0x53, 0x46, 0x57, 0x4d, 0x65, 0x6d,
  8893. 0x62, 0x65, 0x72, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  8894. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  8895. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  8896. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  8897. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  8898. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  8899. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  8900. 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  8901. 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18,
  8902. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  8903. 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c,
  8904. 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  8905. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x41, 0x63, 0x63,
  8906. 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12,
  8907. 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  8908. 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64,
  8909. 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65,
  8910. 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8911. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
  8912. 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  8913. 0x12, 0x22, 0x0a, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x69, 0x74, 0x4d, 0x61, 0x73, 0x6b,
  8914. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x69, 0x74,
  8915. 0x4d, 0x61, 0x73, 0x6b, 0x22, 0xa9, 0x02, 0x0a, 0x12, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8916. 0x46, 0x75, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  8917. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  8918. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  8919. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  8920. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  8921. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  8922. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x72, 0x64, 0x65,
  8923. 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x4f, 0x72, 0x64, 0x65, 0x72,
  8924. 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
  8925. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  8926. 0x12, 0x28, 0x0a, 0x0f, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x72,
  8927. 0x67, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x41, 0x76, 0x61, 0x69, 0x6c,
  8928. 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x12, 0x2c, 0x0a, 0x11, 0x41, 0x76,
  8929. 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x4f, 0x75, 0x74, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  8930. 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,
  8931. 0x4f, 0x75, 0x74, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x49, 0x73, 0x43, 0x6c,
  8932. 0x65, 0x61, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05,
  8933. 0x52, 0x0e, 0x49, 0x73, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  8934. 0x22, 0xc4, 0x07, 0x0a, 0x11, 0x47, 0x5a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70,
  8935. 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  8936. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73,
  8937. 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12,
  8938. 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20,
  8939. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
  8940. 0x24, 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
  8941. 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f,
  8942. 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64,
  8943. 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x57,
  8944. 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  8945. 0x0a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
  8946. 0x04, 0x52, 0x0a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a,
  8947. 0x09, 0x4d, 0x69, 0x6e, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
  8948. 0x52, 0x09, 0x4d, 0x69, 0x6e, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x4d,
  8949. 0x61, 0x78, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
  8950. 0x4d, 0x61, 0x78, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x69, 0x6e,
  8951. 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04,
  8952. 0x52, 0x0d, 0x4d, 0x69, 0x6e, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x51, 0x74, 0x79, 0x12,
  8953. 0x1c, 0x0a, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01,
  8954. 0x28, 0x01, 0x52, 0x09, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a,
  8955. 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  8956. 0x52, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x45,
  8957. 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x45, 0x6e,
  8958. 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x42, 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67,
  8959. 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28,
  8960. 0x0d, 0x52, 0x12, 0x42, 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f,
  8961. 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42, 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67,
  8962. 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x42,
  8963. 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x34, 0x0a,
  8964. 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70,
  8965. 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x50, 0x65,
  8966. 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  8967. 0x65, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  8968. 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  8969. 0x22, 0x0a, 0x0c, 0x59, 0x53, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18,
  8970. 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x59, 0x53, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65, 0x67,
  8971. 0x6f, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79,
  8972. 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x5a, 0x53, 0x43,
  8973. 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x5a,
  8974. 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18,
  8975. 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79,
  8976. 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x69, 0x7a, 0x65, 0x53,
  8977. 0x74, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x69, 0x7a, 0x65, 0x53, 0x74,
  8978. 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x59, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x61, 0x74, 0x65, 0x18, 0x14,
  8979. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x59, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x61, 0x74, 0x65, 0x12,
  8980. 0x18, 0x0a, 0x07, 0x51, 0x74, 0x79, 0x44, 0x65, 0x73, 0x63, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09,
  8981. 0x52, 0x07, 0x51, 0x74, 0x79, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x57, 0x65, 0x69,
  8982. 0x67, 0x68, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x57,
  8983. 0x65, 0x69, 0x67, 0x68, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x2a, 0x0a, 0x10, 0x59, 0x53, 0x50,
  8984. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x17, 0x20,
  8985. 0x01, 0x28, 0x0d, 0x52, 0x10, 0x59, 0x53, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x69, 0x6f,
  8986. 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  8987. 0x55, 0x72, 0x6c, 0x73, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x50, 0x69, 0x63, 0x74,
  8988. 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72,
  8989. 0x6b, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12,
  8990. 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1a, 0x20,
  8991. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
  8992. 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  8993. 0x6f, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
  8994. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xe0, 0x01, 0x0a, 0x11, 0x47, 0x5a, 0x50, 0x72,
  8995. 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a,
  8996. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  8997. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  8998. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64,
  8999. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
  9000. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
  9001. 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65,
  9002. 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
  9003. 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x72,
  9004. 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01,
  9005. 0x28, 0x04, 0x52, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79,
  9006. 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  9007. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  9008. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xc4, 0x02, 0x0a, 0x11, 0x47,
  9009. 0x5a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71,
  9010. 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
  9011. 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61,
  9012. 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  9013. 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  9014. 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03,
  9015. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12,
  9016. 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49,
  9017. 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65,
  9018. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72,
  9019. 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72,
  9020. 0x51, 0x74, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18,
  9021. 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12,
  9022. 0x28, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69,
  9023. 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  9024. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69,
  9025. 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43,
  9026. 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69,
  9027. 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28,
  9028. 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e,
  9029. 0x6f, 0x22, 0xf6, 0x01, 0x0a, 0x11, 0x47, 0x5a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x4f,
  9030. 0x72, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65,
  9031. 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73,
  9032. 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
  9033. 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  9034. 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65,
  9035. 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74,
  9036. 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04,
  9037. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09,
  9038. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
  9039. 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52,
  9040. 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01,
  9041. 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72,
  9042. 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69,
  9043. 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  9044. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0x61, 0x0a, 0x19, 0x47, 0x5a,
  9045. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x50, 0x72,
  9046. 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x74, 0x65, 0x70, 0x49,
  9047. 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x53, 0x74, 0x65, 0x70,
  9048. 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x51, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01,
  9049. 0x28, 0x04, 0x52, 0x03, 0x51, 0x74, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x50, 0x72, 0x69, 0x63, 0x65,
  9050. 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x50, 0x72, 0x69, 0x63, 0x65, 0x22, 0xe6, 0x09,
  9051. 0x0a, 0x18, 0x47, 0x5a, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61,
  9052. 0x73, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65,
  9053. 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
  9054. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61,
  9055. 0x64, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49,
  9056. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65,
  9057. 0x72, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x63, 0x63, 0x6f, 0x75,
  9058. 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c,
  9059. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x57, 0x52, 0x53,
  9060. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  9061. 0x09, 0x52, 0x0e, 0x57, 0x52, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d,
  9062. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x51, 0x74, 0x79, 0x18,
  9063. 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x51, 0x74,
  9064. 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x4d, 0x69, 0x6e, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x18, 0x06,
  9065. 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x4d, 0x69, 0x6e, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x12,
  9066. 0x1c, 0x0a, 0x09, 0x4d, 0x61, 0x78, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01,
  9067. 0x28, 0x04, 0x52, 0x09, 0x4d, 0x61, 0x78, 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x12, 0x24, 0x0a,
  9068. 0x0d, 0x4d, 0x69, 0x6e, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x51, 0x74, 0x79, 0x18, 0x08,
  9069. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x4d, 0x69, 0x6e, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
  9070. 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65,
  9071. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74,
  9072. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01,
  9073. 0x28, 0x09, 0x52, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x42,
  9074. 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68,
  9075. 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x42, 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67,
  9076. 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x42,
  9077. 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x0c, 0x20,
  9078. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x42, 0x75, 0x79, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61,
  9079. 0x6c, 0x75, 0x65, 0x12, 0x34, 0x0a, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
  9080. 0x63, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x18, 0x0d, 0x20, 0x01,
  9081. 0x28, 0x03, 0x52, 0x15, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x54,
  9082. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x44, 0x12, 0x5d, 0x0a, 0x1a, 0x47, 0x5a, 0x43,
  9083. 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x50, 0x72, 0x69,
  9084. 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e,
  9085. 0x70, 0x62, 0x2e, 0x47, 0x5a, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68,
  9086. 0x61, 0x73, 0x65, 0x50, 0x72, 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x1a, 0x47, 0x5a,
  9087. 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x50, 0x72,
  9088. 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b,
  9089. 0x65, 0x74, 0x49, 0x44, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b,
  9090. 0x65, 0x74, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x59, 0x53, 0x5a, 0x53, 0x43, 0x61, 0x74, 0x65,
  9091. 0x67, 0x6f, 0x72, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x59, 0x53, 0x5a, 0x53,
  9092. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x53, 0x68,
  9093. 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09,
  9094. 0x52, 0x0e, 0x5a, 0x53, 0x53, 0x68, 0x61, 0x70, 0x65, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72,
  9095. 0x12, 0x26, 0x0a, 0x0e, 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x53,
  9096. 0x74, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x5a, 0x53, 0x43, 0x6f, 0x6c, 0x6f,
  9097. 0x72, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x5a, 0x53, 0x43, 0x6c,
  9098. 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x13, 0x20, 0x01,
  9099. 0x28, 0x09, 0x52, 0x10, 0x5a, 0x53, 0x43, 0x6c, 0x61, 0x72, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70,
  9100. 0x65, 0x53, 0x74, 0x72, 0x12, 0x22, 0x0a, 0x0c, 0x5a, 0x53, 0x43, 0x75, 0x74, 0x54, 0x79, 0x70,
  9101. 0x65, 0x53, 0x74, 0x72, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x5a, 0x53, 0x43, 0x75,
  9102. 0x74, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x5a, 0x53, 0x53, 0x79,
  9103. 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x15, 0x20,
  9104. 0x01, 0x28, 0x09, 0x52, 0x11, 0x5a, 0x53, 0x53, 0x79, 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x54,
  9105. 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x5a, 0x53, 0x50, 0x6f, 0x6c, 0x69,
  9106. 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52,
  9107. 0x0f, 0x5a, 0x53, 0x50, 0x6f, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72,
  9108. 0x12, 0x34, 0x0a, 0x15, 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e,
  9109. 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52,
  9110. 0x15, 0x5a, 0x53, 0x46, 0x6c, 0x75, 0x6f, 0x72, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x54,
  9111. 0x79, 0x70, 0x65, 0x53, 0x74, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x69, 0x7a, 0x65, 0x53, 0x74,
  9112. 0x72, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x69, 0x7a, 0x65, 0x53, 0x74, 0x72,
  9113. 0x12, 0x1c, 0x0a, 0x09, 0x59, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20,
  9114. 0x01, 0x28, 0x09, 0x52, 0x09, 0x59, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x61, 0x74, 0x65, 0x12, 0x18,
  9115. 0x0a, 0x07, 0x51, 0x74, 0x79, 0x44, 0x65, 0x73, 0x63, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x52,
  9116. 0x07, 0x51, 0x74, 0x79, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x57, 0x65, 0x69, 0x67,
  9117. 0x68, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x57, 0x65,
  9118. 0x69, 0x67, 0x68, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x2a, 0x0a, 0x10, 0x59, 0x53, 0x50, 0x72,
  9119. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x1c, 0x20, 0x01,
  9120. 0x28, 0x0d, 0x52, 0x10, 0x59, 0x53, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  9121. 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55,
  9122. 0x72, 0x6c, 0x73, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x50, 0x69, 0x63, 0x74, 0x75,
  9123. 0x72, 0x65, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
  9124. 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e,
  9125. 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x1f, 0x20, 0x01,
  9126. 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26,
  9127. 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  9128. 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
  9129. 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xe7, 0x01, 0x0a, 0x18, 0x47, 0x5a, 0x43, 0x65, 0x6e,
  9130. 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79,
  9131. 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20,
  9132. 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  9133. 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07,
  9134. 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52,
  9135. 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73,
  9136. 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63,
  9137. 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04,
  9138. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  9139. 0x12, 0x26, 0x0a, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79,
  9140. 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x50, 0x72, 0x65, 0x73, 0x61, 0x6c,
  9141. 0x65, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65,
  9142. 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  9143. 0x52, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  9144. 0x22, 0xcb, 0x02, 0x0a, 0x18, 0x47, 0x5a, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72,
  9145. 0x63, 0x68, 0x61, 0x73, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x27, 0x0a,
  9146. 0x06, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
  9147. 0x70, 0x62, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06,
  9148. 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  9149. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c,
  9150. 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  9151. 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e,
  9152. 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x04,
  9153. 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64,
  9154. 0x65, 0x72, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79,
  9155. 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79,
  9156. 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01,
  9157. 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f,
  9158. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18,
  9159. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4f, 0x72, 0x64,
  9160. 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  9161. 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x43, 0x6c, 0x69, 0x65,
  9162. 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  9163. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  9164. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x22, 0xfd,
  9165. 0x01, 0x0a, 0x18, 0x47, 0x5a, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68,
  9166. 0x61, 0x73, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x06, 0x48,
  9167. 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  9168. 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x06, 0x48, 0x65,
  9169. 0x61, 0x64, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
  9170. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x52, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
  9171. 0x0a, 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  9172. 0x07, 0x52, 0x65, 0x74, 0x44, 0x65, 0x73, 0x63, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  9173. 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  9174. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x05, 0x20,
  9175. 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x26,
  9176. 0x0a, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  9177. 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x57, 0x52, 0x54, 0x72, 0x61, 0x64, 0x65, 0x4f,
  9178. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  9179. 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  9180. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x6f,
  9181. }
  9182. var (
  9183. file_mtp2_proto_rawDescOnce sync.Once
  9184. file_mtp2_proto_rawDescData = file_mtp2_proto_rawDesc
  9185. )
  9186. func file_mtp2_proto_rawDescGZIP() []byte {
  9187. file_mtp2_proto_rawDescOnce.Do(func() {
  9188. file_mtp2_proto_rawDescData = protoimpl.X.CompressGZIP(file_mtp2_proto_rawDescData)
  9189. })
  9190. return file_mtp2_proto_rawDescData
  9191. }
  9192. var file_mtp2_proto_msgTypes = make([]protoimpl.MessageInfo, 77)
  9193. var file_mtp2_proto_goTypes = []interface{}{
  9194. (*MessageHead)(nil), // 0: pb.MessageHead
  9195. (*NotifyHead)(nil), // 1: pb.NotifyHead
  9196. (*FileDetail)(nil), // 2: pb.FileDetail
  9197. (*ModifyPwdReq)(nil), // 3: pb.ModifyPwdReq
  9198. (*ModifyPwdRsp)(nil), // 4: pb.ModifyPwdRsp
  9199. (*UserReceiveInfoReq)(nil), // 5: pb.UserReceiveInfoReq
  9200. (*UserReceiveInfoRsp)(nil), // 6: pb.UserReceiveInfoRsp
  9201. (*DelUserReceiveInfoReq)(nil), // 7: pb.DelUserReceiveInfoReq
  9202. (*DelUserReceiveInfoRsp)(nil), // 8: pb.DelUserReceiveInfoRsp
  9203. (*UserReceiveIsDefaultReq)(nil), // 9: pb.UserReceiveIsDefaultReq
  9204. (*UserReceiveIsDefaultRsp)(nil), // 10: pb.UserReceiveIsDefaultRsp
  9205. (*UserReceiptInfoReq)(nil), // 11: pb.UserReceiptInfoReq
  9206. (*UserReceiptInfoRsp)(nil), // 12: pb.UserReceiptInfoRsp
  9207. (*DelUserReceiptInfoReq)(nil), // 13: pb.DelUserReceiptInfoReq
  9208. (*DelUserReceiptInfoRsp)(nil), // 14: pb.DelUserReceiptInfoRsp
  9209. (*T2BBankSignReq)(nil), // 15: pb.t2bBankSignReq
  9210. (*T2BBankSignRsp)(nil), // 16: pb.t2bBankSignRsp
  9211. (*T2BBankCancelSignReq)(nil), // 17: pb.t2bBankCancelSignReq
  9212. (*T2BBankCancelSignRsp)(nil), // 18: pb.t2bBankCancelSignRsp
  9213. (*T2BBankWithdrawReq)(nil), // 19: pb.t2bBankWithdrawReq
  9214. (*T2BBankWithdrawRsp)(nil), // 20: pb.t2bBankWithdrawRsp
  9215. (*T2BBankDepositReq)(nil), // 21: pb.t2bBankDepositReq
  9216. (*T2BBankDepositRsp)(nil), // 22: pb.t2bBankDepositRsp
  9217. (*WRCommon)(nil), // 23: pb.WRCommon
  9218. (*WarehouseApplyReq)(nil), // 24: pb.WarehouseApplyReq
  9219. (*WarehouseApplyRsp)(nil), // 25: pb.WarehouseApplyRsp
  9220. (*PerformanceContractedApplyReq)(nil), // 26: pb.PerformanceContractedApplyReq
  9221. (*PerformanceContractedApplyRsp)(nil), // 27: pb.PerformanceContractedApplyRsp
  9222. (*PerformanceDelayApplyReq)(nil), // 28: pb.PerformanceDelayApplyReq
  9223. (*PerformanceDelayApplyRsp)(nil), // 29: pb.PerformanceDelayApplyRsp
  9224. (*PerformanceManualConfirmReq)(nil), // 30: pb.PerformanceManualConfirmReq
  9225. (*PerformanceManualConfirmRsp)(nil), // 31: pb.PerformanceManualConfirmRsp
  9226. (*PerformanceModifyContactReq)(nil), // 32: pb.PerformanceModifyContactReq
  9227. (*PerformanceModifyContactRsp)(nil), // 33: pb.PerformanceModifyContactRsp
  9228. (*AddZSGoodsRsp)(nil), // 34: pb.AddZSGoodsRsp
  9229. (*GoodsFavoriteOperateReq)(nil), // 35: pb.GoodsFavoriteOperateReq
  9230. (*GoodsFavoriteOperateRsp)(nil), // 36: pb.GoodsFavoriteOperateRsp
  9231. (*GZBuyOrderDetailExInfo)(nil), // 37: pb.GZBuyOrderDetailExInfo
  9232. (*ZSBuyOrderListingReq)(nil), // 38: pb.ZSBuyOrderListingReq
  9233. (*ZSBuyOrderListingRsp)(nil), // 39: pb.ZSBuyOrderListingRsp
  9234. (*ZSSellOrderListingReq)(nil), // 40: pb.ZSSellOrderListingReq
  9235. (*ZSSellOrderListingRsp)(nil), // 41: pb.ZSSellOrderListingRsp
  9236. (*ZSBuyOrderDestingReq)(nil), // 42: pb.ZSBuyOrderDestingReq
  9237. (*ZSBuyOrderDestingRsp)(nil), // 43: pb.ZSBuyOrderDestingRsp
  9238. (*ZSSellOrderDestingApplyReq)(nil), // 44: pb.ZSSellOrderDestingApplyReq
  9239. (*ZSSellOrderDestingApplyRsp)(nil), // 45: pb.ZSSellOrderDestingApplyRsp
  9240. (*ZSSellOrderDestingApplyOperateReq)(nil), // 46: pb.ZSSellOrderDestingApplyOperateReq
  9241. (*ZSSellOrderDestingApplyOperateRsp)(nil), // 47: pb.ZSSellOrderDestingApplyOperateRsp
  9242. (*ZSBuyOrderDestingNegPriceReq)(nil), // 48: pb.ZSBuyOrderDestingNegPriceReq
  9243. (*ZSBuyOrderDestingNegPriceRsp)(nil), // 49: pb.ZSBuyOrderDestingNegPriceRsp
  9244. (*ZSBuyOrderDestingNegPriceOperateReq)(nil), // 50: pb.ZSBuyOrderDestingNegPriceOperateReq
  9245. (*ZSBuyOrderDestingNegPriceOperateRsp)(nil), // 51: pb.ZSBuyOrderDestingNegPriceOperateRsp
  9246. (*WRListingCancelOrderReq)(nil), // 52: pb.WRListingCancelOrderReq
  9247. (*WRListingCancelOrderRsp)(nil), // 53: pb.WRListingCancelOrderRsp
  9248. (*ReceiptZSOutApplyReq)(nil), // 54: pb.ReceiptZSOutApplyReq
  9249. (*ReceiptZSOutApplyRsp)(nil), // 55: pb.ReceiptZSOutApplyRsp
  9250. (*DepositConfigInfo)(nil), // 56: pb.DepositConfigInfo
  9251. (*SpotPresaleListingOrderReq)(nil), // 57: pb.SpotPresaleListingOrderReq
  9252. (*SpotPresaleListingOrderRsp)(nil), // 58: pb.SpotPresaleListingOrderRsp
  9253. (*THJPurchaseTradeNtf)(nil), // 59: pb.THJPurchaseTradeNtf
  9254. (*PurchaseTransferNtf)(nil), // 60: pb.PurchaseTransferNtf
  9255. (*WRTradeDealedNtf)(nil), // 61: pb.WRTradeDealedNtf
  9256. (*CJJCMemberOperateReq)(nil), // 62: pb.CJJCMemberOperateReq
  9257. (*CJJCMemberOperateRsp)(nil), // 63: pb.CJJCMemberOperateRsp
  9258. (*BSFWMemberOperateReq)(nil), // 64: pb.BSFWMemberOperateReq
  9259. (*BSFWMemberOperateRsp)(nil), // 65: pb.BSFWMemberOperateRsp
  9260. (*AccountFundInfoReq)(nil), // 66: pb.AccountFundInfoReq
  9261. (*AccountFundInfoRsp)(nil), // 67: pb.AccountFundInfoRsp
  9262. (*GZPresaleApplyReq)(nil), // 68: pb.GZPresaleApplyReq
  9263. (*GZPresaleApplyRsp)(nil), // 69: pb.GZPresaleApplyRsp
  9264. (*GZPresaleOrderReq)(nil), // 70: pb.GZPresaleOrderReq
  9265. (*GZPresaleOrderRsp)(nil), // 71: pb.GZPresaleOrderRsp
  9266. (*GZCenterPurchasePriceList)(nil), // 72: pb.GZCenterPurchasePriceList
  9267. (*GZCenterPurchaseApplyReq)(nil), // 73: pb.GZCenterPurchaseApplyReq
  9268. (*GZCenterPurchaseApplyRsp)(nil), // 74: pb.GZCenterPurchaseApplyRsp
  9269. (*GZCenterPurchaseOrderReq)(nil), // 75: pb.GZCenterPurchaseOrderReq
  9270. (*GZCenterPurchaseOrderRsp)(nil), // 76: pb.GZCenterPurchaseOrderRsp
  9271. }
  9272. var file_mtp2_proto_depIdxs = []int32{
  9273. 0, // 0: pb.ModifyPwdReq.Header:type_name -> pb.MessageHead
  9274. 0, // 1: pb.ModifyPwdRsp.Header:type_name -> pb.MessageHead
  9275. 0, // 2: pb.UserReceiveInfoReq.Header:type_name -> pb.MessageHead
  9276. 0, // 3: pb.UserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  9277. 0, // 4: pb.DelUserReceiveInfoReq.Header:type_name -> pb.MessageHead
  9278. 0, // 5: pb.DelUserReceiveInfoRsp.Header:type_name -> pb.MessageHead
  9279. 0, // 6: pb.UserReceiveIsDefaultReq.Header:type_name -> pb.MessageHead
  9280. 0, // 7: pb.UserReceiveIsDefaultRsp.Header:type_name -> pb.MessageHead
  9281. 0, // 8: pb.UserReceiptInfoReq.Header:type_name -> pb.MessageHead
  9282. 0, // 9: pb.UserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  9283. 0, // 10: pb.DelUserReceiptInfoReq.Header:type_name -> pb.MessageHead
  9284. 0, // 11: pb.DelUserReceiptInfoRsp.Header:type_name -> pb.MessageHead
  9285. 0, // 12: pb.t2bBankSignReq.Header:type_name -> pb.MessageHead
  9286. 0, // 13: pb.t2bBankSignRsp.Header:type_name -> pb.MessageHead
  9287. 0, // 14: pb.t2bBankCancelSignReq.Header:type_name -> pb.MessageHead
  9288. 0, // 15: pb.t2bBankCancelSignRsp.Header:type_name -> pb.MessageHead
  9289. 0, // 16: pb.t2bBankWithdrawReq.Header:type_name -> pb.MessageHead
  9290. 0, // 17: pb.t2bBankWithdrawRsp.Header:type_name -> pb.MessageHead
  9291. 0, // 18: pb.t2bBankDepositReq.Header:type_name -> pb.MessageHead
  9292. 0, // 19: pb.t2bBankDepositRsp.Header:type_name -> pb.MessageHead
  9293. 0, // 20: pb.WarehouseApplyReq.Header:type_name -> pb.MessageHead
  9294. 0, // 21: pb.WarehouseApplyRsp.Header:type_name -> pb.MessageHead
  9295. 0, // 22: pb.PerformanceContractedApplyReq.Header:type_name -> pb.MessageHead
  9296. 0, // 23: pb.PerformanceContractedApplyRsp.Header:type_name -> pb.MessageHead
  9297. 0, // 24: pb.PerformanceDelayApplyReq.Header:type_name -> pb.MessageHead
  9298. 0, // 25: pb.PerformanceDelayApplyRsp.Header:type_name -> pb.MessageHead
  9299. 0, // 26: pb.PerformanceManualConfirmReq.Header:type_name -> pb.MessageHead
  9300. 0, // 27: pb.PerformanceManualConfirmRsp.Header:type_name -> pb.MessageHead
  9301. 0, // 28: pb.PerformanceModifyContactReq.Header:type_name -> pb.MessageHead
  9302. 0, // 29: pb.PerformanceModifyContactRsp.Header:type_name -> pb.MessageHead
  9303. 0, // 30: pb.AddZSGoodsRsp.Header:type_name -> pb.MessageHead
  9304. 0, // 31: pb.GoodsFavoriteOperateReq.Header:type_name -> pb.MessageHead
  9305. 0, // 32: pb.GoodsFavoriteOperateRsp.Header:type_name -> pb.MessageHead
  9306. 0, // 33: pb.ZSBuyOrderListingReq.Header:type_name -> pb.MessageHead
  9307. 37, // 34: pb.ZSBuyOrderListingReq.GZ_BuyOrderDetailExInfo:type_name -> pb.GZBuyOrderDetailExInfo
  9308. 0, // 35: pb.ZSBuyOrderListingRsp.Header:type_name -> pb.MessageHead
  9309. 0, // 36: pb.ZSSellOrderListingReq.Header:type_name -> pb.MessageHead
  9310. 0, // 37: pb.ZSSellOrderListingRsp.Header:type_name -> pb.MessageHead
  9311. 0, // 38: pb.ZSBuyOrderDestingReq.Header:type_name -> pb.MessageHead
  9312. 0, // 39: pb.ZSBuyOrderDestingRsp.Header:type_name -> pb.MessageHead
  9313. 0, // 40: pb.ZSSellOrderDestingApplyReq.Header:type_name -> pb.MessageHead
  9314. 0, // 41: pb.ZSSellOrderDestingApplyRsp.Header:type_name -> pb.MessageHead
  9315. 0, // 42: pb.ZSSellOrderDestingApplyOperateReq.Header:type_name -> pb.MessageHead
  9316. 0, // 43: pb.ZSSellOrderDestingApplyOperateRsp.Header:type_name -> pb.MessageHead
  9317. 0, // 44: pb.ZSBuyOrderDestingNegPriceReq.Header:type_name -> pb.MessageHead
  9318. 0, // 45: pb.ZSBuyOrderDestingNegPriceRsp.Header:type_name -> pb.MessageHead
  9319. 0, // 46: pb.ZSBuyOrderDestingNegPriceOperateReq.Header:type_name -> pb.MessageHead
  9320. 0, // 47: pb.ZSBuyOrderDestingNegPriceOperateRsp.Header:type_name -> pb.MessageHead
  9321. 0, // 48: pb.WRListingCancelOrderReq.Header:type_name -> pb.MessageHead
  9322. 0, // 49: pb.WRListingCancelOrderRsp.Header:type_name -> pb.MessageHead
  9323. 0, // 50: pb.ReceiptZSOutApplyReq.Header:type_name -> pb.MessageHead
  9324. 23, // 51: pb.ReceiptZSOutApplyReq.Common:type_name -> pb.WRCommon
  9325. 0, // 52: pb.ReceiptZSOutApplyRsp.Header:type_name -> pb.MessageHead
  9326. 23, // 53: pb.ReceiptZSOutApplyRsp.Common:type_name -> pb.WRCommon
  9327. 0, // 54: pb.SpotPresaleListingOrderReq.Header:type_name -> pb.MessageHead
  9328. 56, // 55: pb.SpotPresaleListingOrderReq.DepositConfigs:type_name -> pb.DepositConfigInfo
  9329. 0, // 56: pb.SpotPresaleListingOrderRsp.Header:type_name -> pb.MessageHead
  9330. 0, // 57: pb.THJPurchaseTradeNtf.Header:type_name -> pb.MessageHead
  9331. 0, // 58: pb.PurchaseTransferNtf.Header:type_name -> pb.MessageHead
  9332. 0, // 59: pb.WRTradeDealedNtf.Header:type_name -> pb.MessageHead
  9333. 1, // 60: pb.WRTradeDealedNtf.NtfHeader:type_name -> pb.NotifyHead
  9334. 0, // 61: pb.CJJCMemberOperateReq.Header:type_name -> pb.MessageHead
  9335. 0, // 62: pb.CJJCMemberOperateRsp.Header:type_name -> pb.MessageHead
  9336. 0, // 63: pb.BSFWMemberOperateReq.Header:type_name -> pb.MessageHead
  9337. 2, // 64: pb.BSFWMemberOperateReq.FileDetails:type_name -> pb.FileDetail
  9338. 0, // 65: pb.BSFWMemberOperateRsp.Header:type_name -> pb.MessageHead
  9339. 0, // 66: pb.AccountFundInfoReq.Header:type_name -> pb.MessageHead
  9340. 0, // 67: pb.AccountFundInfoRsp.Header:type_name -> pb.MessageHead
  9341. 0, // 68: pb.GZPresaleApplyReq.Header:type_name -> pb.MessageHead
  9342. 0, // 69: pb.GZPresaleApplyRsp.Header:type_name -> pb.MessageHead
  9343. 0, // 70: pb.GZPresaleOrderReq.Header:type_name -> pb.MessageHead
  9344. 0, // 71: pb.GZPresaleOrderRsp.Header:type_name -> pb.MessageHead
  9345. 0, // 72: pb.GZCenterPurchaseApplyReq.Header:type_name -> pb.MessageHead
  9346. 72, // 73: pb.GZCenterPurchaseApplyReq.GZCenterPurchasePriceLists:type_name -> pb.GZCenterPurchasePriceList
  9347. 0, // 74: pb.GZCenterPurchaseApplyRsp.Header:type_name -> pb.MessageHead
  9348. 0, // 75: pb.GZCenterPurchaseOrderReq.Header:type_name -> pb.MessageHead
  9349. 0, // 76: pb.GZCenterPurchaseOrderRsp.Header:type_name -> pb.MessageHead
  9350. 77, // [77:77] is the sub-list for method output_type
  9351. 77, // [77:77] is the sub-list for method input_type
  9352. 77, // [77:77] is the sub-list for extension type_name
  9353. 77, // [77:77] is the sub-list for extension extendee
  9354. 0, // [0:77] is the sub-list for field type_name
  9355. }
  9356. func init() { file_mtp2_proto_init() }
  9357. func file_mtp2_proto_init() {
  9358. if File_mtp2_proto != nil {
  9359. return
  9360. }
  9361. if !protoimpl.UnsafeEnabled {
  9362. file_mtp2_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  9363. switch v := v.(*MessageHead); i {
  9364. case 0:
  9365. return &v.state
  9366. case 1:
  9367. return &v.sizeCache
  9368. case 2:
  9369. return &v.unknownFields
  9370. default:
  9371. return nil
  9372. }
  9373. }
  9374. file_mtp2_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  9375. switch v := v.(*NotifyHead); i {
  9376. case 0:
  9377. return &v.state
  9378. case 1:
  9379. return &v.sizeCache
  9380. case 2:
  9381. return &v.unknownFields
  9382. default:
  9383. return nil
  9384. }
  9385. }
  9386. file_mtp2_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  9387. switch v := v.(*FileDetail); i {
  9388. case 0:
  9389. return &v.state
  9390. case 1:
  9391. return &v.sizeCache
  9392. case 2:
  9393. return &v.unknownFields
  9394. default:
  9395. return nil
  9396. }
  9397. }
  9398. file_mtp2_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  9399. switch v := v.(*ModifyPwdReq); i {
  9400. case 0:
  9401. return &v.state
  9402. case 1:
  9403. return &v.sizeCache
  9404. case 2:
  9405. return &v.unknownFields
  9406. default:
  9407. return nil
  9408. }
  9409. }
  9410. file_mtp2_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  9411. switch v := v.(*ModifyPwdRsp); i {
  9412. case 0:
  9413. return &v.state
  9414. case 1:
  9415. return &v.sizeCache
  9416. case 2:
  9417. return &v.unknownFields
  9418. default:
  9419. return nil
  9420. }
  9421. }
  9422. file_mtp2_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  9423. switch v := v.(*UserReceiveInfoReq); i {
  9424. case 0:
  9425. return &v.state
  9426. case 1:
  9427. return &v.sizeCache
  9428. case 2:
  9429. return &v.unknownFields
  9430. default:
  9431. return nil
  9432. }
  9433. }
  9434. file_mtp2_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  9435. switch v := v.(*UserReceiveInfoRsp); i {
  9436. case 0:
  9437. return &v.state
  9438. case 1:
  9439. return &v.sizeCache
  9440. case 2:
  9441. return &v.unknownFields
  9442. default:
  9443. return nil
  9444. }
  9445. }
  9446. file_mtp2_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  9447. switch v := v.(*DelUserReceiveInfoReq); i {
  9448. case 0:
  9449. return &v.state
  9450. case 1:
  9451. return &v.sizeCache
  9452. case 2:
  9453. return &v.unknownFields
  9454. default:
  9455. return nil
  9456. }
  9457. }
  9458. file_mtp2_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  9459. switch v := v.(*DelUserReceiveInfoRsp); i {
  9460. case 0:
  9461. return &v.state
  9462. case 1:
  9463. return &v.sizeCache
  9464. case 2:
  9465. return &v.unknownFields
  9466. default:
  9467. return nil
  9468. }
  9469. }
  9470. file_mtp2_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  9471. switch v := v.(*UserReceiveIsDefaultReq); i {
  9472. case 0:
  9473. return &v.state
  9474. case 1:
  9475. return &v.sizeCache
  9476. case 2:
  9477. return &v.unknownFields
  9478. default:
  9479. return nil
  9480. }
  9481. }
  9482. file_mtp2_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  9483. switch v := v.(*UserReceiveIsDefaultRsp); i {
  9484. case 0:
  9485. return &v.state
  9486. case 1:
  9487. return &v.sizeCache
  9488. case 2:
  9489. return &v.unknownFields
  9490. default:
  9491. return nil
  9492. }
  9493. }
  9494. file_mtp2_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  9495. switch v := v.(*UserReceiptInfoReq); i {
  9496. case 0:
  9497. return &v.state
  9498. case 1:
  9499. return &v.sizeCache
  9500. case 2:
  9501. return &v.unknownFields
  9502. default:
  9503. return nil
  9504. }
  9505. }
  9506. file_mtp2_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  9507. switch v := v.(*UserReceiptInfoRsp); i {
  9508. case 0:
  9509. return &v.state
  9510. case 1:
  9511. return &v.sizeCache
  9512. case 2:
  9513. return &v.unknownFields
  9514. default:
  9515. return nil
  9516. }
  9517. }
  9518. file_mtp2_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  9519. switch v := v.(*DelUserReceiptInfoReq); i {
  9520. case 0:
  9521. return &v.state
  9522. case 1:
  9523. return &v.sizeCache
  9524. case 2:
  9525. return &v.unknownFields
  9526. default:
  9527. return nil
  9528. }
  9529. }
  9530. file_mtp2_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  9531. switch v := v.(*DelUserReceiptInfoRsp); i {
  9532. case 0:
  9533. return &v.state
  9534. case 1:
  9535. return &v.sizeCache
  9536. case 2:
  9537. return &v.unknownFields
  9538. default:
  9539. return nil
  9540. }
  9541. }
  9542. file_mtp2_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  9543. switch v := v.(*T2BBankSignReq); i {
  9544. case 0:
  9545. return &v.state
  9546. case 1:
  9547. return &v.sizeCache
  9548. case 2:
  9549. return &v.unknownFields
  9550. default:
  9551. return nil
  9552. }
  9553. }
  9554. file_mtp2_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  9555. switch v := v.(*T2BBankSignRsp); i {
  9556. case 0:
  9557. return &v.state
  9558. case 1:
  9559. return &v.sizeCache
  9560. case 2:
  9561. return &v.unknownFields
  9562. default:
  9563. return nil
  9564. }
  9565. }
  9566. file_mtp2_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  9567. switch v := v.(*T2BBankCancelSignReq); i {
  9568. case 0:
  9569. return &v.state
  9570. case 1:
  9571. return &v.sizeCache
  9572. case 2:
  9573. return &v.unknownFields
  9574. default:
  9575. return nil
  9576. }
  9577. }
  9578. file_mtp2_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  9579. switch v := v.(*T2BBankCancelSignRsp); i {
  9580. case 0:
  9581. return &v.state
  9582. case 1:
  9583. return &v.sizeCache
  9584. case 2:
  9585. return &v.unknownFields
  9586. default:
  9587. return nil
  9588. }
  9589. }
  9590. file_mtp2_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  9591. switch v := v.(*T2BBankWithdrawReq); i {
  9592. case 0:
  9593. return &v.state
  9594. case 1:
  9595. return &v.sizeCache
  9596. case 2:
  9597. return &v.unknownFields
  9598. default:
  9599. return nil
  9600. }
  9601. }
  9602. file_mtp2_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  9603. switch v := v.(*T2BBankWithdrawRsp); i {
  9604. case 0:
  9605. return &v.state
  9606. case 1:
  9607. return &v.sizeCache
  9608. case 2:
  9609. return &v.unknownFields
  9610. default:
  9611. return nil
  9612. }
  9613. }
  9614. file_mtp2_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  9615. switch v := v.(*T2BBankDepositReq); i {
  9616. case 0:
  9617. return &v.state
  9618. case 1:
  9619. return &v.sizeCache
  9620. case 2:
  9621. return &v.unknownFields
  9622. default:
  9623. return nil
  9624. }
  9625. }
  9626. file_mtp2_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  9627. switch v := v.(*T2BBankDepositRsp); i {
  9628. case 0:
  9629. return &v.state
  9630. case 1:
  9631. return &v.sizeCache
  9632. case 2:
  9633. return &v.unknownFields
  9634. default:
  9635. return nil
  9636. }
  9637. }
  9638. file_mtp2_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  9639. switch v := v.(*WRCommon); i {
  9640. case 0:
  9641. return &v.state
  9642. case 1:
  9643. return &v.sizeCache
  9644. case 2:
  9645. return &v.unknownFields
  9646. default:
  9647. return nil
  9648. }
  9649. }
  9650. file_mtp2_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  9651. switch v := v.(*WarehouseApplyReq); i {
  9652. case 0:
  9653. return &v.state
  9654. case 1:
  9655. return &v.sizeCache
  9656. case 2:
  9657. return &v.unknownFields
  9658. default:
  9659. return nil
  9660. }
  9661. }
  9662. file_mtp2_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  9663. switch v := v.(*WarehouseApplyRsp); i {
  9664. case 0:
  9665. return &v.state
  9666. case 1:
  9667. return &v.sizeCache
  9668. case 2:
  9669. return &v.unknownFields
  9670. default:
  9671. return nil
  9672. }
  9673. }
  9674. file_mtp2_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  9675. switch v := v.(*PerformanceContractedApplyReq); i {
  9676. case 0:
  9677. return &v.state
  9678. case 1:
  9679. return &v.sizeCache
  9680. case 2:
  9681. return &v.unknownFields
  9682. default:
  9683. return nil
  9684. }
  9685. }
  9686. file_mtp2_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  9687. switch v := v.(*PerformanceContractedApplyRsp); i {
  9688. case 0:
  9689. return &v.state
  9690. case 1:
  9691. return &v.sizeCache
  9692. case 2:
  9693. return &v.unknownFields
  9694. default:
  9695. return nil
  9696. }
  9697. }
  9698. file_mtp2_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  9699. switch v := v.(*PerformanceDelayApplyReq); i {
  9700. case 0:
  9701. return &v.state
  9702. case 1:
  9703. return &v.sizeCache
  9704. case 2:
  9705. return &v.unknownFields
  9706. default:
  9707. return nil
  9708. }
  9709. }
  9710. file_mtp2_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  9711. switch v := v.(*PerformanceDelayApplyRsp); i {
  9712. case 0:
  9713. return &v.state
  9714. case 1:
  9715. return &v.sizeCache
  9716. case 2:
  9717. return &v.unknownFields
  9718. default:
  9719. return nil
  9720. }
  9721. }
  9722. file_mtp2_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  9723. switch v := v.(*PerformanceManualConfirmReq); i {
  9724. case 0:
  9725. return &v.state
  9726. case 1:
  9727. return &v.sizeCache
  9728. case 2:
  9729. return &v.unknownFields
  9730. default:
  9731. return nil
  9732. }
  9733. }
  9734. file_mtp2_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  9735. switch v := v.(*PerformanceManualConfirmRsp); i {
  9736. case 0:
  9737. return &v.state
  9738. case 1:
  9739. return &v.sizeCache
  9740. case 2:
  9741. return &v.unknownFields
  9742. default:
  9743. return nil
  9744. }
  9745. }
  9746. file_mtp2_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  9747. switch v := v.(*PerformanceModifyContactReq); i {
  9748. case 0:
  9749. return &v.state
  9750. case 1:
  9751. return &v.sizeCache
  9752. case 2:
  9753. return &v.unknownFields
  9754. default:
  9755. return nil
  9756. }
  9757. }
  9758. file_mtp2_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  9759. switch v := v.(*PerformanceModifyContactRsp); i {
  9760. case 0:
  9761. return &v.state
  9762. case 1:
  9763. return &v.sizeCache
  9764. case 2:
  9765. return &v.unknownFields
  9766. default:
  9767. return nil
  9768. }
  9769. }
  9770. file_mtp2_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  9771. switch v := v.(*AddZSGoodsRsp); i {
  9772. case 0:
  9773. return &v.state
  9774. case 1:
  9775. return &v.sizeCache
  9776. case 2:
  9777. return &v.unknownFields
  9778. default:
  9779. return nil
  9780. }
  9781. }
  9782. file_mtp2_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  9783. switch v := v.(*GoodsFavoriteOperateReq); i {
  9784. case 0:
  9785. return &v.state
  9786. case 1:
  9787. return &v.sizeCache
  9788. case 2:
  9789. return &v.unknownFields
  9790. default:
  9791. return nil
  9792. }
  9793. }
  9794. file_mtp2_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  9795. switch v := v.(*GoodsFavoriteOperateRsp); i {
  9796. case 0:
  9797. return &v.state
  9798. case 1:
  9799. return &v.sizeCache
  9800. case 2:
  9801. return &v.unknownFields
  9802. default:
  9803. return nil
  9804. }
  9805. }
  9806. file_mtp2_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  9807. switch v := v.(*GZBuyOrderDetailExInfo); i {
  9808. case 0:
  9809. return &v.state
  9810. case 1:
  9811. return &v.sizeCache
  9812. case 2:
  9813. return &v.unknownFields
  9814. default:
  9815. return nil
  9816. }
  9817. }
  9818. file_mtp2_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  9819. switch v := v.(*ZSBuyOrderListingReq); i {
  9820. case 0:
  9821. return &v.state
  9822. case 1:
  9823. return &v.sizeCache
  9824. case 2:
  9825. return &v.unknownFields
  9826. default:
  9827. return nil
  9828. }
  9829. }
  9830. file_mtp2_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  9831. switch v := v.(*ZSBuyOrderListingRsp); i {
  9832. case 0:
  9833. return &v.state
  9834. case 1:
  9835. return &v.sizeCache
  9836. case 2:
  9837. return &v.unknownFields
  9838. default:
  9839. return nil
  9840. }
  9841. }
  9842. file_mtp2_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  9843. switch v := v.(*ZSSellOrderListingReq); i {
  9844. case 0:
  9845. return &v.state
  9846. case 1:
  9847. return &v.sizeCache
  9848. case 2:
  9849. return &v.unknownFields
  9850. default:
  9851. return nil
  9852. }
  9853. }
  9854. file_mtp2_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  9855. switch v := v.(*ZSSellOrderListingRsp); i {
  9856. case 0:
  9857. return &v.state
  9858. case 1:
  9859. return &v.sizeCache
  9860. case 2:
  9861. return &v.unknownFields
  9862. default:
  9863. return nil
  9864. }
  9865. }
  9866. file_mtp2_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  9867. switch v := v.(*ZSBuyOrderDestingReq); i {
  9868. case 0:
  9869. return &v.state
  9870. case 1:
  9871. return &v.sizeCache
  9872. case 2:
  9873. return &v.unknownFields
  9874. default:
  9875. return nil
  9876. }
  9877. }
  9878. file_mtp2_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  9879. switch v := v.(*ZSBuyOrderDestingRsp); i {
  9880. case 0:
  9881. return &v.state
  9882. case 1:
  9883. return &v.sizeCache
  9884. case 2:
  9885. return &v.unknownFields
  9886. default:
  9887. return nil
  9888. }
  9889. }
  9890. file_mtp2_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  9891. switch v := v.(*ZSSellOrderDestingApplyReq); i {
  9892. case 0:
  9893. return &v.state
  9894. case 1:
  9895. return &v.sizeCache
  9896. case 2:
  9897. return &v.unknownFields
  9898. default:
  9899. return nil
  9900. }
  9901. }
  9902. file_mtp2_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  9903. switch v := v.(*ZSSellOrderDestingApplyRsp); i {
  9904. case 0:
  9905. return &v.state
  9906. case 1:
  9907. return &v.sizeCache
  9908. case 2:
  9909. return &v.unknownFields
  9910. default:
  9911. return nil
  9912. }
  9913. }
  9914. file_mtp2_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  9915. switch v := v.(*ZSSellOrderDestingApplyOperateReq); i {
  9916. case 0:
  9917. return &v.state
  9918. case 1:
  9919. return &v.sizeCache
  9920. case 2:
  9921. return &v.unknownFields
  9922. default:
  9923. return nil
  9924. }
  9925. }
  9926. file_mtp2_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  9927. switch v := v.(*ZSSellOrderDestingApplyOperateRsp); i {
  9928. case 0:
  9929. return &v.state
  9930. case 1:
  9931. return &v.sizeCache
  9932. case 2:
  9933. return &v.unknownFields
  9934. default:
  9935. return nil
  9936. }
  9937. }
  9938. file_mtp2_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  9939. switch v := v.(*ZSBuyOrderDestingNegPriceReq); i {
  9940. case 0:
  9941. return &v.state
  9942. case 1:
  9943. return &v.sizeCache
  9944. case 2:
  9945. return &v.unknownFields
  9946. default:
  9947. return nil
  9948. }
  9949. }
  9950. file_mtp2_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  9951. switch v := v.(*ZSBuyOrderDestingNegPriceRsp); i {
  9952. case 0:
  9953. return &v.state
  9954. case 1:
  9955. return &v.sizeCache
  9956. case 2:
  9957. return &v.unknownFields
  9958. default:
  9959. return nil
  9960. }
  9961. }
  9962. file_mtp2_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  9963. switch v := v.(*ZSBuyOrderDestingNegPriceOperateReq); i {
  9964. case 0:
  9965. return &v.state
  9966. case 1:
  9967. return &v.sizeCache
  9968. case 2:
  9969. return &v.unknownFields
  9970. default:
  9971. return nil
  9972. }
  9973. }
  9974. file_mtp2_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
  9975. switch v := v.(*ZSBuyOrderDestingNegPriceOperateRsp); i {
  9976. case 0:
  9977. return &v.state
  9978. case 1:
  9979. return &v.sizeCache
  9980. case 2:
  9981. return &v.unknownFields
  9982. default:
  9983. return nil
  9984. }
  9985. }
  9986. file_mtp2_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
  9987. switch v := v.(*WRListingCancelOrderReq); i {
  9988. case 0:
  9989. return &v.state
  9990. case 1:
  9991. return &v.sizeCache
  9992. case 2:
  9993. return &v.unknownFields
  9994. default:
  9995. return nil
  9996. }
  9997. }
  9998. file_mtp2_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
  9999. switch v := v.(*WRListingCancelOrderRsp); i {
  10000. case 0:
  10001. return &v.state
  10002. case 1:
  10003. return &v.sizeCache
  10004. case 2:
  10005. return &v.unknownFields
  10006. default:
  10007. return nil
  10008. }
  10009. }
  10010. file_mtp2_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
  10011. switch v := v.(*ReceiptZSOutApplyReq); i {
  10012. case 0:
  10013. return &v.state
  10014. case 1:
  10015. return &v.sizeCache
  10016. case 2:
  10017. return &v.unknownFields
  10018. default:
  10019. return nil
  10020. }
  10021. }
  10022. file_mtp2_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
  10023. switch v := v.(*ReceiptZSOutApplyRsp); i {
  10024. case 0:
  10025. return &v.state
  10026. case 1:
  10027. return &v.sizeCache
  10028. case 2:
  10029. return &v.unknownFields
  10030. default:
  10031. return nil
  10032. }
  10033. }
  10034. file_mtp2_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
  10035. switch v := v.(*DepositConfigInfo); i {
  10036. case 0:
  10037. return &v.state
  10038. case 1:
  10039. return &v.sizeCache
  10040. case 2:
  10041. return &v.unknownFields
  10042. default:
  10043. return nil
  10044. }
  10045. }
  10046. file_mtp2_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
  10047. switch v := v.(*SpotPresaleListingOrderReq); i {
  10048. case 0:
  10049. return &v.state
  10050. case 1:
  10051. return &v.sizeCache
  10052. case 2:
  10053. return &v.unknownFields
  10054. default:
  10055. return nil
  10056. }
  10057. }
  10058. file_mtp2_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
  10059. switch v := v.(*SpotPresaleListingOrderRsp); i {
  10060. case 0:
  10061. return &v.state
  10062. case 1:
  10063. return &v.sizeCache
  10064. case 2:
  10065. return &v.unknownFields
  10066. default:
  10067. return nil
  10068. }
  10069. }
  10070. file_mtp2_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
  10071. switch v := v.(*THJPurchaseTradeNtf); i {
  10072. case 0:
  10073. return &v.state
  10074. case 1:
  10075. return &v.sizeCache
  10076. case 2:
  10077. return &v.unknownFields
  10078. default:
  10079. return nil
  10080. }
  10081. }
  10082. file_mtp2_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
  10083. switch v := v.(*PurchaseTransferNtf); i {
  10084. case 0:
  10085. return &v.state
  10086. case 1:
  10087. return &v.sizeCache
  10088. case 2:
  10089. return &v.unknownFields
  10090. default:
  10091. return nil
  10092. }
  10093. }
  10094. file_mtp2_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
  10095. switch v := v.(*WRTradeDealedNtf); i {
  10096. case 0:
  10097. return &v.state
  10098. case 1:
  10099. return &v.sizeCache
  10100. case 2:
  10101. return &v.unknownFields
  10102. default:
  10103. return nil
  10104. }
  10105. }
  10106. file_mtp2_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
  10107. switch v := v.(*CJJCMemberOperateReq); i {
  10108. case 0:
  10109. return &v.state
  10110. case 1:
  10111. return &v.sizeCache
  10112. case 2:
  10113. return &v.unknownFields
  10114. default:
  10115. return nil
  10116. }
  10117. }
  10118. file_mtp2_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
  10119. switch v := v.(*CJJCMemberOperateRsp); i {
  10120. case 0:
  10121. return &v.state
  10122. case 1:
  10123. return &v.sizeCache
  10124. case 2:
  10125. return &v.unknownFields
  10126. default:
  10127. return nil
  10128. }
  10129. }
  10130. file_mtp2_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
  10131. switch v := v.(*BSFWMemberOperateReq); i {
  10132. case 0:
  10133. return &v.state
  10134. case 1:
  10135. return &v.sizeCache
  10136. case 2:
  10137. return &v.unknownFields
  10138. default:
  10139. return nil
  10140. }
  10141. }
  10142. file_mtp2_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
  10143. switch v := v.(*BSFWMemberOperateRsp); i {
  10144. case 0:
  10145. return &v.state
  10146. case 1:
  10147. return &v.sizeCache
  10148. case 2:
  10149. return &v.unknownFields
  10150. default:
  10151. return nil
  10152. }
  10153. }
  10154. file_mtp2_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
  10155. switch v := v.(*AccountFundInfoReq); i {
  10156. case 0:
  10157. return &v.state
  10158. case 1:
  10159. return &v.sizeCache
  10160. case 2:
  10161. return &v.unknownFields
  10162. default:
  10163. return nil
  10164. }
  10165. }
  10166. file_mtp2_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
  10167. switch v := v.(*AccountFundInfoRsp); i {
  10168. case 0:
  10169. return &v.state
  10170. case 1:
  10171. return &v.sizeCache
  10172. case 2:
  10173. return &v.unknownFields
  10174. default:
  10175. return nil
  10176. }
  10177. }
  10178. file_mtp2_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
  10179. switch v := v.(*GZPresaleApplyReq); i {
  10180. case 0:
  10181. return &v.state
  10182. case 1:
  10183. return &v.sizeCache
  10184. case 2:
  10185. return &v.unknownFields
  10186. default:
  10187. return nil
  10188. }
  10189. }
  10190. file_mtp2_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
  10191. switch v := v.(*GZPresaleApplyRsp); i {
  10192. case 0:
  10193. return &v.state
  10194. case 1:
  10195. return &v.sizeCache
  10196. case 2:
  10197. return &v.unknownFields
  10198. default:
  10199. return nil
  10200. }
  10201. }
  10202. file_mtp2_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
  10203. switch v := v.(*GZPresaleOrderReq); i {
  10204. case 0:
  10205. return &v.state
  10206. case 1:
  10207. return &v.sizeCache
  10208. case 2:
  10209. return &v.unknownFields
  10210. default:
  10211. return nil
  10212. }
  10213. }
  10214. file_mtp2_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
  10215. switch v := v.(*GZPresaleOrderRsp); i {
  10216. case 0:
  10217. return &v.state
  10218. case 1:
  10219. return &v.sizeCache
  10220. case 2:
  10221. return &v.unknownFields
  10222. default:
  10223. return nil
  10224. }
  10225. }
  10226. file_mtp2_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
  10227. switch v := v.(*GZCenterPurchasePriceList); i {
  10228. case 0:
  10229. return &v.state
  10230. case 1:
  10231. return &v.sizeCache
  10232. case 2:
  10233. return &v.unknownFields
  10234. default:
  10235. return nil
  10236. }
  10237. }
  10238. file_mtp2_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
  10239. switch v := v.(*GZCenterPurchaseApplyReq); i {
  10240. case 0:
  10241. return &v.state
  10242. case 1:
  10243. return &v.sizeCache
  10244. case 2:
  10245. return &v.unknownFields
  10246. default:
  10247. return nil
  10248. }
  10249. }
  10250. file_mtp2_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
  10251. switch v := v.(*GZCenterPurchaseApplyRsp); i {
  10252. case 0:
  10253. return &v.state
  10254. case 1:
  10255. return &v.sizeCache
  10256. case 2:
  10257. return &v.unknownFields
  10258. default:
  10259. return nil
  10260. }
  10261. }
  10262. file_mtp2_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
  10263. switch v := v.(*GZCenterPurchaseOrderReq); i {
  10264. case 0:
  10265. return &v.state
  10266. case 1:
  10267. return &v.sizeCache
  10268. case 2:
  10269. return &v.unknownFields
  10270. default:
  10271. return nil
  10272. }
  10273. }
  10274. file_mtp2_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
  10275. switch v := v.(*GZCenterPurchaseOrderRsp); i {
  10276. case 0:
  10277. return &v.state
  10278. case 1:
  10279. return &v.sizeCache
  10280. case 2:
  10281. return &v.unknownFields
  10282. default:
  10283. return nil
  10284. }
  10285. }
  10286. }
  10287. type x struct{}
  10288. out := protoimpl.TypeBuilder{
  10289. File: protoimpl.DescBuilder{
  10290. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  10291. RawDescriptor: file_mtp2_proto_rawDesc,
  10292. NumEnums: 0,
  10293. NumMessages: 77,
  10294. NumExtensions: 0,
  10295. NumServices: 0,
  10296. },
  10297. GoTypes: file_mtp2_proto_goTypes,
  10298. DependencyIndexes: file_mtp2_proto_depIdxs,
  10299. MessageInfos: file_mtp2_proto_msgTypes,
  10300. }.Build()
  10301. File_mtp2_proto = out.File
  10302. file_mtp2_proto_rawDesc = nil
  10303. file_mtp2_proto_goTypes = nil
  10304. file_mtp2_proto_depIdxs = nil
  10305. }