bank.cs 376 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated by a tool.
  4. //
  5. // Changes to this file may cause incorrect behavior and will be lost if
  6. // the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. // Generated from: bank.proto
  10. namespace Bank
  11. {
  12. using tas;
  13. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MessageHead")]
  14. public partial class MessageHead : global::ProtoBuf.IExtensible
  15. {
  16. public MessageHead() {}
  17. private uint _FunCode = uint.MaxValue;
  18. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"FunCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  19. [global::System.ComponentModel.DefaultValue(uint.MaxValue)]
  20. public uint FunCode
  21. {
  22. get { return _FunCode; }
  23. set { _FunCode = value; }
  24. }
  25. private uint _RequestID = uint.MaxValue;
  26. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RequestID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  27. [global::System.ComponentModel.DefaultValue(uint.MaxValue)]
  28. public uint RequestID
  29. {
  30. get { return _RequestID; }
  31. set { _RequestID = value; }
  32. }
  33. private uint _AccountId = uint.MaxValue;
  34. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  35. [global::System.ComponentModel.DefaultValue(uint.MaxValue)]
  36. public uint AccountId
  37. {
  38. get { return _AccountId; }
  39. set { _AccountId = value; }
  40. }
  41. private uint _AccessId = uint.MaxValue;
  42. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccessId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  43. [global::System.ComponentModel.DefaultValue(uint.MaxValue)]
  44. public uint AccessId
  45. {
  46. get { return _AccessId; }
  47. set { _AccessId = value; }
  48. }
  49. private long _ClientTime = int.MinValue;
  50. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ClientTime", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  51. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  52. public long ClientTime
  53. {
  54. get { return _ClientTime; }
  55. set { _ClientTime = value; }
  56. }
  57. private uint _GoodsId = uint.MaxValue;
  58. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"GoodsId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  59. [global::System.ComponentModel.DefaultValue(uint.MaxValue)]
  60. public uint GoodsId
  61. {
  62. get { return _GoodsId; }
  63. set { _GoodsId = value; }
  64. }
  65. private byte[] _UUID = null;
  66. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"UUID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  67. [global::System.ComponentModel.DefaultValue(null)]
  68. public byte[] UUID
  69. {
  70. get { return _UUID; }
  71. set { _UUID = value; }
  72. }
  73. private global::ProtoBuf.IExtension extensionObject;
  74. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  75. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  76. }
  77. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryReqPageInfo")]
  78. public partial class QueryReqPageInfo : global::ProtoBuf.IExtensible
  79. {
  80. public QueryReqPageInfo() {}
  81. private int _PageNumber = int.MinValue;
  82. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"PageNumber", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  83. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  84. public int PageNumber
  85. {
  86. get { return _PageNumber; }
  87. set { _PageNumber = value; }
  88. }
  89. private int _RecordPerPage = int.MinValue;
  90. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RecordPerPage", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  91. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  92. public int RecordPerPage
  93. {
  94. get { return _RecordPerPage; }
  95. set { _RecordPerPage = value; }
  96. }
  97. private int _QueryMark = int.MinValue;
  98. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"QueryMark", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  99. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  100. public int QueryMark
  101. {
  102. get { return _QueryMark; }
  103. set { _QueryMark = value; }
  104. }
  105. private string _SortField = "";
  106. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"SortField", DataFormat = global::ProtoBuf.DataFormat.Default)]
  107. [global::System.ComponentModel.DefaultValue("")]
  108. public string SortField
  109. {
  110. get { return _SortField; }
  111. set { _SortField = value; }
  112. }
  113. private int _SortOrder = int.MinValue;
  114. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"SortOrder", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  115. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  116. public int SortOrder
  117. {
  118. get { return _SortOrder; }
  119. set { _SortOrder = value; }
  120. }
  121. private int _NeedTotalCount = int.MinValue;
  122. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"NeedTotalCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  123. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  124. public int NeedTotalCount
  125. {
  126. get { return _NeedTotalCount; }
  127. set { _NeedTotalCount = value; }
  128. }
  129. private global::ProtoBuf.IExtension extensionObject;
  130. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  131. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  132. }
  133. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryRspPageInfo")]
  134. public partial class QueryRspPageInfo : global::ProtoBuf.IExtensible
  135. {
  136. public QueryRspPageInfo() {}
  137. private int _PageNumber = int.MinValue;
  138. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"PageNumber", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  139. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  140. public int PageNumber
  141. {
  142. get { return _PageNumber; }
  143. set { _PageNumber = value; }
  144. }
  145. private int _RecordPerPage = int.MinValue;
  146. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RecordPerPage", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  147. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  148. public int RecordPerPage
  149. {
  150. get { return _RecordPerPage; }
  151. set { _RecordPerPage = value; }
  152. }
  153. private int _QueryMark = int.MinValue;
  154. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"QueryMark", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  155. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  156. public int QueryMark
  157. {
  158. get { return _QueryMark; }
  159. set { _QueryMark = value; }
  160. }
  161. private string _SortField = "";
  162. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"SortField", DataFormat = global::ProtoBuf.DataFormat.Default)]
  163. [global::System.ComponentModel.DefaultValue("")]
  164. public string SortField
  165. {
  166. get { return _SortField; }
  167. set { _SortField = value; }
  168. }
  169. private int _SortOrder = int.MinValue;
  170. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"SortOrder", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  171. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  172. public int SortOrder
  173. {
  174. get { return _SortOrder; }
  175. set { _SortOrder = value; }
  176. }
  177. private int _RecordCount = int.MinValue;
  178. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"RecordCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  179. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  180. public int RecordCount
  181. {
  182. get { return _RecordCount; }
  183. set { _RecordCount = value; }
  184. }
  185. private int _TotalCount = int.MinValue;
  186. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"TotalCount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  187. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  188. public int TotalCount
  189. {
  190. get { return _TotalCount; }
  191. set { _TotalCount = value; }
  192. }
  193. private global::ProtoBuf.IExtension extensionObject;
  194. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  195. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  196. }
  197. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CommonPackage")]
  198. public partial class CommonPackage : global::ProtoBuf.IExtensible
  199. {
  200. public CommonPackage() {}
  201. private Bank.MessageHead _Header;
  202. [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  203. public Bank.MessageHead Header
  204. {
  205. get { return _Header; }
  206. set { _Header = value; }
  207. }
  208. private global::ProtoBuf.IExtension extensionObject;
  209. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  210. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  211. }
  212. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignReq")]
  213. public partial class BankSignReq : global::ProtoBuf.IExtensible
  214. {
  215. public BankSignReq() {}
  216. private Bank.MessageHead _Header = null;
  217. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  218. [global::System.ComponentModel.DefaultValue(null)]
  219. public Bank.MessageHead Header
  220. {
  221. get { return _Header; }
  222. set { _Header = value; }
  223. }
  224. private long _ExtOperatorID;
  225. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  226. public long ExtOperatorID
  227. {
  228. get { return _ExtOperatorID; }
  229. set { _ExtOperatorID = value; }
  230. }
  231. private string _AccountCode = "";
  232. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  233. [global::System.ComponentModel.DefaultValue("")]
  234. public string AccountCode
  235. {
  236. get { return _AccountCode; }
  237. set { _AccountCode = value; }
  238. }
  239. private string _CusBankID = "";
  240. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  241. [global::System.ComponentModel.DefaultValue("")]
  242. public string CusBankID
  243. {
  244. get { return _CusBankID; }
  245. set { _CusBankID = value; }
  246. }
  247. private string _Currency = "";
  248. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  249. [global::System.ComponentModel.DefaultValue("")]
  250. public string Currency
  251. {
  252. get { return _Currency; }
  253. set { _Currency = value; }
  254. }
  255. private int _AccountType = int.MinValue;
  256. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  257. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  258. public int AccountType
  259. {
  260. get { return _AccountType; }
  261. set { _AccountType = value; }
  262. }
  263. private string _BankAccountNo;
  264. [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  265. public string BankAccountNo
  266. {
  267. get { return _BankAccountNo; }
  268. set { _BankAccountNo = value; }
  269. }
  270. private string _BankAccountName;
  271. [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"BankAccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  272. public string BankAccountName
  273. {
  274. get { return _BankAccountName; }
  275. set { _BankAccountName = value; }
  276. }
  277. private string _ExBankNo;
  278. [global::ProtoBuf.ProtoMember(9, IsRequired = true, Name=@"ExBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  279. public string ExBankNo
  280. {
  281. get { return _ExBankNo; }
  282. set { _ExBankNo = value; }
  283. }
  284. private string _ExBankName;
  285. [global::ProtoBuf.ProtoMember(10, IsRequired = true, Name=@"ExBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  286. public string ExBankName
  287. {
  288. get { return _ExBankName; }
  289. set { _ExBankName = value; }
  290. }
  291. private string _AppDateTime = "";
  292. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  293. [global::System.ComponentModel.DefaultValue("")]
  294. public string AppDateTime
  295. {
  296. get { return _AppDateTime; }
  297. set { _AppDateTime = value; }
  298. }
  299. private string _PaymentNo = "";
  300. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"PaymentNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  301. [global::System.ComponentModel.DefaultValue("")]
  302. public string PaymentNo
  303. {
  304. get { return _PaymentNo; }
  305. set { _PaymentNo = value; }
  306. }
  307. private string _ProtocolNo = "";
  308. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"ProtocolNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  309. [global::System.ComponentModel.DefaultValue("")]
  310. public string ProtocolNo
  311. {
  312. get { return _ProtocolNo; }
  313. set { _ProtocolNo = value; }
  314. }
  315. private string _OpenBankNo = "";
  316. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"OpenBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  317. [global::System.ComponentModel.DefaultValue("")]
  318. public string OpenBankNo
  319. {
  320. get { return _OpenBankNo; }
  321. set { _OpenBankNo = value; }
  322. }
  323. private string _OpenBankName = "";
  324. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"OpenBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  325. [global::System.ComponentModel.DefaultValue("")]
  326. public string OpenBankName
  327. {
  328. get { return _OpenBankName; }
  329. set { _OpenBankName = value; }
  330. }
  331. private string _CustomerName;
  332. [global::ProtoBuf.ProtoMember(16, IsRequired = true, Name=@"CustomerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  333. public string CustomerName
  334. {
  335. get { return _CustomerName; }
  336. set { _CustomerName = value; }
  337. }
  338. private long _CertType;
  339. [global::ProtoBuf.ProtoMember(17, IsRequired = true, Name=@"CertType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  340. public long CertType
  341. {
  342. get { return _CertType; }
  343. set { _CertType = value; }
  344. }
  345. private string _CertID;
  346. [global::ProtoBuf.ProtoMember(18, IsRequired = true, Name=@"CertID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  347. public string CertID
  348. {
  349. get { return _CertID; }
  350. set { _CertID = value; }
  351. }
  352. private string _BankAccountPWD = "";
  353. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"BankAccountPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  354. [global::System.ComponentModel.DefaultValue("")]
  355. public string BankAccountPWD
  356. {
  357. get { return _BankAccountPWD; }
  358. set { _BankAccountPWD = value; }
  359. }
  360. private string _AgentName = "";
  361. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"AgentName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  362. [global::System.ComponentModel.DefaultValue("")]
  363. public string AgentName
  364. {
  365. get { return _AgentName; }
  366. set { _AgentName = value; }
  367. }
  368. private int _AgentCertType = int.MinValue;
  369. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"AgentCertType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  370. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  371. public int AgentCertType
  372. {
  373. get { return _AgentCertType; }
  374. set { _AgentCertType = value; }
  375. }
  376. private string _AgentCertID = "";
  377. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"AgentCertID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  378. [global::System.ComponentModel.DefaultValue("")]
  379. public string AgentCertID
  380. {
  381. get { return _AgentCertID; }
  382. set { _AgentCertID = value; }
  383. }
  384. private int _BankAccountType = int.MinValue;
  385. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"BankAccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  386. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  387. public int BankAccountType
  388. {
  389. get { return _BankAccountType; }
  390. set { _BankAccountType = value; }
  391. }
  392. private string _BankProvince = "";
  393. [global::ProtoBuf.ProtoMember(24, IsRequired = false, Name=@"BankProvince", DataFormat = global::ProtoBuf.DataFormat.Default)]
  394. [global::System.ComponentModel.DefaultValue("")]
  395. public string BankProvince
  396. {
  397. get { return _BankProvince; }
  398. set { _BankProvince = value; }
  399. }
  400. private string _BankCity = "";
  401. [global::ProtoBuf.ProtoMember(25, IsRequired = false, Name=@"BankCity", DataFormat = global::ProtoBuf.DataFormat.Default)]
  402. [global::System.ComponentModel.DefaultValue("")]
  403. public string BankCity
  404. {
  405. get { return _BankCity; }
  406. set { _BankCity = value; }
  407. }
  408. private int _BankCardType = int.MinValue;
  409. [global::ProtoBuf.ProtoMember(26, IsRequired = false, Name=@"BankCardType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  410. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  411. public int BankCardType
  412. {
  413. get { return _BankCardType; }
  414. set { _BankCardType = value; }
  415. }
  416. private string _MobilePhone = "";
  417. [global::ProtoBuf.ProtoMember(27, IsRequired = false, Name=@"MobilePhone", DataFormat = global::ProtoBuf.DataFormat.Default)]
  418. [global::System.ComponentModel.DefaultValue("")]
  419. public string MobilePhone
  420. {
  421. get { return _MobilePhone; }
  422. set { _MobilePhone = value; }
  423. }
  424. private string _ExchId = "";
  425. [global::ProtoBuf.ProtoMember(28, IsRequired = false, Name=@"ExchId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  426. [global::System.ComponentModel.DefaultValue("")]
  427. public string ExchId
  428. {
  429. get { return _ExchId; }
  430. set { _ExchId = value; }
  431. }
  432. private string _IdentifyCode = "";
  433. [global::ProtoBuf.ProtoMember(29, IsRequired = false, Name=@"IdentifyCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  434. [global::System.ComponentModel.DefaultValue("")]
  435. public string IdentifyCode
  436. {
  437. get { return _IdentifyCode; }
  438. set { _IdentifyCode = value; }
  439. }
  440. private global::ProtoBuf.IExtension extensionObject;
  441. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  442. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  443. }
  444. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignRsp")]
  445. public partial class BankSignRsp : global::ProtoBuf.IExtensible
  446. {
  447. public BankSignRsp() {}
  448. private Bank.MessageHead _Header = null;
  449. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  450. [global::System.ComponentModel.DefaultValue(null)]
  451. public Bank.MessageHead Header
  452. {
  453. get { return _Header; }
  454. set { _Header = value; }
  455. }
  456. private int _RetCode = int.MinValue;
  457. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  458. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  459. public int RetCode
  460. {
  461. get { return _RetCode; }
  462. set { _RetCode = value; }
  463. }
  464. private string _RetDesc = "";
  465. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  466. [global::System.ComponentModel.DefaultValue("")]
  467. public string RetDesc
  468. {
  469. get { return _RetDesc; }
  470. set { _RetDesc = value; }
  471. }
  472. private long _ExtOperatorID = int.MinValue;
  473. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  474. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  475. public long ExtOperatorID
  476. {
  477. get { return _ExtOperatorID; }
  478. set { _ExtOperatorID = value; }
  479. }
  480. private string _AccountCode = "";
  481. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  482. [global::System.ComponentModel.DefaultValue("")]
  483. public string AccountCode
  484. {
  485. get { return _AccountCode; }
  486. set { _AccountCode = value; }
  487. }
  488. private int _Status = int.MinValue;
  489. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  490. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  491. public int Status
  492. {
  493. get { return _Status; }
  494. set { _Status = value; }
  495. }
  496. private string _ExchTicket = "";
  497. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  498. [global::System.ComponentModel.DefaultValue("")]
  499. public string ExchTicket
  500. {
  501. get { return _ExchTicket; }
  502. set { _ExchTicket = value; }
  503. }
  504. private string _NetAddr = "";
  505. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"NetAddr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  506. [global::System.ComponentModel.DefaultValue("")]
  507. public string NetAddr
  508. {
  509. get { return _NetAddr; }
  510. set { _NetAddr = value; }
  511. }
  512. private string _DealTime = "";
  513. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  514. [global::System.ComponentModel.DefaultValue("")]
  515. public string DealTime
  516. {
  517. get { return _DealTime; }
  518. set { _DealTime = value; }
  519. }
  520. private global::ProtoBuf.IExtension extensionObject;
  521. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  522. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  523. }
  524. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignReq")]
  525. public partial class BankCancelSignReq : global::ProtoBuf.IExtensible
  526. {
  527. public BankCancelSignReq() {}
  528. private Bank.MessageHead _Header = null;
  529. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  530. [global::System.ComponentModel.DefaultValue(null)]
  531. public Bank.MessageHead Header
  532. {
  533. get { return _Header; }
  534. set { _Header = value; }
  535. }
  536. private long _ExtOperatorID;
  537. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  538. public long ExtOperatorID
  539. {
  540. get { return _ExtOperatorID; }
  541. set { _ExtOperatorID = value; }
  542. }
  543. private long _CustomerSignId = int.MinValue;
  544. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  545. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  546. public long CustomerSignId
  547. {
  548. get { return _CustomerSignId; }
  549. set { _CustomerSignId = value; }
  550. }
  551. private string _AccountCode = "";
  552. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  553. [global::System.ComponentModel.DefaultValue("")]
  554. public string AccountCode
  555. {
  556. get { return _AccountCode; }
  557. set { _AccountCode = value; }
  558. }
  559. private string _CusBankID = "";
  560. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  561. [global::System.ComponentModel.DefaultValue("")]
  562. public string CusBankID
  563. {
  564. get { return _CusBankID; }
  565. set { _CusBankID = value; }
  566. }
  567. private string _Currency = "";
  568. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  569. [global::System.ComponentModel.DefaultValue("")]
  570. public string Currency
  571. {
  572. get { return _Currency; }
  573. set { _Currency = value; }
  574. }
  575. private string _BankAccountNo;
  576. [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  577. public string BankAccountNo
  578. {
  579. get { return _BankAccountNo; }
  580. set { _BankAccountNo = value; }
  581. }
  582. private string _BankAccountName;
  583. [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"BankAccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  584. public string BankAccountName
  585. {
  586. get { return _BankAccountName; }
  587. set { _BankAccountName = value; }
  588. }
  589. private string _ExBankNo;
  590. [global::ProtoBuf.ProtoMember(9, IsRequired = true, Name=@"ExBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  591. public string ExBankNo
  592. {
  593. get { return _ExBankNo; }
  594. set { _ExBankNo = value; }
  595. }
  596. private string _ExBankName;
  597. [global::ProtoBuf.ProtoMember(10, IsRequired = true, Name=@"ExBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  598. public string ExBankName
  599. {
  600. get { return _ExBankName; }
  601. set { _ExBankName = value; }
  602. }
  603. private string _AppDateTime = "";
  604. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  605. [global::System.ComponentModel.DefaultValue("")]
  606. public string AppDateTime
  607. {
  608. get { return _AppDateTime; }
  609. set { _AppDateTime = value; }
  610. }
  611. private string _PaymentNo = "";
  612. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"PaymentNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  613. [global::System.ComponentModel.DefaultValue("")]
  614. public string PaymentNo
  615. {
  616. get { return _PaymentNo; }
  617. set { _PaymentNo = value; }
  618. }
  619. private string _ProtocolNo = "";
  620. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"ProtocolNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  621. [global::System.ComponentModel.DefaultValue("")]
  622. public string ProtocolNo
  623. {
  624. get { return _ProtocolNo; }
  625. set { _ProtocolNo = value; }
  626. }
  627. private string _OpenBankNo;
  628. [global::ProtoBuf.ProtoMember(14, IsRequired = true, Name=@"OpenBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  629. public string OpenBankNo
  630. {
  631. get { return _OpenBankNo; }
  632. set { _OpenBankNo = value; }
  633. }
  634. private string _CustomerName;
  635. [global::ProtoBuf.ProtoMember(15, IsRequired = true, Name=@"CustomerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  636. public string CustomerName
  637. {
  638. get { return _CustomerName; }
  639. set { _CustomerName = value; }
  640. }
  641. private long _CertType;
  642. [global::ProtoBuf.ProtoMember(16, IsRequired = true, Name=@"CertType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  643. public long CertType
  644. {
  645. get { return _CertType; }
  646. set { _CertType = value; }
  647. }
  648. private string _CertID;
  649. [global::ProtoBuf.ProtoMember(17, IsRequired = true, Name=@"CertID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  650. public string CertID
  651. {
  652. get { return _CertID; }
  653. set { _CertID = value; }
  654. }
  655. private global::ProtoBuf.IExtension extensionObject;
  656. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  657. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  658. }
  659. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignRsp")]
  660. public partial class BankCancelSignRsp : global::ProtoBuf.IExtensible
  661. {
  662. public BankCancelSignRsp() {}
  663. private Bank.MessageHead _Header = null;
  664. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  665. [global::System.ComponentModel.DefaultValue(null)]
  666. public Bank.MessageHead Header
  667. {
  668. get { return _Header; }
  669. set { _Header = value; }
  670. }
  671. private int _RetCode = int.MinValue;
  672. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  673. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  674. public int RetCode
  675. {
  676. get { return _RetCode; }
  677. set { _RetCode = value; }
  678. }
  679. private string _RetDesc = "";
  680. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  681. [global::System.ComponentModel.DefaultValue("")]
  682. public string RetDesc
  683. {
  684. get { return _RetDesc; }
  685. set { _RetDesc = value; }
  686. }
  687. private long _ExtOperatorID = int.MinValue;
  688. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  689. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  690. public long ExtOperatorID
  691. {
  692. get { return _ExtOperatorID; }
  693. set { _ExtOperatorID = value; }
  694. }
  695. private string _AccountCode = "";
  696. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  697. [global::System.ComponentModel.DefaultValue("")]
  698. public string AccountCode
  699. {
  700. get { return _AccountCode; }
  701. set { _AccountCode = value; }
  702. }
  703. private int _Status = int.MinValue;
  704. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  705. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  706. public int Status
  707. {
  708. get { return _Status; }
  709. set { _Status = value; }
  710. }
  711. private string _ExchTicket = "";
  712. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  713. [global::System.ComponentModel.DefaultValue("")]
  714. public string ExchTicket
  715. {
  716. get { return _ExchTicket; }
  717. set { _ExchTicket = value; }
  718. }
  719. private string _NetAddr = "";
  720. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"NetAddr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  721. [global::System.ComponentModel.DefaultValue("")]
  722. public string NetAddr
  723. {
  724. get { return _NetAddr; }
  725. set { _NetAddr = value; }
  726. }
  727. private string _DealTime = "";
  728. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  729. [global::System.ComponentModel.DefaultValue("")]
  730. public string DealTime
  731. {
  732. get { return _DealTime; }
  733. set { _DealTime = value; }
  734. }
  735. private global::ProtoBuf.IExtension extensionObject;
  736. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  737. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  738. }
  739. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawReq")]
  740. public partial class BankWithDrawReq : global::ProtoBuf.IExtensible
  741. {
  742. public BankWithDrawReq() {}
  743. private Bank.MessageHead _Header = null;
  744. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  745. [global::System.ComponentModel.DefaultValue(null)]
  746. public Bank.MessageHead Header
  747. {
  748. get { return _Header; }
  749. set { _Header = value; }
  750. }
  751. private long _ExtOperatorID = int.MinValue;
  752. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  753. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  754. public long ExtOperatorID
  755. {
  756. get { return _ExtOperatorID; }
  757. set { _ExtOperatorID = value; }
  758. }
  759. private long _CustomerSignId = int.MinValue;
  760. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  761. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  762. public long CustomerSignId
  763. {
  764. get { return _CustomerSignId; }
  765. set { _CustomerSignId = value; }
  766. }
  767. private string _AccountCode = "";
  768. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  769. [global::System.ComponentModel.DefaultValue("")]
  770. public string AccountCode
  771. {
  772. get { return _AccountCode; }
  773. set { _AccountCode = value; }
  774. }
  775. private string _CusBankID = "";
  776. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  777. [global::System.ComponentModel.DefaultValue("")]
  778. public string CusBankID
  779. {
  780. get { return _CusBankID; }
  781. set { _CusBankID = value; }
  782. }
  783. private string _Currency = "";
  784. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  785. [global::System.ComponentModel.DefaultValue("")]
  786. public string Currency
  787. {
  788. get { return _Currency; }
  789. set { _Currency = value; }
  790. }
  791. private int _AccountType = int.MinValue;
  792. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  793. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  794. public int AccountType
  795. {
  796. get { return _AccountType; }
  797. set { _AccountType = value; }
  798. }
  799. private string _BankAccountNo = "";
  800. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  801. [global::System.ComponentModel.DefaultValue("")]
  802. public string BankAccountNo
  803. {
  804. get { return _BankAccountNo; }
  805. set { _BankAccountNo = value; }
  806. }
  807. private double _Amount = int.MinValue;
  808. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  809. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  810. public double Amount
  811. {
  812. get { return _Amount; }
  813. set { _Amount = value; }
  814. }
  815. private string _AppDateTime = "";
  816. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  817. [global::System.ComponentModel.DefaultValue("")]
  818. public string AppDateTime
  819. {
  820. get { return _AppDateTime; }
  821. set { _AppDateTime = value; }
  822. }
  823. private string _OldTaPWD = "";
  824. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  825. [global::System.ComponentModel.DefaultValue("")]
  826. public string OldTaPWD
  827. {
  828. get { return _OldTaPWD; }
  829. set { _OldTaPWD = value; }
  830. }
  831. private string _Desc = "";
  832. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  833. [global::System.ComponentModel.DefaultValue("")]
  834. public string Desc
  835. {
  836. get { return _Desc; }
  837. set { _Desc = value; }
  838. }
  839. private string _IdentifyCode = "";
  840. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"IdentifyCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  841. [global::System.ComponentModel.DefaultValue("")]
  842. public string IdentifyCode
  843. {
  844. get { return _IdentifyCode; }
  845. set { _IdentifyCode = value; }
  846. }
  847. private string _BranchBankName = "";
  848. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"BranchBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  849. [global::System.ComponentModel.DefaultValue("")]
  850. public string BranchBankName
  851. {
  852. get { return _BranchBankName; }
  853. set { _BranchBankName = value; }
  854. }
  855. private global::ProtoBuf.IExtension extensionObject;
  856. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  857. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  858. }
  859. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawRsp")]
  860. public partial class BankWithDrawRsp : global::ProtoBuf.IExtensible
  861. {
  862. public BankWithDrawRsp() {}
  863. private Bank.MessageHead _Header = null;
  864. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  865. [global::System.ComponentModel.DefaultValue(null)]
  866. public Bank.MessageHead Header
  867. {
  868. get { return _Header; }
  869. set { _Header = value; }
  870. }
  871. private int _RetCode = int.MinValue;
  872. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  873. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  874. public int RetCode
  875. {
  876. get { return _RetCode; }
  877. set { _RetCode = value; }
  878. }
  879. private string _RetDesc = "";
  880. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  881. [global::System.ComponentModel.DefaultValue("")]
  882. public string RetDesc
  883. {
  884. get { return _RetDesc; }
  885. set { _RetDesc = value; }
  886. }
  887. private long _ExtOperatorID = int.MinValue;
  888. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  889. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  890. public long ExtOperatorID
  891. {
  892. get { return _ExtOperatorID; }
  893. set { _ExtOperatorID = value; }
  894. }
  895. private string _AccountCode = "";
  896. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  897. [global::System.ComponentModel.DefaultValue("")]
  898. public string AccountCode
  899. {
  900. get { return _AccountCode; }
  901. set { _AccountCode = value; }
  902. }
  903. private string _ExchTicket = "";
  904. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  905. [global::System.ComponentModel.DefaultValue("")]
  906. public string ExchTicket
  907. {
  908. get { return _ExchTicket; }
  909. set { _ExchTicket = value; }
  910. }
  911. private string _DateTime = "";
  912. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  913. [global::System.ComponentModel.DefaultValue("")]
  914. public string DateTime
  915. {
  916. get { return _DateTime; }
  917. set { _DateTime = value; }
  918. }
  919. private int _Status = int.MinValue;
  920. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  921. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  922. public int Status
  923. {
  924. get { return _Status; }
  925. set { _Status = value; }
  926. }
  927. private string _NetAddr = "";
  928. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"NetAddr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  929. [global::System.ComponentModel.DefaultValue("")]
  930. public string NetAddr
  931. {
  932. get { return _NetAddr; }
  933. set { _NetAddr = value; }
  934. }
  935. private string _DealTime = "";
  936. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  937. [global::System.ComponentModel.DefaultValue("")]
  938. public string DealTime
  939. {
  940. get { return _DealTime; }
  941. set { _DealTime = value; }
  942. }
  943. private global::ProtoBuf.IExtension extensionObject;
  944. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  945. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  946. }
  947. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositReq")]
  948. public partial class BankDepositReq : global::ProtoBuf.IExtensible
  949. {
  950. public BankDepositReq() {}
  951. private Bank.MessageHead _Header = null;
  952. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  953. [global::System.ComponentModel.DefaultValue(null)]
  954. public Bank.MessageHead Header
  955. {
  956. get { return _Header; }
  957. set { _Header = value; }
  958. }
  959. private long _ExtOperatorID = int.MinValue;
  960. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  961. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  962. public long ExtOperatorID
  963. {
  964. get { return _ExtOperatorID; }
  965. set { _ExtOperatorID = value; }
  966. }
  967. private long _CustomerSignId = int.MinValue;
  968. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  969. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  970. public long CustomerSignId
  971. {
  972. get { return _CustomerSignId; }
  973. set { _CustomerSignId = value; }
  974. }
  975. private string _AccountCode = "";
  976. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  977. [global::System.ComponentModel.DefaultValue("")]
  978. public string AccountCode
  979. {
  980. get { return _AccountCode; }
  981. set { _AccountCode = value; }
  982. }
  983. private string _CusBankID = "";
  984. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  985. [global::System.ComponentModel.DefaultValue("")]
  986. public string CusBankID
  987. {
  988. get { return _CusBankID; }
  989. set { _CusBankID = value; }
  990. }
  991. private string _Currency = "";
  992. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  993. [global::System.ComponentModel.DefaultValue("")]
  994. public string Currency
  995. {
  996. get { return _Currency; }
  997. set { _Currency = value; }
  998. }
  999. private int _AccountType = int.MinValue;
  1000. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1001. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1002. public int AccountType
  1003. {
  1004. get { return _AccountType; }
  1005. set { _AccountType = value; }
  1006. }
  1007. private double _Amount = int.MinValue;
  1008. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1009. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1010. public double Amount
  1011. {
  1012. get { return _Amount; }
  1013. set { _Amount = value; }
  1014. }
  1015. private string _AppDateTime = "";
  1016. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1017. [global::System.ComponentModel.DefaultValue("")]
  1018. public string AppDateTime
  1019. {
  1020. get { return _AppDateTime; }
  1021. set { _AppDateTime = value; }
  1022. }
  1023. private string _BankAccountNo = "";
  1024. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1025. [global::System.ComponentModel.DefaultValue("")]
  1026. public string BankAccountNo
  1027. {
  1028. get { return _BankAccountNo; }
  1029. set { _BankAccountNo = value; }
  1030. }
  1031. private string _OldTaPWD = "";
  1032. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1033. [global::System.ComponentModel.DefaultValue("")]
  1034. public string OldTaPWD
  1035. {
  1036. get { return _OldTaPWD; }
  1037. set { _OldTaPWD = value; }
  1038. }
  1039. private string _Desc = "";
  1040. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1041. [global::System.ComponentModel.DefaultValue("")]
  1042. public string Desc
  1043. {
  1044. get { return _Desc; }
  1045. set { _Desc = value; }
  1046. }
  1047. private string _IdentifyCode = "";
  1048. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"IdentifyCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1049. [global::System.ComponentModel.DefaultValue("")]
  1050. public string IdentifyCode
  1051. {
  1052. get { return _IdentifyCode; }
  1053. set { _IdentifyCode = value; }
  1054. }
  1055. private string _BranchBankName = "";
  1056. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"BranchBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1057. [global::System.ComponentModel.DefaultValue("")]
  1058. public string BranchBankName
  1059. {
  1060. get { return _BranchBankName; }
  1061. set { _BranchBankName = value; }
  1062. }
  1063. private global::ProtoBuf.IExtension extensionObject;
  1064. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1065. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1066. }
  1067. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositRsp")]
  1068. public partial class BankDepositRsp : global::ProtoBuf.IExtensible
  1069. {
  1070. public BankDepositRsp() {}
  1071. private Bank.MessageHead _Header = null;
  1072. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1073. [global::System.ComponentModel.DefaultValue(null)]
  1074. public Bank.MessageHead Header
  1075. {
  1076. get { return _Header; }
  1077. set { _Header = value; }
  1078. }
  1079. private int _RetCode = int.MinValue;
  1080. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1081. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1082. public int RetCode
  1083. {
  1084. get { return _RetCode; }
  1085. set { _RetCode = value; }
  1086. }
  1087. private string _RetDesc = "";
  1088. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1089. [global::System.ComponentModel.DefaultValue("")]
  1090. public string RetDesc
  1091. {
  1092. get { return _RetDesc; }
  1093. set { _RetDesc = value; }
  1094. }
  1095. private long _ExtOperatorID = int.MinValue;
  1096. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1097. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1098. public long ExtOperatorID
  1099. {
  1100. get { return _ExtOperatorID; }
  1101. set { _ExtOperatorID = value; }
  1102. }
  1103. private string _AccountCode = "";
  1104. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1105. [global::System.ComponentModel.DefaultValue("")]
  1106. public string AccountCode
  1107. {
  1108. get { return _AccountCode; }
  1109. set { _AccountCode = value; }
  1110. }
  1111. private string _ExchTicket = "";
  1112. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1113. [global::System.ComponentModel.DefaultValue("")]
  1114. public string ExchTicket
  1115. {
  1116. get { return _ExchTicket; }
  1117. set { _ExchTicket = value; }
  1118. }
  1119. private string _DateTime = "";
  1120. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1121. [global::System.ComponentModel.DefaultValue("")]
  1122. public string DateTime
  1123. {
  1124. get { return _DateTime; }
  1125. set { _DateTime = value; }
  1126. }
  1127. private int _Status = int.MinValue;
  1128. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1129. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1130. public int Status
  1131. {
  1132. get { return _Status; }
  1133. set { _Status = value; }
  1134. }
  1135. private string _NetAddr = "";
  1136. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"NetAddr", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1137. [global::System.ComponentModel.DefaultValue("")]
  1138. public string NetAddr
  1139. {
  1140. get { return _NetAddr; }
  1141. set { _NetAddr = value; }
  1142. }
  1143. private string _DealTime = "";
  1144. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1145. [global::System.ComponentModel.DefaultValue("")]
  1146. public string DealTime
  1147. {
  1148. get { return _DealTime; }
  1149. set { _DealTime = value; }
  1150. }
  1151. private global::ProtoBuf.IExtension extensionObject;
  1152. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1153. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1154. }
  1155. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankInOutConfirmReq")]
  1156. public partial class BankInOutConfirmReq : global::ProtoBuf.IExtensible
  1157. {
  1158. public BankInOutConfirmReq() {}
  1159. private Bank.MessageHead _Header = null;
  1160. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1161. [global::System.ComponentModel.DefaultValue(null)]
  1162. public Bank.MessageHead Header
  1163. {
  1164. get { return _Header; }
  1165. set { _Header = value; }
  1166. }
  1167. private long _ExtOperatorID = int.MinValue;
  1168. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1169. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1170. public long ExtOperatorID
  1171. {
  1172. get { return _ExtOperatorID; }
  1173. set { _ExtOperatorID = value; }
  1174. }
  1175. private long _CustomerSignId = int.MinValue;
  1176. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1177. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1178. public long CustomerSignId
  1179. {
  1180. get { return _CustomerSignId; }
  1181. set { _CustomerSignId = value; }
  1182. }
  1183. private string _AccountCode = "";
  1184. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1185. [global::System.ComponentModel.DefaultValue("")]
  1186. public string AccountCode
  1187. {
  1188. get { return _AccountCode; }
  1189. set { _AccountCode = value; }
  1190. }
  1191. private string _CusBankID = "";
  1192. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1193. [global::System.ComponentModel.DefaultValue("")]
  1194. public string CusBankID
  1195. {
  1196. get { return _CusBankID; }
  1197. set { _CusBankID = value; }
  1198. }
  1199. private string _Currency = "";
  1200. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1201. [global::System.ComponentModel.DefaultValue("")]
  1202. public string Currency
  1203. {
  1204. get { return _Currency; }
  1205. set { _Currency = value; }
  1206. }
  1207. private double _Amount = int.MinValue;
  1208. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1209. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1210. public double Amount
  1211. {
  1212. get { return _Amount; }
  1213. set { _Amount = value; }
  1214. }
  1215. private string _ExchTicket = "";
  1216. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1217. [global::System.ComponentModel.DefaultValue("")]
  1218. public string ExchTicket
  1219. {
  1220. get { return _ExchTicket; }
  1221. set { _ExchTicket = value; }
  1222. }
  1223. private string _AppDateTime = "";
  1224. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1225. [global::System.ComponentModel.DefaultValue("")]
  1226. public string AppDateTime
  1227. {
  1228. get { return _AppDateTime; }
  1229. set { _AppDateTime = value; }
  1230. }
  1231. private string _BankAccountNo = "";
  1232. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1233. [global::System.ComponentModel.DefaultValue("")]
  1234. public string BankAccountNo
  1235. {
  1236. get { return _BankAccountNo; }
  1237. set { _BankAccountNo = value; }
  1238. }
  1239. private int _Result = int.MinValue;
  1240. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"Result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1241. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1242. public int Result
  1243. {
  1244. get { return _Result; }
  1245. set { _Result = value; }
  1246. }
  1247. private string _Desc = "";
  1248. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1249. [global::System.ComponentModel.DefaultValue("")]
  1250. public string Desc
  1251. {
  1252. get { return _Desc; }
  1253. set { _Desc = value; }
  1254. }
  1255. private string _AuditReason = "";
  1256. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"AuditReason", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1257. [global::System.ComponentModel.DefaultValue("")]
  1258. public string AuditReason
  1259. {
  1260. get { return _AuditReason; }
  1261. set { _AuditReason = value; }
  1262. }
  1263. private global::ProtoBuf.IExtension extensionObject;
  1264. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1265. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1266. }
  1267. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankInOutConfirmRsp")]
  1268. public partial class BankInOutConfirmRsp : global::ProtoBuf.IExtensible
  1269. {
  1270. public BankInOutConfirmRsp() {}
  1271. private Bank.MessageHead _Header = null;
  1272. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1273. [global::System.ComponentModel.DefaultValue(null)]
  1274. public Bank.MessageHead Header
  1275. {
  1276. get { return _Header; }
  1277. set { _Header = value; }
  1278. }
  1279. private int _RetCode = int.MinValue;
  1280. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1281. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1282. public int RetCode
  1283. {
  1284. get { return _RetCode; }
  1285. set { _RetCode = value; }
  1286. }
  1287. private string _RetDesc = "";
  1288. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1289. [global::System.ComponentModel.DefaultValue("")]
  1290. public string RetDesc
  1291. {
  1292. get { return _RetDesc; }
  1293. set { _RetDesc = value; }
  1294. }
  1295. private long _ExtOperatorID = int.MinValue;
  1296. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1297. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1298. public long ExtOperatorID
  1299. {
  1300. get { return _ExtOperatorID; }
  1301. set { _ExtOperatorID = value; }
  1302. }
  1303. private string _AccountCode = "";
  1304. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1305. [global::System.ComponentModel.DefaultValue("")]
  1306. public string AccountCode
  1307. {
  1308. get { return _AccountCode; }
  1309. set { _AccountCode = value; }
  1310. }
  1311. private string _ExchTicket = "";
  1312. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1313. [global::System.ComponentModel.DefaultValue("")]
  1314. public string ExchTicket
  1315. {
  1316. get { return _ExchTicket; }
  1317. set { _ExchTicket = value; }
  1318. }
  1319. private string _DateTime = "";
  1320. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1321. [global::System.ComponentModel.DefaultValue("")]
  1322. public string DateTime
  1323. {
  1324. get { return _DateTime; }
  1325. set { _DateTime = value; }
  1326. }
  1327. private string _DealTime = "";
  1328. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1329. [global::System.ComponentModel.DefaultValue("")]
  1330. public string DealTime
  1331. {
  1332. get { return _DealTime; }
  1333. set { _DealTime = value; }
  1334. }
  1335. private global::ProtoBuf.IExtension extensionObject;
  1336. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1337. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1338. }
  1339. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignNtf")]
  1340. public partial class BankSignNtf : global::ProtoBuf.IExtensible
  1341. {
  1342. public BankSignNtf() {}
  1343. private Bank.MessageHead _Header = null;
  1344. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1345. [global::System.ComponentModel.DefaultValue(null)]
  1346. public Bank.MessageHead Header
  1347. {
  1348. get { return _Header; }
  1349. set { _Header = value; }
  1350. }
  1351. private int _RetCode = int.MinValue;
  1352. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1353. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1354. public int RetCode
  1355. {
  1356. get { return _RetCode; }
  1357. set { _RetCode = value; }
  1358. }
  1359. private string _AccountCode = "";
  1360. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1361. [global::System.ComponentModel.DefaultValue("")]
  1362. public string AccountCode
  1363. {
  1364. get { return _AccountCode; }
  1365. set { _AccountCode = value; }
  1366. }
  1367. private string _CusBankID = "";
  1368. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1369. [global::System.ComponentModel.DefaultValue("")]
  1370. public string CusBankID
  1371. {
  1372. get { return _CusBankID; }
  1373. set { _CusBankID = value; }
  1374. }
  1375. private string _Currency = "";
  1376. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1377. [global::System.ComponentModel.DefaultValue("")]
  1378. public string Currency
  1379. {
  1380. get { return _Currency; }
  1381. set { _Currency = value; }
  1382. }
  1383. private string _ExchTicket = "";
  1384. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1385. [global::System.ComponentModel.DefaultValue("")]
  1386. public string ExchTicket
  1387. {
  1388. get { return _ExchTicket; }
  1389. set { _ExchTicket = value; }
  1390. }
  1391. private string _BankTicket = "";
  1392. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"BankTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1393. [global::System.ComponentModel.DefaultValue("")]
  1394. public string BankTicket
  1395. {
  1396. get { return _BankTicket; }
  1397. set { _BankTicket = value; }
  1398. }
  1399. private string _DateTime = "";
  1400. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1401. [global::System.ComponentModel.DefaultValue("")]
  1402. public string DateTime
  1403. {
  1404. get { return _DateTime; }
  1405. set { _DateTime = value; }
  1406. }
  1407. private string _Desc = "";
  1408. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1409. [global::System.ComponentModel.DefaultValue("")]
  1410. public string Desc
  1411. {
  1412. get { return _Desc; }
  1413. set { _Desc = value; }
  1414. }
  1415. private global::ProtoBuf.IExtension extensionObject;
  1416. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1417. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1418. }
  1419. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignNtf")]
  1420. public partial class BankCancelSignNtf : global::ProtoBuf.IExtensible
  1421. {
  1422. public BankCancelSignNtf() {}
  1423. private Bank.MessageHead _Header = null;
  1424. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1425. [global::System.ComponentModel.DefaultValue(null)]
  1426. public Bank.MessageHead Header
  1427. {
  1428. get { return _Header; }
  1429. set { _Header = value; }
  1430. }
  1431. private int _RetCode = int.MinValue;
  1432. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1433. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1434. public int RetCode
  1435. {
  1436. get { return _RetCode; }
  1437. set { _RetCode = value; }
  1438. }
  1439. private string _AccountCode = "";
  1440. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1441. [global::System.ComponentModel.DefaultValue("")]
  1442. public string AccountCode
  1443. {
  1444. get { return _AccountCode; }
  1445. set { _AccountCode = value; }
  1446. }
  1447. private string _CusBankID = "";
  1448. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1449. [global::System.ComponentModel.DefaultValue("")]
  1450. public string CusBankID
  1451. {
  1452. get { return _CusBankID; }
  1453. set { _CusBankID = value; }
  1454. }
  1455. private string _Currency = "";
  1456. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1457. [global::System.ComponentModel.DefaultValue("")]
  1458. public string Currency
  1459. {
  1460. get { return _Currency; }
  1461. set { _Currency = value; }
  1462. }
  1463. private string _ExchTicket = "";
  1464. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1465. [global::System.ComponentModel.DefaultValue("")]
  1466. public string ExchTicket
  1467. {
  1468. get { return _ExchTicket; }
  1469. set { _ExchTicket = value; }
  1470. }
  1471. private string _BankTicket = "";
  1472. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"BankTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1473. [global::System.ComponentModel.DefaultValue("")]
  1474. public string BankTicket
  1475. {
  1476. get { return _BankTicket; }
  1477. set { _BankTicket = value; }
  1478. }
  1479. private string _DateTime = "";
  1480. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1481. [global::System.ComponentModel.DefaultValue("")]
  1482. public string DateTime
  1483. {
  1484. get { return _DateTime; }
  1485. set { _DateTime = value; }
  1486. }
  1487. private string _Desc = "";
  1488. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1489. [global::System.ComponentModel.DefaultValue("")]
  1490. public string Desc
  1491. {
  1492. get { return _Desc; }
  1493. set { _Desc = value; }
  1494. }
  1495. private global::ProtoBuf.IExtension extensionObject;
  1496. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1497. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1498. }
  1499. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayCustomer")]
  1500. public partial class ArrayCustomer : global::ProtoBuf.IExtensible
  1501. {
  1502. public ArrayCustomer() {}
  1503. private string _CustomerName = "";
  1504. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"CustomerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1505. [global::System.ComponentModel.DefaultValue("")]
  1506. public string CustomerName
  1507. {
  1508. get { return _CustomerName; }
  1509. set { _CustomerName = value; }
  1510. }
  1511. private int _Type = int.MinValue;
  1512. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"Type", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1513. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1514. public int Type
  1515. {
  1516. get { return _Type; }
  1517. set { _Type = value; }
  1518. }
  1519. private int _Sex = int.MinValue;
  1520. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Sex", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1521. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1522. public int Sex
  1523. {
  1524. get { return _Sex; }
  1525. set { _Sex = value; }
  1526. }
  1527. private string _Country = "";
  1528. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Country", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1529. [global::System.ComponentModel.DefaultValue("")]
  1530. public string Country
  1531. {
  1532. get { return _Country; }
  1533. set { _Country = value; }
  1534. }
  1535. private string _Province = "";
  1536. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Province", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1537. [global::System.ComponentModel.DefaultValue("")]
  1538. public string Province
  1539. {
  1540. get { return _Province; }
  1541. set { _Province = value; }
  1542. }
  1543. private string _City = "";
  1544. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"City", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1545. [global::System.ComponentModel.DefaultValue("")]
  1546. public string City
  1547. {
  1548. get { return _City; }
  1549. set { _City = value; }
  1550. }
  1551. private int _CardType = int.MinValue;
  1552. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CardType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1553. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1554. public int CardType
  1555. {
  1556. get { return _CardType; }
  1557. set { _CardType = value; }
  1558. }
  1559. private string _CardNum = "";
  1560. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"CardNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1561. [global::System.ComponentModel.DefaultValue("")]
  1562. public string CardNum
  1563. {
  1564. get { return _CardNum; }
  1565. set { _CardNum = value; }
  1566. }
  1567. private string _IDAddress = "";
  1568. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"IDAddress", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1569. [global::System.ComponentModel.DefaultValue("")]
  1570. public string IDAddress
  1571. {
  1572. get { return _IDAddress; }
  1573. set { _IDAddress = value; }
  1574. }
  1575. private string _CurrentAddress = "";
  1576. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"CurrentAddress", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1577. [global::System.ComponentModel.DefaultValue("")]
  1578. public string CurrentAddress
  1579. {
  1580. get { return _CurrentAddress; }
  1581. set { _CurrentAddress = value; }
  1582. }
  1583. private string _PostalCode = "";
  1584. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"PostalCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1585. [global::System.ComponentModel.DefaultValue("")]
  1586. public string PostalCode
  1587. {
  1588. get { return _PostalCode; }
  1589. set { _PostalCode = value; }
  1590. }
  1591. private string _TelePhone = "";
  1592. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"TelePhone", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1593. [global::System.ComponentModel.DefaultValue("")]
  1594. public string TelePhone
  1595. {
  1596. get { return _TelePhone; }
  1597. set { _TelePhone = value; }
  1598. }
  1599. private string _OfficePhone = "";
  1600. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"OfficePhone", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1601. [global::System.ComponentModel.DefaultValue("")]
  1602. public string OfficePhone
  1603. {
  1604. get { return _OfficePhone; }
  1605. set { _OfficePhone = value; }
  1606. }
  1607. private string _MobilePhone = "";
  1608. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"MobilePhone", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1609. [global::System.ComponentModel.DefaultValue("")]
  1610. public string MobilePhone
  1611. {
  1612. get { return _MobilePhone; }
  1613. set { _MobilePhone = value; }
  1614. }
  1615. private string _Fax = "";
  1616. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"Fax", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1617. [global::System.ComponentModel.DefaultValue("")]
  1618. public string Fax
  1619. {
  1620. get { return _Fax; }
  1621. set { _Fax = value; }
  1622. }
  1623. private string _Email = "";
  1624. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"Email", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1625. [global::System.ComponentModel.DefaultValue("")]
  1626. public string Email
  1627. {
  1628. get { return _Email; }
  1629. set { _Email = value; }
  1630. }
  1631. private string _QQ = "";
  1632. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"QQ", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1633. [global::System.ComponentModel.DefaultValue("")]
  1634. public string QQ
  1635. {
  1636. get { return _QQ; }
  1637. set { _QQ = value; }
  1638. }
  1639. private string _WeChat = "";
  1640. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"WeChat", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1641. [global::System.ComponentModel.DefaultValue("")]
  1642. public string WeChat
  1643. {
  1644. get { return _WeChat; }
  1645. set { _WeChat = value; }
  1646. }
  1647. private string _WeBlog = "";
  1648. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"WeBlog", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1649. [global::System.ComponentModel.DefaultValue("")]
  1650. public string WeBlog
  1651. {
  1652. get { return _WeBlog; }
  1653. set { _WeBlog = value; }
  1654. }
  1655. private string _BankAccountNo = "";
  1656. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1657. [global::System.ComponentModel.DefaultValue("")]
  1658. public string BankAccountNo
  1659. {
  1660. get { return _BankAccountNo; }
  1661. set { _BankAccountNo = value; }
  1662. }
  1663. private string _BankAccountName = "";
  1664. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"BankAccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1665. [global::System.ComponentModel.DefaultValue("")]
  1666. public string BankAccountName
  1667. {
  1668. get { return _BankAccountName; }
  1669. set { _BankAccountName = value; }
  1670. }
  1671. private string _BankId = "";
  1672. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"BankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1673. [global::System.ComponentModel.DefaultValue("")]
  1674. public string BankId
  1675. {
  1676. get { return _BankId; }
  1677. set { _BankId = value; }
  1678. }
  1679. private string _DealTime = "";
  1680. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1681. [global::System.ComponentModel.DefaultValue("")]
  1682. public string DealTime
  1683. {
  1684. get { return _DealTime; }
  1685. set { _DealTime = value; }
  1686. }
  1687. private global::ProtoBuf.IExtension extensionObject;
  1688. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1689. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1690. }
  1691. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayFuturesAccount")]
  1692. public partial class ArrayFuturesAccount : global::ProtoBuf.IExtensible
  1693. {
  1694. public ArrayFuturesAccount() {}
  1695. private string _AccountCode = "";
  1696. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1697. [global::System.ComponentModel.DefaultValue("")]
  1698. public string AccountCode
  1699. {
  1700. get { return _AccountCode; }
  1701. set { _AccountCode = value; }
  1702. }
  1703. private string _TaAccountCode = "";
  1704. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"TaAccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1705. [global::System.ComponentModel.DefaultValue("")]
  1706. public string TaAccountCode
  1707. {
  1708. get { return _TaAccountCode; }
  1709. set { _TaAccountCode = value; }
  1710. }
  1711. private int _AccountType = int.MinValue;
  1712. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1713. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1714. public int AccountType
  1715. {
  1716. get { return _AccountType; }
  1717. set { _AccountType = value; }
  1718. }
  1719. private string _Name = "";
  1720. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Name", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1721. [global::System.ComponentModel.DefaultValue("")]
  1722. public string Name
  1723. {
  1724. get { return _Name; }
  1725. set { _Name = value; }
  1726. }
  1727. private int _AccountStatus = int.MinValue;
  1728. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountStatus", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1729. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1730. public int AccountStatus
  1731. {
  1732. get { return _AccountStatus; }
  1733. set { _AccountStatus = value; }
  1734. }
  1735. private string _Password = "";
  1736. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Password", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1737. [global::System.ComponentModel.DefaultValue("")]
  1738. public string Password
  1739. {
  1740. get { return _Password; }
  1741. set { _Password = value; }
  1742. }
  1743. private int _OpenFlag = int.MinValue;
  1744. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"OpenFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1745. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1746. public int OpenFlag
  1747. {
  1748. get { return _OpenFlag; }
  1749. set { _OpenFlag = value; }
  1750. }
  1751. private string _RegisterDate = "";
  1752. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"RegisterDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1753. [global::System.ComponentModel.DefaultValue("")]
  1754. public string RegisterDate
  1755. {
  1756. get { return _RegisterDate; }
  1757. set { _RegisterDate = value; }
  1758. }
  1759. private string _ValidDate = "";
  1760. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"ValidDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1761. [global::System.ComponentModel.DefaultValue("")]
  1762. public string ValidDate
  1763. {
  1764. get { return _ValidDate; }
  1765. set { _ValidDate = value; }
  1766. }
  1767. private string _DealTime = "";
  1768. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1769. [global::System.ComponentModel.DefaultValue("")]
  1770. public string DealTime
  1771. {
  1772. get { return _DealTime; }
  1773. set { _DealTime = value; }
  1774. }
  1775. private global::ProtoBuf.IExtension extensionObject;
  1776. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1777. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1778. }
  1779. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignCheckReq")]
  1780. public partial class BankSignCheckReq : global::ProtoBuf.IExtensible
  1781. {
  1782. public BankSignCheckReq() {}
  1783. private Bank.MessageHead _Header = null;
  1784. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1785. [global::System.ComponentModel.DefaultValue(null)]
  1786. public Bank.MessageHead Header
  1787. {
  1788. get { return _Header; }
  1789. set { _Header = value; }
  1790. }
  1791. private long _ExtOperatorID = int.MinValue;
  1792. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1793. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1794. public long ExtOperatorID
  1795. {
  1796. get { return _ExtOperatorID; }
  1797. set { _ExtOperatorID = value; }
  1798. }
  1799. private string _ExchTicket = "";
  1800. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1801. [global::System.ComponentModel.DefaultValue("")]
  1802. public string ExchTicket
  1803. {
  1804. get { return _ExchTicket; }
  1805. set { _ExchTicket = value; }
  1806. }
  1807. private string _AccountCode = "";
  1808. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1809. [global::System.ComponentModel.DefaultValue("")]
  1810. public string AccountCode
  1811. {
  1812. get { return _AccountCode; }
  1813. set { _AccountCode = value; }
  1814. }
  1815. private string _AppDateTime = "";
  1816. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1817. [global::System.ComponentModel.DefaultValue("")]
  1818. public string AppDateTime
  1819. {
  1820. get { return _AppDateTime; }
  1821. set { _AppDateTime = value; }
  1822. }
  1823. private string _OldTaPWD = "";
  1824. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1825. [global::System.ComponentModel.DefaultValue("")]
  1826. public string OldTaPWD
  1827. {
  1828. get { return _OldTaPWD; }
  1829. set { _OldTaPWD = value; }
  1830. }
  1831. private string _CusBankID = "";
  1832. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1833. [global::System.ComponentModel.DefaultValue("")]
  1834. public string CusBankID
  1835. {
  1836. get { return _CusBankID; }
  1837. set { _CusBankID = value; }
  1838. }
  1839. private global::ProtoBuf.IExtension extensionObject;
  1840. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1841. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1842. }
  1843. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignCheckRsp")]
  1844. public partial class BankSignCheckRsp : global::ProtoBuf.IExtensible
  1845. {
  1846. public BankSignCheckRsp() {}
  1847. private Bank.MessageHead _Header = null;
  1848. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1849. [global::System.ComponentModel.DefaultValue(null)]
  1850. public Bank.MessageHead Header
  1851. {
  1852. get { return _Header; }
  1853. set { _Header = value; }
  1854. }
  1855. private int _RetCode = int.MinValue;
  1856. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1857. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1858. public int RetCode
  1859. {
  1860. get { return _RetCode; }
  1861. set { _RetCode = value; }
  1862. }
  1863. private string _RetDesc = "";
  1864. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1865. [global::System.ComponentModel.DefaultValue("")]
  1866. public string RetDesc
  1867. {
  1868. get { return _RetDesc; }
  1869. set { _RetDesc = value; }
  1870. }
  1871. private long _ExtOperatorID = int.MinValue;
  1872. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1873. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1874. public long ExtOperatorID
  1875. {
  1876. get { return _ExtOperatorID; }
  1877. set { _ExtOperatorID = value; }
  1878. }
  1879. private string _ExchTicket = "";
  1880. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1881. [global::System.ComponentModel.DefaultValue("")]
  1882. public string ExchTicket
  1883. {
  1884. get { return _ExchTicket; }
  1885. set { _ExchTicket = value; }
  1886. }
  1887. private string _AccountCode = "";
  1888. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1889. [global::System.ComponentModel.DefaultValue("")]
  1890. public string AccountCode
  1891. {
  1892. get { return _AccountCode; }
  1893. set { _AccountCode = value; }
  1894. }
  1895. private Bank.ArrayCustomer _Customer = null;
  1896. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1897. [global::System.ComponentModel.DefaultValue(null)]
  1898. public Bank.ArrayCustomer Customer
  1899. {
  1900. get { return _Customer; }
  1901. set { _Customer = value; }
  1902. }
  1903. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  1904. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1905. [global::System.ComponentModel.DefaultValue(null)]
  1906. public Bank.ArrayFuturesAccount FuturesAccount
  1907. {
  1908. get { return _FuturesAccount; }
  1909. set { _FuturesAccount = value; }
  1910. }
  1911. private string _DealTime = "";
  1912. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1913. [global::System.ComponentModel.DefaultValue("")]
  1914. public string DealTime
  1915. {
  1916. get { return _DealTime; }
  1917. set { _DealTime = value; }
  1918. }
  1919. private global::ProtoBuf.IExtension extensionObject;
  1920. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1921. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1922. }
  1923. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignInformReq")]
  1924. public partial class BankSignInformReq : global::ProtoBuf.IExtensible
  1925. {
  1926. public BankSignInformReq() {}
  1927. private Bank.MessageHead _Header = null;
  1928. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1929. [global::System.ComponentModel.DefaultValue(null)]
  1930. public Bank.MessageHead Header
  1931. {
  1932. get { return _Header; }
  1933. set { _Header = value; }
  1934. }
  1935. private long _ExtOperatorID = int.MinValue;
  1936. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1937. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1938. public long ExtOperatorID
  1939. {
  1940. get { return _ExtOperatorID; }
  1941. set { _ExtOperatorID = value; }
  1942. }
  1943. private string _ExchTicket = "";
  1944. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1945. [global::System.ComponentModel.DefaultValue("")]
  1946. public string ExchTicket
  1947. {
  1948. get { return _ExchTicket; }
  1949. set { _ExchTicket = value; }
  1950. }
  1951. private string _AccountCode = "";
  1952. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1953. [global::System.ComponentModel.DefaultValue("")]
  1954. public string AccountCode
  1955. {
  1956. get { return _AccountCode; }
  1957. set { _AccountCode = value; }
  1958. }
  1959. private global::ProtoBuf.IExtension extensionObject;
  1960. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  1961. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  1962. }
  1963. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSignInformRsp")]
  1964. public partial class BankSignInformRsp : global::ProtoBuf.IExtensible
  1965. {
  1966. public BankSignInformRsp() {}
  1967. private Bank.MessageHead _Header = null;
  1968. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1969. [global::System.ComponentModel.DefaultValue(null)]
  1970. public Bank.MessageHead Header
  1971. {
  1972. get { return _Header; }
  1973. set { _Header = value; }
  1974. }
  1975. private int _RetCode = int.MinValue;
  1976. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1977. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1978. public int RetCode
  1979. {
  1980. get { return _RetCode; }
  1981. set { _RetCode = value; }
  1982. }
  1983. private string _RetDesc = "";
  1984. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  1985. [global::System.ComponentModel.DefaultValue("")]
  1986. public string RetDesc
  1987. {
  1988. get { return _RetDesc; }
  1989. set { _RetDesc = value; }
  1990. }
  1991. private long _ExtOperatorID = int.MinValue;
  1992. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  1993. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  1994. public long ExtOperatorID
  1995. {
  1996. get { return _ExtOperatorID; }
  1997. set { _ExtOperatorID = value; }
  1998. }
  1999. private string _ExchTicket = "";
  2000. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2001. [global::System.ComponentModel.DefaultValue("")]
  2002. public string ExchTicket
  2003. {
  2004. get { return _ExchTicket; }
  2005. set { _ExchTicket = value; }
  2006. }
  2007. private string _AccountCode = "";
  2008. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2009. [global::System.ComponentModel.DefaultValue("")]
  2010. public string AccountCode
  2011. {
  2012. get { return _AccountCode; }
  2013. set { _AccountCode = value; }
  2014. }
  2015. private string _DealTime = "";
  2016. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2017. [global::System.ComponentModel.DefaultValue("")]
  2018. public string DealTime
  2019. {
  2020. get { return _DealTime; }
  2021. set { _DealTime = value; }
  2022. }
  2023. private global::ProtoBuf.IExtension extensionObject;
  2024. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2025. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2026. }
  2027. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignCheckReq")]
  2028. public partial class BankCancelSignCheckReq : global::ProtoBuf.IExtensible
  2029. {
  2030. public BankCancelSignCheckReq() {}
  2031. private Bank.MessageHead _Header = null;
  2032. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2033. [global::System.ComponentModel.DefaultValue(null)]
  2034. public Bank.MessageHead Header
  2035. {
  2036. get { return _Header; }
  2037. set { _Header = value; }
  2038. }
  2039. private long _ExtOperatorID = int.MinValue;
  2040. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2041. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2042. public long ExtOperatorID
  2043. {
  2044. get { return _ExtOperatorID; }
  2045. set { _ExtOperatorID = value; }
  2046. }
  2047. private string _ExchTicket = "";
  2048. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2049. [global::System.ComponentModel.DefaultValue("")]
  2050. public string ExchTicket
  2051. {
  2052. get { return _ExchTicket; }
  2053. set { _ExchTicket = value; }
  2054. }
  2055. private string _AccountCode = "";
  2056. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2057. [global::System.ComponentModel.DefaultValue("")]
  2058. public string AccountCode
  2059. {
  2060. get { return _AccountCode; }
  2061. set { _AccountCode = value; }
  2062. }
  2063. private string _AppDateTime = "";
  2064. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2065. [global::System.ComponentModel.DefaultValue("")]
  2066. public string AppDateTime
  2067. {
  2068. get { return _AppDateTime; }
  2069. set { _AppDateTime = value; }
  2070. }
  2071. private string _OldTaPWD = "";
  2072. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2073. [global::System.ComponentModel.DefaultValue("")]
  2074. public string OldTaPWD
  2075. {
  2076. get { return _OldTaPWD; }
  2077. set { _OldTaPWD = value; }
  2078. }
  2079. private int _CheckCleanFlag = int.MinValue;
  2080. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CheckCleanFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2081. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2082. public int CheckCleanFlag
  2083. {
  2084. get { return _CheckCleanFlag; }
  2085. set { _CheckCleanFlag = value; }
  2086. }
  2087. private string _CusBankID = "";
  2088. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2089. [global::System.ComponentModel.DefaultValue("")]
  2090. public string CusBankID
  2091. {
  2092. get { return _CusBankID; }
  2093. set { _CusBankID = value; }
  2094. }
  2095. private global::ProtoBuf.IExtension extensionObject;
  2096. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2097. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2098. }
  2099. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignCheckRsp")]
  2100. public partial class BankCancelSignCheckRsp : global::ProtoBuf.IExtensible
  2101. {
  2102. public BankCancelSignCheckRsp() {}
  2103. private Bank.MessageHead _Header = null;
  2104. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2105. [global::System.ComponentModel.DefaultValue(null)]
  2106. public Bank.MessageHead Header
  2107. {
  2108. get { return _Header; }
  2109. set { _Header = value; }
  2110. }
  2111. private int _RetCode = int.MinValue;
  2112. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2113. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2114. public int RetCode
  2115. {
  2116. get { return _RetCode; }
  2117. set { _RetCode = value; }
  2118. }
  2119. private string _RetDesc = "";
  2120. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2121. [global::System.ComponentModel.DefaultValue("")]
  2122. public string RetDesc
  2123. {
  2124. get { return _RetDesc; }
  2125. set { _RetDesc = value; }
  2126. }
  2127. private long _ExtOperatorID = int.MinValue;
  2128. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2129. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2130. public long ExtOperatorID
  2131. {
  2132. get { return _ExtOperatorID; }
  2133. set { _ExtOperatorID = value; }
  2134. }
  2135. private string _ExchTicket = "";
  2136. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2137. [global::System.ComponentModel.DefaultValue("")]
  2138. public string ExchTicket
  2139. {
  2140. get { return _ExchTicket; }
  2141. set { _ExchTicket = value; }
  2142. }
  2143. private string _AccountCode = "";
  2144. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2145. [global::System.ComponentModel.DefaultValue("")]
  2146. public string AccountCode
  2147. {
  2148. get { return _AccountCode; }
  2149. set { _AccountCode = value; }
  2150. }
  2151. private Bank.ArrayCustomer _Customer = null;
  2152. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2153. [global::System.ComponentModel.DefaultValue(null)]
  2154. public Bank.ArrayCustomer Customer
  2155. {
  2156. get { return _Customer; }
  2157. set { _Customer = value; }
  2158. }
  2159. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  2160. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2161. [global::System.ComponentModel.DefaultValue(null)]
  2162. public Bank.ArrayFuturesAccount FuturesAccount
  2163. {
  2164. get { return _FuturesAccount; }
  2165. set { _FuturesAccount = value; }
  2166. }
  2167. private string _DealTime = "";
  2168. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2169. [global::System.ComponentModel.DefaultValue("")]
  2170. public string DealTime
  2171. {
  2172. get { return _DealTime; }
  2173. set { _DealTime = value; }
  2174. }
  2175. private global::ProtoBuf.IExtension extensionObject;
  2176. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2177. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2178. }
  2179. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignInformReq")]
  2180. public partial class BankCancelSignInformReq : global::ProtoBuf.IExtensible
  2181. {
  2182. public BankCancelSignInformReq() {}
  2183. private Bank.MessageHead _Header = null;
  2184. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2185. [global::System.ComponentModel.DefaultValue(null)]
  2186. public Bank.MessageHead Header
  2187. {
  2188. get { return _Header; }
  2189. set { _Header = value; }
  2190. }
  2191. private long _ExtOperatorID = int.MinValue;
  2192. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2193. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2194. public long ExtOperatorID
  2195. {
  2196. get { return _ExtOperatorID; }
  2197. set { _ExtOperatorID = value; }
  2198. }
  2199. private string _ExchTicket = "";
  2200. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2201. [global::System.ComponentModel.DefaultValue("")]
  2202. public string ExchTicket
  2203. {
  2204. get { return _ExchTicket; }
  2205. set { _ExchTicket = value; }
  2206. }
  2207. private string _AccountCode = "";
  2208. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2209. [global::System.ComponentModel.DefaultValue("")]
  2210. public string AccountCode
  2211. {
  2212. get { return _AccountCode; }
  2213. set { _AccountCode = value; }
  2214. }
  2215. private global::ProtoBuf.IExtension extensionObject;
  2216. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2217. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2218. }
  2219. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCancelSignInformRsp")]
  2220. public partial class BankCancelSignInformRsp : global::ProtoBuf.IExtensible
  2221. {
  2222. public BankCancelSignInformRsp() {}
  2223. private Bank.MessageHead _Header = null;
  2224. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2225. [global::System.ComponentModel.DefaultValue(null)]
  2226. public Bank.MessageHead Header
  2227. {
  2228. get { return _Header; }
  2229. set { _Header = value; }
  2230. }
  2231. private int _RetCode = int.MinValue;
  2232. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2233. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2234. public int RetCode
  2235. {
  2236. get { return _RetCode; }
  2237. set { _RetCode = value; }
  2238. }
  2239. private string _RetDesc = "";
  2240. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2241. [global::System.ComponentModel.DefaultValue("")]
  2242. public string RetDesc
  2243. {
  2244. get { return _RetDesc; }
  2245. set { _RetDesc = value; }
  2246. }
  2247. private long _ExtOperatorID = int.MinValue;
  2248. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2249. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2250. public long ExtOperatorID
  2251. {
  2252. get { return _ExtOperatorID; }
  2253. set { _ExtOperatorID = value; }
  2254. }
  2255. private string _ExchTicket = "";
  2256. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2257. [global::System.ComponentModel.DefaultValue("")]
  2258. public string ExchTicket
  2259. {
  2260. get { return _ExchTicket; }
  2261. set { _ExchTicket = value; }
  2262. }
  2263. private string _AccountCode = "";
  2264. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2265. [global::System.ComponentModel.DefaultValue("")]
  2266. public string AccountCode
  2267. {
  2268. get { return _AccountCode; }
  2269. set { _AccountCode = value; }
  2270. }
  2271. private string _DealTime = "";
  2272. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2273. [global::System.ComponentModel.DefaultValue("")]
  2274. public string DealTime
  2275. {
  2276. get { return _DealTime; }
  2277. set { _DealTime = value; }
  2278. }
  2279. private global::ProtoBuf.IExtension extensionObject;
  2280. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2281. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2282. }
  2283. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositAmountReq")]
  2284. public partial class BankDepositAmountReq : global::ProtoBuf.IExtensible
  2285. {
  2286. public BankDepositAmountReq() {}
  2287. private Bank.MessageHead _Header = null;
  2288. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2289. [global::System.ComponentModel.DefaultValue(null)]
  2290. public Bank.MessageHead Header
  2291. {
  2292. get { return _Header; }
  2293. set { _Header = value; }
  2294. }
  2295. private long _ExtOperatorID = int.MinValue;
  2296. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2297. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2298. public long ExtOperatorID
  2299. {
  2300. get { return _ExtOperatorID; }
  2301. set { _ExtOperatorID = value; }
  2302. }
  2303. private string _ExchTicket = "";
  2304. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2305. [global::System.ComponentModel.DefaultValue("")]
  2306. public string ExchTicket
  2307. {
  2308. get { return _ExchTicket; }
  2309. set { _ExchTicket = value; }
  2310. }
  2311. private string _AccountCode = "";
  2312. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2313. [global::System.ComponentModel.DefaultValue("")]
  2314. public string AccountCode
  2315. {
  2316. get { return _AccountCode; }
  2317. set { _AccountCode = value; }
  2318. }
  2319. private double _Amount = int.MinValue;
  2320. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2321. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2322. public double Amount
  2323. {
  2324. get { return _Amount; }
  2325. set { _Amount = value; }
  2326. }
  2327. private string _AppDateTime = "";
  2328. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2329. [global::System.ComponentModel.DefaultValue("")]
  2330. public string AppDateTime
  2331. {
  2332. get { return _AppDateTime; }
  2333. set { _AppDateTime = value; }
  2334. }
  2335. private string _Currency = "";
  2336. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2337. [global::System.ComponentModel.DefaultValue("")]
  2338. public string Currency
  2339. {
  2340. get { return _Currency; }
  2341. set { _Currency = value; }
  2342. }
  2343. private string _DateTime = "";
  2344. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2345. [global::System.ComponentModel.DefaultValue("")]
  2346. public string DateTime
  2347. {
  2348. get { return _DateTime; }
  2349. set { _DateTime = value; }
  2350. }
  2351. private global::ProtoBuf.IExtension extensionObject;
  2352. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2353. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2354. }
  2355. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositAmountRsp")]
  2356. public partial class BankDepositAmountRsp : global::ProtoBuf.IExtensible
  2357. {
  2358. public BankDepositAmountRsp() {}
  2359. private Bank.MessageHead _Header = null;
  2360. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2361. [global::System.ComponentModel.DefaultValue(null)]
  2362. public Bank.MessageHead Header
  2363. {
  2364. get { return _Header; }
  2365. set { _Header = value; }
  2366. }
  2367. private int _RetCode = int.MinValue;
  2368. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2369. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2370. public int RetCode
  2371. {
  2372. get { return _RetCode; }
  2373. set { _RetCode = value; }
  2374. }
  2375. private string _RetDesc = "";
  2376. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2377. [global::System.ComponentModel.DefaultValue("")]
  2378. public string RetDesc
  2379. {
  2380. get { return _RetDesc; }
  2381. set { _RetDesc = value; }
  2382. }
  2383. private long _ExtOperatorID = int.MinValue;
  2384. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2385. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2386. public long ExtOperatorID
  2387. {
  2388. get { return _ExtOperatorID; }
  2389. set { _ExtOperatorID = value; }
  2390. }
  2391. private string _AccountCode = "";
  2392. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2393. [global::System.ComponentModel.DefaultValue("")]
  2394. public string AccountCode
  2395. {
  2396. get { return _AccountCode; }
  2397. set { _AccountCode = value; }
  2398. }
  2399. private string _ExchTicket = "";
  2400. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2401. [global::System.ComponentModel.DefaultValue("")]
  2402. public string ExchTicket
  2403. {
  2404. get { return _ExchTicket; }
  2405. set { _ExchTicket = value; }
  2406. }
  2407. private string _DealTime = "";
  2408. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2409. [global::System.ComponentModel.DefaultValue("")]
  2410. public string DealTime
  2411. {
  2412. get { return _DealTime; }
  2413. set { _DealTime = value; }
  2414. }
  2415. private global::ProtoBuf.IExtension extensionObject;
  2416. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2417. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2418. }
  2419. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositCheckReq")]
  2420. public partial class BankDepositCheckReq : global::ProtoBuf.IExtensible
  2421. {
  2422. public BankDepositCheckReq() {}
  2423. private Bank.MessageHead _Header = null;
  2424. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2425. [global::System.ComponentModel.DefaultValue(null)]
  2426. public Bank.MessageHead Header
  2427. {
  2428. get { return _Header; }
  2429. set { _Header = value; }
  2430. }
  2431. private long _ExtOperatorID = int.MinValue;
  2432. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2433. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2434. public long ExtOperatorID
  2435. {
  2436. get { return _ExtOperatorID; }
  2437. set { _ExtOperatorID = value; }
  2438. }
  2439. private string _ExchTicket = "";
  2440. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2441. [global::System.ComponentModel.DefaultValue("")]
  2442. public string ExchTicket
  2443. {
  2444. get { return _ExchTicket; }
  2445. set { _ExchTicket = value; }
  2446. }
  2447. private string _AccountCode = "";
  2448. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2449. [global::System.ComponentModel.DefaultValue("")]
  2450. public string AccountCode
  2451. {
  2452. get { return _AccountCode; }
  2453. set { _AccountCode = value; }
  2454. }
  2455. private double _Amount = int.MinValue;
  2456. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2457. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2458. public double Amount
  2459. {
  2460. get { return _Amount; }
  2461. set { _Amount = value; }
  2462. }
  2463. private string _AppDateTime = "";
  2464. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2465. [global::System.ComponentModel.DefaultValue("")]
  2466. public string AppDateTime
  2467. {
  2468. get { return _AppDateTime; }
  2469. set { _AppDateTime = value; }
  2470. }
  2471. private string _Currency = "";
  2472. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2473. [global::System.ComponentModel.DefaultValue("")]
  2474. public string Currency
  2475. {
  2476. get { return _Currency; }
  2477. set { _Currency = value; }
  2478. }
  2479. private string _DateTime = "";
  2480. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2481. [global::System.ComponentModel.DefaultValue("")]
  2482. public string DateTime
  2483. {
  2484. get { return _DateTime; }
  2485. set { _DateTime = value; }
  2486. }
  2487. private string _OldTaPWD = "";
  2488. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2489. [global::System.ComponentModel.DefaultValue("")]
  2490. public string OldTaPWD
  2491. {
  2492. get { return _OldTaPWD; }
  2493. set { _OldTaPWD = value; }
  2494. }
  2495. private string _CusBankID = "";
  2496. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2497. [global::System.ComponentModel.DefaultValue("")]
  2498. public string CusBankID
  2499. {
  2500. get { return _CusBankID; }
  2501. set { _CusBankID = value; }
  2502. }
  2503. private global::ProtoBuf.IExtension extensionObject;
  2504. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2505. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2506. }
  2507. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankDepositCheckRsp")]
  2508. public partial class BankDepositCheckRsp : global::ProtoBuf.IExtensible
  2509. {
  2510. public BankDepositCheckRsp() {}
  2511. private Bank.MessageHead _Header = null;
  2512. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2513. [global::System.ComponentModel.DefaultValue(null)]
  2514. public Bank.MessageHead Header
  2515. {
  2516. get { return _Header; }
  2517. set { _Header = value; }
  2518. }
  2519. private int _RetCode = int.MinValue;
  2520. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2521. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2522. public int RetCode
  2523. {
  2524. get { return _RetCode; }
  2525. set { _RetCode = value; }
  2526. }
  2527. private string _RetDesc = "";
  2528. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2529. [global::System.ComponentModel.DefaultValue("")]
  2530. public string RetDesc
  2531. {
  2532. get { return _RetDesc; }
  2533. set { _RetDesc = value; }
  2534. }
  2535. private long _ExtOperatorID = int.MinValue;
  2536. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2537. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2538. public long ExtOperatorID
  2539. {
  2540. get { return _ExtOperatorID; }
  2541. set { _ExtOperatorID = value; }
  2542. }
  2543. private string _AccountCode = "";
  2544. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2545. [global::System.ComponentModel.DefaultValue("")]
  2546. public string AccountCode
  2547. {
  2548. get { return _AccountCode; }
  2549. set { _AccountCode = value; }
  2550. }
  2551. private string _ExchTicket = "";
  2552. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2553. [global::System.ComponentModel.DefaultValue("")]
  2554. public string ExchTicket
  2555. {
  2556. get { return _ExchTicket; }
  2557. set { _ExchTicket = value; }
  2558. }
  2559. private Bank.ArrayCustomer _Customer = null;
  2560. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2561. [global::System.ComponentModel.DefaultValue(null)]
  2562. public Bank.ArrayCustomer Customer
  2563. {
  2564. get { return _Customer; }
  2565. set { _Customer = value; }
  2566. }
  2567. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  2568. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2569. [global::System.ComponentModel.DefaultValue(null)]
  2570. public Bank.ArrayFuturesAccount FuturesAccount
  2571. {
  2572. get { return _FuturesAccount; }
  2573. set { _FuturesAccount = value; }
  2574. }
  2575. private string _DealTime = "";
  2576. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2577. [global::System.ComponentModel.DefaultValue("")]
  2578. public string DealTime
  2579. {
  2580. get { return _DealTime; }
  2581. set { _DealTime = value; }
  2582. }
  2583. private global::ProtoBuf.IExtension extensionObject;
  2584. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2585. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2586. }
  2587. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawFrozenReq")]
  2588. public partial class BankWithDrawFrozenReq : global::ProtoBuf.IExtensible
  2589. {
  2590. public BankWithDrawFrozenReq() {}
  2591. private Bank.MessageHead _Header = null;
  2592. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2593. [global::System.ComponentModel.DefaultValue(null)]
  2594. public Bank.MessageHead Header
  2595. {
  2596. get { return _Header; }
  2597. set { _Header = value; }
  2598. }
  2599. private long _ExtOperatorID = int.MinValue;
  2600. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2601. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2602. public long ExtOperatorID
  2603. {
  2604. get { return _ExtOperatorID; }
  2605. set { _ExtOperatorID = value; }
  2606. }
  2607. private string _AccountCode = "";
  2608. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2609. [global::System.ComponentModel.DefaultValue("")]
  2610. public string AccountCode
  2611. {
  2612. get { return _AccountCode; }
  2613. set { _AccountCode = value; }
  2614. }
  2615. private double _Amount = int.MinValue;
  2616. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2617. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2618. public double Amount
  2619. {
  2620. get { return _Amount; }
  2621. set { _Amount = value; }
  2622. }
  2623. private string _AppDateTime = "";
  2624. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2625. [global::System.ComponentModel.DefaultValue("")]
  2626. public string AppDateTime
  2627. {
  2628. get { return _AppDateTime; }
  2629. set { _AppDateTime = value; }
  2630. }
  2631. private string _BankAccountNo = "";
  2632. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2633. [global::System.ComponentModel.DefaultValue("")]
  2634. public string BankAccountNo
  2635. {
  2636. get { return _BankAccountNo; }
  2637. set { _BankAccountNo = value; }
  2638. }
  2639. private string _Currency = "";
  2640. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2641. [global::System.ComponentModel.DefaultValue("")]
  2642. public string Currency
  2643. {
  2644. get { return _Currency; }
  2645. set { _Currency = value; }
  2646. }
  2647. private string _ExchTicket = "";
  2648. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2649. [global::System.ComponentModel.DefaultValue("")]
  2650. public string ExchTicket
  2651. {
  2652. get { return _ExchTicket; }
  2653. set { _ExchTicket = value; }
  2654. }
  2655. private string _OldTaPWD = "";
  2656. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2657. [global::System.ComponentModel.DefaultValue("")]
  2658. public string OldTaPWD
  2659. {
  2660. get { return _OldTaPWD; }
  2661. set { _OldTaPWD = value; }
  2662. }
  2663. private string _CusBankID = "";
  2664. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2665. [global::System.ComponentModel.DefaultValue("")]
  2666. public string CusBankID
  2667. {
  2668. get { return _CusBankID; }
  2669. set { _CusBankID = value; }
  2670. }
  2671. private global::ProtoBuf.IExtension extensionObject;
  2672. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2673. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2674. }
  2675. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawFrozenRsp")]
  2676. public partial class BankWithDrawFrozenRsp : global::ProtoBuf.IExtensible
  2677. {
  2678. public BankWithDrawFrozenRsp() {}
  2679. private Bank.MessageHead _Header = null;
  2680. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2681. [global::System.ComponentModel.DefaultValue(null)]
  2682. public Bank.MessageHead Header
  2683. {
  2684. get { return _Header; }
  2685. set { _Header = value; }
  2686. }
  2687. private int _RetCode = int.MinValue;
  2688. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2689. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2690. public int RetCode
  2691. {
  2692. get { return _RetCode; }
  2693. set { _RetCode = value; }
  2694. }
  2695. private string _RetDesc = "";
  2696. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2697. [global::System.ComponentModel.DefaultValue("")]
  2698. public string RetDesc
  2699. {
  2700. get { return _RetDesc; }
  2701. set { _RetDesc = value; }
  2702. }
  2703. private long _ExtOperatorID = int.MinValue;
  2704. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2705. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2706. public long ExtOperatorID
  2707. {
  2708. get { return _ExtOperatorID; }
  2709. set { _ExtOperatorID = value; }
  2710. }
  2711. private string _AccountCode = "";
  2712. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2713. [global::System.ComponentModel.DefaultValue("")]
  2714. public string AccountCode
  2715. {
  2716. get { return _AccountCode; }
  2717. set { _AccountCode = value; }
  2718. }
  2719. private string _ExchTicket = "";
  2720. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2721. [global::System.ComponentModel.DefaultValue("")]
  2722. public string ExchTicket
  2723. {
  2724. get { return _ExchTicket; }
  2725. set { _ExchTicket = value; }
  2726. }
  2727. private Bank.ArrayCustomer _Customer = null;
  2728. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2729. [global::System.ComponentModel.DefaultValue(null)]
  2730. public Bank.ArrayCustomer Customer
  2731. {
  2732. get { return _Customer; }
  2733. set { _Customer = value; }
  2734. }
  2735. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  2736. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2737. [global::System.ComponentModel.DefaultValue(null)]
  2738. public Bank.ArrayFuturesAccount FuturesAccount
  2739. {
  2740. get { return _FuturesAccount; }
  2741. set { _FuturesAccount = value; }
  2742. }
  2743. private string _DealTime = "";
  2744. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2745. [global::System.ComponentModel.DefaultValue("")]
  2746. public string DealTime
  2747. {
  2748. get { return _DealTime; }
  2749. set { _DealTime = value; }
  2750. }
  2751. private global::ProtoBuf.IExtension extensionObject;
  2752. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2753. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2754. }
  2755. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawDefrostReq")]
  2756. public partial class BankWithDrawDefrostReq : global::ProtoBuf.IExtensible
  2757. {
  2758. public BankWithDrawDefrostReq() {}
  2759. private Bank.MessageHead _Header = null;
  2760. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2761. [global::System.ComponentModel.DefaultValue(null)]
  2762. public Bank.MessageHead Header
  2763. {
  2764. get { return _Header; }
  2765. set { _Header = value; }
  2766. }
  2767. private long _ExtOperatorID = int.MinValue;
  2768. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2769. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2770. public long ExtOperatorID
  2771. {
  2772. get { return _ExtOperatorID; }
  2773. set { _ExtOperatorID = value; }
  2774. }
  2775. private string _ExchTicket = "";
  2776. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2777. [global::System.ComponentModel.DefaultValue("")]
  2778. public string ExchTicket
  2779. {
  2780. get { return _ExchTicket; }
  2781. set { _ExchTicket = value; }
  2782. }
  2783. private string _AccountCode = "";
  2784. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2785. [global::System.ComponentModel.DefaultValue("")]
  2786. public string AccountCode
  2787. {
  2788. get { return _AccountCode; }
  2789. set { _AccountCode = value; }
  2790. }
  2791. private global::ProtoBuf.IExtension extensionObject;
  2792. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2793. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2794. }
  2795. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawDefrostRsp")]
  2796. public partial class BankWithDrawDefrostRsp : global::ProtoBuf.IExtensible
  2797. {
  2798. public BankWithDrawDefrostRsp() {}
  2799. private Bank.MessageHead _Header = null;
  2800. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2801. [global::System.ComponentModel.DefaultValue(null)]
  2802. public Bank.MessageHead Header
  2803. {
  2804. get { return _Header; }
  2805. set { _Header = value; }
  2806. }
  2807. private int _RetCode = int.MinValue;
  2808. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2809. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2810. public int RetCode
  2811. {
  2812. get { return _RetCode; }
  2813. set { _RetCode = value; }
  2814. }
  2815. private string _RetDesc = "";
  2816. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2817. [global::System.ComponentModel.DefaultValue("")]
  2818. public string RetDesc
  2819. {
  2820. get { return _RetDesc; }
  2821. set { _RetDesc = value; }
  2822. }
  2823. private long _ExtOperatorID = int.MinValue;
  2824. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2825. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2826. public long ExtOperatorID
  2827. {
  2828. get { return _ExtOperatorID; }
  2829. set { _ExtOperatorID = value; }
  2830. }
  2831. private string _ExchTicket = "";
  2832. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2833. [global::System.ComponentModel.DefaultValue("")]
  2834. public string ExchTicket
  2835. {
  2836. get { return _ExchTicket; }
  2837. set { _ExchTicket = value; }
  2838. }
  2839. private string _AccountCode = "";
  2840. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2841. [global::System.ComponentModel.DefaultValue("")]
  2842. public string AccountCode
  2843. {
  2844. get { return _AccountCode; }
  2845. set { _AccountCode = value; }
  2846. }
  2847. private string _DealTime = "";
  2848. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2849. [global::System.ComponentModel.DefaultValue("")]
  2850. public string DealTime
  2851. {
  2852. get { return _DealTime; }
  2853. set { _DealTime = value; }
  2854. }
  2855. private global::ProtoBuf.IExtension extensionObject;
  2856. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2857. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2858. }
  2859. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawDeductReq")]
  2860. public partial class BankWithDrawDeductReq : global::ProtoBuf.IExtensible
  2861. {
  2862. public BankWithDrawDeductReq() {}
  2863. private Bank.MessageHead _Header = null;
  2864. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2865. [global::System.ComponentModel.DefaultValue(null)]
  2866. public Bank.MessageHead Header
  2867. {
  2868. get { return _Header; }
  2869. set { _Header = value; }
  2870. }
  2871. private long _ExtOperatorID = int.MinValue;
  2872. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2873. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2874. public long ExtOperatorID
  2875. {
  2876. get { return _ExtOperatorID; }
  2877. set { _ExtOperatorID = value; }
  2878. }
  2879. private string _AccountCode = "";
  2880. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2881. [global::System.ComponentModel.DefaultValue("")]
  2882. public string AccountCode
  2883. {
  2884. get { return _AccountCode; }
  2885. set { _AccountCode = value; }
  2886. }
  2887. private double _Amount = int.MinValue;
  2888. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2889. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2890. public double Amount
  2891. {
  2892. get { return _Amount; }
  2893. set { _Amount = value; }
  2894. }
  2895. private string _Currency = "";
  2896. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2897. [global::System.ComponentModel.DefaultValue("")]
  2898. public string Currency
  2899. {
  2900. get { return _Currency; }
  2901. set { _Currency = value; }
  2902. }
  2903. private string _ExchTicket = "";
  2904. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2905. [global::System.ComponentModel.DefaultValue("")]
  2906. public string ExchTicket
  2907. {
  2908. get { return _ExchTicket; }
  2909. set { _ExchTicket = value; }
  2910. }
  2911. private string _DateTime = "";
  2912. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2913. [global::System.ComponentModel.DefaultValue("")]
  2914. public string DateTime
  2915. {
  2916. get { return _DateTime; }
  2917. set { _DateTime = value; }
  2918. }
  2919. private global::ProtoBuf.IExtension extensionObject;
  2920. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2921. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2922. }
  2923. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawDeductRsp")]
  2924. public partial class BankWithDrawDeductRsp : global::ProtoBuf.IExtensible
  2925. {
  2926. public BankWithDrawDeductRsp() {}
  2927. private Bank.MessageHead _Header = null;
  2928. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2929. [global::System.ComponentModel.DefaultValue(null)]
  2930. public Bank.MessageHead Header
  2931. {
  2932. get { return _Header; }
  2933. set { _Header = value; }
  2934. }
  2935. private int _RetCode = int.MinValue;
  2936. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2937. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2938. public int RetCode
  2939. {
  2940. get { return _RetCode; }
  2941. set { _RetCode = value; }
  2942. }
  2943. private string _RetDesc = "";
  2944. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2945. [global::System.ComponentModel.DefaultValue("")]
  2946. public string RetDesc
  2947. {
  2948. get { return _RetDesc; }
  2949. set { _RetDesc = value; }
  2950. }
  2951. private long _ExtOperatorID = int.MinValue;
  2952. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  2953. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  2954. public long ExtOperatorID
  2955. {
  2956. get { return _ExtOperatorID; }
  2957. set { _ExtOperatorID = value; }
  2958. }
  2959. private string _AccountCode = "";
  2960. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2961. [global::System.ComponentModel.DefaultValue("")]
  2962. public string AccountCode
  2963. {
  2964. get { return _AccountCode; }
  2965. set { _AccountCode = value; }
  2966. }
  2967. private string _ExchTicket = "";
  2968. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2969. [global::System.ComponentModel.DefaultValue("")]
  2970. public string ExchTicket
  2971. {
  2972. get { return _ExchTicket; }
  2973. set { _ExchTicket = value; }
  2974. }
  2975. private string _DealTime = "";
  2976. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2977. [global::System.ComponentModel.DefaultValue("")]
  2978. public string DealTime
  2979. {
  2980. get { return _DealTime; }
  2981. set { _DealTime = value; }
  2982. }
  2983. private global::ProtoBuf.IExtension extensionObject;
  2984. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  2985. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  2986. }
  2987. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayBankClearList")]
  2988. public partial class ArrayBankClearList : global::ProtoBuf.IExtensible
  2989. {
  2990. public ArrayBankClearList() {}
  2991. private string _AccountCode = "";
  2992. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  2993. [global::System.ComponentModel.DefaultValue("")]
  2994. public string AccountCode
  2995. {
  2996. get { return _AccountCode; }
  2997. set { _AccountCode = value; }
  2998. }
  2999. private string _Currency = "";
  3000. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3001. [global::System.ComponentModel.DefaultValue("")]
  3002. public string Currency
  3003. {
  3004. get { return _Currency; }
  3005. set { _Currency = value; }
  3006. }
  3007. private int _AccountType = int.MinValue;
  3008. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3009. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3010. public int AccountType
  3011. {
  3012. get { return _AccountType; }
  3013. set { _AccountType = value; }
  3014. }
  3015. private string _BelongAccountCode = "";
  3016. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"BelongAccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3017. [global::System.ComponentModel.DefaultValue("")]
  3018. public string BelongAccountCode
  3019. {
  3020. get { return _BelongAccountCode; }
  3021. set { _BelongAccountCode = value; }
  3022. }
  3023. private int _BelongAccountType = int.MinValue;
  3024. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"BelongAccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3025. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3026. public int BelongAccountType
  3027. {
  3028. get { return _BelongAccountType; }
  3029. set { _BelongAccountType = value; }
  3030. }
  3031. private int _MoneyType = int.MinValue;
  3032. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"MoneyType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3033. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3034. public int MoneyType
  3035. {
  3036. get { return _MoneyType; }
  3037. set { _MoneyType = value; }
  3038. }
  3039. private double _Amount = int.MinValue;
  3040. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3041. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3042. public double Amount
  3043. {
  3044. get { return _Amount; }
  3045. set { _Amount = value; }
  3046. }
  3047. private string _DealTime = "";
  3048. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3049. [global::System.ComponentModel.DefaultValue("")]
  3050. public string DealTime
  3051. {
  3052. get { return _DealTime; }
  3053. set { _DealTime = value; }
  3054. }
  3055. private global::ProtoBuf.IExtension extensionObject;
  3056. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3057. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3058. }
  3059. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayBankClearFailList")]
  3060. public partial class ArrayBankClearFailList : global::ProtoBuf.IExtensible
  3061. {
  3062. public ArrayBankClearFailList() {}
  3063. private string _AccountCode = "";
  3064. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3065. [global::System.ComponentModel.DefaultValue("")]
  3066. public string AccountCode
  3067. {
  3068. get { return _AccountCode; }
  3069. set { _AccountCode = value; }
  3070. }
  3071. private string _Currency = "";
  3072. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3073. [global::System.ComponentModel.DefaultValue("")]
  3074. public string Currency
  3075. {
  3076. get { return _Currency; }
  3077. set { _Currency = value; }
  3078. }
  3079. private double _Balance = int.MinValue;
  3080. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Balance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3081. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3082. public double Balance
  3083. {
  3084. get { return _Balance; }
  3085. set { _Balance = value; }
  3086. }
  3087. private double _CurrentBalance = int.MinValue;
  3088. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CurrentBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3089. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3090. public double CurrentBalance
  3091. {
  3092. get { return _CurrentBalance; }
  3093. set { _CurrentBalance = value; }
  3094. }
  3095. private double _AmountIn = int.MinValue;
  3096. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AmountIn", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3097. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3098. public double AmountIn
  3099. {
  3100. get { return _AmountIn; }
  3101. set { _AmountIn = value; }
  3102. }
  3103. private double _AmountOut = int.MinValue;
  3104. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AmountOut", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3105. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3106. public double AmountOut
  3107. {
  3108. get { return _AmountOut; }
  3109. set { _AmountOut = value; }
  3110. }
  3111. private double _PlatfromAmountIn = int.MinValue;
  3112. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"PlatfromAmountIn", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3113. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3114. public double PlatfromAmountIn
  3115. {
  3116. get { return _PlatfromAmountIn; }
  3117. set { _PlatfromAmountIn = value; }
  3118. }
  3119. private double _PlatfromAmountOut = int.MinValue;
  3120. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"PlatfromAmountOut", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3121. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3122. public double PlatfromAmountOut
  3123. {
  3124. get { return _PlatfromAmountOut; }
  3125. set { _PlatfromAmountOut = value; }
  3126. }
  3127. private double _PlatfromBalance = int.MinValue;
  3128. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"PlatfromBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3129. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3130. public double PlatfromBalance
  3131. {
  3132. get { return _PlatfromBalance; }
  3133. set { _PlatfromBalance = value; }
  3134. }
  3135. private double _PlatfromCurrentBalance = int.MinValue;
  3136. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"PlatfromCurrentBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3137. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3138. public double PlatfromCurrentBalance
  3139. {
  3140. get { return _PlatfromCurrentBalance; }
  3141. set { _PlatfromCurrentBalance = value; }
  3142. }
  3143. private double _ErrType = int.MinValue;
  3144. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"ErrType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3145. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3146. public double ErrType
  3147. {
  3148. get { return _ErrType; }
  3149. set { _ErrType = value; }
  3150. }
  3151. private string _DealTime = "";
  3152. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3153. [global::System.ComponentModel.DefaultValue("")]
  3154. public string DealTime
  3155. {
  3156. get { return _DealTime; }
  3157. set { _DealTime = value; }
  3158. }
  3159. private global::ProtoBuf.IExtension extensionObject;
  3160. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3161. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3162. }
  3163. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankClearReq")]
  3164. public partial class BankClearReq : global::ProtoBuf.IExtensible
  3165. {
  3166. public BankClearReq() {}
  3167. private Bank.MessageHead _Header = null;
  3168. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3169. [global::System.ComponentModel.DefaultValue(null)]
  3170. public Bank.MessageHead Header
  3171. {
  3172. get { return _Header; }
  3173. set { _Header = value; }
  3174. }
  3175. private string _ExchTicket = "";
  3176. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3177. [global::System.ComponentModel.DefaultValue("")]
  3178. public string ExchTicket
  3179. {
  3180. get { return _ExchTicket; }
  3181. set { _ExchTicket = value; }
  3182. }
  3183. private string _ClearDate = "";
  3184. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ClearDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3185. [global::System.ComponentModel.DefaultValue("")]
  3186. public string ClearDate
  3187. {
  3188. get { return _ClearDate; }
  3189. set { _ClearDate = value; }
  3190. }
  3191. private readonly global::System.Collections.Generic.List<Bank.ArrayBankClearList> _List = new global::System.Collections.Generic.List<Bank.ArrayBankClearList>();
  3192. [global::ProtoBuf.ProtoMember(4, Name=@"List", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3193. public global::System.Collections.Generic.List<Bank.ArrayBankClearList> List
  3194. {
  3195. get { return _List; }
  3196. }
  3197. private global::ProtoBuf.IExtension extensionObject;
  3198. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3199. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3200. }
  3201. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankClearRsp")]
  3202. public partial class BankClearRsp : global::ProtoBuf.IExtensible
  3203. {
  3204. public BankClearRsp() {}
  3205. private Bank.MessageHead _Header = null;
  3206. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3207. [global::System.ComponentModel.DefaultValue(null)]
  3208. public Bank.MessageHead Header
  3209. {
  3210. get { return _Header; }
  3211. set { _Header = value; }
  3212. }
  3213. private int _RetCode = int.MinValue;
  3214. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3215. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3216. public int RetCode
  3217. {
  3218. get { return _RetCode; }
  3219. set { _RetCode = value; }
  3220. }
  3221. private string _RetDesc = "";
  3222. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3223. [global::System.ComponentModel.DefaultValue("")]
  3224. public string RetDesc
  3225. {
  3226. get { return _RetDesc; }
  3227. set { _RetDesc = value; }
  3228. }
  3229. private string _ExchTicket = "";
  3230. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3231. [global::System.ComponentModel.DefaultValue("")]
  3232. public string ExchTicket
  3233. {
  3234. get { return _ExchTicket; }
  3235. set { _ExchTicket = value; }
  3236. }
  3237. private string _ClearDate = "";
  3238. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ClearDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3239. [global::System.ComponentModel.DefaultValue("")]
  3240. public string ClearDate
  3241. {
  3242. get { return _ClearDate; }
  3243. set { _ClearDate = value; }
  3244. }
  3245. private readonly global::System.Collections.Generic.List<Bank.ArrayBankClearFailList> _List = new global::System.Collections.Generic.List<Bank.ArrayBankClearFailList>();
  3246. [global::ProtoBuf.ProtoMember(6, Name=@"List", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3247. public global::System.Collections.Generic.List<Bank.ArrayBankClearFailList> List
  3248. {
  3249. get { return _List; }
  3250. }
  3251. private string _DealTime = "";
  3252. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3253. [global::System.ComponentModel.DefaultValue("")]
  3254. public string DealTime
  3255. {
  3256. get { return _DealTime; }
  3257. set { _DealTime = value; }
  3258. }
  3259. private global::ProtoBuf.IExtension extensionObject;
  3260. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3261. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3262. }
  3263. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankForceSignReq")]
  3264. public partial class BankForceSignReq : global::ProtoBuf.IExtensible
  3265. {
  3266. public BankForceSignReq() {}
  3267. private Bank.MessageHead _Header = null;
  3268. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3269. [global::System.ComponentModel.DefaultValue(null)]
  3270. public Bank.MessageHead Header
  3271. {
  3272. get { return _Header; }
  3273. set { _Header = value; }
  3274. }
  3275. private long _ExtOperatorID;
  3276. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3277. public long ExtOperatorID
  3278. {
  3279. get { return _ExtOperatorID; }
  3280. set { _ExtOperatorID = value; }
  3281. }
  3282. private string _AccountCode = "";
  3283. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3284. [global::System.ComponentModel.DefaultValue("")]
  3285. public string AccountCode
  3286. {
  3287. get { return _AccountCode; }
  3288. set { _AccountCode = value; }
  3289. }
  3290. private int _AccountType = int.MinValue;
  3291. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3292. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3293. public int AccountType
  3294. {
  3295. get { return _AccountType; }
  3296. set { _AccountType = value; }
  3297. }
  3298. private string _CusBankID = "";
  3299. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3300. [global::System.ComponentModel.DefaultValue("")]
  3301. public string CusBankID
  3302. {
  3303. get { return _CusBankID; }
  3304. set { _CusBankID = value; }
  3305. }
  3306. private string _Currency = "";
  3307. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3308. [global::System.ComponentModel.DefaultValue("")]
  3309. public string Currency
  3310. {
  3311. get { return _Currency; }
  3312. set { _Currency = value; }
  3313. }
  3314. private string _BankAccountNo = "";
  3315. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3316. [global::System.ComponentModel.DefaultValue("")]
  3317. public string BankAccountNo
  3318. {
  3319. get { return _BankAccountNo; }
  3320. set { _BankAccountNo = value; }
  3321. }
  3322. private string _BankAccountName = "";
  3323. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"BankAccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3324. [global::System.ComponentModel.DefaultValue("")]
  3325. public string BankAccountName
  3326. {
  3327. get { return _BankAccountName; }
  3328. set { _BankAccountName = value; }
  3329. }
  3330. private string _BankId = "";
  3331. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"BankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3332. [global::System.ComponentModel.DefaultValue("")]
  3333. public string BankId
  3334. {
  3335. get { return _BankId; }
  3336. set { _BankId = value; }
  3337. }
  3338. private string _BankName = "";
  3339. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"BankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3340. [global::System.ComponentModel.DefaultValue("")]
  3341. public string BankName
  3342. {
  3343. get { return _BankName; }
  3344. set { _BankName = value; }
  3345. }
  3346. private string _AppDateTime = "";
  3347. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3348. [global::System.ComponentModel.DefaultValue("")]
  3349. public string AppDateTime
  3350. {
  3351. get { return _AppDateTime; }
  3352. set { _AppDateTime = value; }
  3353. }
  3354. private string _PaymentNo = "";
  3355. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"PaymentNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3356. [global::System.ComponentModel.DefaultValue("")]
  3357. public string PaymentNo
  3358. {
  3359. get { return _PaymentNo; }
  3360. set { _PaymentNo = value; }
  3361. }
  3362. private string _ProtocolNo = "";
  3363. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"ProtocolNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3364. [global::System.ComponentModel.DefaultValue("")]
  3365. public string ProtocolNo
  3366. {
  3367. get { return _ProtocolNo; }
  3368. set { _ProtocolNo = value; }
  3369. }
  3370. private string _OpenBankNo = "";
  3371. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"OpenBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3372. [global::System.ComponentModel.DefaultValue("")]
  3373. public string OpenBankNo
  3374. {
  3375. get { return _OpenBankNo; }
  3376. set { _OpenBankNo = value; }
  3377. }
  3378. private string _OpenBankName = "";
  3379. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"OpenBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3380. [global::System.ComponentModel.DefaultValue("")]
  3381. public string OpenBankName
  3382. {
  3383. get { return _OpenBankName; }
  3384. set { _OpenBankName = value; }
  3385. }
  3386. private string _CustomerName = "";
  3387. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"CustomerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3388. [global::System.ComponentModel.DefaultValue("")]
  3389. public string CustomerName
  3390. {
  3391. get { return _CustomerName; }
  3392. set { _CustomerName = value; }
  3393. }
  3394. private long _CertType = int.MinValue;
  3395. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"CertType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3396. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3397. public long CertType
  3398. {
  3399. get { return _CertType; }
  3400. set { _CertType = value; }
  3401. }
  3402. private string _CertID = "";
  3403. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"CertID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3404. [global::System.ComponentModel.DefaultValue("")]
  3405. public string CertID
  3406. {
  3407. get { return _CertID; }
  3408. set { _CertID = value; }
  3409. }
  3410. private string _BankChildAccount = "";
  3411. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"BankChildAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3412. [global::System.ComponentModel.DefaultValue("")]
  3413. public string BankChildAccount
  3414. {
  3415. get { return _BankChildAccount; }
  3416. set { _BankChildAccount = value; }
  3417. }
  3418. private string _AgentName = "";
  3419. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"AgentName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3420. [global::System.ComponentModel.DefaultValue("")]
  3421. public string AgentName
  3422. {
  3423. get { return _AgentName; }
  3424. set { _AgentName = value; }
  3425. }
  3426. private int _AgentCertType = int.MinValue;
  3427. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"AgentCertType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3428. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3429. public int AgentCertType
  3430. {
  3431. get { return _AgentCertType; }
  3432. set { _AgentCertType = value; }
  3433. }
  3434. private string _AgentCertID = "";
  3435. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"AgentCertID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3436. [global::System.ComponentModel.DefaultValue("")]
  3437. public string AgentCertID
  3438. {
  3439. get { return _AgentCertID; }
  3440. set { _AgentCertID = value; }
  3441. }
  3442. private int _BankAccountType = int.MinValue;
  3443. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"BankAccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3444. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3445. public int BankAccountType
  3446. {
  3447. get { return _BankAccountType; }
  3448. set { _BankAccountType = value; }
  3449. }
  3450. private string _BankProvince = "";
  3451. [global::ProtoBuf.ProtoMember(24, IsRequired = false, Name=@"BankProvince", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3452. [global::System.ComponentModel.DefaultValue("")]
  3453. public string BankProvince
  3454. {
  3455. get { return _BankProvince; }
  3456. set { _BankProvince = value; }
  3457. }
  3458. private string _BankCity = "";
  3459. [global::ProtoBuf.ProtoMember(25, IsRequired = false, Name=@"BankCity", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3460. [global::System.ComponentModel.DefaultValue("")]
  3461. public string BankCity
  3462. {
  3463. get { return _BankCity; }
  3464. set { _BankCity = value; }
  3465. }
  3466. private int _BankCardType = int.MinValue;
  3467. [global::ProtoBuf.ProtoMember(26, IsRequired = false, Name=@"BankCardType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3468. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3469. public int BankCardType
  3470. {
  3471. get { return _BankCardType; }
  3472. set { _BankCardType = value; }
  3473. }
  3474. private global::ProtoBuf.IExtension extensionObject;
  3475. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3476. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3477. }
  3478. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankForceSignRsp")]
  3479. public partial class BankForceSignRsp : global::ProtoBuf.IExtensible
  3480. {
  3481. public BankForceSignRsp() {}
  3482. private Bank.MessageHead _Header = null;
  3483. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3484. [global::System.ComponentModel.DefaultValue(null)]
  3485. public Bank.MessageHead Header
  3486. {
  3487. get { return _Header; }
  3488. set { _Header = value; }
  3489. }
  3490. private int _RetCode = int.MinValue;
  3491. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3492. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3493. public int RetCode
  3494. {
  3495. get { return _RetCode; }
  3496. set { _RetCode = value; }
  3497. }
  3498. private string _RetDesc = "";
  3499. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3500. [global::System.ComponentModel.DefaultValue("")]
  3501. public string RetDesc
  3502. {
  3503. get { return _RetDesc; }
  3504. set { _RetDesc = value; }
  3505. }
  3506. private long _ExtOperatorID = int.MinValue;
  3507. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3508. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3509. public long ExtOperatorID
  3510. {
  3511. get { return _ExtOperatorID; }
  3512. set { _ExtOperatorID = value; }
  3513. }
  3514. private long _CustomerSignId = int.MinValue;
  3515. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3516. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3517. public long CustomerSignId
  3518. {
  3519. get { return _CustomerSignId; }
  3520. set { _CustomerSignId = value; }
  3521. }
  3522. private string _AccountCode = "";
  3523. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3524. [global::System.ComponentModel.DefaultValue("")]
  3525. public string AccountCode
  3526. {
  3527. get { return _AccountCode; }
  3528. set { _AccountCode = value; }
  3529. }
  3530. private string _DealTime = "";
  3531. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3532. [global::System.ComponentModel.DefaultValue("")]
  3533. public string DealTime
  3534. {
  3535. get { return _DealTime; }
  3536. set { _DealTime = value; }
  3537. }
  3538. private string _ExchTicket = "";
  3539. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3540. [global::System.ComponentModel.DefaultValue("")]
  3541. public string ExchTicket
  3542. {
  3543. get { return _ExchTicket; }
  3544. set { _ExchTicket = value; }
  3545. }
  3546. private global::ProtoBuf.IExtension extensionObject;
  3547. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3548. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3549. }
  3550. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankForceCancelSignReq")]
  3551. public partial class BankForceCancelSignReq : global::ProtoBuf.IExtensible
  3552. {
  3553. public BankForceCancelSignReq() {}
  3554. private Bank.MessageHead _Header = null;
  3555. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3556. [global::System.ComponentModel.DefaultValue(null)]
  3557. public Bank.MessageHead Header
  3558. {
  3559. get { return _Header; }
  3560. set { _Header = value; }
  3561. }
  3562. private long _ExtOperatorID;
  3563. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3564. public long ExtOperatorID
  3565. {
  3566. get { return _ExtOperatorID; }
  3567. set { _ExtOperatorID = value; }
  3568. }
  3569. private long _CustomerSignId = int.MinValue;
  3570. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3571. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3572. public long CustomerSignId
  3573. {
  3574. get { return _CustomerSignId; }
  3575. set { _CustomerSignId = value; }
  3576. }
  3577. private string _AccountCode = "";
  3578. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3579. [global::System.ComponentModel.DefaultValue("")]
  3580. public string AccountCode
  3581. {
  3582. get { return _AccountCode; }
  3583. set { _AccountCode = value; }
  3584. }
  3585. private string _CusBankID = "";
  3586. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3587. [global::System.ComponentModel.DefaultValue("")]
  3588. public string CusBankID
  3589. {
  3590. get { return _CusBankID; }
  3591. set { _CusBankID = value; }
  3592. }
  3593. private string _Currency = "";
  3594. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3595. [global::System.ComponentModel.DefaultValue("")]
  3596. public string Currency
  3597. {
  3598. get { return _Currency; }
  3599. set { _Currency = value; }
  3600. }
  3601. private string _BankAccountNo = "";
  3602. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3603. [global::System.ComponentModel.DefaultValue("")]
  3604. public string BankAccountNo
  3605. {
  3606. get { return _BankAccountNo; }
  3607. set { _BankAccountNo = value; }
  3608. }
  3609. private global::ProtoBuf.IExtension extensionObject;
  3610. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3611. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3612. }
  3613. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankForceCancelSignRsp")]
  3614. public partial class BankForceCancelSignRsp : global::ProtoBuf.IExtensible
  3615. {
  3616. public BankForceCancelSignRsp() {}
  3617. private Bank.MessageHead _Header = null;
  3618. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3619. [global::System.ComponentModel.DefaultValue(null)]
  3620. public Bank.MessageHead Header
  3621. {
  3622. get { return _Header; }
  3623. set { _Header = value; }
  3624. }
  3625. private int _RetCode = int.MinValue;
  3626. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3627. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3628. public int RetCode
  3629. {
  3630. get { return _RetCode; }
  3631. set { _RetCode = value; }
  3632. }
  3633. private string _RetDesc = "";
  3634. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3635. [global::System.ComponentModel.DefaultValue("")]
  3636. public string RetDesc
  3637. {
  3638. get { return _RetDesc; }
  3639. set { _RetDesc = value; }
  3640. }
  3641. private long _ExtOperatorID = int.MinValue;
  3642. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3643. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3644. public long ExtOperatorID
  3645. {
  3646. get { return _ExtOperatorID; }
  3647. set { _ExtOperatorID = value; }
  3648. }
  3649. private long _CustomerSignId = int.MinValue;
  3650. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3651. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3652. public long CustomerSignId
  3653. {
  3654. get { return _CustomerSignId; }
  3655. set { _CustomerSignId = value; }
  3656. }
  3657. private string _AccountCode = "";
  3658. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3659. [global::System.ComponentModel.DefaultValue("")]
  3660. public string AccountCode
  3661. {
  3662. get { return _AccountCode; }
  3663. set { _AccountCode = value; }
  3664. }
  3665. private string _DealTime = "";
  3666. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3667. [global::System.ComponentModel.DefaultValue("")]
  3668. public string DealTime
  3669. {
  3670. get { return _DealTime; }
  3671. set { _DealTime = value; }
  3672. }
  3673. private string _ExchTicket = "";
  3674. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3675. [global::System.ComponentModel.DefaultValue("")]
  3676. public string ExchTicket
  3677. {
  3678. get { return _ExchTicket; }
  3679. set { _ExchTicket = value; }
  3680. }
  3681. private global::ProtoBuf.IExtension extensionObject;
  3682. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3683. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3684. }
  3685. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetBankSignInfoReq")]
  3686. public partial class GetBankSignInfoReq : global::ProtoBuf.IExtensible
  3687. {
  3688. public GetBankSignInfoReq() {}
  3689. private Bank.MessageHead _Header = null;
  3690. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3691. [global::System.ComponentModel.DefaultValue(null)]
  3692. public Bank.MessageHead Header
  3693. {
  3694. get { return _Header; }
  3695. set { _Header = value; }
  3696. }
  3697. private long _ExtOperatorID = int.MinValue;
  3698. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3699. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3700. public long ExtOperatorID
  3701. {
  3702. get { return _ExtOperatorID; }
  3703. set { _ExtOperatorID = value; }
  3704. }
  3705. private string _ExchTicket = "";
  3706. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3707. [global::System.ComponentModel.DefaultValue("")]
  3708. public string ExchTicket
  3709. {
  3710. get { return _ExchTicket; }
  3711. set { _ExchTicket = value; }
  3712. }
  3713. private string _AccountCode = "";
  3714. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3715. [global::System.ComponentModel.DefaultValue("")]
  3716. public string AccountCode
  3717. {
  3718. get { return _AccountCode; }
  3719. set { _AccountCode = value; }
  3720. }
  3721. private string _AppDateTime = "";
  3722. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3723. [global::System.ComponentModel.DefaultValue("")]
  3724. public string AppDateTime
  3725. {
  3726. get { return _AppDateTime; }
  3727. set { _AppDateTime = value; }
  3728. }
  3729. private string _CusBankID = "";
  3730. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3731. [global::System.ComponentModel.DefaultValue("")]
  3732. public string CusBankID
  3733. {
  3734. get { return _CusBankID; }
  3735. set { _CusBankID = value; }
  3736. }
  3737. private global::ProtoBuf.IExtension extensionObject;
  3738. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3739. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3740. }
  3741. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetBankSignInfoRsp")]
  3742. public partial class GetBankSignInfoRsp : global::ProtoBuf.IExtensible
  3743. {
  3744. public GetBankSignInfoRsp() {}
  3745. private Bank.MessageHead _Header = null;
  3746. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3747. [global::System.ComponentModel.DefaultValue(null)]
  3748. public Bank.MessageHead Header
  3749. {
  3750. get { return _Header; }
  3751. set { _Header = value; }
  3752. }
  3753. private int _RetCode = int.MinValue;
  3754. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3755. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3756. public int RetCode
  3757. {
  3758. get { return _RetCode; }
  3759. set { _RetCode = value; }
  3760. }
  3761. private string _RetDesc = "";
  3762. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3763. [global::System.ComponentModel.DefaultValue("")]
  3764. public string RetDesc
  3765. {
  3766. get { return _RetDesc; }
  3767. set { _RetDesc = value; }
  3768. }
  3769. private long _ExtOperatorID = int.MinValue;
  3770. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3771. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3772. public long ExtOperatorID
  3773. {
  3774. get { return _ExtOperatorID; }
  3775. set { _ExtOperatorID = value; }
  3776. }
  3777. private string _ExchTicket = "";
  3778. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3779. [global::System.ComponentModel.DefaultValue("")]
  3780. public string ExchTicket
  3781. {
  3782. get { return _ExchTicket; }
  3783. set { _ExchTicket = value; }
  3784. }
  3785. private string _AccountCode = "";
  3786. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3787. [global::System.ComponentModel.DefaultValue("")]
  3788. public string AccountCode
  3789. {
  3790. get { return _AccountCode; }
  3791. set { _AccountCode = value; }
  3792. }
  3793. private Bank.ArrayCustomer _Customer = null;
  3794. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3795. [global::System.ComponentModel.DefaultValue(null)]
  3796. public Bank.ArrayCustomer Customer
  3797. {
  3798. get { return _Customer; }
  3799. set { _Customer = value; }
  3800. }
  3801. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  3802. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3803. [global::System.ComponentModel.DefaultValue(null)]
  3804. public Bank.ArrayFuturesAccount FuturesAccount
  3805. {
  3806. get { return _FuturesAccount; }
  3807. set { _FuturesAccount = value; }
  3808. }
  3809. private string _DealTime = "";
  3810. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3811. [global::System.ComponentModel.DefaultValue("")]
  3812. public string DealTime
  3813. {
  3814. get { return _DealTime; }
  3815. set { _DealTime = value; }
  3816. }
  3817. private global::ProtoBuf.IExtension extensionObject;
  3818. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3819. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3820. }
  3821. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetBankCancelSignInfoReq")]
  3822. public partial class GetBankCancelSignInfoReq : global::ProtoBuf.IExtensible
  3823. {
  3824. public GetBankCancelSignInfoReq() {}
  3825. private Bank.MessageHead _Header = null;
  3826. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3827. [global::System.ComponentModel.DefaultValue(null)]
  3828. public Bank.MessageHead Header
  3829. {
  3830. get { return _Header; }
  3831. set { _Header = value; }
  3832. }
  3833. private long _ExtOperatorID = int.MinValue;
  3834. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3835. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3836. public long ExtOperatorID
  3837. {
  3838. get { return _ExtOperatorID; }
  3839. set { _ExtOperatorID = value; }
  3840. }
  3841. private string _ExchTicket = "";
  3842. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3843. [global::System.ComponentModel.DefaultValue("")]
  3844. public string ExchTicket
  3845. {
  3846. get { return _ExchTicket; }
  3847. set { _ExchTicket = value; }
  3848. }
  3849. private string _AccountCode = "";
  3850. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3851. [global::System.ComponentModel.DefaultValue("")]
  3852. public string AccountCode
  3853. {
  3854. get { return _AccountCode; }
  3855. set { _AccountCode = value; }
  3856. }
  3857. private string _AppDateTime = "";
  3858. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3859. [global::System.ComponentModel.DefaultValue("")]
  3860. public string AppDateTime
  3861. {
  3862. get { return _AppDateTime; }
  3863. set { _AppDateTime = value; }
  3864. }
  3865. private int _CheckCleanFlag = int.MinValue;
  3866. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CheckCleanFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3867. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3868. public int CheckCleanFlag
  3869. {
  3870. get { return _CheckCleanFlag; }
  3871. set { _CheckCleanFlag = value; }
  3872. }
  3873. private string _CusBankID = "";
  3874. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3875. [global::System.ComponentModel.DefaultValue("")]
  3876. public string CusBankID
  3877. {
  3878. get { return _CusBankID; }
  3879. set { _CusBankID = value; }
  3880. }
  3881. private global::ProtoBuf.IExtension extensionObject;
  3882. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3883. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3884. }
  3885. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"GetBankCancelSignInfoRsp")]
  3886. public partial class GetBankCancelSignInfoRsp : global::ProtoBuf.IExtensible
  3887. {
  3888. public GetBankCancelSignInfoRsp() {}
  3889. private Bank.MessageHead _Header = null;
  3890. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3891. [global::System.ComponentModel.DefaultValue(null)]
  3892. public Bank.MessageHead Header
  3893. {
  3894. get { return _Header; }
  3895. set { _Header = value; }
  3896. }
  3897. private int _RetCode = int.MinValue;
  3898. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3899. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3900. public int RetCode
  3901. {
  3902. get { return _RetCode; }
  3903. set { _RetCode = value; }
  3904. }
  3905. private string _RetDesc = "";
  3906. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3907. [global::System.ComponentModel.DefaultValue("")]
  3908. public string RetDesc
  3909. {
  3910. get { return _RetDesc; }
  3911. set { _RetDesc = value; }
  3912. }
  3913. private long _ExtOperatorID = int.MinValue;
  3914. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3915. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3916. public long ExtOperatorID
  3917. {
  3918. get { return _ExtOperatorID; }
  3919. set { _ExtOperatorID = value; }
  3920. }
  3921. private string _ExchTicket = "";
  3922. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3923. [global::System.ComponentModel.DefaultValue("")]
  3924. public string ExchTicket
  3925. {
  3926. get { return _ExchTicket; }
  3927. set { _ExchTicket = value; }
  3928. }
  3929. private string _AccountCode = "";
  3930. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3931. [global::System.ComponentModel.DefaultValue("")]
  3932. public string AccountCode
  3933. {
  3934. get { return _AccountCode; }
  3935. set { _AccountCode = value; }
  3936. }
  3937. private Bank.ArrayCustomer _Customer = null;
  3938. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3939. [global::System.ComponentModel.DefaultValue(null)]
  3940. public Bank.ArrayCustomer Customer
  3941. {
  3942. get { return _Customer; }
  3943. set { _Customer = value; }
  3944. }
  3945. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  3946. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3947. [global::System.ComponentModel.DefaultValue(null)]
  3948. public Bank.ArrayFuturesAccount FuturesAccount
  3949. {
  3950. get { return _FuturesAccount; }
  3951. set { _FuturesAccount = value; }
  3952. }
  3953. private string _DealTime = "";
  3954. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3955. [global::System.ComponentModel.DefaultValue("")]
  3956. public string DealTime
  3957. {
  3958. get { return _DealTime; }
  3959. set { _DealTime = value; }
  3960. }
  3961. private global::ProtoBuf.IExtension extensionObject;
  3962. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  3963. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  3964. }
  3965. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCheckAcoountReq")]
  3966. public partial class BankCheckAcoountReq : global::ProtoBuf.IExtensible
  3967. {
  3968. public BankCheckAcoountReq() {}
  3969. private Bank.MessageHead _Header = null;
  3970. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3971. [global::System.ComponentModel.DefaultValue(null)]
  3972. public Bank.MessageHead Header
  3973. {
  3974. get { return _Header; }
  3975. set { _Header = value; }
  3976. }
  3977. private long _ExtOperatorID = int.MinValue;
  3978. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  3979. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  3980. public long ExtOperatorID
  3981. {
  3982. get { return _ExtOperatorID; }
  3983. set { _ExtOperatorID = value; }
  3984. }
  3985. private string _CusBankID = "";
  3986. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3987. [global::System.ComponentModel.DefaultValue("")]
  3988. public string CusBankID
  3989. {
  3990. get { return _CusBankID; }
  3991. set { _CusBankID = value; }
  3992. }
  3993. private string _CheckDate = "";
  3994. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CheckDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  3995. [global::System.ComponentModel.DefaultValue("")]
  3996. public string CheckDate
  3997. {
  3998. get { return _CheckDate; }
  3999. set { _CheckDate = value; }
  4000. }
  4001. private global::ProtoBuf.IExtension extensionObject;
  4002. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4003. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4004. }
  4005. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankCheckAcoountRsp")]
  4006. public partial class BankCheckAcoountRsp : global::ProtoBuf.IExtensible
  4007. {
  4008. public BankCheckAcoountRsp() {}
  4009. private Bank.MessageHead _Header = null;
  4010. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4011. [global::System.ComponentModel.DefaultValue(null)]
  4012. public Bank.MessageHead Header
  4013. {
  4014. get { return _Header; }
  4015. set { _Header = value; }
  4016. }
  4017. private int _RetCode = int.MinValue;
  4018. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4019. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4020. public int RetCode
  4021. {
  4022. get { return _RetCode; }
  4023. set { _RetCode = value; }
  4024. }
  4025. private string _RetDesc = "";
  4026. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4027. [global::System.ComponentModel.DefaultValue("")]
  4028. public string RetDesc
  4029. {
  4030. get { return _RetDesc; }
  4031. set { _RetDesc = value; }
  4032. }
  4033. private long _ExtOperatorID = int.MinValue;
  4034. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4035. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4036. public long ExtOperatorID
  4037. {
  4038. get { return _ExtOperatorID; }
  4039. set { _ExtOperatorID = value; }
  4040. }
  4041. private string _CusBankID = "";
  4042. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4043. [global::System.ComponentModel.DefaultValue("")]
  4044. public string CusBankID
  4045. {
  4046. get { return _CusBankID; }
  4047. set { _CusBankID = value; }
  4048. }
  4049. private string _CheckDate = "";
  4050. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CheckDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4051. [global::System.ComponentModel.DefaultValue("")]
  4052. public string CheckDate
  4053. {
  4054. get { return _CheckDate; }
  4055. set { _CheckDate = value; }
  4056. }
  4057. private string _DealTime = "";
  4058. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4059. [global::System.ComponentModel.DefaultValue("")]
  4060. public string DealTime
  4061. {
  4062. get { return _DealTime; }
  4063. set { _DealTime = value; }
  4064. }
  4065. private global::ProtoBuf.IExtension extensionObject;
  4066. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4067. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4068. }
  4069. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSettleReq")]
  4070. public partial class BankSettleReq : global::ProtoBuf.IExtensible
  4071. {
  4072. public BankSettleReq() {}
  4073. private Bank.MessageHead _Header = null;
  4074. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4075. [global::System.ComponentModel.DefaultValue(null)]
  4076. public Bank.MessageHead Header
  4077. {
  4078. get { return _Header; }
  4079. set { _Header = value; }
  4080. }
  4081. private long _ExtOperatorID = int.MinValue;
  4082. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4083. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4084. public long ExtOperatorID
  4085. {
  4086. get { return _ExtOperatorID; }
  4087. set { _ExtOperatorID = value; }
  4088. }
  4089. private string _CusBankID = "";
  4090. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4091. [global::System.ComponentModel.DefaultValue("")]
  4092. public string CusBankID
  4093. {
  4094. get { return _CusBankID; }
  4095. set { _CusBankID = value; }
  4096. }
  4097. private string _SettleDate = "";
  4098. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"SettleDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4099. [global::System.ComponentModel.DefaultValue("")]
  4100. public string SettleDate
  4101. {
  4102. get { return _SettleDate; }
  4103. set { _SettleDate = value; }
  4104. }
  4105. private global::ProtoBuf.IExtension extensionObject;
  4106. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4107. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4108. }
  4109. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSettleRsp")]
  4110. public partial class BankSettleRsp : global::ProtoBuf.IExtensible
  4111. {
  4112. public BankSettleRsp() {}
  4113. private Bank.MessageHead _Header = null;
  4114. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4115. [global::System.ComponentModel.DefaultValue(null)]
  4116. public Bank.MessageHead Header
  4117. {
  4118. get { return _Header; }
  4119. set { _Header = value; }
  4120. }
  4121. private int _RetCode = int.MinValue;
  4122. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4123. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4124. public int RetCode
  4125. {
  4126. get { return _RetCode; }
  4127. set { _RetCode = value; }
  4128. }
  4129. private string _RetDesc = "";
  4130. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4131. [global::System.ComponentModel.DefaultValue("")]
  4132. public string RetDesc
  4133. {
  4134. get { return _RetDesc; }
  4135. set { _RetDesc = value; }
  4136. }
  4137. private long _ExtOperatorID = int.MinValue;
  4138. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4139. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4140. public long ExtOperatorID
  4141. {
  4142. get { return _ExtOperatorID; }
  4143. set { _ExtOperatorID = value; }
  4144. }
  4145. private string _CusBankID = "";
  4146. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4147. [global::System.ComponentModel.DefaultValue("")]
  4148. public string CusBankID
  4149. {
  4150. get { return _CusBankID; }
  4151. set { _CusBankID = value; }
  4152. }
  4153. private string _SettleDate = "";
  4154. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"SettleDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4155. [global::System.ComponentModel.DefaultValue("")]
  4156. public string SettleDate
  4157. {
  4158. get { return _SettleDate; }
  4159. set { _SettleDate = value; }
  4160. }
  4161. private string _DealTime = "";
  4162. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4163. [global::System.ComponentModel.DefaultValue("")]
  4164. public string DealTime
  4165. {
  4166. get { return _DealTime; }
  4167. set { _DealTime = value; }
  4168. }
  4169. private global::ProtoBuf.IExtension extensionObject;
  4170. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4171. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4172. }
  4173. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayUnilateralAccount")]
  4174. public partial class ArrayUnilateralAccount : global::ProtoBuf.IExtensible
  4175. {
  4176. public ArrayUnilateralAccount() {}
  4177. private string _CusBankID = "";
  4178. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4179. [global::System.ComponentModel.DefaultValue("")]
  4180. public string CusBankID
  4181. {
  4182. get { return _CusBankID; }
  4183. set { _CusBankID = value; }
  4184. }
  4185. private string _ExchTicket = "";
  4186. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4187. [global::System.ComponentModel.DefaultValue("")]
  4188. public string ExchTicket
  4189. {
  4190. get { return _ExchTicket; }
  4191. set { _ExchTicket = value; }
  4192. }
  4193. private string _AccountCode = "";
  4194. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4195. [global::System.ComponentModel.DefaultValue("")]
  4196. public string AccountCode
  4197. {
  4198. get { return _AccountCode; }
  4199. set { _AccountCode = value; }
  4200. }
  4201. private int _UnilateralDealType = int.MinValue;
  4202. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"UnilateralDealType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4203. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4204. public int UnilateralDealType
  4205. {
  4206. get { return _UnilateralDealType; }
  4207. set { _UnilateralDealType = value; }
  4208. }
  4209. private string _DealTime = "";
  4210. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4211. [global::System.ComponentModel.DefaultValue("")]
  4212. public string DealTime
  4213. {
  4214. get { return _DealTime; }
  4215. set { _DealTime = value; }
  4216. }
  4217. private global::ProtoBuf.IExtension extensionObject;
  4218. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4219. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4220. }
  4221. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnilateralAccountReq")]
  4222. public partial class UnilateralAccountReq : global::ProtoBuf.IExtensible
  4223. {
  4224. public UnilateralAccountReq() {}
  4225. private Bank.MessageHead _Header = null;
  4226. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4227. [global::System.ComponentModel.DefaultValue(null)]
  4228. public Bank.MessageHead Header
  4229. {
  4230. get { return _Header; }
  4231. set { _Header = value; }
  4232. }
  4233. private long _ExtOperatorID = int.MinValue;
  4234. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4235. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4236. public long ExtOperatorID
  4237. {
  4238. get { return _ExtOperatorID; }
  4239. set { _ExtOperatorID = value; }
  4240. }
  4241. private string _CusBankID = "";
  4242. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4243. [global::System.ComponentModel.DefaultValue("")]
  4244. public string CusBankID
  4245. {
  4246. get { return _CusBankID; }
  4247. set { _CusBankID = value; }
  4248. }
  4249. private string _ExchTicket = "";
  4250. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4251. [global::System.ComponentModel.DefaultValue("")]
  4252. public string ExchTicket
  4253. {
  4254. get { return _ExchTicket; }
  4255. set { _ExchTicket = value; }
  4256. }
  4257. private string _AccountCode = "";
  4258. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4259. [global::System.ComponentModel.DefaultValue("")]
  4260. public string AccountCode
  4261. {
  4262. get { return _AccountCode; }
  4263. set { _AccountCode = value; }
  4264. }
  4265. private int _UnilateralDealType = int.MinValue;
  4266. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"UnilateralDealType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4267. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4268. public int UnilateralDealType
  4269. {
  4270. get { return _UnilateralDealType; }
  4271. set { _UnilateralDealType = value; }
  4272. }
  4273. private global::ProtoBuf.IExtension extensionObject;
  4274. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4275. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4276. }
  4277. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"UnilateralAccountRsp")]
  4278. public partial class UnilateralAccountRsp : global::ProtoBuf.IExtensible
  4279. {
  4280. public UnilateralAccountRsp() {}
  4281. private Bank.MessageHead _Header = null;
  4282. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4283. [global::System.ComponentModel.DefaultValue(null)]
  4284. public Bank.MessageHead Header
  4285. {
  4286. get { return _Header; }
  4287. set { _Header = value; }
  4288. }
  4289. private int _RetCode = int.MinValue;
  4290. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4291. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4292. public int RetCode
  4293. {
  4294. get { return _RetCode; }
  4295. set { _RetCode = value; }
  4296. }
  4297. private string _RetDesc = "";
  4298. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4299. [global::System.ComponentModel.DefaultValue("")]
  4300. public string RetDesc
  4301. {
  4302. get { return _RetDesc; }
  4303. set { _RetDesc = value; }
  4304. }
  4305. private long _ExtOperatorID = int.MinValue;
  4306. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4307. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4308. public long ExtOperatorID
  4309. {
  4310. get { return _ExtOperatorID; }
  4311. set { _ExtOperatorID = value; }
  4312. }
  4313. private int _Status = int.MinValue;
  4314. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4315. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4316. public int Status
  4317. {
  4318. get { return _Status; }
  4319. set { _Status = value; }
  4320. }
  4321. private string _DealTime = "";
  4322. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4323. [global::System.ComponentModel.DefaultValue("")]
  4324. public string DealTime
  4325. {
  4326. get { return _DealTime; }
  4327. set { _DealTime = value; }
  4328. }
  4329. private global::ProtoBuf.IExtension extensionObject;
  4330. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4331. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4332. }
  4333. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ArrayBankParamConfig")]
  4334. public partial class ArrayBankParamConfig : global::ProtoBuf.IExtensible
  4335. {
  4336. public ArrayBankParamConfig() {}
  4337. private string _CusBankID = "";
  4338. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4339. [global::System.ComponentModel.DefaultValue("")]
  4340. public string CusBankID
  4341. {
  4342. get { return _CusBankID; }
  4343. set { _CusBankID = value; }
  4344. }
  4345. private string _ShowField = "";
  4346. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ShowField", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4347. [global::System.ComponentModel.DefaultValue("")]
  4348. public string ShowField
  4349. {
  4350. get { return _ShowField; }
  4351. set { _ShowField = value; }
  4352. }
  4353. private double _LessOutAmount = int.MinValue;
  4354. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"LessOutAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4355. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4356. public double LessOutAmount
  4357. {
  4358. get { return _LessOutAmount; }
  4359. set { _LessOutAmount = value; }
  4360. }
  4361. private int _LessOutAmountType = int.MinValue;
  4362. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"LessOutAmountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4363. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4364. public int LessOutAmountType
  4365. {
  4366. get { return _LessOutAmountType; }
  4367. set { _LessOutAmountType = value; }
  4368. }
  4369. private int _AuditSignFunc = int.MinValue;
  4370. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AuditSignFunc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4371. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4372. public int AuditSignFunc
  4373. {
  4374. get { return _AuditSignFunc; }
  4375. set { _AuditSignFunc = value; }
  4376. }
  4377. private int _AuditEndFunc = int.MinValue;
  4378. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AuditEndFunc", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4379. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4380. public int AuditEndFunc
  4381. {
  4382. get { return _AuditEndFunc; }
  4383. set { _AuditEndFunc = value; }
  4384. }
  4385. private int _MinInAmountType = int.MinValue;
  4386. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"MinInAmountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4387. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4388. public int MinInAmountType
  4389. {
  4390. get { return _MinInAmountType; }
  4391. set { _MinInAmountType = value; }
  4392. }
  4393. private double _MinInAmount = int.MinValue;
  4394. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"MinInAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4395. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4396. public double MinInAmount
  4397. {
  4398. get { return _MinInAmount; }
  4399. set { _MinInAmount = value; }
  4400. }
  4401. private int _MaxInAmountType = int.MinValue;
  4402. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"MaxInAmountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4403. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4404. public int MaxInAmountType
  4405. {
  4406. get { return _MaxInAmountType; }
  4407. set { _MaxInAmountType = value; }
  4408. }
  4409. private double _MaxInAmount = int.MinValue;
  4410. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"MaxInAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4411. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4412. public double MaxInAmount
  4413. {
  4414. get { return _MaxInAmount; }
  4415. set { _MaxInAmount = value; }
  4416. }
  4417. private int _AmountInNumType = int.MinValue;
  4418. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AmountInNumType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4419. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4420. public int AmountInNumType
  4421. {
  4422. get { return _AmountInNumType; }
  4423. set { _AmountInNumType = value; }
  4424. }
  4425. private int _AmountInNum = int.MinValue;
  4426. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"AmountInNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4427. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4428. public int AmountInNum
  4429. {
  4430. get { return _AmountInNum; }
  4431. set { _AmountInNum = value; }
  4432. }
  4433. private int _MinOutAmountType = int.MinValue;
  4434. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"MinOutAmountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4435. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4436. public int MinOutAmountType
  4437. {
  4438. get { return _MinOutAmountType; }
  4439. set { _MinOutAmountType = value; }
  4440. }
  4441. private double _MinOutAmount = int.MinValue;
  4442. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"MinOutAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4443. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4444. public double MinOutAmount
  4445. {
  4446. get { return _MinOutAmount; }
  4447. set { _MinOutAmount = value; }
  4448. }
  4449. private int _MaxOutAmountType = int.MinValue;
  4450. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"MaxOutAmountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4451. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4452. public int MaxOutAmountType
  4453. {
  4454. get { return _MaxOutAmountType; }
  4455. set { _MaxOutAmountType = value; }
  4456. }
  4457. private double _MaxOutAmount = int.MinValue;
  4458. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"MaxOutAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4459. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4460. public double MaxOutAmount
  4461. {
  4462. get { return _MaxOutAmount; }
  4463. set { _MaxOutAmount = value; }
  4464. }
  4465. private int _AmountOutNumType = int.MinValue;
  4466. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"AmountOutNumType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4467. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4468. public int AmountOutNumType
  4469. {
  4470. get { return _AmountOutNumType; }
  4471. set { _AmountOutNumType = value; }
  4472. }
  4473. private int _AmountOutNum = int.MinValue;
  4474. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"AmountOutNum", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4475. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4476. public int AmountOutNum
  4477. {
  4478. get { return _AmountOutNum; }
  4479. set { _AmountOutNum = value; }
  4480. }
  4481. private int _TotalMaxAmountOutType = int.MinValue;
  4482. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"TotalMaxAmountOutType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4483. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4484. public int TotalMaxAmountOutType
  4485. {
  4486. get { return _TotalMaxAmountOutType; }
  4487. set { _TotalMaxAmountOutType = value; }
  4488. }
  4489. private double _TotalMaxAmountOut = int.MinValue;
  4490. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"TotalMaxAmountOut", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4491. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4492. public double TotalMaxAmountOut
  4493. {
  4494. get { return _TotalMaxAmountOut; }
  4495. set { _TotalMaxAmountOut = value; }
  4496. }
  4497. private string _InMoneyStartTime = "";
  4498. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"InMoneyStartTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4499. [global::System.ComponentModel.DefaultValue("")]
  4500. public string InMoneyStartTime
  4501. {
  4502. get { return _InMoneyStartTime; }
  4503. set { _InMoneyStartTime = value; }
  4504. }
  4505. private string _InMoneyEndTime = "";
  4506. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"InMoneyEndTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4507. [global::System.ComponentModel.DefaultValue("")]
  4508. public string InMoneyEndTime
  4509. {
  4510. get { return _InMoneyEndTime; }
  4511. set { _InMoneyEndTime = value; }
  4512. }
  4513. private string _OutMoneyStartTime = "";
  4514. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"OutMoneyStartTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4515. [global::System.ComponentModel.DefaultValue("")]
  4516. public string OutMoneyStartTime
  4517. {
  4518. get { return _OutMoneyStartTime; }
  4519. set { _OutMoneyStartTime = value; }
  4520. }
  4521. private string _OutMoneyEndTime = "";
  4522. [global::ProtoBuf.ProtoMember(24, IsRequired = false, Name=@"OutMoneyEndTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4523. [global::System.ComponentModel.DefaultValue("")]
  4524. public string OutMoneyEndTime
  4525. {
  4526. get { return _OutMoneyEndTime; }
  4527. set { _OutMoneyEndTime = value; }
  4528. }
  4529. private int _IsAllowInMoney = int.MinValue;
  4530. [global::ProtoBuf.ProtoMember(25, IsRequired = false, Name=@"IsAllowInMoney", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4531. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4532. public int IsAllowInMoney
  4533. {
  4534. get { return _IsAllowInMoney; }
  4535. set { _IsAllowInMoney = value; }
  4536. }
  4537. private int _IsAllowOutMoney = int.MinValue;
  4538. [global::ProtoBuf.ProtoMember(26, IsRequired = false, Name=@"IsAllowOutMoney", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4539. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4540. public int IsAllowOutMoney
  4541. {
  4542. get { return _IsAllowOutMoney; }
  4543. set { _IsAllowOutMoney = value; }
  4544. }
  4545. private int _ModifyBankNoType = int.MinValue;
  4546. [global::ProtoBuf.ProtoMember(27, IsRequired = false, Name=@"ModifyBankNoType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4547. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4548. public int ModifyBankNoType
  4549. {
  4550. get { return _ModifyBankNoType; }
  4551. set { _ModifyBankNoType = value; }
  4552. }
  4553. private string _SettleTime = "";
  4554. [global::ProtoBuf.ProtoMember(28, IsRequired = false, Name=@"SettleTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4555. [global::System.ComponentModel.DefaultValue("")]
  4556. public string SettleTime
  4557. {
  4558. get { return _SettleTime; }
  4559. set { _SettleTime = value; }
  4560. }
  4561. private string _SignInTime = "";
  4562. [global::ProtoBuf.ProtoMember(29, IsRequired = false, Name=@"SignInTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4563. [global::System.ComponentModel.DefaultValue("")]
  4564. public string SignInTime
  4565. {
  4566. get { return _SignInTime; }
  4567. set { _SignInTime = value; }
  4568. }
  4569. private string _SignOutTime = "";
  4570. [global::ProtoBuf.ProtoMember(30, IsRequired = false, Name=@"SignOutTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4571. [global::System.ComponentModel.DefaultValue("")]
  4572. public string SignOutTime
  4573. {
  4574. get { return _SignOutTime; }
  4575. set { _SignOutTime = value; }
  4576. }
  4577. private global::ProtoBuf.IExtension extensionObject;
  4578. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4579. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4580. }
  4581. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ManageBankParamConfigReq")]
  4582. public partial class ManageBankParamConfigReq : global::ProtoBuf.IExtensible
  4583. {
  4584. public ManageBankParamConfigReq() {}
  4585. private Bank.MessageHead _Header = null;
  4586. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4587. [global::System.ComponentModel.DefaultValue(null)]
  4588. public Bank.MessageHead Header
  4589. {
  4590. get { return _Header; }
  4591. set { _Header = value; }
  4592. }
  4593. private readonly global::System.Collections.Generic.List<Bank.ArrayBankParamConfig> _List = new global::System.Collections.Generic.List<Bank.ArrayBankParamConfig>();
  4594. [global::ProtoBuf.ProtoMember(2, Name=@"List", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4595. public global::System.Collections.Generic.List<Bank.ArrayBankParamConfig> List
  4596. {
  4597. get { return _List; }
  4598. }
  4599. private int _DealType = int.MinValue;
  4600. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"DealType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4601. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4602. public int DealType
  4603. {
  4604. get { return _DealType; }
  4605. set { _DealType = value; }
  4606. }
  4607. private global::ProtoBuf.IExtension extensionObject;
  4608. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4609. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4610. }
  4611. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ManageBankParamConfigRsp")]
  4612. public partial class ManageBankParamConfigRsp : global::ProtoBuf.IExtensible
  4613. {
  4614. public ManageBankParamConfigRsp() {}
  4615. private Bank.MessageHead _Header = null;
  4616. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4617. [global::System.ComponentModel.DefaultValue(null)]
  4618. public Bank.MessageHead Header
  4619. {
  4620. get { return _Header; }
  4621. set { _Header = value; }
  4622. }
  4623. private int _RetCode = int.MinValue;
  4624. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4625. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4626. public int RetCode
  4627. {
  4628. get { return _RetCode; }
  4629. set { _RetCode = value; }
  4630. }
  4631. private string _RetDesc = "";
  4632. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4633. [global::System.ComponentModel.DefaultValue("")]
  4634. public string RetDesc
  4635. {
  4636. get { return _RetDesc; }
  4637. set { _RetDesc = value; }
  4638. }
  4639. private string _DealTime = "";
  4640. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4641. [global::System.ComponentModel.DefaultValue("")]
  4642. public string DealTime
  4643. {
  4644. get { return _DealTime; }
  4645. set { _DealTime = value; }
  4646. }
  4647. private string _ExchTicket = "";
  4648. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4649. [global::System.ComponentModel.DefaultValue("")]
  4650. public string ExchTicket
  4651. {
  4652. get { return _ExchTicket; }
  4653. set { _ExchTicket = value; }
  4654. }
  4655. private global::ProtoBuf.IExtension extensionObject;
  4656. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4657. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4658. }
  4659. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignUpdateReq")]
  4660. public partial class SignUpdateReq : global::ProtoBuf.IExtensible
  4661. {
  4662. public SignUpdateReq() {}
  4663. private Bank.MessageHead _Header = null;
  4664. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4665. [global::System.ComponentModel.DefaultValue(null)]
  4666. public Bank.MessageHead Header
  4667. {
  4668. get { return _Header; }
  4669. set { _Header = value; }
  4670. }
  4671. private long _ExtOperatorID;
  4672. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4673. public long ExtOperatorID
  4674. {
  4675. get { return _ExtOperatorID; }
  4676. set { _ExtOperatorID = value; }
  4677. }
  4678. private long _CustomerSignId = int.MinValue;
  4679. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4680. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4681. public long CustomerSignId
  4682. {
  4683. get { return _CustomerSignId; }
  4684. set { _CustomerSignId = value; }
  4685. }
  4686. private string _AccountCode = "";
  4687. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4688. [global::System.ComponentModel.DefaultValue("")]
  4689. public string AccountCode
  4690. {
  4691. get { return _AccountCode; }
  4692. set { _AccountCode = value; }
  4693. }
  4694. private int _AccountType = int.MinValue;
  4695. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4696. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4697. public int AccountType
  4698. {
  4699. get { return _AccountType; }
  4700. set { _AccountType = value; }
  4701. }
  4702. private string _CusBankID = "";
  4703. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4704. [global::System.ComponentModel.DefaultValue("")]
  4705. public string CusBankID
  4706. {
  4707. get { return _CusBankID; }
  4708. set { _CusBankID = value; }
  4709. }
  4710. private string _Currency = "";
  4711. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4712. [global::System.ComponentModel.DefaultValue("")]
  4713. public string Currency
  4714. {
  4715. get { return _Currency; }
  4716. set { _Currency = value; }
  4717. }
  4718. private string _OpenBankNo = "";
  4719. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"OpenBankNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4720. [global::System.ComponentModel.DefaultValue("")]
  4721. public string OpenBankNo
  4722. {
  4723. get { return _OpenBankNo; }
  4724. set { _OpenBankNo = value; }
  4725. }
  4726. private string _OpenBankName = "";
  4727. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"OpenBankName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4728. [global::System.ComponentModel.DefaultValue("")]
  4729. public string OpenBankName
  4730. {
  4731. get { return _OpenBankName; }
  4732. set { _OpenBankName = value; }
  4733. }
  4734. private string _BankAccountNo = "";
  4735. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4736. [global::System.ComponentModel.DefaultValue("")]
  4737. public string BankAccountNo
  4738. {
  4739. get { return _BankAccountNo; }
  4740. set { _BankAccountNo = value; }
  4741. }
  4742. private string _BankAccountName = "";
  4743. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"BankAccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4744. [global::System.ComponentModel.DefaultValue("")]
  4745. public string BankAccountName
  4746. {
  4747. get { return _BankAccountName; }
  4748. set { _BankAccountName = value; }
  4749. }
  4750. private string _BankId = "";
  4751. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"BankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4752. [global::System.ComponentModel.DefaultValue("")]
  4753. public string BankId
  4754. {
  4755. get { return _BankId; }
  4756. set { _BankId = value; }
  4757. }
  4758. private global::ProtoBuf.IExtension extensionObject;
  4759. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4760. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4761. }
  4762. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignUpdateRsp")]
  4763. public partial class SignUpdateRsp : global::ProtoBuf.IExtensible
  4764. {
  4765. public SignUpdateRsp() {}
  4766. private Bank.MessageHead _Header = null;
  4767. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4768. [global::System.ComponentModel.DefaultValue(null)]
  4769. public Bank.MessageHead Header
  4770. {
  4771. get { return _Header; }
  4772. set { _Header = value; }
  4773. }
  4774. private int _RetCode = int.MinValue;
  4775. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4776. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4777. public int RetCode
  4778. {
  4779. get { return _RetCode; }
  4780. set { _RetCode = value; }
  4781. }
  4782. private string _RetDesc = "";
  4783. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4784. [global::System.ComponentModel.DefaultValue("")]
  4785. public string RetDesc
  4786. {
  4787. get { return _RetDesc; }
  4788. set { _RetDesc = value; }
  4789. }
  4790. private long _ExtOperatorID = int.MinValue;
  4791. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4792. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4793. public long ExtOperatorID
  4794. {
  4795. get { return _ExtOperatorID; }
  4796. set { _ExtOperatorID = value; }
  4797. }
  4798. private long _CustomerSignId = int.MinValue;
  4799. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4800. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4801. public long CustomerSignId
  4802. {
  4803. get { return _CustomerSignId; }
  4804. set { _CustomerSignId = value; }
  4805. }
  4806. private string _AccountCode = "";
  4807. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4808. [global::System.ComponentModel.DefaultValue("")]
  4809. public string AccountCode
  4810. {
  4811. get { return _AccountCode; }
  4812. set { _AccountCode = value; }
  4813. }
  4814. private string _DealTime = "";
  4815. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4816. [global::System.ComponentModel.DefaultValue("")]
  4817. public string DealTime
  4818. {
  4819. get { return _DealTime; }
  4820. set { _DealTime = value; }
  4821. }
  4822. private string _ExchTicket = "";
  4823. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4824. [global::System.ComponentModel.DefaultValue("")]
  4825. public string ExchTicket
  4826. {
  4827. get { return _ExchTicket; }
  4828. set { _ExchTicket = value; }
  4829. }
  4830. private global::ProtoBuf.IExtension extensionObject;
  4831. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4832. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4833. }
  4834. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSettleDistributeReq")]
  4835. public partial class BankSettleDistributeReq : global::ProtoBuf.IExtensible
  4836. {
  4837. public BankSettleDistributeReq() {}
  4838. private Bank.MessageHead _Header = null;
  4839. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4840. [global::System.ComponentModel.DefaultValue(null)]
  4841. public Bank.MessageHead Header
  4842. {
  4843. get { return _Header; }
  4844. set { _Header = value; }
  4845. }
  4846. private long _ExtOperatorID = int.MinValue;
  4847. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4848. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4849. public long ExtOperatorID
  4850. {
  4851. get { return _ExtOperatorID; }
  4852. set { _ExtOperatorID = value; }
  4853. }
  4854. private string _SettleDate = "";
  4855. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"SettleDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4856. [global::System.ComponentModel.DefaultValue("")]
  4857. public string SettleDate
  4858. {
  4859. get { return _SettleDate; }
  4860. set { _SettleDate = value; }
  4861. }
  4862. private global::ProtoBuf.IExtension extensionObject;
  4863. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4864. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4865. }
  4866. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankSettleDistributeRsp")]
  4867. public partial class BankSettleDistributeRsp : global::ProtoBuf.IExtensible
  4868. {
  4869. public BankSettleDistributeRsp() {}
  4870. private Bank.MessageHead _Header = null;
  4871. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4872. [global::System.ComponentModel.DefaultValue(null)]
  4873. public Bank.MessageHead Header
  4874. {
  4875. get { return _Header; }
  4876. set { _Header = value; }
  4877. }
  4878. private int _RetCode = int.MinValue;
  4879. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4880. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4881. public int RetCode
  4882. {
  4883. get { return _RetCode; }
  4884. set { _RetCode = value; }
  4885. }
  4886. private string _RetDesc = "";
  4887. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4888. [global::System.ComponentModel.DefaultValue("")]
  4889. public string RetDesc
  4890. {
  4891. get { return _RetDesc; }
  4892. set { _RetDesc = value; }
  4893. }
  4894. private long _ExtOperatorID = int.MinValue;
  4895. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4896. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4897. public long ExtOperatorID
  4898. {
  4899. get { return _ExtOperatorID; }
  4900. set { _ExtOperatorID = value; }
  4901. }
  4902. private string _SettleDate = "";
  4903. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"SettleDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4904. [global::System.ComponentModel.DefaultValue("")]
  4905. public string SettleDate
  4906. {
  4907. get { return _SettleDate; }
  4908. set { _SettleDate = value; }
  4909. }
  4910. private string _DealTime = "";
  4911. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4912. [global::System.ComponentModel.DefaultValue("")]
  4913. public string DealTime
  4914. {
  4915. get { return _DealTime; }
  4916. set { _DealTime = value; }
  4917. }
  4918. private global::ProtoBuf.IExtension extensionObject;
  4919. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  4920. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  4921. }
  4922. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchChargeOutAppReq")]
  4923. public partial class BankExchChargeOutAppReq : global::ProtoBuf.IExtensible
  4924. {
  4925. public BankExchChargeOutAppReq() {}
  4926. private Bank.MessageHead _Header = null;
  4927. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4928. [global::System.ComponentModel.DefaultValue(null)]
  4929. public Bank.MessageHead Header
  4930. {
  4931. get { return _Header; }
  4932. set { _Header = value; }
  4933. }
  4934. private long _ExtOperatorID = int.MinValue;
  4935. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4936. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4937. public long ExtOperatorID
  4938. {
  4939. get { return _ExtOperatorID; }
  4940. set { _ExtOperatorID = value; }
  4941. }
  4942. private string _CusBankID = "";
  4943. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4944. [global::System.ComponentModel.DefaultValue("")]
  4945. public string CusBankID
  4946. {
  4947. get { return _CusBankID; }
  4948. set { _CusBankID = value; }
  4949. }
  4950. private double _Amount = int.MinValue;
  4951. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4952. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4953. public double Amount
  4954. {
  4955. get { return _Amount; }
  4956. set { _Amount = value; }
  4957. }
  4958. private string _AppDateTime = "";
  4959. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4960. [global::System.ComponentModel.DefaultValue("")]
  4961. public string AppDateTime
  4962. {
  4963. get { return _AppDateTime; }
  4964. set { _AppDateTime = value; }
  4965. }
  4966. private string _Currency = "";
  4967. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  4968. [global::System.ComponentModel.DefaultValue("")]
  4969. public string Currency
  4970. {
  4971. get { return _Currency; }
  4972. set { _Currency = value; }
  4973. }
  4974. private int _ExchID = int.MinValue;
  4975. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExchID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4976. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4977. public int ExchID
  4978. {
  4979. get { return _ExchID; }
  4980. set { _ExchID = value; }
  4981. }
  4982. private int _AccountType = int.MinValue;
  4983. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4984. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4985. public int AccountType
  4986. {
  4987. get { return _AccountType; }
  4988. set { _AccountType = value; }
  4989. }
  4990. private int _TransferType = int.MinValue;
  4991. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"TransferType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  4992. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  4993. public int TransferType
  4994. {
  4995. get { return _TransferType; }
  4996. set { _TransferType = value; }
  4997. }
  4998. private string _AppEndDateTime = "";
  4999. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"AppEndDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5000. [global::System.ComponentModel.DefaultValue("")]
  5001. public string AppEndDateTime
  5002. {
  5003. get { return _AppEndDateTime; }
  5004. set { _AppEndDateTime = value; }
  5005. }
  5006. private string _TargetBankUserName = "";
  5007. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"TargetBankUserName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5008. [global::System.ComponentModel.DefaultValue("")]
  5009. public string TargetBankUserName
  5010. {
  5011. get { return _TargetBankUserName; }
  5012. set { _TargetBankUserName = value; }
  5013. }
  5014. private string _TargetBankNoID = "";
  5015. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"TargetBankNoID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5016. [global::System.ComponentModel.DefaultValue("")]
  5017. public string TargetBankNoID
  5018. {
  5019. get { return _TargetBankNoID; }
  5020. set { _TargetBankNoID = value; }
  5021. }
  5022. private string _AppBeginDateTime = "";
  5023. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"AppBeginDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5024. [global::System.ComponentModel.DefaultValue("")]
  5025. public string AppBeginDateTime
  5026. {
  5027. get { return _AppBeginDateTime; }
  5028. set { _AppBeginDateTime = value; }
  5029. }
  5030. private string _TargBankAcc = "";
  5031. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"TargBankAcc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5032. [global::System.ComponentModel.DefaultValue("")]
  5033. public string TargBankAcc
  5034. {
  5035. get { return _TargBankAcc; }
  5036. set { _TargBankAcc = value; }
  5037. }
  5038. private global::ProtoBuf.IExtension extensionObject;
  5039. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5040. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5041. }
  5042. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchChargeOutAppRsp")]
  5043. public partial class BankExchChargeOutAppRsp : global::ProtoBuf.IExtensible
  5044. {
  5045. public BankExchChargeOutAppRsp() {}
  5046. private Bank.MessageHead _Header = null;
  5047. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5048. [global::System.ComponentModel.DefaultValue(null)]
  5049. public Bank.MessageHead Header
  5050. {
  5051. get { return _Header; }
  5052. set { _Header = value; }
  5053. }
  5054. private int _RetCode = int.MinValue;
  5055. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5056. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5057. public int RetCode
  5058. {
  5059. get { return _RetCode; }
  5060. set { _RetCode = value; }
  5061. }
  5062. private string _RetDesc = "";
  5063. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5064. [global::System.ComponentModel.DefaultValue("")]
  5065. public string RetDesc
  5066. {
  5067. get { return _RetDesc; }
  5068. set { _RetDesc = value; }
  5069. }
  5070. private long _ExtOperatorID = int.MinValue;
  5071. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5072. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5073. public long ExtOperatorID
  5074. {
  5075. get { return _ExtOperatorID; }
  5076. set { _ExtOperatorID = value; }
  5077. }
  5078. private string _CusBankID = "";
  5079. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5080. [global::System.ComponentModel.DefaultValue("")]
  5081. public string CusBankID
  5082. {
  5083. get { return _CusBankID; }
  5084. set { _CusBankID = value; }
  5085. }
  5086. private string _ExchTicket = "";
  5087. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5088. [global::System.ComponentModel.DefaultValue("")]
  5089. public string ExchTicket
  5090. {
  5091. get { return _ExchTicket; }
  5092. set { _ExchTicket = value; }
  5093. }
  5094. private string _DateTime = "";
  5095. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5096. [global::System.ComponentModel.DefaultValue("")]
  5097. public string DateTime
  5098. {
  5099. get { return _DateTime; }
  5100. set { _DateTime = value; }
  5101. }
  5102. private int _Status = int.MinValue;
  5103. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5104. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5105. public int Status
  5106. {
  5107. get { return _Status; }
  5108. set { _Status = value; }
  5109. }
  5110. private int _ExchID = int.MinValue;
  5111. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"ExchID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5112. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5113. public int ExchID
  5114. {
  5115. get { return _ExchID; }
  5116. set { _ExchID = value; }
  5117. }
  5118. private string _DealTime = "";
  5119. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5120. [global::System.ComponentModel.DefaultValue("")]
  5121. public string DealTime
  5122. {
  5123. get { return _DealTime; }
  5124. set { _DealTime = value; }
  5125. }
  5126. private int _AccountType = int.MinValue;
  5127. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5128. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5129. public int AccountType
  5130. {
  5131. get { return _AccountType; }
  5132. set { _AccountType = value; }
  5133. }
  5134. private int _TransferType = int.MinValue;
  5135. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"TransferType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5136. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5137. public int TransferType
  5138. {
  5139. get { return _TransferType; }
  5140. set { _TransferType = value; }
  5141. }
  5142. private global::ProtoBuf.IExtension extensionObject;
  5143. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5144. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5145. }
  5146. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchChargeOutComfirmReq")]
  5147. public partial class BankExchChargeOutComfirmReq : global::ProtoBuf.IExtensible
  5148. {
  5149. public BankExchChargeOutComfirmReq() {}
  5150. private Bank.MessageHead _Header = null;
  5151. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5152. [global::System.ComponentModel.DefaultValue(null)]
  5153. public Bank.MessageHead Header
  5154. {
  5155. get { return _Header; }
  5156. set { _Header = value; }
  5157. }
  5158. private long _ExtOperatorID = int.MinValue;
  5159. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5160. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5161. public long ExtOperatorID
  5162. {
  5163. get { return _ExtOperatorID; }
  5164. set { _ExtOperatorID = value; }
  5165. }
  5166. private string _CusBankID = "";
  5167. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5168. [global::System.ComponentModel.DefaultValue("")]
  5169. public string CusBankID
  5170. {
  5171. get { return _CusBankID; }
  5172. set { _CusBankID = value; }
  5173. }
  5174. private double _Amount = int.MinValue;
  5175. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5176. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5177. public double Amount
  5178. {
  5179. get { return _Amount; }
  5180. set { _Amount = value; }
  5181. }
  5182. private string _AppDateTime = "";
  5183. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5184. [global::System.ComponentModel.DefaultValue("")]
  5185. public string AppDateTime
  5186. {
  5187. get { return _AppDateTime; }
  5188. set { _AppDateTime = value; }
  5189. }
  5190. private string _Currency = "";
  5191. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5192. [global::System.ComponentModel.DefaultValue("")]
  5193. public string Currency
  5194. {
  5195. get { return _Currency; }
  5196. set { _Currency = value; }
  5197. }
  5198. private int _ExchID = int.MinValue;
  5199. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExchID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5200. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5201. public int ExchID
  5202. {
  5203. get { return _ExchID; }
  5204. set { _ExchID = value; }
  5205. }
  5206. private string _ExchTicket = "";
  5207. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5208. [global::System.ComponentModel.DefaultValue("")]
  5209. public string ExchTicket
  5210. {
  5211. get { return _ExchTicket; }
  5212. set { _ExchTicket = value; }
  5213. }
  5214. private int _Result = int.MinValue;
  5215. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"Result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5216. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5217. public int Result
  5218. {
  5219. get { return _Result; }
  5220. set { _Result = value; }
  5221. }
  5222. private string _Desc = "";
  5223. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5224. [global::System.ComponentModel.DefaultValue("")]
  5225. public string Desc
  5226. {
  5227. get { return _Desc; }
  5228. set { _Desc = value; }
  5229. }
  5230. private int _AccountType = int.MinValue;
  5231. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5232. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5233. public int AccountType
  5234. {
  5235. get { return _AccountType; }
  5236. set { _AccountType = value; }
  5237. }
  5238. private int _TransferType = int.MinValue;
  5239. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"TransferType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5240. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5241. public int TransferType
  5242. {
  5243. get { return _TransferType; }
  5244. set { _TransferType = value; }
  5245. }
  5246. private string _AppEndDateTime = "";
  5247. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"AppEndDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5248. [global::System.ComponentModel.DefaultValue("")]
  5249. public string AppEndDateTime
  5250. {
  5251. get { return _AppEndDateTime; }
  5252. set { _AppEndDateTime = value; }
  5253. }
  5254. private string _TargetBankUserName = "";
  5255. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"TargetBankUserName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5256. [global::System.ComponentModel.DefaultValue("")]
  5257. public string TargetBankUserName
  5258. {
  5259. get { return _TargetBankUserName; }
  5260. set { _TargetBankUserName = value; }
  5261. }
  5262. private string _TargetBankNoID = "";
  5263. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"TargetBankNoID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5264. [global::System.ComponentModel.DefaultValue("")]
  5265. public string TargetBankNoID
  5266. {
  5267. get { return _TargetBankNoID; }
  5268. set { _TargetBankNoID = value; }
  5269. }
  5270. private string _AppBeginDateTime = "";
  5271. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"AppBeginDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5272. [global::System.ComponentModel.DefaultValue("")]
  5273. public string AppBeginDateTime
  5274. {
  5275. get { return _AppBeginDateTime; }
  5276. set { _AppBeginDateTime = value; }
  5277. }
  5278. private string _TargBankAcc = "";
  5279. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"TargBankAcc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5280. [global::System.ComponentModel.DefaultValue("")]
  5281. public string TargBankAcc
  5282. {
  5283. get { return _TargBankAcc; }
  5284. set { _TargBankAcc = value; }
  5285. }
  5286. private global::ProtoBuf.IExtension extensionObject;
  5287. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5288. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5289. }
  5290. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchChargeOutComfirmRsp")]
  5291. public partial class BankExchChargeOutComfirmRsp : global::ProtoBuf.IExtensible
  5292. {
  5293. public BankExchChargeOutComfirmRsp() {}
  5294. private Bank.MessageHead _Header = null;
  5295. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5296. [global::System.ComponentModel.DefaultValue(null)]
  5297. public Bank.MessageHead Header
  5298. {
  5299. get { return _Header; }
  5300. set { _Header = value; }
  5301. }
  5302. private int _RetCode = int.MinValue;
  5303. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5304. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5305. public int RetCode
  5306. {
  5307. get { return _RetCode; }
  5308. set { _RetCode = value; }
  5309. }
  5310. private string _RetDesc = "";
  5311. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5312. [global::System.ComponentModel.DefaultValue("")]
  5313. public string RetDesc
  5314. {
  5315. get { return _RetDesc; }
  5316. set { _RetDesc = value; }
  5317. }
  5318. private long _ExtOperatorID = int.MinValue;
  5319. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5320. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5321. public long ExtOperatorID
  5322. {
  5323. get { return _ExtOperatorID; }
  5324. set { _ExtOperatorID = value; }
  5325. }
  5326. private string _CusBankID = "";
  5327. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5328. [global::System.ComponentModel.DefaultValue("")]
  5329. public string CusBankID
  5330. {
  5331. get { return _CusBankID; }
  5332. set { _CusBankID = value; }
  5333. }
  5334. private string _ExchTicket = "";
  5335. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5336. [global::System.ComponentModel.DefaultValue("")]
  5337. public string ExchTicket
  5338. {
  5339. get { return _ExchTicket; }
  5340. set { _ExchTicket = value; }
  5341. }
  5342. private string _DateTime = "";
  5343. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5344. [global::System.ComponentModel.DefaultValue("")]
  5345. public string DateTime
  5346. {
  5347. get { return _DateTime; }
  5348. set { _DateTime = value; }
  5349. }
  5350. private int _ExchID = int.MinValue;
  5351. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5352. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5353. public int ExchID
  5354. {
  5355. get { return _ExchID; }
  5356. set { _ExchID = value; }
  5357. }
  5358. private string _DealTime = "";
  5359. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5360. [global::System.ComponentModel.DefaultValue("")]
  5361. public string DealTime
  5362. {
  5363. get { return _DealTime; }
  5364. set { _DealTime = value; }
  5365. }
  5366. private int _AccountType = int.MinValue;
  5367. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5368. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5369. public int AccountType
  5370. {
  5371. get { return _AccountType; }
  5372. set { _AccountType = value; }
  5373. }
  5374. private int _TransferType = int.MinValue;
  5375. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"TransferType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5376. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5377. public int TransferType
  5378. {
  5379. get { return _TransferType; }
  5380. set { _TransferType = value; }
  5381. }
  5382. private global::ProtoBuf.IExtension extensionObject;
  5383. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5384. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5385. }
  5386. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CreateBankAjustAmountReq")]
  5387. public partial class CreateBankAjustAmountReq : global::ProtoBuf.IExtensible
  5388. {
  5389. public CreateBankAjustAmountReq() {}
  5390. private Bank.MessageHead _Header = null;
  5391. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5392. [global::System.ComponentModel.DefaultValue(null)]
  5393. public Bank.MessageHead Header
  5394. {
  5395. get { return _Header; }
  5396. set { _Header = value; }
  5397. }
  5398. private long _ExtOperatorID;
  5399. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5400. public long ExtOperatorID
  5401. {
  5402. get { return _ExtOperatorID; }
  5403. set { _ExtOperatorID = value; }
  5404. }
  5405. private string _TradeDate = "";
  5406. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"TradeDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5407. [global::System.ComponentModel.DefaultValue("")]
  5408. public string TradeDate
  5409. {
  5410. get { return _TradeDate; }
  5411. set { _TradeDate = value; }
  5412. }
  5413. private global::ProtoBuf.IExtension extensionObject;
  5414. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5415. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5416. }
  5417. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"CreateBankAjustAmountRsp")]
  5418. public partial class CreateBankAjustAmountRsp : global::ProtoBuf.IExtensible
  5419. {
  5420. public CreateBankAjustAmountRsp() {}
  5421. private Bank.MessageHead _Header = null;
  5422. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5423. [global::System.ComponentModel.DefaultValue(null)]
  5424. public Bank.MessageHead Header
  5425. {
  5426. get { return _Header; }
  5427. set { _Header = value; }
  5428. }
  5429. private int _RetCode = int.MinValue;
  5430. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5431. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5432. public int RetCode
  5433. {
  5434. get { return _RetCode; }
  5435. set { _RetCode = value; }
  5436. }
  5437. private string _RetDesc = "";
  5438. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5439. [global::System.ComponentModel.DefaultValue("")]
  5440. public string RetDesc
  5441. {
  5442. get { return _RetDesc; }
  5443. set { _RetDesc = value; }
  5444. }
  5445. private long _ExtOperatorID = int.MinValue;
  5446. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5447. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5448. public long ExtOperatorID
  5449. {
  5450. get { return _ExtOperatorID; }
  5451. set { _ExtOperatorID = value; }
  5452. }
  5453. private string _TradeDate = "";
  5454. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"TradeDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5455. [global::System.ComponentModel.DefaultValue("")]
  5456. public string TradeDate
  5457. {
  5458. get { return _TradeDate; }
  5459. set { _TradeDate = value; }
  5460. }
  5461. private global::ProtoBuf.IExtension extensionObject;
  5462. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5463. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5464. }
  5465. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignInReq")]
  5466. public partial class SignInReq : global::ProtoBuf.IExtensible
  5467. {
  5468. public SignInReq() {}
  5469. private Bank.MessageHead _Header = null;
  5470. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5471. [global::System.ComponentModel.DefaultValue(null)]
  5472. public Bank.MessageHead Header
  5473. {
  5474. get { return _Header; }
  5475. set { _Header = value; }
  5476. }
  5477. private string _CusBankId = "";
  5478. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5479. [global::System.ComponentModel.DefaultValue("")]
  5480. public string CusBankId
  5481. {
  5482. get { return _CusBankId; }
  5483. set { _CusBankId = value; }
  5484. }
  5485. private int _ForceSignInFlag = int.MinValue;
  5486. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ForceSignInFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5487. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5488. public int ForceSignInFlag
  5489. {
  5490. get { return _ForceSignInFlag; }
  5491. set { _ForceSignInFlag = value; }
  5492. }
  5493. private string _Currency = "";
  5494. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5495. [global::System.ComponentModel.DefaultValue("")]
  5496. public string Currency
  5497. {
  5498. get { return _Currency; }
  5499. set { _Currency = value; }
  5500. }
  5501. private global::ProtoBuf.IExtension extensionObject;
  5502. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5503. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5504. }
  5505. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignInRsp")]
  5506. public partial class SignInRsp : global::ProtoBuf.IExtensible
  5507. {
  5508. public SignInRsp() {}
  5509. private Bank.MessageHead _Header = null;
  5510. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5511. [global::System.ComponentModel.DefaultValue(null)]
  5512. public Bank.MessageHead Header
  5513. {
  5514. get { return _Header; }
  5515. set { _Header = value; }
  5516. }
  5517. private int _RetCode = int.MinValue;
  5518. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5519. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5520. public int RetCode
  5521. {
  5522. get { return _RetCode; }
  5523. set { _RetCode = value; }
  5524. }
  5525. private string _RetDesc = "";
  5526. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5527. [global::System.ComponentModel.DefaultValue("")]
  5528. public string RetDesc
  5529. {
  5530. get { return _RetDesc; }
  5531. set { _RetDesc = value; }
  5532. }
  5533. private global::ProtoBuf.IExtension extensionObject;
  5534. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5535. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5536. }
  5537. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignBankPwdReq")]
  5538. public partial class SignBankPwdReq : global::ProtoBuf.IExtensible
  5539. {
  5540. public SignBankPwdReq() {}
  5541. private Bank.MessageHead _Header = null;
  5542. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5543. [global::System.ComponentModel.DefaultValue(null)]
  5544. public Bank.MessageHead Header
  5545. {
  5546. get { return _Header; }
  5547. set { _Header = value; }
  5548. }
  5549. private long _ExtOperatorID;
  5550. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5551. public long ExtOperatorID
  5552. {
  5553. get { return _ExtOperatorID; }
  5554. set { _ExtOperatorID = value; }
  5555. }
  5556. private string _ExchTicket = "";
  5557. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5558. [global::System.ComponentModel.DefaultValue("")]
  5559. public string ExchTicket
  5560. {
  5561. get { return _ExchTicket; }
  5562. set { _ExchTicket = value; }
  5563. }
  5564. private string _AccountCode = "";
  5565. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5566. [global::System.ComponentModel.DefaultValue("")]
  5567. public string AccountCode
  5568. {
  5569. get { return _AccountCode; }
  5570. set { _AccountCode = value; }
  5571. }
  5572. private string _CusBankId = "";
  5573. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5574. [global::System.ComponentModel.DefaultValue("")]
  5575. public string CusBankId
  5576. {
  5577. get { return _CusBankId; }
  5578. set { _CusBankId = value; }
  5579. }
  5580. private string _Currency = "";
  5581. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5582. [global::System.ComponentModel.DefaultValue("")]
  5583. public string Currency
  5584. {
  5585. get { return _Currency; }
  5586. set { _Currency = value; }
  5587. }
  5588. private string _BankAccountPWD = "";
  5589. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"BankAccountPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5590. [global::System.ComponentModel.DefaultValue("")]
  5591. public string BankAccountPWD
  5592. {
  5593. get { return _BankAccountPWD; }
  5594. set { _BankAccountPWD = value; }
  5595. }
  5596. private global::ProtoBuf.IExtension extensionObject;
  5597. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5598. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5599. }
  5600. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SignBankPwdInRsp")]
  5601. public partial class SignBankPwdInRsp : global::ProtoBuf.IExtensible
  5602. {
  5603. public SignBankPwdInRsp() {}
  5604. private Bank.MessageHead _Header = null;
  5605. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5606. [global::System.ComponentModel.DefaultValue(null)]
  5607. public Bank.MessageHead Header
  5608. {
  5609. get { return _Header; }
  5610. set { _Header = value; }
  5611. }
  5612. private int _RetCode = int.MinValue;
  5613. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5614. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5615. public int RetCode
  5616. {
  5617. get { return _RetCode; }
  5618. set { _RetCode = value; }
  5619. }
  5620. private string _RetDesc = "";
  5621. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5622. [global::System.ComponentModel.DefaultValue("")]
  5623. public string RetDesc
  5624. {
  5625. get { return _RetDesc; }
  5626. set { _RetDesc = value; }
  5627. }
  5628. private global::ProtoBuf.IExtension extensionObject;
  5629. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5630. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5631. }
  5632. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ApplySecretKeyReq")]
  5633. public partial class ApplySecretKeyReq : global::ProtoBuf.IExtensible
  5634. {
  5635. public ApplySecretKeyReq() {}
  5636. private Bank.MessageHead _Header = null;
  5637. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5638. [global::System.ComponentModel.DefaultValue(null)]
  5639. public Bank.MessageHead Header
  5640. {
  5641. get { return _Header; }
  5642. set { _Header = value; }
  5643. }
  5644. private long _ExtOperatorID;
  5645. [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5646. public long ExtOperatorID
  5647. {
  5648. get { return _ExtOperatorID; }
  5649. set { _ExtOperatorID = value; }
  5650. }
  5651. private string _CusBankId = "";
  5652. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5653. [global::System.ComponentModel.DefaultValue("")]
  5654. public string CusBankId
  5655. {
  5656. get { return _CusBankId; }
  5657. set { _CusBankId = value; }
  5658. }
  5659. private string _Currency = "";
  5660. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5661. [global::System.ComponentModel.DefaultValue("")]
  5662. public string Currency
  5663. {
  5664. get { return _Currency; }
  5665. set { _Currency = value; }
  5666. }
  5667. private string _KMCode = "";
  5668. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"KMCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5669. [global::System.ComponentModel.DefaultValue("")]
  5670. public string KMCode
  5671. {
  5672. get { return _KMCode; }
  5673. set { _KMCode = value; }
  5674. }
  5675. private global::ProtoBuf.IExtension extensionObject;
  5676. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5677. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5678. }
  5679. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ApplySecretKeyRsp")]
  5680. public partial class ApplySecretKeyRsp : global::ProtoBuf.IExtensible
  5681. {
  5682. public ApplySecretKeyRsp() {}
  5683. private Bank.MessageHead _Header = null;
  5684. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5685. [global::System.ComponentModel.DefaultValue(null)]
  5686. public Bank.MessageHead Header
  5687. {
  5688. get { return _Header; }
  5689. set { _Header = value; }
  5690. }
  5691. private int _RetCode = int.MinValue;
  5692. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5693. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5694. public int RetCode
  5695. {
  5696. get { return _RetCode; }
  5697. set { _RetCode = value; }
  5698. }
  5699. private string _RetDesc = "";
  5700. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5701. [global::System.ComponentModel.DefaultValue("")]
  5702. public string RetDesc
  5703. {
  5704. get { return _RetDesc; }
  5705. set { _RetDesc = value; }
  5706. }
  5707. private long _ExtOperatorID;
  5708. [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5709. public long ExtOperatorID
  5710. {
  5711. get { return _ExtOperatorID; }
  5712. set { _ExtOperatorID = value; }
  5713. }
  5714. private string _SecretKey = "";
  5715. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"SecretKey", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5716. [global::System.ComponentModel.DefaultValue("")]
  5717. public string SecretKey
  5718. {
  5719. get { return _SecretKey; }
  5720. set { _SecretKey = value; }
  5721. }
  5722. private string _KMCode = "";
  5723. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"KMCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5724. [global::System.ComponentModel.DefaultValue("")]
  5725. public string KMCode
  5726. {
  5727. get { return _KMCode; }
  5728. set { _KMCode = value; }
  5729. }
  5730. private string _KPCode = "";
  5731. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"KPCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5732. [global::System.ComponentModel.DefaultValue("")]
  5733. public string KPCode
  5734. {
  5735. get { return _KPCode; }
  5736. set { _KPCode = value; }
  5737. }
  5738. private string _ExchTicket = "";
  5739. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5740. [global::System.ComponentModel.DefaultValue("")]
  5741. public string ExchTicket
  5742. {
  5743. get { return _ExchTicket; }
  5744. set { _ExchTicket = value; }
  5745. }
  5746. private global::ProtoBuf.IExtension extensionObject;
  5747. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5748. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5749. }
  5750. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountInfoReq")]
  5751. public partial class QueryBankAccountInfoReq : global::ProtoBuf.IExtensible
  5752. {
  5753. public QueryBankAccountInfoReq() {}
  5754. private Bank.MessageHead _Header = null;
  5755. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5756. [global::System.ComponentModel.DefaultValue(null)]
  5757. public Bank.MessageHead Header
  5758. {
  5759. get { return _Header; }
  5760. set { _Header = value; }
  5761. }
  5762. private Bank.QueryReqPageInfo _PageInfo = null;
  5763. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5764. [global::System.ComponentModel.DefaultValue(null)]
  5765. public Bank.QueryReqPageInfo PageInfo
  5766. {
  5767. get { return _PageInfo; }
  5768. set { _PageInfo = value; }
  5769. }
  5770. private string _AccountCode = "";
  5771. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5772. [global::System.ComponentModel.DefaultValue("")]
  5773. public string AccountCode
  5774. {
  5775. get { return _AccountCode; }
  5776. set { _AccountCode = value; }
  5777. }
  5778. private int _AccountCodeFlag = int.MinValue;
  5779. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCodeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5780. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5781. public int AccountCodeFlag
  5782. {
  5783. get { return _AccountCodeFlag; }
  5784. set { _AccountCodeFlag = value; }
  5785. }
  5786. private string _AccountType = "";
  5787. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5788. [global::System.ComponentModel.DefaultValue("")]
  5789. public string AccountType
  5790. {
  5791. get { return _AccountType; }
  5792. set { _AccountType = value; }
  5793. }
  5794. private int _AccountTypeFlag = int.MinValue;
  5795. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountTypeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5796. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5797. public int AccountTypeFlag
  5798. {
  5799. get { return _AccountTypeFlag; }
  5800. set { _AccountTypeFlag = value; }
  5801. }
  5802. private string _Cusbankid = "";
  5803. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5804. [global::System.ComponentModel.DefaultValue("")]
  5805. public string Cusbankid
  5806. {
  5807. get { return _Cusbankid; }
  5808. set { _Cusbankid = value; }
  5809. }
  5810. private int _CusbankidFlag = int.MinValue;
  5811. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"CusbankidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5812. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5813. public int CusbankidFlag
  5814. {
  5815. get { return _CusbankidFlag; }
  5816. set { _CusbankidFlag = value; }
  5817. }
  5818. private global::ProtoBuf.IExtension extensionObject;
  5819. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5820. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5821. }
  5822. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountInfoRsp_")]
  5823. public partial class QueryBankAccountInfoRsp_ : global::ProtoBuf.IExtensible
  5824. {
  5825. public QueryBankAccountInfoRsp_() {}
  5826. private string _AccountCode = "";
  5827. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5828. [global::System.ComponentModel.DefaultValue("")]
  5829. public string AccountCode
  5830. {
  5831. get { return _AccountCode; }
  5832. set { _AccountCode = value; }
  5833. }
  5834. private string _AccountType = "";
  5835. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5836. [global::System.ComponentModel.DefaultValue("")]
  5837. public string AccountType
  5838. {
  5839. get { return _AccountType; }
  5840. set { _AccountType = value; }
  5841. }
  5842. private string _Cusbankid = "";
  5843. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5844. [global::System.ComponentModel.DefaultValue("")]
  5845. public string Cusbankid
  5846. {
  5847. get { return _Cusbankid; }
  5848. set { _Cusbankid = value; }
  5849. }
  5850. private double _BankBalance = int.MinValue;
  5851. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"BankBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5852. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5853. public double BankBalance
  5854. {
  5855. get { return _BankBalance; }
  5856. set { _BankBalance = value; }
  5857. }
  5858. private double _PlatBalance = int.MinValue;
  5859. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"PlatBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5860. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5861. public double PlatBalance
  5862. {
  5863. get { return _PlatBalance; }
  5864. set { _PlatBalance = value; }
  5865. }
  5866. private string _ExchTicket = "";
  5867. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5868. [global::System.ComponentModel.DefaultValue("")]
  5869. public string ExchTicket
  5870. {
  5871. get { return _ExchTicket; }
  5872. set { _ExchTicket = value; }
  5873. }
  5874. private global::ProtoBuf.IExtension extensionObject;
  5875. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5876. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5877. }
  5878. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountInfoRsp")]
  5879. public partial class QueryBankAccountInfoRsp : global::ProtoBuf.IExtensible
  5880. {
  5881. public QueryBankAccountInfoRsp() {}
  5882. private Bank.MessageHead _Header = null;
  5883. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5884. [global::System.ComponentModel.DefaultValue(null)]
  5885. public Bank.MessageHead Header
  5886. {
  5887. get { return _Header; }
  5888. set { _Header = value; }
  5889. }
  5890. private int _RetCode = int.MinValue;
  5891. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5892. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5893. public int RetCode
  5894. {
  5895. get { return _RetCode; }
  5896. set { _RetCode = value; }
  5897. }
  5898. private string _RetDesc = "";
  5899. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5900. [global::System.ComponentModel.DefaultValue("")]
  5901. public string RetDesc
  5902. {
  5903. get { return _RetDesc; }
  5904. set { _RetDesc = value; }
  5905. }
  5906. private Bank.QueryRspPageInfo _PageInfo = null;
  5907. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5908. [global::System.ComponentModel.DefaultValue(null)]
  5909. public Bank.QueryRspPageInfo PageInfo
  5910. {
  5911. get { return _PageInfo; }
  5912. set { _PageInfo = value; }
  5913. }
  5914. private readonly global::System.Collections.Generic.List<Bank.QueryBankAccountInfoRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankAccountInfoRsp_>();
  5915. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5916. public global::System.Collections.Generic.List<Bank.QueryBankAccountInfoRsp_> Rsps
  5917. {
  5918. get { return _Rsps; }
  5919. }
  5920. private global::ProtoBuf.IExtension extensionObject;
  5921. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  5922. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  5923. }
  5924. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawFrozenExReq")]
  5925. public partial class BankWithDrawFrozenExReq : global::ProtoBuf.IExtensible
  5926. {
  5927. public BankWithDrawFrozenExReq() {}
  5928. private Bank.MessageHead _Header = null;
  5929. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5930. [global::System.ComponentModel.DefaultValue(null)]
  5931. public Bank.MessageHead Header
  5932. {
  5933. get { return _Header; }
  5934. set { _Header = value; }
  5935. }
  5936. private long _ExtOperatorID = int.MinValue;
  5937. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5938. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5939. public long ExtOperatorID
  5940. {
  5941. get { return _ExtOperatorID; }
  5942. set { _ExtOperatorID = value; }
  5943. }
  5944. private string _AccountCode = "";
  5945. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5946. [global::System.ComponentModel.DefaultValue("")]
  5947. public string AccountCode
  5948. {
  5949. get { return _AccountCode; }
  5950. set { _AccountCode = value; }
  5951. }
  5952. private double _Amount = int.MinValue;
  5953. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  5954. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  5955. public double Amount
  5956. {
  5957. get { return _Amount; }
  5958. set { _Amount = value; }
  5959. }
  5960. private string _AppDateTime = "";
  5961. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5962. [global::System.ComponentModel.DefaultValue("")]
  5963. public string AppDateTime
  5964. {
  5965. get { return _AppDateTime; }
  5966. set { _AppDateTime = value; }
  5967. }
  5968. private string _BankAccountNo = "";
  5969. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5970. [global::System.ComponentModel.DefaultValue("")]
  5971. public string BankAccountNo
  5972. {
  5973. get { return _BankAccountNo; }
  5974. set { _BankAccountNo = value; }
  5975. }
  5976. private string _Currency = "";
  5977. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5978. [global::System.ComponentModel.DefaultValue("")]
  5979. public string Currency
  5980. {
  5981. get { return _Currency; }
  5982. set { _Currency = value; }
  5983. }
  5984. private string _ExchTicket = "";
  5985. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5986. [global::System.ComponentModel.DefaultValue("")]
  5987. public string ExchTicket
  5988. {
  5989. get { return _ExchTicket; }
  5990. set { _ExchTicket = value; }
  5991. }
  5992. private string _OldTaPWD = "";
  5993. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"OldTaPWD", DataFormat = global::ProtoBuf.DataFormat.Default)]
  5994. [global::System.ComponentModel.DefaultValue("")]
  5995. public string OldTaPWD
  5996. {
  5997. get { return _OldTaPWD; }
  5998. set { _OldTaPWD = value; }
  5999. }
  6000. private string _CusBankID = "";
  6001. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6002. [global::System.ComponentModel.DefaultValue("")]
  6003. public string CusBankID
  6004. {
  6005. get { return _CusBankID; }
  6006. set { _CusBankID = value; }
  6007. }
  6008. private global::ProtoBuf.IExtension extensionObject;
  6009. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6010. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6011. }
  6012. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankWithDrawFrozenExRsp")]
  6013. public partial class BankWithDrawFrozenExRsp : global::ProtoBuf.IExtensible
  6014. {
  6015. public BankWithDrawFrozenExRsp() {}
  6016. private Bank.MessageHead _Header = null;
  6017. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6018. [global::System.ComponentModel.DefaultValue(null)]
  6019. public Bank.MessageHead Header
  6020. {
  6021. get { return _Header; }
  6022. set { _Header = value; }
  6023. }
  6024. private int _RetCode = int.MinValue;
  6025. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6026. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6027. public int RetCode
  6028. {
  6029. get { return _RetCode; }
  6030. set { _RetCode = value; }
  6031. }
  6032. private string _RetDesc = "";
  6033. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6034. [global::System.ComponentModel.DefaultValue("")]
  6035. public string RetDesc
  6036. {
  6037. get { return _RetDesc; }
  6038. set { _RetDesc = value; }
  6039. }
  6040. private long _ExtOperatorID = int.MinValue;
  6041. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6042. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6043. public long ExtOperatorID
  6044. {
  6045. get { return _ExtOperatorID; }
  6046. set { _ExtOperatorID = value; }
  6047. }
  6048. private string _AccountCode = "";
  6049. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6050. [global::System.ComponentModel.DefaultValue("")]
  6051. public string AccountCode
  6052. {
  6053. get { return _AccountCode; }
  6054. set { _AccountCode = value; }
  6055. }
  6056. private string _ExchTicket = "";
  6057. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6058. [global::System.ComponentModel.DefaultValue("")]
  6059. public string ExchTicket
  6060. {
  6061. get { return _ExchTicket; }
  6062. set { _ExchTicket = value; }
  6063. }
  6064. private Bank.ArrayCustomer _Customer = null;
  6065. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Customer", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6066. [global::System.ComponentModel.DefaultValue(null)]
  6067. public Bank.ArrayCustomer Customer
  6068. {
  6069. get { return _Customer; }
  6070. set { _Customer = value; }
  6071. }
  6072. private Bank.ArrayFuturesAccount _FuturesAccount = null;
  6073. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"FuturesAccount", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6074. [global::System.ComponentModel.DefaultValue(null)]
  6075. public Bank.ArrayFuturesAccount FuturesAccount
  6076. {
  6077. get { return _FuturesAccount; }
  6078. set { _FuturesAccount = value; }
  6079. }
  6080. private string _DealTime = "";
  6081. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6082. [global::System.ComponentModel.DefaultValue("")]
  6083. public string DealTime
  6084. {
  6085. get { return _DealTime; }
  6086. set { _DealTime = value; }
  6087. }
  6088. private global::ProtoBuf.IExtension extensionObject;
  6089. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6090. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6091. }
  6092. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchCheckList")]
  6093. public partial class ExchCheckList : global::ProtoBuf.IExtensible
  6094. {
  6095. public ExchCheckList() {}
  6096. private Bank.MessageHead _Header = null;
  6097. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6098. [global::System.ComponentModel.DefaultValue(null)]
  6099. public Bank.MessageHead Header
  6100. {
  6101. get { return _Header; }
  6102. set { _Header = value; }
  6103. }
  6104. private int _RetCode = int.MinValue;
  6105. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6106. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6107. public int RetCode
  6108. {
  6109. get { return _RetCode; }
  6110. set { _RetCode = value; }
  6111. }
  6112. private string _AccountCode = "";
  6113. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6114. [global::System.ComponentModel.DefaultValue("")]
  6115. public string AccountCode
  6116. {
  6117. get { return _AccountCode; }
  6118. set { _AccountCode = value; }
  6119. }
  6120. private string _Currency = "";
  6121. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6122. [global::System.ComponentModel.DefaultValue("")]
  6123. public string Currency
  6124. {
  6125. get { return _Currency; }
  6126. set { _Currency = value; }
  6127. }
  6128. private int _AccountType = int.MinValue;
  6129. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6130. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6131. public int AccountType
  6132. {
  6133. get { return _AccountType; }
  6134. set { _AccountType = value; }
  6135. }
  6136. private string _AccountName = "";
  6137. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6138. [global::System.ComponentModel.DefaultValue("")]
  6139. public string AccountName
  6140. {
  6141. get { return _AccountName; }
  6142. set { _AccountName = value; }
  6143. }
  6144. private int _MoneyType = int.MinValue;
  6145. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"MoneyType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6146. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6147. public int MoneyType
  6148. {
  6149. get { return _MoneyType; }
  6150. set { _MoneyType = value; }
  6151. }
  6152. private double _Amount = int.MinValue;
  6153. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6154. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6155. public double Amount
  6156. {
  6157. get { return _Amount; }
  6158. set { _Amount = value; }
  6159. }
  6160. private string _DealTime = "";
  6161. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6162. [global::System.ComponentModel.DefaultValue("")]
  6163. public string DealTime
  6164. {
  6165. get { return _DealTime; }
  6166. set { _DealTime = value; }
  6167. }
  6168. private global::ProtoBuf.IExtension extensionObject;
  6169. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6170. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6171. }
  6172. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchCheckinfoReq")]
  6173. public partial class ExchCheckinfoReq : global::ProtoBuf.IExtensible
  6174. {
  6175. public ExchCheckinfoReq() {}
  6176. private Bank.MessageHead _Header = null;
  6177. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6178. [global::System.ComponentModel.DefaultValue(null)]
  6179. public Bank.MessageHead Header
  6180. {
  6181. get { return _Header; }
  6182. set { _Header = value; }
  6183. }
  6184. private string _CheckDate = "";
  6185. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"CheckDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6186. [global::System.ComponentModel.DefaultValue("")]
  6187. public string CheckDate
  6188. {
  6189. get { return _CheckDate; }
  6190. set { _CheckDate = value; }
  6191. }
  6192. private readonly global::System.Collections.Generic.List<Bank.ExchCheckList> _List = new global::System.Collections.Generic.List<Bank.ExchCheckList>();
  6193. [global::ProtoBuf.ProtoMember(3, Name=@"List", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6194. public global::System.Collections.Generic.List<Bank.ExchCheckList> List
  6195. {
  6196. get { return _List; }
  6197. }
  6198. private global::ProtoBuf.IExtension extensionObject;
  6199. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6200. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6201. }
  6202. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ExchCheckinfoRsp")]
  6203. public partial class ExchCheckinfoRsp : global::ProtoBuf.IExtensible
  6204. {
  6205. public ExchCheckinfoRsp() {}
  6206. private Bank.MessageHead _Header = null;
  6207. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6208. [global::System.ComponentModel.DefaultValue(null)]
  6209. public Bank.MessageHead Header
  6210. {
  6211. get { return _Header; }
  6212. set { _Header = value; }
  6213. }
  6214. private int _RetCode = int.MinValue;
  6215. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6216. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6217. public int RetCode
  6218. {
  6219. get { return _RetCode; }
  6220. set { _RetCode = value; }
  6221. }
  6222. private string _RetDesc = "";
  6223. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6224. [global::System.ComponentModel.DefaultValue("")]
  6225. public string RetDesc
  6226. {
  6227. get { return _RetDesc; }
  6228. set { _RetDesc = value; }
  6229. }
  6230. private int _CheckRetCode = int.MinValue;
  6231. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CheckRetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6232. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6233. public int CheckRetCode
  6234. {
  6235. get { return _CheckRetCode; }
  6236. set { _CheckRetCode = value; }
  6237. }
  6238. private string _ExchTicket = "";
  6239. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6240. [global::System.ComponentModel.DefaultValue("")]
  6241. public string ExchTicket
  6242. {
  6243. get { return _ExchTicket; }
  6244. set { _ExchTicket = value; }
  6245. }
  6246. private global::ProtoBuf.IExtension extensionObject;
  6247. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6248. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6249. }
  6250. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankGetIdentifyCodeReq")]
  6251. public partial class BankGetIdentifyCodeReq : global::ProtoBuf.IExtensible
  6252. {
  6253. public BankGetIdentifyCodeReq() {}
  6254. private Bank.MessageHead _Header = null;
  6255. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6256. [global::System.ComponentModel.DefaultValue(null)]
  6257. public Bank.MessageHead Header
  6258. {
  6259. get { return _Header; }
  6260. set { _Header = value; }
  6261. }
  6262. private string _AccountCode = "";
  6263. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6264. [global::System.ComponentModel.DefaultValue("")]
  6265. public string AccountCode
  6266. {
  6267. get { return _AccountCode; }
  6268. set { _AccountCode = value; }
  6269. }
  6270. private string _CusBankID = "";
  6271. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6272. [global::System.ComponentModel.DefaultValue("")]
  6273. public string CusBankID
  6274. {
  6275. get { return _CusBankID; }
  6276. set { _CusBankID = value; }
  6277. }
  6278. private string _Currency = "";
  6279. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6280. [global::System.ComponentModel.DefaultValue("")]
  6281. public string Currency
  6282. {
  6283. get { return _Currency; }
  6284. set { _Currency = value; }
  6285. }
  6286. private int _AccountType = int.MinValue;
  6287. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6288. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6289. public int AccountType
  6290. {
  6291. get { return _AccountType; }
  6292. set { _AccountType = value; }
  6293. }
  6294. private string _MobilePhone = "";
  6295. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"MobilePhone", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6296. [global::System.ComponentModel.DefaultValue("")]
  6297. public string MobilePhone
  6298. {
  6299. get { return _MobilePhone; }
  6300. set { _MobilePhone = value; }
  6301. }
  6302. private long _CustomerSignId = int.MinValue;
  6303. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6304. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6305. public long CustomerSignId
  6306. {
  6307. get { return _CustomerSignId; }
  6308. set { _CustomerSignId = value; }
  6309. }
  6310. private double _Amount = int.MinValue;
  6311. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6312. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6313. public double Amount
  6314. {
  6315. get { return _Amount; }
  6316. set { _Amount = value; }
  6317. }
  6318. private string _BankAccountNo = "";
  6319. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"BankAccountNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6320. [global::System.ComponentModel.DefaultValue("")]
  6321. public string BankAccountNo
  6322. {
  6323. get { return _BankAccountNo; }
  6324. set { _BankAccountNo = value; }
  6325. }
  6326. private string _CardNum = "";
  6327. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"CardNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6328. [global::System.ComponentModel.DefaultValue("")]
  6329. public string CardNum
  6330. {
  6331. get { return _CardNum; }
  6332. set { _CardNum = value; }
  6333. }
  6334. private int _CardType = int.MinValue;
  6335. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"CardType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6336. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6337. public int CardType
  6338. {
  6339. get { return _CardType; }
  6340. set { _CardType = value; }
  6341. }
  6342. private int _TradeType = int.MinValue;
  6343. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"TradeType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6344. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6345. public int TradeType
  6346. {
  6347. get { return _TradeType; }
  6348. set { _TradeType = value; }
  6349. }
  6350. private string _CustomerName = "";
  6351. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"CustomerName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6352. [global::System.ComponentModel.DefaultValue("")]
  6353. public string CustomerName
  6354. {
  6355. get { return _CustomerName; }
  6356. set { _CustomerName = value; }
  6357. }
  6358. private string _BankCode = "";
  6359. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"BankCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6360. [global::System.ComponentModel.DefaultValue("")]
  6361. public string BankCode
  6362. {
  6363. get { return _BankCode; }
  6364. set { _BankCode = value; }
  6365. }
  6366. private global::ProtoBuf.IExtension extensionObject;
  6367. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6368. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6369. }
  6370. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankGetIdentifyCodeRsp")]
  6371. public partial class BankGetIdentifyCodeRsp : global::ProtoBuf.IExtensible
  6372. {
  6373. public BankGetIdentifyCodeRsp() {}
  6374. private Bank.MessageHead _Header = null;
  6375. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6376. [global::System.ComponentModel.DefaultValue(null)]
  6377. public Bank.MessageHead Header
  6378. {
  6379. get { return _Header; }
  6380. set { _Header = value; }
  6381. }
  6382. private int _RetCode = int.MinValue;
  6383. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6384. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6385. public int RetCode
  6386. {
  6387. get { return _RetCode; }
  6388. set { _RetCode = value; }
  6389. }
  6390. private string _RetDesc = "";
  6391. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6392. [global::System.ComponentModel.DefaultValue("")]
  6393. public string RetDesc
  6394. {
  6395. get { return _RetDesc; }
  6396. set { _RetDesc = value; }
  6397. }
  6398. private global::ProtoBuf.IExtension extensionObject;
  6399. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6400. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6401. }
  6402. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankOutInMoneyQueryReq")]
  6403. public partial class BankOutInMoneyQueryReq : global::ProtoBuf.IExtensible
  6404. {
  6405. public BankOutInMoneyQueryReq() {}
  6406. private Bank.MessageHead _Header = null;
  6407. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6408. [global::System.ComponentModel.DefaultValue(null)]
  6409. public Bank.MessageHead Header
  6410. {
  6411. get { return _Header; }
  6412. set { _Header = value; }
  6413. }
  6414. private long _ExtOperatorID = int.MinValue;
  6415. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6416. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6417. public long ExtOperatorID
  6418. {
  6419. get { return _ExtOperatorID; }
  6420. set { _ExtOperatorID = value; }
  6421. }
  6422. private long _CustomerSignId = int.MinValue;
  6423. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6424. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6425. public long CustomerSignId
  6426. {
  6427. get { return _CustomerSignId; }
  6428. set { _CustomerSignId = value; }
  6429. }
  6430. private string _AccountCode = "";
  6431. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6432. [global::System.ComponentModel.DefaultValue("")]
  6433. public string AccountCode
  6434. {
  6435. get { return _AccountCode; }
  6436. set { _AccountCode = value; }
  6437. }
  6438. private string _CusBankID = "";
  6439. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6440. [global::System.ComponentModel.DefaultValue("")]
  6441. public string CusBankID
  6442. {
  6443. get { return _CusBankID; }
  6444. set { _CusBankID = value; }
  6445. }
  6446. private string _Currency = "";
  6447. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6448. [global::System.ComponentModel.DefaultValue("")]
  6449. public string Currency
  6450. {
  6451. get { return _Currency; }
  6452. set { _Currency = value; }
  6453. }
  6454. private string _Exchticket = "";
  6455. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Exchticket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6456. [global::System.ComponentModel.DefaultValue("")]
  6457. public string Exchticket
  6458. {
  6459. get { return _Exchticket; }
  6460. set { _Exchticket = value; }
  6461. }
  6462. private global::ProtoBuf.IExtension extensionObject;
  6463. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6464. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6465. }
  6466. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankOutInMoneyQueryRsp")]
  6467. public partial class BankOutInMoneyQueryRsp : global::ProtoBuf.IExtensible
  6468. {
  6469. public BankOutInMoneyQueryRsp() {}
  6470. private Bank.MessageHead _Header = null;
  6471. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6472. [global::System.ComponentModel.DefaultValue(null)]
  6473. public Bank.MessageHead Header
  6474. {
  6475. get { return _Header; }
  6476. set { _Header = value; }
  6477. }
  6478. private int _RetCode = int.MinValue;
  6479. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6480. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6481. public int RetCode
  6482. {
  6483. get { return _RetCode; }
  6484. set { _RetCode = value; }
  6485. }
  6486. private string _RetDesc = "";
  6487. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6488. [global::System.ComponentModel.DefaultValue("")]
  6489. public string RetDesc
  6490. {
  6491. get { return _RetDesc; }
  6492. set { _RetDesc = value; }
  6493. }
  6494. private long _ExtOperatorID = int.MinValue;
  6495. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6496. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6497. public long ExtOperatorID
  6498. {
  6499. get { return _ExtOperatorID; }
  6500. set { _ExtOperatorID = value; }
  6501. }
  6502. private long _CustomerSignId = int.MinValue;
  6503. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CustomerSignId", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6504. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6505. public long CustomerSignId
  6506. {
  6507. get { return _CustomerSignId; }
  6508. set { _CustomerSignId = value; }
  6509. }
  6510. private string _AccountCode = "";
  6511. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6512. [global::System.ComponentModel.DefaultValue("")]
  6513. public string AccountCode
  6514. {
  6515. get { return _AccountCode; }
  6516. set { _AccountCode = value; }
  6517. }
  6518. private string _CusBankID = "";
  6519. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6520. [global::System.ComponentModel.DefaultValue("")]
  6521. public string CusBankID
  6522. {
  6523. get { return _CusBankID; }
  6524. set { _CusBankID = value; }
  6525. }
  6526. private string _Currency = "";
  6527. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6528. [global::System.ComponentModel.DefaultValue("")]
  6529. public string Currency
  6530. {
  6531. get { return _Currency; }
  6532. set { _Currency = value; }
  6533. }
  6534. private string _Exchticket = "";
  6535. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"Exchticket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6536. [global::System.ComponentModel.DefaultValue("")]
  6537. public string Exchticket
  6538. {
  6539. get { return _Exchticket; }
  6540. set { _Exchticket = value; }
  6541. }
  6542. private long _ResultCode = int.MinValue;
  6543. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"ResultCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6544. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6545. public long ResultCode
  6546. {
  6547. get { return _ResultCode; }
  6548. set { _ResultCode = value; }
  6549. }
  6550. private string _ResultDesc = "";
  6551. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"ResultDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6552. [global::System.ComponentModel.DefaultValue("")]
  6553. public string ResultDesc
  6554. {
  6555. get { return _ResultDesc; }
  6556. set { _ResultDesc = value; }
  6557. }
  6558. private global::ProtoBuf.IExtension extensionObject;
  6559. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6560. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6561. }
  6562. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankTransferReq")]
  6563. public partial class BankTransferReq : global::ProtoBuf.IExtensible
  6564. {
  6565. public BankTransferReq() {}
  6566. private Bank.MessageHead _Header = null;
  6567. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6568. [global::System.ComponentModel.DefaultValue(null)]
  6569. public Bank.MessageHead Header
  6570. {
  6571. get { return _Header; }
  6572. set { _Header = value; }
  6573. }
  6574. private string _CusBankId = "";
  6575. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6576. [global::System.ComponentModel.DefaultValue("")]
  6577. public string CusBankId
  6578. {
  6579. get { return _CusBankId; }
  6580. set { _CusBankId = value; }
  6581. }
  6582. private string _Currency = "";
  6583. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6584. [global::System.ComponentModel.DefaultValue("")]
  6585. public string Currency
  6586. {
  6587. get { return _Currency; }
  6588. set { _Currency = value; }
  6589. }
  6590. private string _ExchTicket = "";
  6591. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6592. [global::System.ComponentModel.DefaultValue("")]
  6593. public string ExchTicket
  6594. {
  6595. get { return _ExchTicket; }
  6596. set { _ExchTicket = value; }
  6597. }
  6598. private string _BatchNo = "";
  6599. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"BatchNo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6600. [global::System.ComponentModel.DefaultValue("")]
  6601. public string BatchNo
  6602. {
  6603. get { return _BatchNo; }
  6604. set { _BatchNo = value; }
  6605. }
  6606. private int _exchstatus = int.MinValue;
  6607. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"exchstatus", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6608. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6609. public int exchstatus
  6610. {
  6611. get { return _exchstatus; }
  6612. set { _exchstatus = value; }
  6613. }
  6614. private int _bankstatus = int.MinValue;
  6615. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"bankstatus", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6616. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6617. public int bankstatus
  6618. {
  6619. get { return _bankstatus; }
  6620. set { _bankstatus = value; }
  6621. }
  6622. private string _remark = "";
  6623. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"remark", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6624. [global::System.ComponentModel.DefaultValue("")]
  6625. public string remark
  6626. {
  6627. get { return _remark; }
  6628. set { _remark = value; }
  6629. }
  6630. private string _BUSINUM = "";
  6631. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"BUSINUM", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6632. [global::System.ComponentModel.DefaultValue("")]
  6633. public string BUSINUM
  6634. {
  6635. get { return _BUSINUM; }
  6636. set { _BUSINUM = value; }
  6637. }
  6638. private string _fcsSerialNum = "";
  6639. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"fcsSerialNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6640. [global::System.ComponentModel.DefaultValue("")]
  6641. public string fcsSerialNum
  6642. {
  6643. get { return _fcsSerialNum; }
  6644. set { _fcsSerialNum = value; }
  6645. }
  6646. private string _memName = "";
  6647. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"memName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6648. [global::System.ComponentModel.DefaultValue("")]
  6649. public string memName
  6650. {
  6651. get { return _memName; }
  6652. set { _memName = value; }
  6653. }
  6654. private string _memNum = "";
  6655. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"memNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6656. [global::System.ComponentModel.DefaultValue("")]
  6657. public string memNum
  6658. {
  6659. get { return _memNum; }
  6660. set { _memNum = value; }
  6661. }
  6662. private int _addReduce = int.MinValue;
  6663. [global::ProtoBuf.ProtoMember(13, IsRequired = false, Name=@"addReduce", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6664. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6665. public int addReduce
  6666. {
  6667. get { return _addReduce; }
  6668. set { _addReduce = value; }
  6669. }
  6670. private double _tradeAmount = int.MinValue;
  6671. [global::ProtoBuf.ProtoMember(14, IsRequired = false, Name=@"tradeAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6672. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6673. public double tradeAmount
  6674. {
  6675. get { return _tradeAmount; }
  6676. set { _tradeAmount = value; }
  6677. }
  6678. private string _procTime = "";
  6679. [global::ProtoBuf.ProtoMember(15, IsRequired = false, Name=@"procTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6680. [global::System.ComponentModel.DefaultValue("")]
  6681. public string procTime
  6682. {
  6683. get { return _procTime; }
  6684. set { _procTime = value; }
  6685. }
  6686. private double _balance = int.MinValue;
  6687. [global::ProtoBuf.ProtoMember(16, IsRequired = false, Name=@"balance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6688. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6689. public double balance
  6690. {
  6691. get { return _balance; }
  6692. set { _balance = value; }
  6693. }
  6694. private double _useableBalance = int.MinValue;
  6695. [global::ProtoBuf.ProtoMember(17, IsRequired = false, Name=@"useableBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6696. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6697. public double useableBalance
  6698. {
  6699. get { return _useableBalance; }
  6700. set { _useableBalance = value; }
  6701. }
  6702. private string _otherName = "";
  6703. [global::ProtoBuf.ProtoMember(18, IsRequired = false, Name=@"otherName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6704. [global::System.ComponentModel.DefaultValue("")]
  6705. public string otherName
  6706. {
  6707. get { return _otherName; }
  6708. set { _otherName = value; }
  6709. }
  6710. private string _otherNum = "";
  6711. [global::ProtoBuf.ProtoMember(19, IsRequired = false, Name=@"otherNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6712. [global::System.ComponentModel.DefaultValue("")]
  6713. public string otherNum
  6714. {
  6715. get { return _otherNum; }
  6716. set { _otherNum = value; }
  6717. }
  6718. private int _isCrossLine = int.MinValue;
  6719. [global::ProtoBuf.ProtoMember(20, IsRequired = false, Name=@"isCrossLine", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6720. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6721. public int isCrossLine
  6722. {
  6723. get { return _isCrossLine; }
  6724. set { _isCrossLine = value; }
  6725. }
  6726. private int _busType = int.MinValue;
  6727. [global::ProtoBuf.ProtoMember(21, IsRequired = false, Name=@"busType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6728. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6729. public int busType
  6730. {
  6731. get { return _busType; }
  6732. set { _busType = value; }
  6733. }
  6734. private string _brief = "";
  6735. [global::ProtoBuf.ProtoMember(22, IsRequired = false, Name=@"brief", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6736. [global::System.ComponentModel.DefaultValue("")]
  6737. public string brief
  6738. {
  6739. get { return _brief; }
  6740. set { _brief = value; }
  6741. }
  6742. private string _accountcode = "";
  6743. [global::ProtoBuf.ProtoMember(23, IsRequired = false, Name=@"accountcode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6744. [global::System.ComponentModel.DefaultValue("")]
  6745. public string accountcode
  6746. {
  6747. get { return _accountcode; }
  6748. set { _accountcode = value; }
  6749. }
  6750. private global::ProtoBuf.IExtension extensionObject;
  6751. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6752. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6753. }
  6754. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankTransferRsp")]
  6755. public partial class BankTransferRsp : global::ProtoBuf.IExtensible
  6756. {
  6757. public BankTransferRsp() {}
  6758. private Bank.MessageHead _Header = null;
  6759. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6760. [global::System.ComponentModel.DefaultValue(null)]
  6761. public Bank.MessageHead Header
  6762. {
  6763. get { return _Header; }
  6764. set { _Header = value; }
  6765. }
  6766. private int _RetCode = int.MinValue;
  6767. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6768. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6769. public int RetCode
  6770. {
  6771. get { return _RetCode; }
  6772. set { _RetCode = value; }
  6773. }
  6774. private string _RetDesc = "";
  6775. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6776. [global::System.ComponentModel.DefaultValue("")]
  6777. public string RetDesc
  6778. {
  6779. get { return _RetDesc; }
  6780. set { _RetDesc = value; }
  6781. }
  6782. private string _CusBankId = "";
  6783. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6784. [global::System.ComponentModel.DefaultValue("")]
  6785. public string CusBankId
  6786. {
  6787. get { return _CusBankId; }
  6788. set { _CusBankId = value; }
  6789. }
  6790. private string _Currency = "";
  6791. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6792. [global::System.ComponentModel.DefaultValue("")]
  6793. public string Currency
  6794. {
  6795. get { return _Currency; }
  6796. set { _Currency = value; }
  6797. }
  6798. private string _ExchTicket = "";
  6799. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6800. [global::System.ComponentModel.DefaultValue("")]
  6801. public string ExchTicket
  6802. {
  6803. get { return _ExchTicket; }
  6804. set { _ExchTicket = value; }
  6805. }
  6806. private string _accountcode = "";
  6807. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"accountcode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6808. [global::System.ComponentModel.DefaultValue("")]
  6809. public string accountcode
  6810. {
  6811. get { return _accountcode; }
  6812. set { _accountcode = value; }
  6813. }
  6814. private int _accounttype = int.MinValue;
  6815. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"accounttype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6816. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6817. public int accounttype
  6818. {
  6819. get { return _accounttype; }
  6820. set { _accounttype = value; }
  6821. }
  6822. private string _fcsSerialNum = "";
  6823. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"fcsSerialNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6824. [global::System.ComponentModel.DefaultValue("")]
  6825. public string fcsSerialNum
  6826. {
  6827. get { return _fcsSerialNum; }
  6828. set { _fcsSerialNum = value; }
  6829. }
  6830. private global::ProtoBuf.IExtension extensionObject;
  6831. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6832. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6833. }
  6834. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchMoneyInOutReq")]
  6835. public partial class BankExchMoneyInOutReq : global::ProtoBuf.IExtensible
  6836. {
  6837. public BankExchMoneyInOutReq() {}
  6838. private Bank.MessageHead _Header = null;
  6839. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6840. [global::System.ComponentModel.DefaultValue(null)]
  6841. public Bank.MessageHead Header
  6842. {
  6843. get { return _Header; }
  6844. set { _Header = value; }
  6845. }
  6846. private long _ExtOperatorID = int.MinValue;
  6847. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6848. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6849. public long ExtOperatorID
  6850. {
  6851. get { return _ExtOperatorID; }
  6852. set { _ExtOperatorID = value; }
  6853. }
  6854. private string _CusBankID = "";
  6855. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6856. [global::System.ComponentModel.DefaultValue("")]
  6857. public string CusBankID
  6858. {
  6859. get { return _CusBankID; }
  6860. set { _CusBankID = value; }
  6861. }
  6862. private double _Amount = int.MinValue;
  6863. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6864. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6865. public double Amount
  6866. {
  6867. get { return _Amount; }
  6868. set { _Amount = value; }
  6869. }
  6870. private string _AppDateTime = "";
  6871. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AppDateTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6872. [global::System.ComponentModel.DefaultValue("")]
  6873. public string AppDateTime
  6874. {
  6875. get { return _AppDateTime; }
  6876. set { _AppDateTime = value; }
  6877. }
  6878. private string _Currency = "";
  6879. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6880. [global::System.ComponentModel.DefaultValue("")]
  6881. public string Currency
  6882. {
  6883. get { return _Currency; }
  6884. set { _Currency = value; }
  6885. }
  6886. private int _FundType = int.MinValue;
  6887. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"FundType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6888. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6889. public int FundType
  6890. {
  6891. get { return _FundType; }
  6892. set { _FundType = value; }
  6893. }
  6894. private global::ProtoBuf.IExtension extensionObject;
  6895. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6896. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6897. }
  6898. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchMoneyInOutRsp")]
  6899. public partial class BankExchMoneyInOutRsp : global::ProtoBuf.IExtensible
  6900. {
  6901. public BankExchMoneyInOutRsp() {}
  6902. private Bank.MessageHead _Header = null;
  6903. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6904. [global::System.ComponentModel.DefaultValue(null)]
  6905. public Bank.MessageHead Header
  6906. {
  6907. get { return _Header; }
  6908. set { _Header = value; }
  6909. }
  6910. private int _RetCode = int.MinValue;
  6911. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6912. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6913. public int RetCode
  6914. {
  6915. get { return _RetCode; }
  6916. set { _RetCode = value; }
  6917. }
  6918. private string _RetDesc = "";
  6919. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6920. [global::System.ComponentModel.DefaultValue("")]
  6921. public string RetDesc
  6922. {
  6923. get { return _RetDesc; }
  6924. set { _RetDesc = value; }
  6925. }
  6926. private long _ExtOperatorID = int.MinValue;
  6927. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6928. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6929. public long ExtOperatorID
  6930. {
  6931. get { return _ExtOperatorID; }
  6932. set { _ExtOperatorID = value; }
  6933. }
  6934. private string _CusBankID = "";
  6935. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6936. [global::System.ComponentModel.DefaultValue("")]
  6937. public string CusBankID
  6938. {
  6939. get { return _CusBankID; }
  6940. set { _CusBankID = value; }
  6941. }
  6942. private string _ExchTicket = "";
  6943. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6944. [global::System.ComponentModel.DefaultValue("")]
  6945. public string ExchTicket
  6946. {
  6947. get { return _ExchTicket; }
  6948. set { _ExchTicket = value; }
  6949. }
  6950. private string _DealTime = "";
  6951. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6952. [global::System.ComponentModel.DefaultValue("")]
  6953. public string DealTime
  6954. {
  6955. get { return _DealTime; }
  6956. set { _DealTime = value; }
  6957. }
  6958. private int _Status = int.MinValue;
  6959. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6960. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6961. public int Status
  6962. {
  6963. get { return _Status; }
  6964. set { _Status = value; }
  6965. }
  6966. private global::ProtoBuf.IExtension extensionObject;
  6967. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  6968. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  6969. }
  6970. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchMoneyInOutComfirmReq")]
  6971. public partial class BankExchMoneyInOutComfirmReq : global::ProtoBuf.IExtensible
  6972. {
  6973. public BankExchMoneyInOutComfirmReq() {}
  6974. private Bank.MessageHead _Header = null;
  6975. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6976. [global::System.ComponentModel.DefaultValue(null)]
  6977. public Bank.MessageHead Header
  6978. {
  6979. get { return _Header; }
  6980. set { _Header = value; }
  6981. }
  6982. private long _ExtOperatorID = int.MinValue;
  6983. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  6984. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  6985. public long ExtOperatorID
  6986. {
  6987. get { return _ExtOperatorID; }
  6988. set { _ExtOperatorID = value; }
  6989. }
  6990. private string _CusBankID = "";
  6991. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  6992. [global::System.ComponentModel.DefaultValue("")]
  6993. public string CusBankID
  6994. {
  6995. get { return _CusBankID; }
  6996. set { _CusBankID = value; }
  6997. }
  6998. private double _Amount = int.MinValue;
  6999. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Amount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7000. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7001. public double Amount
  7002. {
  7003. get { return _Amount; }
  7004. set { _Amount = value; }
  7005. }
  7006. private string _Currency = "";
  7007. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7008. [global::System.ComponentModel.DefaultValue("")]
  7009. public string Currency
  7010. {
  7011. get { return _Currency; }
  7012. set { _Currency = value; }
  7013. }
  7014. private string _ExchTicket = "";
  7015. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7016. [global::System.ComponentModel.DefaultValue("")]
  7017. public string ExchTicket
  7018. {
  7019. get { return _ExchTicket; }
  7020. set { _ExchTicket = value; }
  7021. }
  7022. private int _Result = int.MinValue;
  7023. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"Result", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7024. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7025. public int Result
  7026. {
  7027. get { return _Result; }
  7028. set { _Result = value; }
  7029. }
  7030. private string _Desc = "";
  7031. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"Desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7032. [global::System.ComponentModel.DefaultValue("")]
  7033. public string Desc
  7034. {
  7035. get { return _Desc; }
  7036. set { _Desc = value; }
  7037. }
  7038. private global::ProtoBuf.IExtension extensionObject;
  7039. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7040. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7041. }
  7042. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankExchMoneyInOutComfirmRsp")]
  7043. public partial class BankExchMoneyInOutComfirmRsp : global::ProtoBuf.IExtensible
  7044. {
  7045. public BankExchMoneyInOutComfirmRsp() {}
  7046. private Bank.MessageHead _Header = null;
  7047. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7048. [global::System.ComponentModel.DefaultValue(null)]
  7049. public Bank.MessageHead Header
  7050. {
  7051. get { return _Header; }
  7052. set { _Header = value; }
  7053. }
  7054. private int _RetCode = int.MinValue;
  7055. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7056. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7057. public int RetCode
  7058. {
  7059. get { return _RetCode; }
  7060. set { _RetCode = value; }
  7061. }
  7062. private string _RetDesc = "";
  7063. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7064. [global::System.ComponentModel.DefaultValue("")]
  7065. public string RetDesc
  7066. {
  7067. get { return _RetDesc; }
  7068. set { _RetDesc = value; }
  7069. }
  7070. private long _ExtOperatorID = int.MinValue;
  7071. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7072. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7073. public long ExtOperatorID
  7074. {
  7075. get { return _ExtOperatorID; }
  7076. set { _ExtOperatorID = value; }
  7077. }
  7078. private string _CusBankID = "";
  7079. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"CusBankID", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7080. [global::System.ComponentModel.DefaultValue("")]
  7081. public string CusBankID
  7082. {
  7083. get { return _CusBankID; }
  7084. set { _CusBankID = value; }
  7085. }
  7086. private string _ExchTicket = "";
  7087. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7088. [global::System.ComponentModel.DefaultValue("")]
  7089. public string ExchTicket
  7090. {
  7091. get { return _ExchTicket; }
  7092. set { _ExchTicket = value; }
  7093. }
  7094. private string _DealTime = "";
  7095. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"DealTime", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7096. [global::System.ComponentModel.DefaultValue("")]
  7097. public string DealTime
  7098. {
  7099. get { return _DealTime; }
  7100. set { _DealTime = value; }
  7101. }
  7102. private global::ProtoBuf.IExtension extensionObject;
  7103. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7104. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7105. }
  7106. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankValidationMoneyPwdReq")]
  7107. public partial class BankValidationMoneyPwdReq : global::ProtoBuf.IExtensible
  7108. {
  7109. public BankValidationMoneyPwdReq() {}
  7110. private Bank.MessageHead _Header = null;
  7111. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7112. [global::System.ComponentModel.DefaultValue(null)]
  7113. public Bank.MessageHead Header
  7114. {
  7115. get { return _Header; }
  7116. set { _Header = value; }
  7117. }
  7118. private long _ExtOperatorID = int.MinValue;
  7119. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7120. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7121. public long ExtOperatorID
  7122. {
  7123. get { return _ExtOperatorID; }
  7124. set { _ExtOperatorID = value; }
  7125. }
  7126. private string _Accountcode = "";
  7127. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Accountcode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7128. [global::System.ComponentModel.DefaultValue("")]
  7129. public string Accountcode
  7130. {
  7131. get { return _Accountcode; }
  7132. set { _Accountcode = value; }
  7133. }
  7134. private string _ExchTicket = "";
  7135. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7136. [global::System.ComponentModel.DefaultValue("")]
  7137. public string ExchTicket
  7138. {
  7139. get { return _ExchTicket; }
  7140. set { _ExchTicket = value; }
  7141. }
  7142. private string _Password = "";
  7143. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Password", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7144. [global::System.ComponentModel.DefaultValue("")]
  7145. public string Password
  7146. {
  7147. get { return _Password; }
  7148. set { _Password = value; }
  7149. }
  7150. private global::ProtoBuf.IExtension extensionObject;
  7151. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7152. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7153. }
  7154. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BankValidationMoneyPwdRsp")]
  7155. public partial class BankValidationMoneyPwdRsp : global::ProtoBuf.IExtensible
  7156. {
  7157. public BankValidationMoneyPwdRsp() {}
  7158. private Bank.MessageHead _Header = null;
  7159. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7160. [global::System.ComponentModel.DefaultValue(null)]
  7161. public Bank.MessageHead Header
  7162. {
  7163. get { return _Header; }
  7164. set { _Header = value; }
  7165. }
  7166. private int _RetCode = int.MinValue;
  7167. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7168. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7169. public int RetCode
  7170. {
  7171. get { return _RetCode; }
  7172. set { _RetCode = value; }
  7173. }
  7174. private string _RetDesc = "";
  7175. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7176. [global::System.ComponentModel.DefaultValue("")]
  7177. public string RetDesc
  7178. {
  7179. get { return _RetDesc; }
  7180. set { _RetDesc = value; }
  7181. }
  7182. private long _ExtOperatorID = int.MinValue;
  7183. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7184. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7185. public long ExtOperatorID
  7186. {
  7187. get { return _ExtOperatorID; }
  7188. set { _ExtOperatorID = value; }
  7189. }
  7190. private string _ExchTicket = "";
  7191. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ExchTicket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7192. [global::System.ComponentModel.DefaultValue("")]
  7193. public string ExchTicket
  7194. {
  7195. get { return _ExchTicket; }
  7196. set { _ExchTicket = value; }
  7197. }
  7198. private int _code = int.MinValue;
  7199. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7200. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7201. public int code
  7202. {
  7203. get { return _code; }
  7204. set { _code = value; }
  7205. }
  7206. private string _desc = "";
  7207. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"desc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7208. [global::System.ComponentModel.DefaultValue("")]
  7209. public string desc
  7210. {
  7211. get { return _desc; }
  7212. set { _desc = value; }
  7213. }
  7214. private global::ProtoBuf.IExtension extensionObject;
  7215. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7216. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7217. }
  7218. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankVirtualAccountBalanceReq")]
  7219. public partial class QueryBankVirtualAccountBalanceReq : global::ProtoBuf.IExtensible
  7220. {
  7221. public QueryBankVirtualAccountBalanceReq() {}
  7222. private Bank.MessageHead _Header = null;
  7223. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7224. [global::System.ComponentModel.DefaultValue(null)]
  7225. public Bank.MessageHead Header
  7226. {
  7227. get { return _Header; }
  7228. set { _Header = value; }
  7229. }
  7230. private Bank.QueryReqPageInfo _PageInfo = null;
  7231. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7232. [global::System.ComponentModel.DefaultValue(null)]
  7233. public Bank.QueryReqPageInfo PageInfo
  7234. {
  7235. get { return _PageInfo; }
  7236. set { _PageInfo = value; }
  7237. }
  7238. private string _Cusbankid = "";
  7239. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7240. [global::System.ComponentModel.DefaultValue("")]
  7241. public string Cusbankid
  7242. {
  7243. get { return _Cusbankid; }
  7244. set { _Cusbankid = value; }
  7245. }
  7246. private int _CusbankidFlag = int.MinValue;
  7247. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusbankidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7248. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7249. public int CusbankidFlag
  7250. {
  7251. get { return _CusbankidFlag; }
  7252. set { _CusbankidFlag = value; }
  7253. }
  7254. private string _Currency = "";
  7255. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7256. [global::System.ComponentModel.DefaultValue("")]
  7257. public string Currency
  7258. {
  7259. get { return _Currency; }
  7260. set { _Currency = value; }
  7261. }
  7262. private int _CurrencyFlag = int.MinValue;
  7263. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CurrencyFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7264. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7265. public int CurrencyFlag
  7266. {
  7267. get { return _CurrencyFlag; }
  7268. set { _CurrencyFlag = value; }
  7269. }
  7270. private int _AccountType = int.MinValue;
  7271. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7272. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7273. public int AccountType
  7274. {
  7275. get { return _AccountType; }
  7276. set { _AccountType = value; }
  7277. }
  7278. private int _AccountTypeFlag = int.MinValue;
  7279. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"AccountTypeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7280. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7281. public int AccountTypeFlag
  7282. {
  7283. get { return _AccountTypeFlag; }
  7284. set { _AccountTypeFlag = value; }
  7285. }
  7286. private string _queryDate = "";
  7287. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"queryDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7288. [global::System.ComponentModel.DefaultValue("")]
  7289. public string queryDate
  7290. {
  7291. get { return _queryDate; }
  7292. set { _queryDate = value; }
  7293. }
  7294. private int _queryDateFlag = int.MinValue;
  7295. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"queryDateFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7296. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7297. public int queryDateFlag
  7298. {
  7299. get { return _queryDateFlag; }
  7300. set { _queryDateFlag = value; }
  7301. }
  7302. private string _queryEndDate = "";
  7303. [global::ProtoBuf.ProtoMember(11, IsRequired = false, Name=@"queryEndDate", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7304. [global::System.ComponentModel.DefaultValue("")]
  7305. public string queryEndDate
  7306. {
  7307. get { return _queryEndDate; }
  7308. set { _queryEndDate = value; }
  7309. }
  7310. private int _queryEndDateFlag = int.MinValue;
  7311. [global::ProtoBuf.ProtoMember(12, IsRequired = false, Name=@"queryEndDateFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7312. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7313. public int queryEndDateFlag
  7314. {
  7315. get { return _queryEndDateFlag; }
  7316. set { _queryEndDateFlag = value; }
  7317. }
  7318. private global::ProtoBuf.IExtension extensionObject;
  7319. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7320. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7321. }
  7322. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankVirtualAccountBalanceRsp_")]
  7323. public partial class QueryBankVirtualAccountBalanceRsp_ : global::ProtoBuf.IExtensible
  7324. {
  7325. public QueryBankVirtualAccountBalanceRsp_() {}
  7326. private string _Cusbankid = "";
  7327. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7328. [global::System.ComponentModel.DefaultValue("")]
  7329. public string Cusbankid
  7330. {
  7331. get { return _Cusbankid; }
  7332. set { _Cusbankid = value; }
  7333. }
  7334. private string _Currency = "";
  7335. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7336. [global::System.ComponentModel.DefaultValue("")]
  7337. public string Currency
  7338. {
  7339. get { return _Currency; }
  7340. set { _Currency = value; }
  7341. }
  7342. private int _AccountType = int.MinValue;
  7343. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7344. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7345. public int AccountType
  7346. {
  7347. get { return _AccountType; }
  7348. set { _AccountType = value; }
  7349. }
  7350. private double _BankBalance = int.MinValue;
  7351. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"BankBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7352. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7353. public double BankBalance
  7354. {
  7355. get { return _BankBalance; }
  7356. set { _BankBalance = value; }
  7357. }
  7358. private double _UseableBalance = int.MinValue;
  7359. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"UseableBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7360. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7361. public double UseableBalance
  7362. {
  7363. get { return _UseableBalance; }
  7364. set { _UseableBalance = value; }
  7365. }
  7366. private string _ReturnResult = "";
  7367. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ReturnResult", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7368. [global::System.ComponentModel.DefaultValue("")]
  7369. public string ReturnResult
  7370. {
  7371. get { return _ReturnResult; }
  7372. set { _ReturnResult = value; }
  7373. }
  7374. private global::ProtoBuf.IExtension extensionObject;
  7375. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7376. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7377. }
  7378. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankVirtualAccountBalanceRsp")]
  7379. public partial class QueryBankVirtualAccountBalanceRsp : global::ProtoBuf.IExtensible
  7380. {
  7381. public QueryBankVirtualAccountBalanceRsp() {}
  7382. private Bank.MessageHead _Header = null;
  7383. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7384. [global::System.ComponentModel.DefaultValue(null)]
  7385. public Bank.MessageHead Header
  7386. {
  7387. get { return _Header; }
  7388. set { _Header = value; }
  7389. }
  7390. private int _RetCode = int.MinValue;
  7391. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7392. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7393. public int RetCode
  7394. {
  7395. get { return _RetCode; }
  7396. set { _RetCode = value; }
  7397. }
  7398. private string _RetDesc = "";
  7399. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7400. [global::System.ComponentModel.DefaultValue("")]
  7401. public string RetDesc
  7402. {
  7403. get { return _RetDesc; }
  7404. set { _RetDesc = value; }
  7405. }
  7406. private Bank.QueryRspPageInfo _PageInfo = null;
  7407. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7408. [global::System.ComponentModel.DefaultValue(null)]
  7409. public Bank.QueryRspPageInfo PageInfo
  7410. {
  7411. get { return _PageInfo; }
  7412. set { _PageInfo = value; }
  7413. }
  7414. private readonly global::System.Collections.Generic.List<Bank.QueryBankVirtualAccountBalanceRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankVirtualAccountBalanceRsp_>();
  7415. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7416. public global::System.Collections.Generic.List<Bank.QueryBankVirtualAccountBalanceRsp_> Rsps
  7417. {
  7418. get { return _Rsps; }
  7419. }
  7420. private global::ProtoBuf.IExtension extensionObject;
  7421. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7422. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7423. }
  7424. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RealtimeClearReq")]
  7425. public partial class RealtimeClearReq : global::ProtoBuf.IExtensible
  7426. {
  7427. public RealtimeClearReq() {}
  7428. private Bank.MessageHead _Header = null;
  7429. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7430. [global::System.ComponentModel.DefaultValue(null)]
  7431. public Bank.MessageHead Header
  7432. {
  7433. get { return _Header; }
  7434. set { _Header = value; }
  7435. }
  7436. private string _CusBankId = "";
  7437. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7438. [global::System.ComponentModel.DefaultValue("")]
  7439. public string CusBankId
  7440. {
  7441. get { return _CusBankId; }
  7442. set { _CusBankId = value; }
  7443. }
  7444. private string _Currency = "";
  7445. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7446. [global::System.ComponentModel.DefaultValue("")]
  7447. public string Currency
  7448. {
  7449. get { return _Currency; }
  7450. set { _Currency = value; }
  7451. }
  7452. private string _fcsSerialNum = "";
  7453. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"fcsSerialNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7454. [global::System.ComponentModel.DefaultValue("")]
  7455. public string fcsSerialNum
  7456. {
  7457. get { return _fcsSerialNum; }
  7458. set { _fcsSerialNum = value; }
  7459. }
  7460. private string _AccountCode = "";
  7461. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7462. [global::System.ComponentModel.DefaultValue("")]
  7463. public string AccountCode
  7464. {
  7465. get { return _AccountCode; }
  7466. set { _AccountCode = value; }
  7467. }
  7468. private global::ProtoBuf.IExtension extensionObject;
  7469. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7470. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7471. }
  7472. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RealtimeClearRsp")]
  7473. public partial class RealtimeClearRsp : global::ProtoBuf.IExtensible
  7474. {
  7475. public RealtimeClearRsp() {}
  7476. private Bank.MessageHead _Header = null;
  7477. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7478. [global::System.ComponentModel.DefaultValue(null)]
  7479. public Bank.MessageHead Header
  7480. {
  7481. get { return _Header; }
  7482. set { _Header = value; }
  7483. }
  7484. private int _RetCode = int.MinValue;
  7485. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7486. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7487. public int RetCode
  7488. {
  7489. get { return _RetCode; }
  7490. set { _RetCode = value; }
  7491. }
  7492. private string _RetDesc = "";
  7493. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7494. [global::System.ComponentModel.DefaultValue("")]
  7495. public string RetDesc
  7496. {
  7497. get { return _RetDesc; }
  7498. set { _RetDesc = value; }
  7499. }
  7500. private string _CusBankId = "";
  7501. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7502. [global::System.ComponentModel.DefaultValue("")]
  7503. public string CusBankId
  7504. {
  7505. get { return _CusBankId; }
  7506. set { _CusBankId = value; }
  7507. }
  7508. private string _Currency = "";
  7509. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7510. [global::System.ComponentModel.DefaultValue("")]
  7511. public string Currency
  7512. {
  7513. get { return _Currency; }
  7514. set { _Currency = value; }
  7515. }
  7516. private string _fcsSerialNum = "";
  7517. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"fcsSerialNum", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7518. [global::System.ComponentModel.DefaultValue("")]
  7519. public string fcsSerialNum
  7520. {
  7521. get { return _fcsSerialNum; }
  7522. set { _fcsSerialNum = value; }
  7523. }
  7524. private string _ReturnResult = "";
  7525. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ReturnResult", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7526. [global::System.ComponentModel.DefaultValue("")]
  7527. public string ReturnResult
  7528. {
  7529. get { return _ReturnResult; }
  7530. set { _ReturnResult = value; }
  7531. }
  7532. private string _AccountCode = "";
  7533. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7534. [global::System.ComponentModel.DefaultValue("")]
  7535. public string AccountCode
  7536. {
  7537. get { return _AccountCode; }
  7538. set { _AccountCode = value; }
  7539. }
  7540. private global::ProtoBuf.IExtension extensionObject;
  7541. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7542. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7543. }
  7544. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountBalanceReq")]
  7545. public partial class QueryBankAccountBalanceReq : global::ProtoBuf.IExtensible
  7546. {
  7547. public QueryBankAccountBalanceReq() {}
  7548. private Bank.MessageHead _Header = null;
  7549. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7550. [global::System.ComponentModel.DefaultValue(null)]
  7551. public Bank.MessageHead Header
  7552. {
  7553. get { return _Header; }
  7554. set { _Header = value; }
  7555. }
  7556. private Bank.QueryReqPageInfo _PageInfo = null;
  7557. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7558. [global::System.ComponentModel.DefaultValue(null)]
  7559. public Bank.QueryReqPageInfo PageInfo
  7560. {
  7561. get { return _PageInfo; }
  7562. set { _PageInfo = value; }
  7563. }
  7564. private string _AccountCode = "";
  7565. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7566. [global::System.ComponentModel.DefaultValue("")]
  7567. public string AccountCode
  7568. {
  7569. get { return _AccountCode; }
  7570. set { _AccountCode = value; }
  7571. }
  7572. private int _AccountCodeFlag = int.MinValue;
  7573. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCodeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7574. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7575. public int AccountCodeFlag
  7576. {
  7577. get { return _AccountCodeFlag; }
  7578. set { _AccountCodeFlag = value; }
  7579. }
  7580. private string _Currency = "";
  7581. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7582. [global::System.ComponentModel.DefaultValue("")]
  7583. public string Currency
  7584. {
  7585. get { return _Currency; }
  7586. set { _Currency = value; }
  7587. }
  7588. private int _CurrencyFlag = int.MinValue;
  7589. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CurrencyFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7590. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7591. public int CurrencyFlag
  7592. {
  7593. get { return _CurrencyFlag; }
  7594. set { _CurrencyFlag = value; }
  7595. }
  7596. private long _ExtOperatorID = int.MinValue;
  7597. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7598. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7599. public long ExtOperatorID
  7600. {
  7601. get { return _ExtOperatorID; }
  7602. set { _ExtOperatorID = value; }
  7603. }
  7604. private int _ExtOperatorIDFlag = int.MinValue;
  7605. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExtOperatorIDFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7606. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7607. public int ExtOperatorIDFlag
  7608. {
  7609. get { return _ExtOperatorIDFlag; }
  7610. set { _ExtOperatorIDFlag = value; }
  7611. }
  7612. private global::ProtoBuf.IExtension extensionObject;
  7613. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7614. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7615. }
  7616. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountBalanceRsp_")]
  7617. public partial class QueryBankAccountBalanceRsp_ : global::ProtoBuf.IExtensible
  7618. {
  7619. public QueryBankAccountBalanceRsp_() {}
  7620. private string _CusBankId = "";
  7621. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"CusBankId", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7622. [global::System.ComponentModel.DefaultValue("")]
  7623. public string CusBankId
  7624. {
  7625. get { return _CusBankId; }
  7626. set { _CusBankId = value; }
  7627. }
  7628. private string _AccountCode = "";
  7629. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7630. [global::System.ComponentModel.DefaultValue("")]
  7631. public string AccountCode
  7632. {
  7633. get { return _AccountCode; }
  7634. set { _AccountCode = value; }
  7635. }
  7636. private string _Currency = "";
  7637. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7638. [global::System.ComponentModel.DefaultValue("")]
  7639. public string Currency
  7640. {
  7641. get { return _Currency; }
  7642. set { _Currency = value; }
  7643. }
  7644. private string _Exchticket = "";
  7645. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Exchticket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7646. [global::System.ComponentModel.DefaultValue("")]
  7647. public string Exchticket
  7648. {
  7649. get { return _Exchticket; }
  7650. set { _Exchticket = value; }
  7651. }
  7652. private double _BankBalance = int.MinValue;
  7653. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"BankBalance", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7654. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7655. public double BankBalance
  7656. {
  7657. get { return _BankBalance; }
  7658. set { _BankBalance = value; }
  7659. }
  7660. private double _InAmount = int.MinValue;
  7661. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"InAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7662. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7663. public double InAmount
  7664. {
  7665. get { return _InAmount; }
  7666. set { _InAmount = value; }
  7667. }
  7668. private double _OutAmount = int.MinValue;
  7669. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"OutAmount", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7670. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7671. public double OutAmount
  7672. {
  7673. get { return _OutAmount; }
  7674. set { _OutAmount = value; }
  7675. }
  7676. private global::ProtoBuf.IExtension extensionObject;
  7677. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7678. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7679. }
  7680. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankAccountBalanceRsp")]
  7681. public partial class QueryBankAccountBalanceRsp : global::ProtoBuf.IExtensible
  7682. {
  7683. public QueryBankAccountBalanceRsp() {}
  7684. private Bank.MessageHead _Header = null;
  7685. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7686. [global::System.ComponentModel.DefaultValue(null)]
  7687. public Bank.MessageHead Header
  7688. {
  7689. get { return _Header; }
  7690. set { _Header = value; }
  7691. }
  7692. private int _RetCode = int.MinValue;
  7693. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7694. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7695. public int RetCode
  7696. {
  7697. get { return _RetCode; }
  7698. set { _RetCode = value; }
  7699. }
  7700. private string _RetDesc = "";
  7701. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7702. [global::System.ComponentModel.DefaultValue("")]
  7703. public string RetDesc
  7704. {
  7705. get { return _RetDesc; }
  7706. set { _RetDesc = value; }
  7707. }
  7708. private Bank.QueryRspPageInfo _PageInfo = null;
  7709. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7710. [global::System.ComponentModel.DefaultValue(null)]
  7711. public Bank.QueryRspPageInfo PageInfo
  7712. {
  7713. get { return _PageInfo; }
  7714. set { _PageInfo = value; }
  7715. }
  7716. private readonly global::System.Collections.Generic.List<Bank.QueryBankAccountBalanceRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankAccountBalanceRsp_>();
  7717. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7718. public global::System.Collections.Generic.List<Bank.QueryBankAccountBalanceRsp_> Rsps
  7719. {
  7720. get { return _Rsps; }
  7721. }
  7722. private global::ProtoBuf.IExtension extensionObject;
  7723. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7724. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7725. }
  7726. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ModifiyBankSignLevelReq")]
  7727. public partial class ModifiyBankSignLevelReq : global::ProtoBuf.IExtensible
  7728. {
  7729. public ModifiyBankSignLevelReq() {}
  7730. private Bank.MessageHead _Header = null;
  7731. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7732. [global::System.ComponentModel.DefaultValue(null)]
  7733. public Bank.MessageHead Header
  7734. {
  7735. get { return _Header; }
  7736. set { _Header = value; }
  7737. }
  7738. private string _AccountCode = "";
  7739. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7740. [global::System.ComponentModel.DefaultValue("")]
  7741. public string AccountCode
  7742. {
  7743. get { return _AccountCode; }
  7744. set { _AccountCode = value; }
  7745. }
  7746. private string _Currency = "";
  7747. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7748. [global::System.ComponentModel.DefaultValue("")]
  7749. public string Currency
  7750. {
  7751. get { return _Currency; }
  7752. set { _Currency = value; }
  7753. }
  7754. private long _ExtOperatorID = int.MinValue;
  7755. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7756. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7757. public long ExtOperatorID
  7758. {
  7759. get { return _ExtOperatorID; }
  7760. set { _ExtOperatorID = value; }
  7761. }
  7762. private string _SignLevel = "";
  7763. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"SignLevel", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7764. [global::System.ComponentModel.DefaultValue("")]
  7765. public string SignLevel
  7766. {
  7767. get { return _SignLevel; }
  7768. set { _SignLevel = value; }
  7769. }
  7770. private global::ProtoBuf.IExtension extensionObject;
  7771. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7772. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7773. }
  7774. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ModifiyBankSignLevelRsp")]
  7775. public partial class ModifiyBankSignLevelRsp : global::ProtoBuf.IExtensible
  7776. {
  7777. public ModifiyBankSignLevelRsp() {}
  7778. private Bank.MessageHead _Header = null;
  7779. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7780. [global::System.ComponentModel.DefaultValue(null)]
  7781. public Bank.MessageHead Header
  7782. {
  7783. get { return _Header; }
  7784. set { _Header = value; }
  7785. }
  7786. private int _RetCode = int.MinValue;
  7787. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7788. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7789. public int RetCode
  7790. {
  7791. get { return _RetCode; }
  7792. set { _RetCode = value; }
  7793. }
  7794. private string _RetDesc = "";
  7795. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7796. [global::System.ComponentModel.DefaultValue("")]
  7797. public string RetDesc
  7798. {
  7799. get { return _RetDesc; }
  7800. set { _RetDesc = value; }
  7801. }
  7802. private string _AccountCode = "";
  7803. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7804. [global::System.ComponentModel.DefaultValue("")]
  7805. public string AccountCode
  7806. {
  7807. get { return _AccountCode; }
  7808. set { _AccountCode = value; }
  7809. }
  7810. private string _Exchticket = "";
  7811. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Exchticket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7812. [global::System.ComponentModel.DefaultValue("")]
  7813. public string Exchticket
  7814. {
  7815. get { return _Exchticket; }
  7816. set { _Exchticket = value; }
  7817. }
  7818. private int _Status = int.MinValue;
  7819. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7820. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7821. public int Status
  7822. {
  7823. get { return _Status; }
  7824. set { _Status = value; }
  7825. }
  7826. private global::ProtoBuf.IExtension extensionObject;
  7827. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7828. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7829. }
  7830. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankSignLevelReq")]
  7831. public partial class QueryBankSignLevelReq : global::ProtoBuf.IExtensible
  7832. {
  7833. public QueryBankSignLevelReq() {}
  7834. private Bank.MessageHead _Header = null;
  7835. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7836. [global::System.ComponentModel.DefaultValue(null)]
  7837. public Bank.MessageHead Header
  7838. {
  7839. get { return _Header; }
  7840. set { _Header = value; }
  7841. }
  7842. private Bank.QueryReqPageInfo _PageInfo = null;
  7843. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7844. [global::System.ComponentModel.DefaultValue(null)]
  7845. public Bank.QueryReqPageInfo PageInfo
  7846. {
  7847. get { return _PageInfo; }
  7848. set { _PageInfo = value; }
  7849. }
  7850. private string _AccountCode = "";
  7851. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7852. [global::System.ComponentModel.DefaultValue("")]
  7853. public string AccountCode
  7854. {
  7855. get { return _AccountCode; }
  7856. set { _AccountCode = value; }
  7857. }
  7858. private int _AccountCodeFlag = int.MinValue;
  7859. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"AccountCodeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7860. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7861. public int AccountCodeFlag
  7862. {
  7863. get { return _AccountCodeFlag; }
  7864. set { _AccountCodeFlag = value; }
  7865. }
  7866. private string _Currency = "";
  7867. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Currency", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7868. [global::System.ComponentModel.DefaultValue("")]
  7869. public string Currency
  7870. {
  7871. get { return _Currency; }
  7872. set { _Currency = value; }
  7873. }
  7874. private int _CurrencyFlag = int.MinValue;
  7875. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"CurrencyFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7876. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7877. public int CurrencyFlag
  7878. {
  7879. get { return _CurrencyFlag; }
  7880. set { _CurrencyFlag = value; }
  7881. }
  7882. private long _ExtOperatorID = int.MinValue;
  7883. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"ExtOperatorID", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7884. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7885. public long ExtOperatorID
  7886. {
  7887. get { return _ExtOperatorID; }
  7888. set { _ExtOperatorID = value; }
  7889. }
  7890. private int _ExtOperatorIDFlag = int.MinValue;
  7891. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"ExtOperatorIDFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7892. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7893. public int ExtOperatorIDFlag
  7894. {
  7895. get { return _ExtOperatorIDFlag; }
  7896. set { _ExtOperatorIDFlag = value; }
  7897. }
  7898. private global::ProtoBuf.IExtension extensionObject;
  7899. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7900. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7901. }
  7902. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankSignLevelRsp_")]
  7903. public partial class QueryBankSignLevelRsp_ : global::ProtoBuf.IExtensible
  7904. {
  7905. public QueryBankSignLevelRsp_() {}
  7906. private string _AccountCode = "";
  7907. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"AccountCode", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7908. [global::System.ComponentModel.DefaultValue("")]
  7909. public string AccountCode
  7910. {
  7911. get { return _AccountCode; }
  7912. set { _AccountCode = value; }
  7913. }
  7914. private string _Exchticket = "";
  7915. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"Exchticket", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7916. [global::System.ComponentModel.DefaultValue("")]
  7917. public string Exchticket
  7918. {
  7919. get { return _Exchticket; }
  7920. set { _Exchticket = value; }
  7921. }
  7922. private int _Status = int.MinValue;
  7923. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Status", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7924. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7925. public int Status
  7926. {
  7927. get { return _Status; }
  7928. set { _Status = value; }
  7929. }
  7930. private string _SignLevel = "";
  7931. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"SignLevel", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7932. [global::System.ComponentModel.DefaultValue("")]
  7933. public string SignLevel
  7934. {
  7935. get { return _SignLevel; }
  7936. set { _SignLevel = value; }
  7937. }
  7938. private global::ProtoBuf.IExtension extensionObject;
  7939. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7940. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7941. }
  7942. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankSignLevelRsp")]
  7943. public partial class QueryBankSignLevelRsp : global::ProtoBuf.IExtensible
  7944. {
  7945. public QueryBankSignLevelRsp() {}
  7946. private Bank.MessageHead _Header = null;
  7947. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7948. [global::System.ComponentModel.DefaultValue(null)]
  7949. public Bank.MessageHead Header
  7950. {
  7951. get { return _Header; }
  7952. set { _Header = value; }
  7953. }
  7954. private int _RetCode = int.MinValue;
  7955. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  7956. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  7957. public int RetCode
  7958. {
  7959. get { return _RetCode; }
  7960. set { _RetCode = value; }
  7961. }
  7962. private string _RetDesc = "";
  7963. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7964. [global::System.ComponentModel.DefaultValue("")]
  7965. public string RetDesc
  7966. {
  7967. get { return _RetDesc; }
  7968. set { _RetDesc = value; }
  7969. }
  7970. private Bank.QueryRspPageInfo _PageInfo = null;
  7971. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7972. [global::System.ComponentModel.DefaultValue(null)]
  7973. public Bank.QueryRspPageInfo PageInfo
  7974. {
  7975. get { return _PageInfo; }
  7976. set { _PageInfo = value; }
  7977. }
  7978. private readonly global::System.Collections.Generic.List<Bank.QueryBankSignLevelRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankSignLevelRsp_>();
  7979. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7980. public global::System.Collections.Generic.List<Bank.QueryBankSignLevelRsp_> Rsps
  7981. {
  7982. get { return _Rsps; }
  7983. }
  7984. private global::ProtoBuf.IExtension extensionObject;
  7985. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  7986. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  7987. }
  7988. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryProvinceInfoReq")]
  7989. public partial class QueryProvinceInfoReq : global::ProtoBuf.IExtensible
  7990. {
  7991. public QueryProvinceInfoReq() {}
  7992. private Bank.MessageHead _Header = null;
  7993. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  7994. [global::System.ComponentModel.DefaultValue(null)]
  7995. public Bank.MessageHead Header
  7996. {
  7997. get { return _Header; }
  7998. set { _Header = value; }
  7999. }
  8000. private Bank.QueryReqPageInfo _PageInfo = null;
  8001. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8002. [global::System.ComponentModel.DefaultValue(null)]
  8003. public Bank.QueryReqPageInfo PageInfo
  8004. {
  8005. get { return _PageInfo; }
  8006. set { _PageInfo = value; }
  8007. }
  8008. private string _Provinceid = "";
  8009. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Provinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8010. [global::System.ComponentModel.DefaultValue("")]
  8011. public string Provinceid
  8012. {
  8013. get { return _Provinceid; }
  8014. set { _Provinceid = value; }
  8015. }
  8016. private int _ProvinceidFlag = int.MinValue;
  8017. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ProvinceidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8018. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8019. public int ProvinceidFlag
  8020. {
  8021. get { return _ProvinceidFlag; }
  8022. set { _ProvinceidFlag = value; }
  8023. }
  8024. private string _ProvinceName = "";
  8025. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"ProvinceName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8026. [global::System.ComponentModel.DefaultValue("")]
  8027. public string ProvinceName
  8028. {
  8029. get { return _ProvinceName; }
  8030. set { _ProvinceName = value; }
  8031. }
  8032. private int _ProvinceNameFlag = int.MinValue;
  8033. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ProvinceNameFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8034. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8035. public int ProvinceNameFlag
  8036. {
  8037. get { return _ProvinceNameFlag; }
  8038. set { _ProvinceNameFlag = value; }
  8039. }
  8040. private int _flag = int.MinValue;
  8041. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"flag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8042. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8043. public int flag
  8044. {
  8045. get { return _flag; }
  8046. set { _flag = value; }
  8047. }
  8048. private int _flagFlag = int.MinValue;
  8049. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"flagFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8050. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8051. public int flagFlag
  8052. {
  8053. get { return _flagFlag; }
  8054. set { _flagFlag = value; }
  8055. }
  8056. private global::ProtoBuf.IExtension extensionObject;
  8057. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8058. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8059. }
  8060. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryProvinceInfoRsp_")]
  8061. public partial class QueryProvinceInfoRsp_ : global::ProtoBuf.IExtensible
  8062. {
  8063. public QueryProvinceInfoRsp_() {}
  8064. private string _Provinceid = "";
  8065. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Provinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8066. [global::System.ComponentModel.DefaultValue("")]
  8067. public string Provinceid
  8068. {
  8069. get { return _Provinceid; }
  8070. set { _Provinceid = value; }
  8071. }
  8072. private string _ProvinceName = "";
  8073. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"ProvinceName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8074. [global::System.ComponentModel.DefaultValue("")]
  8075. public string ProvinceName
  8076. {
  8077. get { return _ProvinceName; }
  8078. set { _ProvinceName = value; }
  8079. }
  8080. private int _flag = int.MinValue;
  8081. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"flag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8082. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8083. public int flag
  8084. {
  8085. get { return _flag; }
  8086. set { _flag = value; }
  8087. }
  8088. private global::ProtoBuf.IExtension extensionObject;
  8089. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8090. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8091. }
  8092. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryProvinceInfoRsp")]
  8093. public partial class QueryProvinceInfoRsp : global::ProtoBuf.IExtensible
  8094. {
  8095. public QueryProvinceInfoRsp() {}
  8096. private Bank.MessageHead _Header = null;
  8097. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8098. [global::System.ComponentModel.DefaultValue(null)]
  8099. public Bank.MessageHead Header
  8100. {
  8101. get { return _Header; }
  8102. set { _Header = value; }
  8103. }
  8104. private int _RetCode = int.MinValue;
  8105. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8106. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8107. public int RetCode
  8108. {
  8109. get { return _RetCode; }
  8110. set { _RetCode = value; }
  8111. }
  8112. private string _RetDesc = "";
  8113. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8114. [global::System.ComponentModel.DefaultValue("")]
  8115. public string RetDesc
  8116. {
  8117. get { return _RetDesc; }
  8118. set { _RetDesc = value; }
  8119. }
  8120. private Bank.QueryRspPageInfo _PageInfo = null;
  8121. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8122. [global::System.ComponentModel.DefaultValue(null)]
  8123. public Bank.QueryRspPageInfo PageInfo
  8124. {
  8125. get { return _PageInfo; }
  8126. set { _PageInfo = value; }
  8127. }
  8128. private readonly global::System.Collections.Generic.List<Bank.QueryProvinceInfoRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryProvinceInfoRsp_>();
  8129. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8130. public global::System.Collections.Generic.List<Bank.QueryProvinceInfoRsp_> Rsps
  8131. {
  8132. get { return _Rsps; }
  8133. }
  8134. private global::ProtoBuf.IExtension extensionObject;
  8135. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8136. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8137. }
  8138. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryCityInfoReq")]
  8139. public partial class QueryCityInfoReq : global::ProtoBuf.IExtensible
  8140. {
  8141. public QueryCityInfoReq() {}
  8142. private Bank.MessageHead _Header = null;
  8143. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8144. [global::System.ComponentModel.DefaultValue(null)]
  8145. public Bank.MessageHead Header
  8146. {
  8147. get { return _Header; }
  8148. set { _Header = value; }
  8149. }
  8150. private Bank.QueryReqPageInfo _PageInfo = null;
  8151. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8152. [global::System.ComponentModel.DefaultValue(null)]
  8153. public Bank.QueryReqPageInfo PageInfo
  8154. {
  8155. get { return _PageInfo; }
  8156. set { _PageInfo = value; }
  8157. }
  8158. private string _cityid = "";
  8159. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"cityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8160. [global::System.ComponentModel.DefaultValue("")]
  8161. public string cityid
  8162. {
  8163. get { return _cityid; }
  8164. set { _cityid = value; }
  8165. }
  8166. private int _cityidFlag = int.MinValue;
  8167. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"cityidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8168. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8169. public int cityidFlag
  8170. {
  8171. get { return _cityidFlag; }
  8172. set { _cityidFlag = value; }
  8173. }
  8174. private string _Provinceid = "";
  8175. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"Provinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8176. [global::System.ComponentModel.DefaultValue("")]
  8177. public string Provinceid
  8178. {
  8179. get { return _Provinceid; }
  8180. set { _Provinceid = value; }
  8181. }
  8182. private int _ProvinceidFlag = int.MinValue;
  8183. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ProvinceidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8184. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8185. public int ProvinceidFlag
  8186. {
  8187. get { return _ProvinceidFlag; }
  8188. set { _ProvinceidFlag = value; }
  8189. }
  8190. private int _flag = int.MinValue;
  8191. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"flag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8192. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8193. public int flag
  8194. {
  8195. get { return _flag; }
  8196. set { _flag = value; }
  8197. }
  8198. private int _flagFlag = int.MinValue;
  8199. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"flagFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8200. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8201. public int flagFlag
  8202. {
  8203. get { return _flagFlag; }
  8204. set { _flagFlag = value; }
  8205. }
  8206. private global::ProtoBuf.IExtension extensionObject;
  8207. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8208. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8209. }
  8210. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryCityInfoRsp_")]
  8211. public partial class QueryCityInfoRsp_ : global::ProtoBuf.IExtensible
  8212. {
  8213. public QueryCityInfoRsp_() {}
  8214. private string _cityid = "";
  8215. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"cityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8216. [global::System.ComponentModel.DefaultValue("")]
  8217. public string cityid
  8218. {
  8219. get { return _cityid; }
  8220. set { _cityid = value; }
  8221. }
  8222. private string _cityname = "";
  8223. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"cityname", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8224. [global::System.ComponentModel.DefaultValue("")]
  8225. public string cityname
  8226. {
  8227. get { return _cityname; }
  8228. set { _cityname = value; }
  8229. }
  8230. private string _Provinceid = "";
  8231. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"Provinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8232. [global::System.ComponentModel.DefaultValue("")]
  8233. public string Provinceid
  8234. {
  8235. get { return _Provinceid; }
  8236. set { _Provinceid = value; }
  8237. }
  8238. private string _ProvinceName = "";
  8239. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"ProvinceName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8240. [global::System.ComponentModel.DefaultValue("")]
  8241. public string ProvinceName
  8242. {
  8243. get { return _ProvinceName; }
  8244. set { _ProvinceName = value; }
  8245. }
  8246. private int _flag = int.MinValue;
  8247. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"flag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8248. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8249. public int flag
  8250. {
  8251. get { return _flag; }
  8252. set { _flag = value; }
  8253. }
  8254. private global::ProtoBuf.IExtension extensionObject;
  8255. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8256. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8257. }
  8258. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryCityInfoRsp")]
  8259. public partial class QueryCityInfoRsp : global::ProtoBuf.IExtensible
  8260. {
  8261. public QueryCityInfoRsp() {}
  8262. private Bank.MessageHead _Header = null;
  8263. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8264. [global::System.ComponentModel.DefaultValue(null)]
  8265. public Bank.MessageHead Header
  8266. {
  8267. get { return _Header; }
  8268. set { _Header = value; }
  8269. }
  8270. private int _RetCode = int.MinValue;
  8271. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8272. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8273. public int RetCode
  8274. {
  8275. get { return _RetCode; }
  8276. set { _RetCode = value; }
  8277. }
  8278. private string _RetDesc = "";
  8279. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8280. [global::System.ComponentModel.DefaultValue("")]
  8281. public string RetDesc
  8282. {
  8283. get { return _RetDesc; }
  8284. set { _RetDesc = value; }
  8285. }
  8286. private Bank.QueryRspPageInfo _PageInfo = null;
  8287. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8288. [global::System.ComponentModel.DefaultValue(null)]
  8289. public Bank.QueryRspPageInfo PageInfo
  8290. {
  8291. get { return _PageInfo; }
  8292. set { _PageInfo = value; }
  8293. }
  8294. private readonly global::System.Collections.Generic.List<Bank.QueryCityInfoRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryCityInfoRsp_>();
  8295. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8296. public global::System.Collections.Generic.List<Bank.QueryCityInfoRsp_> Rsps
  8297. {
  8298. get { return _Rsps; }
  8299. }
  8300. private global::ProtoBuf.IExtension extensionObject;
  8301. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8302. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8303. }
  8304. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankCityInfoRelReq")]
  8305. public partial class QueryBankCityInfoRelReq : global::ProtoBuf.IExtensible
  8306. {
  8307. public QueryBankCityInfoRelReq() {}
  8308. private Bank.MessageHead _Header = null;
  8309. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8310. [global::System.ComponentModel.DefaultValue(null)]
  8311. public Bank.MessageHead Header
  8312. {
  8313. get { return _Header; }
  8314. set { _Header = value; }
  8315. }
  8316. private Bank.QueryReqPageInfo _PageInfo = null;
  8317. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8318. [global::System.ComponentModel.DefaultValue(null)]
  8319. public Bank.QueryReqPageInfo PageInfo
  8320. {
  8321. get { return _PageInfo; }
  8322. set { _PageInfo = value; }
  8323. }
  8324. private string _platcityid = "";
  8325. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"platcityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8326. [global::System.ComponentModel.DefaultValue("")]
  8327. public string platcityid
  8328. {
  8329. get { return _platcityid; }
  8330. set { _platcityid = value; }
  8331. }
  8332. private int _platcityidFlag = int.MinValue;
  8333. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"platcityidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8334. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8335. public int platcityidFlag
  8336. {
  8337. get { return _platcityidFlag; }
  8338. set { _platcityidFlag = value; }
  8339. }
  8340. private string _cusbankid = "";
  8341. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8342. [global::System.ComponentModel.DefaultValue("")]
  8343. public string cusbankid
  8344. {
  8345. get { return _cusbankid; }
  8346. set { _cusbankid = value; }
  8347. }
  8348. private int _cusbankidFlag = int.MinValue;
  8349. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"cusbankidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8350. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8351. public int cusbankidFlag
  8352. {
  8353. get { return _cusbankidFlag; }
  8354. set { _cusbankidFlag = value; }
  8355. }
  8356. private string _bankcityid = "";
  8357. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"bankcityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8358. [global::System.ComponentModel.DefaultValue("")]
  8359. public string bankcityid
  8360. {
  8361. get { return _bankcityid; }
  8362. set { _bankcityid = value; }
  8363. }
  8364. private int _bankcityidFlag = int.MinValue;
  8365. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"bankcityidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8366. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8367. public int bankcityidFlag
  8368. {
  8369. get { return _bankcityidFlag; }
  8370. set { _bankcityidFlag = value; }
  8371. }
  8372. private int _codetype = int.MinValue;
  8373. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"codetype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8374. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8375. public int codetype
  8376. {
  8377. get { return _codetype; }
  8378. set { _codetype = value; }
  8379. }
  8380. private int _codetypeFlag = int.MinValue;
  8381. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"codetypeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8382. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8383. public int codetypeFlag
  8384. {
  8385. get { return _codetypeFlag; }
  8386. set { _codetypeFlag = value; }
  8387. }
  8388. private global::ProtoBuf.IExtension extensionObject;
  8389. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8390. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8391. }
  8392. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankCityInfoRelRsp_")]
  8393. public partial class QueryBankCityInfoRelRsp_ : global::ProtoBuf.IExtensible
  8394. {
  8395. public QueryBankCityInfoRelRsp_() {}
  8396. private string _platcityid = "";
  8397. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"platcityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8398. [global::System.ComponentModel.DefaultValue("")]
  8399. public string platcityid
  8400. {
  8401. get { return _platcityid; }
  8402. set { _platcityid = value; }
  8403. }
  8404. private string _cusbankid = "";
  8405. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8406. [global::System.ComponentModel.DefaultValue("")]
  8407. public string cusbankid
  8408. {
  8409. get { return _cusbankid; }
  8410. set { _cusbankid = value; }
  8411. }
  8412. private string _bankcityid = "";
  8413. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"bankcityid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8414. [global::System.ComponentModel.DefaultValue("")]
  8415. public string bankcityid
  8416. {
  8417. get { return _bankcityid; }
  8418. set { _bankcityid = value; }
  8419. }
  8420. private string _Provinceid = "";
  8421. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"Provinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8422. [global::System.ComponentModel.DefaultValue("")]
  8423. public string Provinceid
  8424. {
  8425. get { return _Provinceid; }
  8426. set { _Provinceid = value; }
  8427. }
  8428. private string _cityname = "";
  8429. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"cityname", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8430. [global::System.ComponentModel.DefaultValue("")]
  8431. public string cityname
  8432. {
  8433. get { return _cityname; }
  8434. set { _cityname = value; }
  8435. }
  8436. private string _ProvinceName = "";
  8437. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"ProvinceName", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8438. [global::System.ComponentModel.DefaultValue("")]
  8439. public string ProvinceName
  8440. {
  8441. get { return _ProvinceName; }
  8442. set { _ProvinceName = value; }
  8443. }
  8444. private int _codetype = int.MinValue;
  8445. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"codetype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8446. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8447. public int codetype
  8448. {
  8449. get { return _codetype; }
  8450. set { _codetype = value; }
  8451. }
  8452. private global::ProtoBuf.IExtension extensionObject;
  8453. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8454. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8455. }
  8456. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankCityInfoRelRsp")]
  8457. public partial class QueryBankCityInfoRelRsp : global::ProtoBuf.IExtensible
  8458. {
  8459. public QueryBankCityInfoRelRsp() {}
  8460. private Bank.MessageHead _Header = null;
  8461. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8462. [global::System.ComponentModel.DefaultValue(null)]
  8463. public Bank.MessageHead Header
  8464. {
  8465. get { return _Header; }
  8466. set { _Header = value; }
  8467. }
  8468. private int _RetCode = int.MinValue;
  8469. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8470. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8471. public int RetCode
  8472. {
  8473. get { return _RetCode; }
  8474. set { _RetCode = value; }
  8475. }
  8476. private string _RetDesc = "";
  8477. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8478. [global::System.ComponentModel.DefaultValue("")]
  8479. public string RetDesc
  8480. {
  8481. get { return _RetDesc; }
  8482. set { _RetDesc = value; }
  8483. }
  8484. private Bank.QueryRspPageInfo _PageInfo = null;
  8485. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8486. [global::System.ComponentModel.DefaultValue(null)]
  8487. public Bank.QueryRspPageInfo PageInfo
  8488. {
  8489. get { return _PageInfo; }
  8490. set { _PageInfo = value; }
  8491. }
  8492. private readonly global::System.Collections.Generic.List<Bank.QueryBankCityInfoRelRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankCityInfoRelRsp_>();
  8493. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8494. public global::System.Collections.Generic.List<Bank.QueryBankCityInfoRelRsp_> Rsps
  8495. {
  8496. get { return _Rsps; }
  8497. }
  8498. private global::ProtoBuf.IExtension extensionObject;
  8499. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8500. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8501. }
  8502. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankProvinceInfoRelReq")]
  8503. public partial class QueryBankProvinceInfoRelReq : global::ProtoBuf.IExtensible
  8504. {
  8505. public QueryBankProvinceInfoRelReq() {}
  8506. private Bank.MessageHead _Header = null;
  8507. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8508. [global::System.ComponentModel.DefaultValue(null)]
  8509. public Bank.MessageHead Header
  8510. {
  8511. get { return _Header; }
  8512. set { _Header = value; }
  8513. }
  8514. private Bank.QueryReqPageInfo _PageInfo = null;
  8515. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8516. [global::System.ComponentModel.DefaultValue(null)]
  8517. public Bank.QueryReqPageInfo PageInfo
  8518. {
  8519. get { return _PageInfo; }
  8520. set { _PageInfo = value; }
  8521. }
  8522. private string _platProvinceid = "";
  8523. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"platProvinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8524. [global::System.ComponentModel.DefaultValue("")]
  8525. public string platProvinceid
  8526. {
  8527. get { return _platProvinceid; }
  8528. set { _platProvinceid = value; }
  8529. }
  8530. private int _platProvinceidFlag = int.MinValue;
  8531. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"platProvinceidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8532. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8533. public int platProvinceidFlag
  8534. {
  8535. get { return _platProvinceidFlag; }
  8536. set { _platProvinceidFlag = value; }
  8537. }
  8538. private string _cusbankid = "";
  8539. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8540. [global::System.ComponentModel.DefaultValue("")]
  8541. public string cusbankid
  8542. {
  8543. get { return _cusbankid; }
  8544. set { _cusbankid = value; }
  8545. }
  8546. private int _cusbankidFlag = int.MinValue;
  8547. [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"cusbankidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8548. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8549. public int cusbankidFlag
  8550. {
  8551. get { return _cusbankidFlag; }
  8552. set { _cusbankidFlag = value; }
  8553. }
  8554. private string _bankProvinceid = "";
  8555. [global::ProtoBuf.ProtoMember(7, IsRequired = false, Name=@"bankProvinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8556. [global::System.ComponentModel.DefaultValue("")]
  8557. public string bankProvinceid
  8558. {
  8559. get { return _bankProvinceid; }
  8560. set { _bankProvinceid = value; }
  8561. }
  8562. private int _bankProvinceidFlag = int.MinValue;
  8563. [global::ProtoBuf.ProtoMember(8, IsRequired = false, Name=@"bankProvinceidFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8564. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8565. public int bankProvinceidFlag
  8566. {
  8567. get { return _bankProvinceidFlag; }
  8568. set { _bankProvinceidFlag = value; }
  8569. }
  8570. private int _codetype = int.MinValue;
  8571. [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"codetype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8572. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8573. public int codetype
  8574. {
  8575. get { return _codetype; }
  8576. set { _codetype = value; }
  8577. }
  8578. private int _codetypeFlag = int.MinValue;
  8579. [global::ProtoBuf.ProtoMember(10, IsRequired = false, Name=@"codetypeFlag", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8580. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8581. public int codetypeFlag
  8582. {
  8583. get { return _codetypeFlag; }
  8584. set { _codetypeFlag = value; }
  8585. }
  8586. private global::ProtoBuf.IExtension extensionObject;
  8587. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8588. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8589. }
  8590. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankProvinceInfoRelRsp_")]
  8591. public partial class QueryBankProvinceInfoRelRsp_ : global::ProtoBuf.IExtensible
  8592. {
  8593. public QueryBankProvinceInfoRelRsp_() {}
  8594. private string _platProvinceid = "";
  8595. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"platProvinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8596. [global::System.ComponentModel.DefaultValue("")]
  8597. public string platProvinceid
  8598. {
  8599. get { return _platProvinceid; }
  8600. set { _platProvinceid = value; }
  8601. }
  8602. private string _cusbankid = "";
  8603. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"cusbankid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8604. [global::System.ComponentModel.DefaultValue("")]
  8605. public string cusbankid
  8606. {
  8607. get { return _cusbankid; }
  8608. set { _cusbankid = value; }
  8609. }
  8610. private string _bankProvinceid = "";
  8611. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"bankProvinceid", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8612. [global::System.ComponentModel.DefaultValue("")]
  8613. public string bankProvinceid
  8614. {
  8615. get { return _bankProvinceid; }
  8616. set { _bankProvinceid = value; }
  8617. }
  8618. private string _bankProvincename = "";
  8619. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"bankProvincename", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8620. [global::System.ComponentModel.DefaultValue("")]
  8621. public string bankProvincename
  8622. {
  8623. get { return _bankProvincename; }
  8624. set { _bankProvincename = value; }
  8625. }
  8626. private int _codetype = int.MinValue;
  8627. [global::ProtoBuf.ProtoMember(5, IsRequired = false, Name=@"codetype", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8628. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8629. public int codetype
  8630. {
  8631. get { return _codetype; }
  8632. set { _codetype = value; }
  8633. }
  8634. private global::ProtoBuf.IExtension extensionObject;
  8635. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8636. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8637. }
  8638. [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"QueryBankProvinceInfoRelRsp")]
  8639. public partial class QueryBankProvinceInfoRelRsp : global::ProtoBuf.IExtensible
  8640. {
  8641. public QueryBankProvinceInfoRelRsp() {}
  8642. private Bank.MessageHead _Header = null;
  8643. [global::ProtoBuf.ProtoMember(1, IsRequired = false, Name=@"Header", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8644. [global::System.ComponentModel.DefaultValue(null)]
  8645. public Bank.MessageHead Header
  8646. {
  8647. get { return _Header; }
  8648. set { _Header = value; }
  8649. }
  8650. private int _RetCode = int.MinValue;
  8651. [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"RetCode", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)]
  8652. [global::System.ComponentModel.DefaultValue(int.MinValue)]
  8653. public int RetCode
  8654. {
  8655. get { return _RetCode; }
  8656. set { _RetCode = value; }
  8657. }
  8658. private string _RetDesc = "";
  8659. [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"RetDesc", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8660. [global::System.ComponentModel.DefaultValue("")]
  8661. public string RetDesc
  8662. {
  8663. get { return _RetDesc; }
  8664. set { _RetDesc = value; }
  8665. }
  8666. private Bank.QueryRspPageInfo _PageInfo = null;
  8667. [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"PageInfo", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8668. [global::System.ComponentModel.DefaultValue(null)]
  8669. public Bank.QueryRspPageInfo PageInfo
  8670. {
  8671. get { return _PageInfo; }
  8672. set { _PageInfo = value; }
  8673. }
  8674. private readonly global::System.Collections.Generic.List<Bank.QueryBankProvinceInfoRelRsp_> _Rsps = new global::System.Collections.Generic.List<Bank.QueryBankProvinceInfoRelRsp_>();
  8675. [global::ProtoBuf.ProtoMember(5, Name=@"Rsps", DataFormat = global::ProtoBuf.DataFormat.Default)]
  8676. public global::System.Collections.Generic.List<Bank.QueryBankProvinceInfoRelRsp_> Rsps
  8677. {
  8678. get { return _Rsps; }
  8679. }
  8680. private global::ProtoBuf.IExtension extensionObject;
  8681. global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing)
  8682. { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); }
  8683. }
  8684. }