DB.edmx 764 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <Schema Namespace="oa2023DBModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  8. <EntityType Name="Air_TicketBlackCode">
  9. <Key>
  10. <PropertyRef Name="Id" />
  11. </Key>
  12. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="DiId" Type="int" />
  14. <Property Name="LeaveCode" Type="varchar" MaxLength="800" />
  15. <Property Name="BlackCode" Type="varchar" MaxLength="800" />
  16. <Property Name="ReturnCode" Type="varchar" MaxLength="800" />
  17. <Property Name="Price" Type="varchar" MaxLength="200" />
  18. <Property Name="NowPrice" Type="varchar" MaxLength="200" />
  19. <Property Name="BCPrice" Type="decimal" Precision="10" Scale="2" />
  20. <Property Name="ECPrice" Type="decimal" Precision="10" Scale="2" />
  21. <Property Name="Title" Type="nvarchar" MaxLength="200" />
  22. <Property Name="CreateUserId" Type="int" />
  23. <Property Name="CreateTime" Type="datetime" />
  24. <Property Name="DeleteUserId" Type="int" />
  25. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  26. <Property Name="Remark" Type="varchar" MaxLength="500" />
  27. <Property Name="IsDel" Type="int" />
  28. </EntityType>
  29. <EntityType Name="Bus_ConfItem">
  30. <Key>
  31. <PropertyRef Name="Id" />
  32. </Key>
  33. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  34. <Property Name="ItemId" Type="int" />
  35. <Property Name="ConfListId" Type="int" />
  36. <Property Name="Count" Type="int" />
  37. <Property Name="Specs" Type="varchar" MaxLength="20" />
  38. <Property Name="CurrCost" Type="decimal" Precision="9" Scale="2" />
  39. <Property Name="OpRemark" Type="nvarchar" MaxLength="500" />
  40. <Property Name="CreateUserId" Type="int" />
  41. <Property Name="CreateTime" Type="datetime" />
  42. <Property Name="DeleteUserId" Type="int" />
  43. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  44. <Property Name="Remark" Type="varchar" MaxLength="500" />
  45. <Property Name="IsDel" Type="int" />
  46. </EntityType>
  47. <EntityType Name="Bus_ConfItemList">
  48. <Key>
  49. <PropertyRef Name="Id" />
  50. </Key>
  51. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  52. <Property Name="Diid" Type="int" />
  53. <Property Name="TotalCost" Type="decimal" Precision="10" Scale="2" />
  54. <Property Name="ExcelPath" Type="nvarchar" MaxLength="255" />
  55. <Property Name="CreateUserId" Type="int" />
  56. <Property Name="CreateTime" Type="datetime" />
  57. <Property Name="DeleteUserId" Type="int" />
  58. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  59. <Property Name="Remark" Type="varchar" MaxLength="500" />
  60. <Property Name="IsDel" Type="int" />
  61. </EntityType>
  62. <EntityType Name="Bus_MsgPost">
  63. <Key>
  64. <PropertyRef Name="Id" />
  65. </Key>
  66. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  67. <Property Name="Source" Type="varchar" MaxLength="30" Nullable="false" />
  68. <Property Name="PostType" Type="varchar" MaxLength="30" Nullable="false" />
  69. <Property Name="PhoneNumber" Type="varchar" MaxLength="30" Nullable="false" />
  70. <Property Name="PostResult" Type="nvarchar" MaxLength="500" Nullable="false" />
  71. <Property Name="CreateUserId" Type="int" />
  72. <Property Name="CreateTime" Type="datetime" />
  73. <Property Name="DeleteUserId" Type="int" />
  74. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  75. <Property Name="Remark" Type="varchar" MaxLength="500" />
  76. <Property Name="IsDel" Type="int" />
  77. </EntityType>
  78. <EntityType Name="Crm_ClientDataAndBusiness">
  79. <Key>
  80. <PropertyRef Name="Id" />
  81. </Key>
  82. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  83. <Property Name="SetDataId" Type="int" />
  84. <Property Name="NewClientDataId" Type="int" />
  85. <Property Name="CreateUserId" Type="int" />
  86. <Property Name="CreateTime" Type="datetime" />
  87. <Property Name="DeleteUserId" Type="int" />
  88. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  89. <Property Name="Remark" Type="varchar" MaxLength="500" />
  90. <Property Name="IsDel" Type="int" />
  91. </EntityType>
  92. <EntityType Name="Crm_ClientDataAndUser">
  93. <Key>
  94. <PropertyRef Name="Id" />
  95. </Key>
  96. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  97. <Property Name="UsersId" Type="int" />
  98. <Property Name="NewClientDataId" Type="int" />
  99. <Property Name="CreateUserId" Type="int" />
  100. <Property Name="CreateTime" Type="datetime" />
  101. <Property Name="DeleteUserId" Type="int" />
  102. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  103. <Property Name="Remark" Type="varchar" MaxLength="500" />
  104. <Property Name="IsDel" Type="int" />
  105. </EntityType>
  106. <EntityType Name="Crm_CustomerCert">
  107. <Key>
  108. <PropertyRef Name="Id" />
  109. </Key>
  110. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  111. <Property Name="DcId" Type="int" />
  112. <Property Name="SdId" Type="int" />
  113. <Property Name="PassportType" Type="int" />
  114. <Property Name="CertNo" Type="nvarchar(max)" />
  115. <Property Name="Country" Type="varchar" MaxLength="50" />
  116. <Property Name="Area" Type="varchar" MaxLength="50" />
  117. <Property Name="TargetCountry" Type="varchar" MaxLength="50" />
  118. <Property Name="IssueDt" Type="datetime" />
  119. <Property Name="ExpiryDt" Type="datetime" />
  120. <Property Name="IDCardAddress" Type="varchar" MaxLength="100" />
  121. <Property Name="CreateUserId" Type="int" />
  122. <Property Name="CreateTime" Type="datetime" />
  123. <Property Name="DeleteUserId" Type="int" />
  124. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  125. <Property Name="Remark" Type="varchar" MaxLength="500" />
  126. <Property Name="IsDel" Type="int" />
  127. </EntityType>
  128. <!--生成过程中发现错误:
  129. 警告 6002: 表/视图“OA2023DB.dbo.Crm_CustomerCert_Data”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  130. <EntityType Name="Crm_CustomerCert_Data">
  131. <Key>
  132. <PropertyRef Name="Id" />
  133. </Key>
  134. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  135. <Property Name="DcId" Type="int" />
  136. <Property Name="SdId" Type="int" />
  137. <Property Name="PassportType" Type="int" />
  138. <Property Name="CertNo" Type="nvarchar(max)" />
  139. <Property Name="Country" Type="varchar" MaxLength="50" />
  140. <Property Name="Area" Type="varchar" MaxLength="50" />
  141. <Property Name="TargetCountry" Type="varchar" MaxLength="50" />
  142. <Property Name="IssueDt" Type="datetime" />
  143. <Property Name="ExpiryDt" Type="datetime" />
  144. <Property Name="IDCardAddress" Type="varchar" MaxLength="100" />
  145. <Property Name="CreateUserId" Type="int" />
  146. <Property Name="CreateTime" Type="datetime" />
  147. <Property Name="DeleteUserId" Type="int" />
  148. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  149. <Property Name="Remark" Type="varchar" MaxLength="500" />
  150. <Property Name="IsDel" Type="int" />
  151. </EntityType>
  152. <EntityType Name="Crm_CustomerCompany">
  153. <Key>
  154. <PropertyRef Name="Id" />
  155. </Key>
  156. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  157. <Property Name="CompanyAbbreviation" Type="varchar" MaxLength="50" />
  158. <Property Name="CompanyFullName" Type="varchar" MaxLength="200" />
  159. <Property Name="Address" Type="varchar" MaxLength="200" />
  160. <Property Name="PostCodes" Type="varchar" MaxLength="80" />
  161. <Property Name="LastedOpUserId" Type="int" />
  162. <Property Name="LastedOpDt" Type="datetime" />
  163. <Property Name="CreateUserId" Type="int" />
  164. <Property Name="CreateTime" Type="datetime" />
  165. <Property Name="DeleteUserId" Type="int" />
  166. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  167. <Property Name="Remark" Type="varchar" MaxLength="500" />
  168. <Property Name="IsDel" Type="int" />
  169. </EntityType>
  170. <!--生成过程中发现错误:
  171. 警告 6002: 表/视图“OA2023DB.dbo.Crm_CustomerCompany_Data”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  172. <EntityType Name="Crm_CustomerCompany_Data">
  173. <Key>
  174. <PropertyRef Name="Id" />
  175. </Key>
  176. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  177. <Property Name="CompanyAbbreviation" Type="varchar" MaxLength="50" />
  178. <Property Name="CompanyFullName" Type="varchar" MaxLength="200" />
  179. <Property Name="Address" Type="varchar" MaxLength="200" />
  180. <Property Name="PostCodes" Type="varchar" MaxLength="80" />
  181. <Property Name="LastedOpUserId" Type="int" />
  182. <Property Name="LastedOpDt" Type="datetime" />
  183. <Property Name="CreateUserId" Type="int" />
  184. <Property Name="CreateTime" Type="datetime" />
  185. <Property Name="DeleteUserId" Type="int" />
  186. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  187. <Property Name="Remark" Type="varchar" MaxLength="500" />
  188. <Property Name="IsDel" Type="int" />
  189. </EntityType>
  190. <EntityType Name="Crm_CustomerFile">
  191. <Key>
  192. <PropertyRef Name="Id" />
  193. </Key>
  194. <Property Name="Id" Type="int" Nullable="false" />
  195. <Property Name="DcId" Type="int" />
  196. <Property Name="Publisher" Type="varchar" MaxLength="80" />
  197. <Property Name="FileName" Type="varchar" MaxLength="300" />
  198. <Property Name="FileBusiType" Type="int" />
  199. <Property Name="CreateUserId" Type="int" />
  200. <Property Name="CreateTime" Type="datetime" />
  201. <Property Name="DeleteUserId" Type="int" />
  202. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  203. <Property Name="Remark" Type="varchar" MaxLength="500" />
  204. <Property Name="IsDel" Type="int" />
  205. </EntityType>
  206. <EntityType Name="Crm_DeleClient">
  207. <Key>
  208. <PropertyRef Name="Id" />
  209. </Key>
  210. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  211. <Property Name="DiId" Type="int" />
  212. <Property Name="LastName" Type="nvarchar(max)" />
  213. <Property Name="FirstName" Type="nvarchar(max)" />
  214. <Property Name="OldName" Type="varchar" MaxLength="50" />
  215. <Property Name="Pinyin" Type="nvarchar(max)" />
  216. <Property Name="Sex" Type="int" />
  217. <Property Name="Marriage" Type="int" />
  218. <Property Name="Tel" Type="varchar" MaxLength="20" />
  219. <Property Name="BirthProvince" Type="varchar" MaxLength="50" />
  220. <Property Name="BirthCity" Type="varchar" MaxLength="50" />
  221. <Property Name="BirthDay" Type="datetime" />
  222. <Property Name="AirType" Type="varchar" MaxLength="300" />
  223. <Property Name="SeatPref" Type="int" />
  224. <Property Name="AirRemark" Type="varchar" MaxLength="300" />
  225. <Property Name="RoomType" Type="varchar" MaxLength="300" />
  226. <Property Name="RoomPref" Type="varchar" MaxLength="300" />
  227. <Property Name="Phone" Type="nvarchar(max)" />
  228. <Property Name="Email" Type="varchar" MaxLength="50" />
  229. <Property Name="Address" Type="varchar" MaxLength="300" />
  230. <Property Name="HighestEducation" Type="varchar" MaxLength="100" />
  231. <Property Name="PostCodes" Type="varchar" MaxLength="50" />
  232. <Property Name="CrmCompanyId" Type="int" />
  233. <Property Name="Job" Type="nvarchar(max)" />
  234. <Property Name="WorkState" Type="varchar" MaxLength="300" />
  235. <Property Name="WorkDate" Type="datetime" />
  236. <Property Name="Wage" Type="varchar" MaxLength="20" />
  237. <Property Name="ClientPhone" Type="varchar" MaxLength="20" />
  238. <Property Name="ClientFax" Type="varchar" MaxLength="50" />
  239. <Property Name="ClientEmail" Type="varchar" MaxLength="50" />
  240. <Property Name="ClientLeader" Type="varchar" MaxLength="20" />
  241. <Property Name="ClientLeaderJob" Type="varchar" MaxLength="20" />
  242. <Property Name="IsGetSchengen" Type="int" />
  243. <Property Name="StartTime" Type="datetime" />
  244. <Property Name="EndTime" Type="datetime" />
  245. <Property Name="IsFinger" Type="int" />
  246. <Property Name="FingerDate" Type="datetime" />
  247. <Property Name="IsVisitUC" Type="int" />
  248. <Property Name="USADate" Type="datetime" />
  249. <Property Name="USADays" Type="int" />
  250. <Property Name="CanDate" Type="datetime" />
  251. <Property Name="CanDays" Type="int" />
  252. <Property Name="IsUSAVia" Type="int" />
  253. <Property Name="GetUSAVisaDate" Type="datetime" />
  254. <Property Name="GetUPPlace" Type="varchar" MaxLength="50" />
  255. <Property Name="USAVisaCate" Type="varchar" MaxLength="50" />
  256. <Property Name="USAVisaCode" Type="varchar" MaxLength="50" />
  257. <Property Name="USAFinger" Type="int" />
  258. <Property Name="IsRejected" Type="int" />
  259. <Property Name="RejectedDate" Type="datetime" />
  260. <Property Name="RejectedPlace" Type="varchar" MaxLength="50" />
  261. <Property Name="RejectedVisa" Type="varchar" MaxLength="50" />
  262. <Property Name="IsRevoke" Type="int" />
  263. <Property Name="IsLose" Type="int" />
  264. <Property Name="LoseDate" Type="datetime" />
  265. <Property Name="LoseCode" Type="varchar" MaxLength="50" />
  266. <Property Name="IsUSAVisa" Type="int" />
  267. <Property Name="MateUSA" Type="int" />
  268. <Property Name="MateIden" Type="varchar" MaxLength="50" />
  269. <Property Name="WHUSA" Type="int" />
  270. <Property Name="WHIden" Type="varchar" MaxLength="50" />
  271. <Property Name="ParentUSA" Type="int" />
  272. <Property Name="ParentIden" Type="varchar" MaxLength="50" />
  273. <Property Name="ChildUSA" Type="int" />
  274. <Property Name="ChildIden" Type="varchar" MaxLength="50" />
  275. <Property Name="BroUSA" Type="int" />
  276. <Property Name="BroIden" Type="varchar" MaxLength="50" />
  277. <Property Name="Social" Type="varchar" MaxLength="500" />
  278. <Property Name="IsArmy" Type="int" />
  279. <Property Name="ArmyState" Type="varchar" MaxLength="500" />
  280. <Property Name="CostBearers" Type="varchar" MaxLength="20" />
  281. <Property Name="TableOpName" Type="varchar" MaxLength="20" />
  282. <Property Name="TableOpTel" Type="varchar" MaxLength="20" />
  283. <Property Name="TableDate" Type="datetime" />
  284. <Property Name="Party" Type="varchar" MaxLength="50" />
  285. <Property Name="Nationality" Type="varchar" MaxLength="20" />
  286. <Property Name="WeddingDate" Type="datetime" />
  287. <Property Name="DivorceDate" Type="datetime" />
  288. <Property Name="MateName" Type="varchar" MaxLength="50" />
  289. <Property Name="MateBirthDay" Type="datetime" />
  290. <Property Name="MateBirthCity" Type="varchar" MaxLength="50" />
  291. <Property Name="MateBirthCountry" Type="varchar" MaxLength="50" />
  292. <Property Name="MateAddress" Type="varchar" MaxLength="300" />
  293. <Property Name="MateClient" Type="varchar" MaxLength="300" />
  294. <Property Name="MateClientAddress" Type="varchar" MaxLength="300" />
  295. <Property Name="MateJob" Type="varchar" MaxLength="50" />
  296. <Property Name="VisitCountry" Type="varchar" MaxLength="500" />
  297. <Property Name="Paper" Type="varchar" MaxLength="500" />
  298. <Property Name="Papent" Type="varchar" MaxLength="500" />
  299. <Property Name="PhD" Type="varchar" MaxLength="500" />
  300. <Property Name="CreateUserId" Type="int" />
  301. <Property Name="CreateTime" Type="datetime" />
  302. <Property Name="DeleteUserId" Type="int" />
  303. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  304. <Property Name="Remark" Type="varchar" MaxLength="500" />
  305. <Property Name="IsDel" Type="int" />
  306. </EntityType>
  307. <!--生成过程中发现错误:
  308. 警告 6002: 表/视图“OA2023DB.dbo.Crm_DeleClient_Data”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  309. <EntityType Name="Crm_DeleClient_Data">
  310. <Key>
  311. <PropertyRef Name="Id" />
  312. </Key>
  313. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  314. <Property Name="DiId" Type="int" />
  315. <Property Name="LastName" Type="nvarchar(max)" />
  316. <Property Name="FirstName" Type="nvarchar(max)" />
  317. <Property Name="OldName" Type="varchar" MaxLength="50" />
  318. <Property Name="Pinyin" Type="nvarchar(max)" />
  319. <Property Name="Sex" Type="int" />
  320. <Property Name="Marriage" Type="int" />
  321. <Property Name="Tel" Type="varchar" MaxLength="20" />
  322. <Property Name="BirthProvince" Type="varchar" MaxLength="50" />
  323. <Property Name="BirthCity" Type="varchar" MaxLength="50" />
  324. <Property Name="BirthDay" Type="datetime" />
  325. <Property Name="AirType" Type="varchar" MaxLength="300" />
  326. <Property Name="SeatPref" Type="int" />
  327. <Property Name="AirRemark" Type="varchar" MaxLength="300" />
  328. <Property Name="RoomType" Type="varchar" MaxLength="300" />
  329. <Property Name="RoomPref" Type="varchar" MaxLength="300" />
  330. <Property Name="Phone" Type="nvarchar(max)" />
  331. <Property Name="Email" Type="varchar" MaxLength="50" />
  332. <Property Name="Address" Type="varchar" MaxLength="300" />
  333. <Property Name="HighestEducation" Type="varchar" MaxLength="100" />
  334. <Property Name="PostCodes" Type="varchar" MaxLength="50" />
  335. <Property Name="CrmCompanyId" Type="int" />
  336. <Property Name="Job" Type="nvarchar(max)" />
  337. <Property Name="WorkState" Type="varchar" MaxLength="300" />
  338. <Property Name="WorkDate" Type="datetime" />
  339. <Property Name="Wage" Type="varchar" MaxLength="20" />
  340. <Property Name="ClientPhone" Type="varchar" MaxLength="20" />
  341. <Property Name="ClientFax" Type="varchar" MaxLength="50" />
  342. <Property Name="ClientEmail" Type="varchar" MaxLength="50" />
  343. <Property Name="ClientLeader" Type="varchar" MaxLength="20" />
  344. <Property Name="ClientLeaderJob" Type="varchar" MaxLength="20" />
  345. <Property Name="IsGetSchengen" Type="int" />
  346. <Property Name="StartTime" Type="datetime" />
  347. <Property Name="EndTime" Type="datetime" />
  348. <Property Name="IsFinger" Type="int" />
  349. <Property Name="FingerDate" Type="datetime" />
  350. <Property Name="IsVisitUC" Type="int" />
  351. <Property Name="USADate" Type="datetime" />
  352. <Property Name="USADays" Type="int" />
  353. <Property Name="CanDate" Type="datetime" />
  354. <Property Name="CanDays" Type="int" />
  355. <Property Name="IsUSAVia" Type="int" />
  356. <Property Name="GetUSAVisaDate" Type="datetime" />
  357. <Property Name="GetUPPlace" Type="varchar" MaxLength="50" />
  358. <Property Name="USAVisaCate" Type="varchar" MaxLength="50" />
  359. <Property Name="USAVisaCode" Type="varchar" MaxLength="50" />
  360. <Property Name="USAFinger" Type="int" />
  361. <Property Name="IsRejected" Type="int" />
  362. <Property Name="RejectedDate" Type="datetime" />
  363. <Property Name="RejectedPlace" Type="varchar" MaxLength="50" />
  364. <Property Name="RejectedVisa" Type="varchar" MaxLength="50" />
  365. <Property Name="IsRevoke" Type="int" />
  366. <Property Name="IsLose" Type="int" />
  367. <Property Name="LoseDate" Type="datetime" />
  368. <Property Name="LoseCode" Type="varchar" MaxLength="50" />
  369. <Property Name="IsUSAVisa" Type="int" />
  370. <Property Name="MateUSA" Type="int" />
  371. <Property Name="MateIden" Type="varchar" MaxLength="50" />
  372. <Property Name="WHUSA" Type="int" />
  373. <Property Name="WHIden" Type="varchar" MaxLength="50" />
  374. <Property Name="ParentUSA" Type="int" />
  375. <Property Name="ParentIden" Type="varchar" MaxLength="50" />
  376. <Property Name="ChildUSA" Type="int" />
  377. <Property Name="ChildIden" Type="varchar" MaxLength="50" />
  378. <Property Name="BroUSA" Type="int" />
  379. <Property Name="BroIden" Type="varchar" MaxLength="50" />
  380. <Property Name="Social" Type="varchar" MaxLength="500" />
  381. <Property Name="IsArmy" Type="int" />
  382. <Property Name="ArmyState" Type="varchar" MaxLength="500" />
  383. <Property Name="CostBearers" Type="varchar" MaxLength="20" />
  384. <Property Name="TableOpName" Type="varchar" MaxLength="20" />
  385. <Property Name="TableOpTel" Type="varchar" MaxLength="20" />
  386. <Property Name="TableDate" Type="datetime" />
  387. <Property Name="Party" Type="varchar" MaxLength="50" />
  388. <Property Name="Nationality" Type="varchar" MaxLength="20" />
  389. <Property Name="WeddingDate" Type="datetime" />
  390. <Property Name="DivorceDate" Type="datetime" />
  391. <Property Name="MateName" Type="varchar" MaxLength="50" />
  392. <Property Name="MateBirthDay" Type="datetime" />
  393. <Property Name="MateBirthCity" Type="varchar" MaxLength="50" />
  394. <Property Name="MateBirthCountry" Type="varchar" MaxLength="50" />
  395. <Property Name="MateAddress" Type="varchar" MaxLength="300" />
  396. <Property Name="MateClient" Type="varchar" MaxLength="300" />
  397. <Property Name="MateClientAddress" Type="varchar" MaxLength="300" />
  398. <Property Name="MateJob" Type="varchar" MaxLength="50" />
  399. <Property Name="VisitCountry" Type="varchar" MaxLength="500" />
  400. <Property Name="Paper" Type="varchar" MaxLength="500" />
  401. <Property Name="Papent" Type="varchar" MaxLength="500" />
  402. <Property Name="PhD" Type="varchar" MaxLength="500" />
  403. <Property Name="CreateUserId" Type="int" />
  404. <Property Name="CreateTime" Type="datetime" />
  405. <Property Name="DeleteUserId" Type="int" />
  406. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  407. <Property Name="Remark" Type="varchar" MaxLength="500" />
  408. <Property Name="IsDel" Type="int" />
  409. </EntityType>
  410. <EntityType Name="Crm_GroupCustomer">
  411. <Key>
  412. <PropertyRef Name="Id" />
  413. </Key>
  414. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  415. <Property Name="DiId" Type="int" />
  416. <Property Name="FirstName" Type="varchar" MaxLength="50" />
  417. <Property Name="LastName" Type="varchar" MaxLength="50" />
  418. <Property Name="Pinyin" Type="varchar" MaxLength="100" />
  419. <Property Name="Company" Type="varchar" MaxLength="300" />
  420. <Property Name="Job" Type="varchar" MaxLength="100" />
  421. <Property Name="Phone" Type="varchar" MaxLength="50" />
  422. <Property Name="Sex" Type="int" />
  423. <Property Name="IDcard" Type="varchar" MaxLength="50" />
  424. <Property Name="PassprotType" Type="varchar" MaxLength="100" />
  425. <Property Name="passportCountry" Type="varchar" MaxLength="50" />
  426. <Property Name="PassportNo" Type="varchar" MaxLength="50" />
  427. <Property Name="IssuePlace" Type="varchar" MaxLength="300" />
  428. <Property Name="IssueDate" Type="date" />
  429. <Property Name="ExpiryDate" Type="date" />
  430. <Property Name="Birthday" Type="nvarchar" MaxLength="50" />
  431. <Property Name="AirType" Type="int" />
  432. <Property Name="AirRemark" Type="varchar" MaxLength="500" />
  433. <Property Name="RoomType" Type="varchar" MaxLength="300" />
  434. <Property Name="CreateUserId" Type="int" />
  435. <Property Name="CreateTime" Type="datetime" />
  436. <Property Name="DeleteUserId" Type="int" />
  437. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  438. <Property Name="Remark" Type="varchar" MaxLength="500" />
  439. <Property Name="IsDel" Type="int" />
  440. </EntityType>
  441. <EntityType Name="Crm_NewClientData">
  442. <Key>
  443. <PropertyRef Name="Id" />
  444. </Key>
  445. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  446. <Property Name="Number" Type="int" />
  447. <Property Name="Lvlid" Type="int" />
  448. <Property Name="Client" Type="nvarchar" MaxLength="200" />
  449. <Property Name="Weight" Type="nvarchar" MaxLength="100" />
  450. <Property Name="ClientShort" Type="nvarchar" MaxLength="200" />
  451. <Property Name="Contact" Type="nvarchar" MaxLength="200" />
  452. <Property Name="Gender" Type="int" />
  453. <Property Name="Passport" Type="nvarchar" MaxLength="200" />
  454. <Property Name="PassportDate" Type="datetime" />
  455. <Property Name="Job" Type="nvarchar" MaxLength="200" />
  456. <Property Name="TelePhone" Type="nvarchar" MaxLength="200" />
  457. <Property Name="Phone" Type="nvarchar" MaxLength="200" />
  458. <Property Name="Email" Type="nvarchar" MaxLength="200" />
  459. <Property Name="Location" Type="nvarchar" MaxLength="200" />
  460. <Property Name="Address" Type="nvarchar(max)" />
  461. <Property Name="Birthday" Type="nvarchar" MaxLength="200" />
  462. <Property Name="OtherInfo" Type="nvarchar(max)" />
  463. <Property Name="WeChat" Type="nvarchar" MaxLength="200" />
  464. <Property Name="Category" Type="int" />
  465. <Property Name="PreDele" Type="int" />
  466. <Property Name="FinlishedDele" Type="int" />
  467. <Property Name="CreateUserId" Type="int" />
  468. <Property Name="CreateTime" Type="datetime" />
  469. <Property Name="DeleteUserId" Type="int" />
  470. <Property Name="DeleteTime" Type="nvarchar" MaxLength="30" />
  471. <Property Name="Remark" Type="nvarchar(max)" />
  472. <Property Name="IsDel" Type="int" />
  473. <Property Name="LastUpdateUserId" Type="int" />
  474. <Property Name="LastUpdateTime" Type="datetime" />
  475. </EntityType>
  476. <!--生成过程中发现错误:
  477. 警告 6002: 表/视图“OA2023DB.dbo.Crm_NewClientData_Encryption”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  478. <EntityType Name="Crm_NewClientData_Encryption">
  479. <Key>
  480. <PropertyRef Name="Id" />
  481. </Key>
  482. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  483. <Property Name="Number" Type="int" />
  484. <Property Name="Lvlid" Type="int" />
  485. <Property Name="Client" Type="varchar" MaxLength="50" />
  486. <Property Name="Weight" Type="varchar" MaxLength="20" />
  487. <Property Name="ClientShort" Type="varchar" MaxLength="50" />
  488. <Property Name="Contact" Type="varchar" MaxLength="50" />
  489. <Property Name="Gender" Type="int" />
  490. <Property Name="Passport" Type="varchar" MaxLength="50" />
  491. <Property Name="PassportDate" Type="datetime" />
  492. <Property Name="Job" Type="varchar" MaxLength="50" />
  493. <Property Name="TelePhone" Type="varchar" MaxLength="50" />
  494. <Property Name="Phone" Type="varchar" MaxLength="50" />
  495. <Property Name="Email" Type="varchar" MaxLength="50" />
  496. <Property Name="Location" Type="varchar" MaxLength="50" />
  497. <Property Name="Address" Type="varchar" MaxLength="80" />
  498. <Property Name="Birthday" Type="varchar" MaxLength="50" />
  499. <Property Name="OtherInfo" Type="varchar" MaxLength="100" />
  500. <Property Name="WeChat" Type="varchar" MaxLength="50" />
  501. <Property Name="Category" Type="int" />
  502. <Property Name="PreDele" Type="int" />
  503. <Property Name="FinlishedDele" Type="int" />
  504. <Property Name="CreateUserId" Type="int" />
  505. <Property Name="CreateTime" Type="datetime" />
  506. <Property Name="DeleteUserId" Type="int" />
  507. <Property Name="DeleteTime" Type="nvarchar" MaxLength="30" />
  508. <Property Name="Remark" Type="nvarchar" MaxLength="500" />
  509. <Property Name="IsDel" Type="int" />
  510. </EntityType>
  511. <EntityType Name="Crm_TableOperationRecord">
  512. <Key>
  513. <PropertyRef Name="Id" />
  514. </Key>
  515. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  516. <Property Name="TableName" Type="varchar" MaxLength="50" />
  517. <Property Name="PortType" Type="int" />
  518. <Property Name="OperationItem" Type="int" />
  519. <Property Name="DataId" Type="int" />
  520. <Property Name="CreateUserId" Type="int" />
  521. <Property Name="CreateTime" Type="datetime" />
  522. <Property Name="DeleteUserId" Type="int" />
  523. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  524. <Property Name="Remark" Type="varchar" MaxLength="500" />
  525. <Property Name="IsDel" Type="int" />
  526. <Property Name="Status" Type="varchar" MaxLength="100" />
  527. <Property Name="RemoteIp" Type="varchar" MaxLength="100" />
  528. <Property Name="Location" Type="varchar" MaxLength="150" />
  529. <Property Name="browser" Type="varchar" MaxLength="100" />
  530. <Property Name="Os" Type="varchar" MaxLength="100" />
  531. <Property Name="Elapsed" Type="bigint" />
  532. <Property Name="RequestParam" Type="text" />
  533. <Property Name="ReturnResult" Type="text" />
  534. <Property Name="UpdatePreData" Type="text" />
  535. <Property Name="UpdateBefData" Type="text" />
  536. <Property Name="RequestUrl" Type="varchar" MaxLength="100" />
  537. <Property Name="DeviceType" Type="varchar" MaxLength="50" />
  538. </EntityType>
  539. <EntityType Name="Crm_VisaCustomerCompany">
  540. <Key>
  541. <PropertyRef Name="Id" />
  542. </Key>
  543. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  544. <Property Name="DcId" Type="int" />
  545. <Property Name="Company" Type="varchar" MaxLength="100" />
  546. <Property Name="CompanyAddress" Type="varchar" MaxLength="300" />
  547. <Property Name="Phone" Type="varchar" MaxLength="20" />
  548. <Property Name="Job" Type="varchar" MaxLength="50" />
  549. <Property Name="LeaderName" Type="varchar" MaxLength="20" />
  550. <Property Name="WorkStart" Type="datetime" />
  551. <Property Name="WorkEnd" Type="datetime" />
  552. <Property Name="WorkState" Type="varchar" MaxLength="500" />
  553. <Property Name="CreateUserId" Type="int" />
  554. <Property Name="CreateTime" Type="datetime" />
  555. <Property Name="DeleteUserId" Type="int" />
  556. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  557. <Property Name="Remark" Type="varchar" MaxLength="500" />
  558. <Property Name="IsDel" Type="int" />
  559. </EntityType>
  560. <EntityType Name="Crm_VisaCustomerFamily">
  561. <Key>
  562. <PropertyRef Name="Id" />
  563. </Key>
  564. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  565. <Property Name="DcId" Type="int" />
  566. <Property Name="Appellation" Type="varchar" MaxLength="50" />
  567. <Property Name="Name" Type="varchar" MaxLength="50" />
  568. <Property Name="BirthDay" Type="datetime" />
  569. <Property Name="BirthPlace" Type="varchar" MaxLength="100" />
  570. <Property Name="Politics" Type="varchar" MaxLength="50" />
  571. <Property Name="Client" Type="varchar" MaxLength="80" />
  572. <Property Name="Address" Type="varchar" MaxLength="80" />
  573. <Property Name="IsEu" Type="int" />
  574. <Property Name="NameSnd" Type="varchar" MaxLength="50" />
  575. <Property Name="BirthDaySnd" Type="datetime" />
  576. <Property Name="Nationality" Type="varchar" MaxLength="50" />
  577. <Property Name="IDCard" Type="varchar" MaxLength="50" />
  578. <Property Name="Reletionship" Type="varchar" MaxLength="50" />
  579. <Property Name="IsUSA" Type="int" />
  580. <Property Name="CreateUserId" Type="int" />
  581. <Property Name="CreateTime" Type="datetime" />
  582. <Property Name="DeleteUserId" Type="int" />
  583. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  584. <Property Name="Remark" Type="varchar" MaxLength="500" />
  585. <Property Name="IsDel" Type="int" />
  586. </EntityType>
  587. <EntityType Name="Crm_VisaCustomerSchool">
  588. <Key>
  589. <PropertyRef Name="Id" />
  590. </Key>
  591. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  592. <Property Name="DcId" Type="int" />
  593. <Property Name="School" Type="varchar" MaxLength="100" />
  594. <Property Name="Address" Type="varchar" MaxLength="300" />
  595. <Property Name="Teacher" Type="varchar" MaxLength="20" />
  596. <Property Name="Education" Type="varchar" MaxLength="50" />
  597. <Property Name="Subject" Type="varchar" MaxLength="50" />
  598. <Property Name="StudyStart" Type="datetime" />
  599. <Property Name="StudyEnd" Type="datetime" />
  600. <Property Name="CreateUserId" Type="int" />
  601. <Property Name="CreateTime" Type="datetime" />
  602. <Property Name="DeleteUserId" Type="int" />
  603. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  604. <Property Name="Remark" Type="varchar" MaxLength="500" />
  605. <Property Name="IsDel" Type="int" />
  606. </EntityType>
  607. <EntityType Name="Dis_City">
  608. <Key>
  609. <PropertyRef Name="Id" />
  610. </Key>
  611. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  612. <Property Name="CountryId" Type="int" />
  613. <Property Name="CnName" Type="varchar" MaxLength="50" />
  614. <Property Name="EnName" Type="varchar" MaxLength="50" />
  615. <Property Name="ThreeCharacterCode" Type="varchar" MaxLength="20" />
  616. <Property Name="FourCharacterCode" Type="varchar" MaxLength="20" />
  617. <Property Name="CnAirportName" Type="varchar" MaxLength="50" />
  618. <Property Name="EnAirportName" Type="varchar" MaxLength="100" />
  619. <Property Name="CreateUserId" Type="int" />
  620. <Property Name="CreateTime" Type="datetime" />
  621. <Property Name="DeleteUserId" Type="int" />
  622. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  623. <Property Name="Remark" Type="varchar" MaxLength="500" />
  624. <Property Name="IsDel" Type="int" />
  625. </EntityType>
  626. <EntityType Name="Dis_Country">
  627. <Key>
  628. <PropertyRef Name="Id" />
  629. </Key>
  630. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  631. <Property Name="IntercontinentalId" Type="int" />
  632. <Property Name="FullName" Type="varchar" MaxLength="100" />
  633. <Property Name="CnShortName" Type="varchar" MaxLength="50" />
  634. <Property Name="EnShortName" Type="varchar" MaxLength="100" />
  635. <Property Name="CurrencyCode" Type="varchar" MaxLength="50" Nullable="false" />
  636. <Property Name="CreateUserId" Type="int" />
  637. <Property Name="CreateTime" Type="datetime" />
  638. <Property Name="DeleteUserId" Type="int" />
  639. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  640. <Property Name="Remark" Type="varchar" MaxLength="500" />
  641. <Property Name="IsDel" Type="int" />
  642. </EntityType>
  643. <EntityType Name="Dis_Intercontinental">
  644. <Key>
  645. <PropertyRef Name="Id" />
  646. </Key>
  647. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  648. <Property Name="FullName" Type="varchar" MaxLength="100" />
  649. <Property Name="CnShortName" Type="varchar" MaxLength="50" />
  650. <Property Name="EnShortName" Type="varchar" MaxLength="100" />
  651. <Property Name="CreateUserId" Type="int" />
  652. <Property Name="CreateTime" Type="datetime" />
  653. <Property Name="DeleteUserId" Type="int" />
  654. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  655. <Property Name="Remark" Type="varchar" MaxLength="500" />
  656. <Property Name="IsDel" Type="int" />
  657. </EntityType>
  658. <EntityType Name="Fin_Commission">
  659. <Key>
  660. <PropertyRef Name="Id" />
  661. </Key>
  662. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  663. <Property Name="Personnel" Type="int" />
  664. <Property Name="Diid" Type="int" />
  665. <Property Name="GroupDate" Type="varchar" MaxLength="50" />
  666. <Property Name="GroupLvl" Type="varchar" MaxLength="50" />
  667. <Property Name="Detail" Type="varchar" MaxLength="300" />
  668. <Property Name="Money" Type="decimal" Precision="18" Scale="2" />
  669. <Property Name="WageYearMonth" Type="varchar" MaxLength="50" />
  670. <Property Name="IsMakeLoss" Type="int" />
  671. <Property Name="IsLoss" Type="int" />
  672. <Property Name="CreateUserId" Type="int" />
  673. <Property Name="CreateTime" Type="datetime" />
  674. <Property Name="DeleteUserId" Type="int" />
  675. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  676. <Property Name="Remark" Type="varchar" MaxLength="500" />
  677. <Property Name="IsDel" Type="int" />
  678. </EntityType>
  679. <EntityType Name="Fin_DailyFeePayment">
  680. <Key>
  681. <PropertyRef Name="Id" />
  682. </Key>
  683. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  684. <Property Name="Instructions" Type="nvarchar" MaxLength="4000" />
  685. <Property Name="SumPrice" Type="decimal" Precision="18" Scale="4" />
  686. <Property Name="FAudit" Type="int" />
  687. <Property Name="FAuditDate" Type="datetime" />
  688. <Property Name="MAudit" Type="int" />
  689. <Property Name="MAuditDate" Type="datetime" />
  690. <Property Name="IsPay" Type="int" />
  691. <Property Name="TransferTypeId" Type="int" />
  692. <Property Name="PriceTypeId" Type="int" />
  693. <Property Name="CompanyId" Type="int" />
  694. <Property Name="CreateUserId" Type="int" />
  695. <Property Name="CreateTime" Type="datetime" />
  696. <Property Name="Remark" Type="varchar" MaxLength="500" />
  697. <Property Name="IsDel" Type="int" />
  698. <Property Name="DeleteUserId" Type="int" />
  699. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  700. </EntityType>
  701. <EntityType Name="Fin_DailyFeePaymentContent">
  702. <Key>
  703. <PropertyRef Name="Id" />
  704. </Key>
  705. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  706. <Property Name="DFPId" Type="int" />
  707. <Property Name="PriceName" Type="varchar" MaxLength="125" />
  708. <Property Name="Quantity" Type="decimal" Precision="18" Scale="2" />
  709. <Property Name="Price" Type="decimal" Precision="18" Scale="4" />
  710. <Property Name="ItemTotal" Type="decimal" Precision="18" Scale="4" />
  711. <Property Name="CreateUserId" Type="int" />
  712. <Property Name="CreateTime" Type="datetime" />
  713. <Property Name="DeleteUserId" Type="int" />
  714. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  715. <Property Name="Remark" Type="varchar" MaxLength="500" />
  716. <Property Name="IsDel" Type="int" />
  717. </EntityType>
  718. <EntityType Name="Fin_ForeignReceivables">
  719. <Key>
  720. <PropertyRef Name="Id" />
  721. </Key>
  722. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  723. <Property Name="Diid" Type="int" />
  724. <Property Name="PriceName" Type="varchar(max)" />
  725. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  726. <Property Name="Count" Type="int" />
  727. <Property Name="Unit" Type="varchar" MaxLength="50" />
  728. <Property Name="ItemSumPrice" Type="decimal" Precision="10" Scale="2" />
  729. <Property Name="To" Type="varchar" MaxLength="225" />
  730. <Property Name="ToTel" Type="varchar" MaxLength="50" />
  731. <Property Name="PayDate" Type="varchar" MaxLength="50" />
  732. <Property Name="Attention" Type="varchar" MaxLength="500" />
  733. <Property Name="Rate" Type="decimal" Precision="10" Scale="4" />
  734. <Property Name="Currency" Type="int" />
  735. <Property Name="AddingWay" Type="int" />
  736. <Property Name="CreateUserId" Type="int" />
  737. <Property Name="CreateTime" Type="datetime" />
  738. <Property Name="DeleteUserId" Type="int" />
  739. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  740. <Property Name="Remark" Type="varchar" MaxLength="500" />
  741. <Property Name="IsDel" Type="int" />
  742. <Property Name="Status" Type="int" />
  743. <Property Name="Auditor" Type="int" />
  744. <Property Name="AuditTime" Type="varchar" MaxLength="30" />
  745. </EntityType>
  746. <EntityType Name="Fin_GroupExtraCost">
  747. <Key>
  748. <PropertyRef Name="Id" />
  749. </Key>
  750. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  751. <Property Name="DiId" Type="int" />
  752. <Property Name="PriceName" Type="varchar" MaxLength="100" />
  753. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  754. <Property Name="PriceCount" Type="int" />
  755. <Property Name="PriceSum" Type="decimal" Precision="14" Scale="2" />
  756. <Property Name="PriceDt" Type="datetime" />
  757. <Property Name="PriceCurrency" Type="int" />
  758. <Property Name="PriceType" Type="int" />
  759. <Property Name="Coefficient" Type="decimal" Precision="10" Scale="2" />
  760. <Property Name="PriceDetailType" Type="int" />
  761. <Property Name="FilePath" Type="varchar" MaxLength="100" />
  762. <Property Name="CreateUserId" Type="int" />
  763. <Property Name="CreateTime" Type="datetime" />
  764. <Property Name="DeleteUserId" Type="int" />
  765. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  766. <Property Name="Remark" Type="varchar" MaxLength="500" />
  767. <Property Name="IsDel" Type="int" />
  768. <Property Name="Area" Type="int" />
  769. <Property Name="ManagerConfirm" Type="int" />
  770. <Property Name="SupervisorConfirm" Type="int" />
  771. <Property Name="SYsupervisorConfirm" Type="int" />
  772. </EntityType>
  773. <EntityType Name="Fin_LocalGuideRelevancyOverspend">
  774. <Key>
  775. <PropertyRef Name="Id" />
  776. </Key>
  777. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  778. <Property Name="LocalGuideId" Type="int" Nullable="false" />
  779. <Property Name="OverspendId" Type="int" Nullable="false" />
  780. <Property Name="CreateUserId" Type="int" />
  781. <Property Name="CreateTime" Type="datetime" />
  782. <Property Name="DeleteUserId" Type="int" />
  783. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  784. <Property Name="Remark" Type="varchar" MaxLength="500" />
  785. <Property Name="IsDel" Type="int" />
  786. </EntityType>
  787. <EntityType Name="Fin_OtherPrice">
  788. <Key>
  789. <PropertyRef Name="Id" />
  790. </Key>
  791. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  792. <Property Name="Diid" Type="int" />
  793. <Property Name="PriceName" Type="varchar" MaxLength="100" />
  794. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  795. <Property Name="CurrencyId" Type="int" />
  796. <Property Name="DayRate" Type="decimal" Precision="10" Scale="4" />
  797. <Property Name="PayType" Type="int" />
  798. <Property Name="RefundType" Type="int" />
  799. <Property Name="CreateUserId" Type="int" />
  800. <Property Name="CreateTime" Type="datetime" />
  801. <Property Name="DeleteUserId" Type="int" />
  802. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  803. <Property Name="Remark" Type="varchar" MaxLength="500" />
  804. <Property Name="IsDel" Type="int" />
  805. </EntityType>
  806. <EntityType Name="Fin_OverSpendRelevancyCollectionStatement">
  807. <Key>
  808. <PropertyRef Name="Id" />
  809. </Key>
  810. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  811. <Property Name="OverSpendId" Type="int" Nullable="false" />
  812. <Property Name="CollectionStatementId" Type="int" Nullable="false" />
  813. <Property Name="Diid" Type="int" Nullable="false" />
  814. <Property Name="LocalGuideId" Type="int" Nullable="false" />
  815. <Property Name="savePrice" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  816. <Property Name="CreateUserId" Type="int" />
  817. <Property Name="CreateTime" Type="datetime" />
  818. <Property Name="DeleteUserId" Type="int" />
  819. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  820. <Property Name="Remark" Type="varchar" MaxLength="500" />
  821. <Property Name="IsDel" Type="int" />
  822. </EntityType>
  823. <EntityType Name="Fin_PaymentRefundAndOtherMoney">
  824. <Key>
  825. <PropertyRef Name="Id" />
  826. </Key>
  827. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  828. <Property Name="DiId" Type="int" />
  829. <Property Name="PriceName" Type="varchar" MaxLength="125" />
  830. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  831. <Property Name="CurrencyId" Type="int" />
  832. <Property Name="PayType" Type="int" />
  833. <Property Name="PriceType" Type="int" />
  834. <Property Name="CreateUserId" Type="int" />
  835. <Property Name="CreateTime" Type="datetime" />
  836. <Property Name="DeleteUserId" Type="int" />
  837. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  838. <Property Name="IsDel" Type="int" />
  839. <Property Name="Remark" Type="varchar" MaxLength="500" />
  840. </EntityType>
  841. <EntityType Name="Fin_ProceedsReceived">
  842. <Key>
  843. <PropertyRef Name="Id" />
  844. </Key>
  845. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  846. <Property Name="DIId" Type="int" />
  847. <Property Name="SectionTime" Type="varchar" MaxLength="22" />
  848. <Property Name="Price" Type="decimal" Precision="18" Scale="2" />
  849. <Property Name="Currency" Type="int" />
  850. <Property Name="ReceivablesType" Type="int" />
  851. <Property Name="Client" Type="varchar" MaxLength="255" />
  852. <Property Name="CustomerName" Type="varchar" MaxLength="100" />
  853. <Property Name="CustomerTel" Type="varchar" MaxLength="30" />
  854. <Property Name="FID" Type="int" />
  855. <Property Name="CreateUserId" Type="int" />
  856. <Property Name="CreateTime" Type="datetime" />
  857. <Property Name="DeleteUserId" Type="int" />
  858. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  859. <Property Name="IsDel" Type="int" />
  860. <Property Name="Remark" Type="varchar" MaxLength="500" />
  861. </EntityType>
  862. <EntityType Name="Fin_RoyaltyConfirm">
  863. <Key>
  864. <PropertyRef Name="Id" />
  865. </Key>
  866. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  867. <Property Name="Price" Type="decimal" Precision="18" Scale="2" Nullable="false" />
  868. <Property Name="TeamName" Type="varchar" MaxLength="100" Nullable="false" />
  869. <Property Name="TeamId" Type="int" Nullable="false" />
  870. <Property Name="ChiArr" Type="varchar" MaxLength="1000" />
  871. <Property Name="TeamLvStr" Type="varchar" MaxLength="100" Nullable="false" />
  872. <Property Name="VisitDate" Type="datetime" Nullable="false" />
  873. <Property Name="Temp" Type="varchar" MaxLength="200" Nullable="false" />
  874. <Property Name="IsConfirm" Type="int" Nullable="false" />
  875. <Property Name="UserId" Type="int" Nullable="false" />
  876. <Property Name="CreateUserId" Type="int" />
  877. <Property Name="CreateTime" Type="datetime" />
  878. <Property Name="DeleteUserId" Type="int" />
  879. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  880. <Property Name="Remark" Type="varchar" MaxLength="500" />
  881. <Property Name="IsDel" Type="int" />
  882. <Property Name="IsSeed" Type="int" />
  883. </EntityType>
  884. <EntityType Name="Fin_RoyaltyForm">
  885. <Key>
  886. <PropertyRef Name="Id" />
  887. </Key>
  888. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  889. <Property Name="UserId" Type="int" Nullable="false" />
  890. <Property Name="DayOverhead" Type="int" Nullable="false" />
  891. <Property Name="ConfirmIdArr" Type="nvarchar" MaxLength="500" />
  892. <Property Name="CreateUserId" Type="int" />
  893. <Property Name="CreateTime" Type="datetime" />
  894. <Property Name="DeleteUserId" Type="int" />
  895. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  896. <Property Name="Remark" Type="varchar" MaxLength="500" />
  897. <Property Name="IsDel" Type="int" />
  898. </EntityType>
  899. <!--生成过程中发现错误:
  900. 警告 6013: 表/视图“OA2023DB.dbo.GoodsInfo1”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  901. <EntityType Name="GoodsInfo1">
  902. <Property Name="Id" Type="int" />
  903. <Property Name="分类" Type="nvarchar" MaxLength="255" />
  904. <Property Name="品种名称" Type="nvarchar" MaxLength="255" />
  905. <Property Name="数量1" Type="float" />
  906. <Property Name="数量2" Type="float" />
  907. <Property Name="数量3" Type="float" />
  908. <Property Name="数量4" Type="float" />
  909. <Property Name="单位" Type="nvarchar" MaxLength="255" />
  910. <Property Name="最后更新人" Type="float" />
  911. <Property Name="最后更新时间" Type="datetime" />
  912. <Property Name="创建人" Type="float" />
  913. <Property Name="创建时间" Type="datetime" />
  914. <Property Name="删除人" Type="nvarchar" MaxLength="255" />
  915. <Property Name="删除时间" Type="nvarchar" MaxLength="255" />
  916. <Property Name="备注" Type="nvarchar" MaxLength="255" />
  917. </EntityType>-->
  918. <EntityType Name="Grp_AirInquiry">
  919. <Key>
  920. <PropertyRef Name="Id" />
  921. </Key>
  922. <Property Name="Id" Type="int" Nullable="false" />
  923. <Property Name="DiId" Type="int" />
  924. <Property Name="BlackCode" Type="varchar" MaxLength="200" />
  925. <Property Name="Routing" Type="varchar" MaxLength="50" />
  926. <Property Name="Carrier" Type="varchar" MaxLength="50" />
  927. <Property Name="FlightNo" Type="varchar" MaxLength="50" />
  928. <Property Name="DepartDate" Type="datetime" />
  929. <Property Name="DepartTime" Type="datetime" />
  930. <Property Name="ArrivalTime" Type="datetime" />
  931. <Property Name="FirstYPrice" Type="decimal" Precision="10" Scale="2" />
  932. <Property Name="FirstCabinPrice" Type="decimal" Precision="10" Scale="2" />
  933. <Property Name="BusinessYPrice" Type="decimal" Precision="10" Scale="2" />
  934. <Property Name="BusinessCabinPrice" Type="decimal" Precision="10" Scale="2" />
  935. <Property Name="YPrice" Type="decimal" Precision="10" Scale="2" />
  936. <Property Name="CabinPrice" Type="decimal" Precision="10" Scale="2" />
  937. <Property Name="SearchDt" Type="datetime" />
  938. <Property Name="CreateUserId" Type="int" />
  939. <Property Name="CreateTime" Type="datetime" />
  940. <Property Name="DeleteUserId" Type="int" />
  941. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  942. <Property Name="Remark" Type="varchar" MaxLength="500" />
  943. <Property Name="IsDel" Type="int" />
  944. </EntityType>
  945. <EntityType Name="Grp_AirPrice">
  946. <Key>
  947. <PropertyRef Name="Id" />
  948. </Key>
  949. <Property Name="Id" Type="int" Nullable="false" />
  950. <Property Name="DiId" Type="int" />
  951. <Property Name="AiId" Type="int" />
  952. <Property Name="CabinCode" Type="varchar" MaxLength="50" />
  953. <Property Name="SinglePrice" Type="decimal" Precision="10" Scale="2" />
  954. <Property Name="SingleCurency" Type="varchar" MaxLength="50" />
  955. <Property Name="Count" Type="int" />
  956. <Property Name="TotalPrice" Type="decimal" Precision="10" Scale="2" />
  957. <Property Name="TotalCurency" Type="varchar" MaxLength="50" />
  958. <Property Name="IsCheck" Type="int" />
  959. <Property Name="IsSeat" Type="int" />
  960. <Property Name="IsPackage" Type="int" />
  961. <Property Name="IsBag" Type="int" />
  962. <Property Name="PriceRemark" Type="varchar" MaxLength="500" />
  963. <Property Name="CreateUserId" Type="int" />
  964. <Property Name="CreateTime" Type="datetime" />
  965. <Property Name="DeleteUserId" Type="int" />
  966. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  967. <Property Name="Remark" Type="varchar" MaxLength="500" />
  968. <Property Name="IsDel" Type="int" />
  969. </EntityType>
  970. <EntityType Name="Grp_AirTicketReservations">
  971. <Key>
  972. <PropertyRef Name="Id" />
  973. </Key>
  974. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  975. <Property Name="DIId" Type="int" />
  976. <Property Name="FlightsCode" Type="varchar" MaxLength="100" />
  977. <Property Name="FlightsDate" Type="varchar" MaxLength="30" />
  978. <Property Name="FlightsTime" Type="varchar" MaxLength="30" />
  979. <Property Name="ArrivedTime" Type="varchar" MaxLength="30" />
  980. <Property Name="IsCheckIn" Type="int" />
  981. <Property Name="IsSetSeat" Type="int" />
  982. <Property Name="IsPackage" Type="int" />
  983. <Property Name="IsBagHandle" Type="int" />
  984. <Property Name="IsTrain" Type="int" />
  985. <Property Name="CType" Type="int" />
  986. <Property Name="FlightsCity" Type="varchar" MaxLength="100" />
  987. <Property Name="LeaveDescription" Type="varchar" MaxLength="500" />
  988. <Property Name="FlightsDescription" Type="varchar" MaxLength="500" />
  989. <Property Name="ReturnDescription" Type="varchar" MaxLength="500" />
  990. <Property Name="PassengerType" Type="int" />
  991. <Property Name="ClientNum" Type="int" />
  992. <Property Name="ClientName" Type="text" />
  993. <Property Name="PrePrice" Type="decimal" Precision="10" Scale="2" />
  994. <Property Name="PreCurrency" Type="int" />
  995. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  996. <Property Name="Currency" Type="int" />
  997. <Property Name="PriceDescription" Type="text" />
  998. <Property Name="TicketNumber" Type="varchar" MaxLength="100" />
  999. <Property Name="TicketCode" Type="varchar" MaxLength="100" />
  1000. <Property Name="CreateUserId" Type="int" />
  1001. <Property Name="CreateTime" Type="datetime" />
  1002. <Property Name="DeleteUserId" Type="int" />
  1003. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1004. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1005. <Property Name="IsDel" Type="int" />
  1006. </EntityType>
  1007. <EntityType Name="Grp_ApprovalTravel">
  1008. <Key>
  1009. <PropertyRef Name="Id" />
  1010. </Key>
  1011. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1012. <Property Name="Diid" Type="int" />
  1013. <Property Name="Date" Type="varchar" MaxLength="100" />
  1014. <Property Name="CreateUserId" Type="int" />
  1015. <Property Name="CreateTime" Type="datetime" />
  1016. <Property Name="DeleteUserId" Type="int" />
  1017. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1018. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1019. <Property Name="IsDel" Type="int" />
  1020. </EntityType>
  1021. <EntityType Name="Grp_ApprovalTravelDetails">
  1022. <Key>
  1023. <PropertyRef Name="Id" />
  1024. </Key>
  1025. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1026. <Property Name="Time" Type="varchar" MaxLength="50" Nullable="false" />
  1027. <Property Name="ParentId" Type="int" Nullable="false" />
  1028. <Property Name="Details" Type="varchar" MaxLength="500" Nullable="false" />
  1029. <Property Name="CreateUserId" Type="int" />
  1030. <Property Name="CreateTime" Type="datetime" />
  1031. <Property Name="DeleteUserId" Type="int" />
  1032. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1033. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1034. <Property Name="IsDel" Type="int" />
  1035. </EntityType>
  1036. <EntityType Name="Grp_CarGuides">
  1037. <Key>
  1038. <PropertyRef Name="Id" />
  1039. </Key>
  1040. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1041. <Property Name="Country" Type="varchar" MaxLength="50" Nullable="false" />
  1042. <Property Name="City" Type="varchar" MaxLength="50" Nullable="false" />
  1043. <Property Name="ServiceType" Type="varchar" MaxLength="50" Nullable="false" />
  1044. <Property Name="CarType" Type="varchar" MaxLength="100" Nullable="false" />
  1045. <Property Name="Offer" Type="varchar" MaxLength="50" Nullable="false" />
  1046. <Property Name="CGCost" Type="varchar" MaxLength="50" Nullable="false" />
  1047. <Property Name="RuningTime" Type="varchar" MaxLength="50" Nullable="false" />
  1048. <Property Name="OvertimeFee" Type="varchar" MaxLength="50" Nullable="false" />
  1049. <Property Name="CGOvertimeFee" Type="varchar" MaxLength="50" Nullable="false" />
  1050. <Property Name="Currency" Type="varchar" MaxLength="50" Nullable="false" />
  1051. <Property Name="CreateUserId" Type="int" />
  1052. <Property Name="CreateTime" Type="datetime" />
  1053. <Property Name="DeleteUserId" Type="int" />
  1054. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1055. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1056. <Property Name="IsDel" Type="int" />
  1057. </EntityType>
  1058. <EntityType Name="Grp_CarInfo">
  1059. <Key>
  1060. <PropertyRef Name="Id" />
  1061. </Key>
  1062. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1063. <Property Name="Country" Type="varchar" MaxLength="50" Nullable="false" />
  1064. <Property Name="City" Type="varchar" MaxLength="50" Nullable="false" />
  1065. <Property Name="CarType" Type="varchar" MaxLength="100" Nullable="false" />
  1066. <Property Name="ServiceType" Type="varchar" MaxLength="100" Nullable="false" />
  1067. <Property Name="When" Type="varchar" MaxLength="50" Nullable="false" />
  1068. <Property Name="Price" Type="varchar" MaxLength="50" Nullable="false" />
  1069. <Property Name="Currency" Type="varchar" MaxLength="50" Nullable="false" />
  1070. <Property Name="OvertimeFee" Type="varchar" MaxLength="50" Nullable="false" />
  1071. <Property Name="CreateUserId" Type="int" />
  1072. <Property Name="CreateTime" Type="datetime" />
  1073. <Property Name="DeleteUserId" Type="int" />
  1074. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1075. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1076. <Property Name="IsDel" Type="int" />
  1077. </EntityType>
  1078. <EntityType Name="Grp_CarTouristGuideGroundReservations">
  1079. <Key>
  1080. <PropertyRef Name="Id" />
  1081. </Key>
  1082. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1083. <Property Name="DiId" Type="int" />
  1084. <Property Name="Area" Type="varchar" MaxLength="200" />
  1085. <Property Name="ServiceCompany" Type="varchar" MaxLength="200" />
  1086. <Property Name="ServiceGuide" Type="varchar" MaxLength="100" />
  1087. <Property Name="ServiceTel" Type="varchar" MaxLength="30" />
  1088. <Property Name="BusName" Type="varchar" MaxLength="200" />
  1089. <Property Name="BusDescription" Type="nvarchar" MaxLength="1000" />
  1090. <Property Name="BusTel" Type="varchar" MaxLength="30" />
  1091. <Property Name="ServiceStartTime" Type="varchar" MaxLength="80" />
  1092. <Property Name="ServiceEndTime" Type="varchar" MaxLength="80" />
  1093. <Property Name="ServiceDescription" Type="nvarchar" MaxLength="1000" />
  1094. <Property Name="ServiceQuotedPrice" Type="decimal" Precision="18" Scale="2" />
  1095. <Property Name="CId" Type="int" />
  1096. <Property Name="QuotedPriceExplanation" Type="nvarchar" MaxLength="1000" />
  1097. <Property Name="OrbitalPrivateTransfer" Type="int" />
  1098. <Property Name="CreateUserId" Type="int" />
  1099. <Property Name="CreateTime" Type="datetime" />
  1100. <Property Name="DeleteUserId" Type="int" />
  1101. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1102. <Property Name="Remark" Type="nvarchar" MaxLength="1000" />
  1103. <Property Name="IsDel" Type="int" />
  1104. <Property Name="SelectCheck" Type="nvarchar" MaxLength="1000" />
  1105. <Property Name="PriceType" Type="int" />
  1106. <Property Name="PriceName" Type="nvarchar" MaxLength="200" />
  1107. <Property Name="toCurr" Type="int" />
  1108. <Property Name="Rate" Type="decimal" Precision="10" Scale="2" />
  1109. </EntityType>
  1110. <EntityType Name="Grp_CarTouristGuideGroundReservationsContent">
  1111. <Key>
  1112. <PropertyRef Name="Id" />
  1113. </Key>
  1114. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1115. <Property Name="DiId" Type="int" />
  1116. <Property Name="CTGGRId" Type="int" />
  1117. <Property Name="SId" Type="int" />
  1118. <Property Name="Price" Type="decimal" Precision="18" Scale="2" />
  1119. <Property Name="PriceContent" Type="varchar" MaxLength="500" />
  1120. <Property Name="Currency" Type="int" />
  1121. <Property Name="CreateUserId" Type="int" />
  1122. <Property Name="CreateTime" Type="datetime" />
  1123. <Property Name="DeleteUserId" Type="int" />
  1124. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1125. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1126. <Property Name="IsDel" Type="int" />
  1127. <Property Name="DatePrice" Type="datetime" />
  1128. <Property Name="Count" Type="int" />
  1129. <Property Name="Units" Type="int" />
  1130. </EntityType>
  1131. <EntityType Name="Grp_CarTouristGuideGroundReservationsContentOld">
  1132. <Key>
  1133. <PropertyRef Name="Id" />
  1134. </Key>
  1135. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1136. <Property Name="DiId" Type="int" />
  1137. <Property Name="CTGGRId" Type="int" />
  1138. <Property Name="SId" Type="int" />
  1139. <Property Name="Price" Type="decimal" Precision="18" Scale="2" />
  1140. <Property Name="PriceContent" Type="varchar" MaxLength="500" />
  1141. <Property Name="Currency" Type="int" />
  1142. <Property Name="CreateUserId" Type="int" />
  1143. <Property Name="CreateTime" Type="datetime" />
  1144. <Property Name="DeleteUserId" Type="int" />
  1145. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1146. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1147. <Property Name="IsDel" Type="int" />
  1148. <Property Name="DatePrice" Type="datetime" />
  1149. <Property Name="Count" Type="int" />
  1150. <Property Name="Units" Type="int" />
  1151. </EntityType>
  1152. <EntityType Name="Grp_CarTouristGuideGroundReservationsOld">
  1153. <Key>
  1154. <PropertyRef Name="Id" />
  1155. </Key>
  1156. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1157. <Property Name="DiId" Type="int" />
  1158. <Property Name="Area" Type="varchar" MaxLength="200" />
  1159. <Property Name="ServiceCompany" Type="varchar" MaxLength="200" />
  1160. <Property Name="ServiceGuide" Type="varchar" MaxLength="100" />
  1161. <Property Name="ServiceTel" Type="varchar" MaxLength="30" />
  1162. <Property Name="BusName" Type="varchar" MaxLength="200" />
  1163. <Property Name="BusDescription" Type="nvarchar" MaxLength="1000" />
  1164. <Property Name="BusTel" Type="varchar" MaxLength="30" />
  1165. <Property Name="ServiceStartTime" Type="varchar" MaxLength="80" />
  1166. <Property Name="ServiceEndTime" Type="varchar" MaxLength="80" />
  1167. <Property Name="ServiceDescription" Type="nvarchar" MaxLength="1000" />
  1168. <Property Name="ServiceQuotedPrice" Type="decimal" Precision="18" Scale="2" />
  1169. <Property Name="CId" Type="int" />
  1170. <Property Name="QuotedPriceExplanation" Type="nvarchar" MaxLength="1000" />
  1171. <Property Name="OrbitalPrivateTransfer" Type="int" />
  1172. <Property Name="CreateUserId" Type="int" />
  1173. <Property Name="CreateTime" Type="datetime" />
  1174. <Property Name="DeleteUserId" Type="int" />
  1175. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1176. <Property Name="Remark" Type="nvarchar" MaxLength="1000" />
  1177. <Property Name="IsDel" Type="int" />
  1178. <Property Name="SelectCheck" Type="nvarchar" MaxLength="1000" />
  1179. </EntityType>
  1180. <EntityType Name="Grp_CheckBoxs">
  1181. <Key>
  1182. <PropertyRef Name="Id" />
  1183. </Key>
  1184. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1185. <Property Name="Diid" Type="int" />
  1186. <Property Name="CbType" Type="varchar" MaxLength="30" />
  1187. <Property Name="CbValues" Type="nvarchar" MaxLength="500" />
  1188. <Property Name="CreateUserId" Type="int" />
  1189. <Property Name="CreateTime" Type="datetime" />
  1190. <Property Name="DeleteUserId" Type="int" />
  1191. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1192. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1193. <Property Name="IsDel" Type="int" />
  1194. </EntityType>
  1195. <EntityType Name="Grp_CostTypeHotelNumber">
  1196. <Key>
  1197. <PropertyRef Name="Id" />
  1198. </Key>
  1199. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1200. <Property Name="SGR" Type="int" Nullable="false" />
  1201. <Property Name="TBR" Type="int" Nullable="false" />
  1202. <Property Name="JSES" Type="int" Nullable="false" />
  1203. <Property Name="SUITE" Type="int" Nullable="false" />
  1204. <Property Name="Type" Type="varchar" MaxLength="50" Nullable="false" />
  1205. <Property Name="Diid" Type="int" Nullable="false" />
  1206. <Property Name="CreateUserId" Type="int" />
  1207. <Property Name="CreateTime" Type="datetime" />
  1208. <Property Name="DeleteUserId" Type="int" />
  1209. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1210. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1211. <Property Name="IsDel" Type="int" />
  1212. </EntityType>
  1213. <EntityType Name="Grp_CreditCardPayment">
  1214. <Key>
  1215. <PropertyRef Name="Id" />
  1216. </Key>
  1217. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1218. <Property Name="DIId" Type="int" />
  1219. <Property Name="CId" Type="int" />
  1220. <Property Name="CTable" Type="int" />
  1221. <Property Name="PayDId" Type="int" />
  1222. <Property Name="ConsumptionPatterns" Type="varchar" MaxLength="125" />
  1223. <Property Name="ConsumptionDate" Type="varchar" MaxLength="30" />
  1224. <Property Name="CTDId" Type="int" />
  1225. <Property Name="BankNo" Type="varchar" MaxLength="125" />
  1226. <Property Name="CardholderName" Type="varchar" MaxLength="125" />
  1227. <Property Name="PayMoney" Type="decimal" Precision="10" Scale="2" />
  1228. <Property Name="PaymentCurrency" Type="int" />
  1229. <Property Name="DayRate" Type="decimal" Precision="10" Scale="4" />
  1230. <Property Name="CompanyBankNo" Type="varchar" MaxLength="125" />
  1231. <Property Name="OtherBankName" Type="varchar" MaxLength="125" />
  1232. <Property Name="OtherSideNo" Type="varchar" MaxLength="125" />
  1233. <Property Name="OtherSideName" Type="varchar" MaxLength="125" />
  1234. <Property Name="MFOperator" Type="int" />
  1235. <Property Name="MFOperatorDate" Type="varchar" MaxLength="30" />
  1236. <Property Name="IsAuditDM" Type="int" />
  1237. <Property Name="AuditDMOperate" Type="int" />
  1238. <Property Name="AuditDMDate" Type="varchar" MaxLength="30" />
  1239. <Property Name="IsAuditMF" Type="int" />
  1240. <Property Name="AuditMFOperate" Type="int" />
  1241. <Property Name="AuditMFDate" Type="varchar" MaxLength="30" />
  1242. <Property Name="IsAuditGM" Type="int" />
  1243. <Property Name="AuditGMOperate" Type="int" />
  1244. <Property Name="AuditGMDate" Type="varchar" MaxLength="30" />
  1245. <Property Name="IsPay" Type="int" />
  1246. <Property Name="PayPercentage" Type="decimal" Precision="10" Scale="2" />
  1247. <Property Name="PayThenMoney" Type="decimal" Precision="10" Scale="2" />
  1248. <Property Name="PayPercentageOld" Type="decimal" Precision="10" Scale="2" />
  1249. <Property Name="PayThenMoneyOld" Type="decimal" Precision="10" Scale="2" />
  1250. <Property Name="UpdateDate" Type="varchar" MaxLength="30" />
  1251. <Property Name="Payee" Type="varchar" MaxLength="255" />
  1252. <Property Name="RMBPrice" Type="decimal" Precision="10" Scale="2" />
  1253. <Property Name="OrbitalPrivateTransfer" Type="int" />
  1254. <Property Name="ExceedBudget" Type="decimal" Precision="10" Scale="2" />
  1255. <Property Name="IsMatchCreditCard" Type="int" />
  1256. <Property Name="CreateUserId" Type="int" />
  1257. <Property Name="CreateTime" Type="datetime" />
  1258. <Property Name="DeleteUserId" Type="int" />
  1259. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1260. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1261. <Property Name="IsDel" Type="int" />
  1262. </EntityType>
  1263. <EntityType Name="Grp_Customers">
  1264. <Key>
  1265. <PropertyRef Name="Id" />
  1266. </Key>
  1267. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1268. <Property Name="DiId" Type="int" />
  1269. <Property Name="Iid" Type="int" />
  1270. <Property Name="ClientName" Type="varchar" MaxLength="120" />
  1271. <Property Name="InsuranceCosts" Type="decimal" Precision="10" Scale="2" />
  1272. <Property Name="Currency" Type="int" />
  1273. <Property Name="Attachment" Type="varchar" MaxLength="225" />
  1274. <Property Name="CreateUserId" Type="int" />
  1275. <Property Name="CreateTime" Type="datetime" />
  1276. <Property Name="DeleteUserId" Type="int" />
  1277. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1278. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1279. <Property Name="IsDel" Type="int" />
  1280. </EntityType>
  1281. <EntityType Name="Grp_DayAndCost">
  1282. <Key>
  1283. <PropertyRef Name="Id" />
  1284. </Key>
  1285. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1286. <Property Name="DiId" Type="int" />
  1287. <Property Name="Type" Type="int" />
  1288. <Property Name="Days" Type="int" />
  1289. <Property Name="NationalTravelFeeId" Type="int" />
  1290. <Property Name="Place" Type="varchar" MaxLength="100" />
  1291. <Property Name="Cost" Type="decimal" Precision="10" Scale="2" />
  1292. <Property Name="Currency" Type="int" />
  1293. <Property Name="SubTotal" Type="decimal" Precision="10" Scale="2" />
  1294. <Property Name="CreateUserId" Type="int" />
  1295. <Property Name="CreateTime" Type="datetime" />
  1296. <Property Name="DeleteUserId" Type="int" />
  1297. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1298. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1299. <Property Name="IsDel" Type="int" />
  1300. </EntityType>
  1301. <EntityType Name="Grp_DayAndCostDraft">
  1302. <Key>
  1303. <PropertyRef Name="Id" />
  1304. </Key>
  1305. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1306. <Property Name="ParentId" Type="int" />
  1307. <Property Name="Type" Type="int" />
  1308. <Property Name="Days" Type="int" />
  1309. <Property Name="NationalTravelFeeId" Type="int" />
  1310. <Property Name="Place" Type="varchar" MaxLength="100" />
  1311. <Property Name="Cost" Type="decimal" Precision="10" Scale="2" />
  1312. <Property Name="Currency" Type="int" />
  1313. <Property Name="SubTotal" Type="decimal" Precision="10" Scale="2" />
  1314. <Property Name="CreateUserId" Type="int" />
  1315. <Property Name="CreateTime" Type="datetime" />
  1316. <Property Name="DeleteUserId" Type="int" />
  1317. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1318. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1319. <Property Name="IsDel" Type="int" />
  1320. </EntityType>
  1321. <EntityType Name="Grp_DayOtherPrice">
  1322. <Key>
  1323. <PropertyRef Name="Id" />
  1324. </Key>
  1325. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1326. <Property Name="Diid" Type="int" Nullable="false" />
  1327. <Property Name="SetDataId" Type="int" Nullable="false" />
  1328. <Property Name="Index" Type="int" Nullable="false" />
  1329. <Property Name="Cost" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  1330. <Property Name="Currency" Type="int" Nullable="false" />
  1331. <Property Name="SubTotal" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  1332. <Property Name="CreateUserId" Type="int" />
  1333. <Property Name="CreateTime" Type="datetime" />
  1334. <Property Name="DeleteUserId" Type="int" />
  1335. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1336. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1337. <Property Name="IsDel" Type="int" />
  1338. </EntityType>
  1339. <EntityType Name="Grp_DayOtherPriceDraft">
  1340. <Key>
  1341. <PropertyRef Name="Id" />
  1342. </Key>
  1343. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1344. <Property Name="ParentId" Type="int" Nullable="false" />
  1345. <Property Name="SetDataId" Type="int" Nullable="false" />
  1346. <Property Name="Index" Type="int" Nullable="false" />
  1347. <Property Name="Cost" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  1348. <Property Name="Currency" Type="int" Nullable="false" />
  1349. <Property Name="SubTotal" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  1350. <Property Name="CreateUserId" Type="int" />
  1351. <Property Name="CreateTime" Type="datetime" />
  1352. <Property Name="DeleteUserId" Type="int" />
  1353. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1354. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1355. <Property Name="IsDel" Type="int" />
  1356. </EntityType>
  1357. <EntityType Name="Grp_DecreasePayments">
  1358. <Key>
  1359. <PropertyRef Name="Id" />
  1360. </Key>
  1361. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1362. <Property Name="DiId" Type="int" />
  1363. <Property Name="SupplierArea" Type="int" />
  1364. <Property Name="SupplierTypeId" Type="int" />
  1365. <Property Name="SupplierName" Type="nvarchar" MaxLength="200" />
  1366. <Property Name="SupplierContact" Type="nvarchar" MaxLength="100" />
  1367. <Property Name="SupplierContactNumber" Type="varchar" MaxLength="50" />
  1368. <Property Name="SupplierSocialAccount" Type="nvarchar" MaxLength="100" />
  1369. <Property Name="SupplierEmail" Type="nvarchar" MaxLength="50" />
  1370. <Property Name="SupplierAddress" Type="nvarchar" MaxLength="300" />
  1371. <Property Name="PriceName" Type="varchar" MaxLength="225" />
  1372. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  1373. <Property Name="Quantity" Type="decimal" Precision="10" Scale="2" />
  1374. <Property Name="FeeTotal" Type="decimal" Precision="10" Scale="2" />
  1375. <Property Name="Currency" Type="int" />
  1376. <Property Name="FilePath" Type="varchar" MaxLength="120" />
  1377. <Property Name="OTAOrderNo" Type="varchar" MaxLength="200" />
  1378. <Property Name="IsSelect" Type="int" />
  1379. <Property Name="CreateUserId" Type="int" />
  1380. <Property Name="CreateTime" Type="datetime" />
  1381. <Property Name="DeleteUserId" Type="int" />
  1382. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1383. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1384. <Property Name="IsDel" Type="int" />
  1385. </EntityType>
  1386. <EntityType Name="Grp_DeleClientNeeds">
  1387. <Key>
  1388. <PropertyRef Name="Id" />
  1389. </Key>
  1390. <Property Name="Id" Type="int" Nullable="false" />
  1391. <Property Name="DiId" Type="int" />
  1392. <Property Name="HotelName" Type="varchar" MaxLength="100" />
  1393. <Property Name="HotelAddress" Type="varchar" MaxLength="200" />
  1394. <Property Name="HotelStarRank" Type="varchar" MaxLength="100" />
  1395. <Property Name="HotelNeedRemark" Type="varchar" MaxLength="500" />
  1396. <Property Name="CabinName" Type="varchar" MaxLength="100" />
  1397. <Property Name="CabinNeedRemark" Type="varchar" MaxLength="500" />
  1398. <Property Name="CarType" Type="int" />
  1399. <Property Name="CarNeedRemark" Type="varchar" MaxLength="500" />
  1400. <Property Name="FoodNeedRemark" Type="varchar" MaxLength="500" />
  1401. <Property Name="CreateUserId" Type="int" />
  1402. <Property Name="CreateTime" Type="datetime" />
  1403. <Property Name="DeleteUserId" Type="int" />
  1404. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1405. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1406. <Property Name="IsDel" Type="int" />
  1407. </EntityType>
  1408. <EntityType Name="Grp_DeleFile">
  1409. <Key>
  1410. <PropertyRef Name="Id" />
  1411. </Key>
  1412. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1413. <Property Name="Diid" Type="int" />
  1414. <Property Name="Category" Type="int" />
  1415. <Property Name="Kind" Type="int" />
  1416. <Property Name="FileName" Type="varchar" MaxLength="100" />
  1417. <Property Name="FilePath" Type="varchar" MaxLength="100" />
  1418. <Property Name="CreateUserId" Type="int" />
  1419. <Property Name="CreateTime" Type="datetime" />
  1420. <Property Name="DeleteUserId" Type="int" />
  1421. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1422. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1423. <Property Name="IsDel" Type="int" />
  1424. </EntityType>
  1425. <EntityType Name="Grp_DelegationEnData">
  1426. <Key>
  1427. <PropertyRef Name="Id" />
  1428. </Key>
  1429. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1430. <Property Name="Area" Type="varchar" MaxLength="50" />
  1431. <Property Name="Job" Type="varchar" MaxLength="50" />
  1432. <Property Name="JobEn" Type="varchar" MaxLength="50" />
  1433. <Property Name="DelegationSetting" Type="varchar" MaxLength="500" />
  1434. <Property Name="DelegationSettingEN" Type="varchar" MaxLength="500" />
  1435. <Property Name="CreateUserId" Type="int" />
  1436. <Property Name="CreateTime" Type="datetime" />
  1437. <Property Name="DeleteUserId" Type="int" />
  1438. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1439. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1440. <Property Name="IsDel" Type="int" />
  1441. </EntityType>
  1442. <EntityType Name="Grp_DelegationInfo">
  1443. <Key>
  1444. <PropertyRef Name="Id" />
  1445. </Key>
  1446. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1447. <Property Name="SalesQuoteNo" Type="varchar" MaxLength="50" />
  1448. <Property Name="SalesDate" Type="datetime" />
  1449. <Property Name="ClientName" Type="varchar" MaxLength="50" />
  1450. <Property Name="ClientUnit" Type="varchar" MaxLength="200" />
  1451. <Property Name="TourCode" Type="varchar" MaxLength="50" />
  1452. <Property Name="TeamName" Type="varchar" MaxLength="100" />
  1453. <Property Name="TeamDid" Type="int" />
  1454. <Property Name="VisitDate" Type="datetime" />
  1455. <Property Name="VisitStartDate" Type="datetime" />
  1456. <Property Name="VisitEndDate" Type="datetime" />
  1457. <Property Name="VisitCountry" Type="varchar" MaxLength="100" />
  1458. <Property Name="VisitPurpose" Type="varchar" MaxLength="300" />
  1459. <Property Name="VisitDays" Type="int" />
  1460. <Property Name="VisitPNumber" Type="int" />
  1461. <Property Name="SpecialNeeds" Type="varchar" MaxLength="500" />
  1462. <Property Name="OtherNeeds" Type="varchar" MaxLength="500" />
  1463. <Property Name="ClientNeeds" Type="varchar" MaxLength="500" />
  1464. <Property Name="IsState" Type="int" />
  1465. <Property Name="JietuanOperator" Type="int" />
  1466. <Property Name="JietuanTime" Type="datetime" />
  1467. <Property Name="GroupsOperator" Type="int" />
  1468. <Property Name="GroupsTime" Type="datetime" />
  1469. <Property Name="BudgetCost" Type="decimal" Precision="10" Scale="2" />
  1470. <Property Name="IsSure" Type="int" />
  1471. <Property Name="SureTime" Type="datetime" />
  1472. <Property Name="TellPhone" Type="varchar" MaxLength="300" />
  1473. <Property Name="WeChatNo" Type="varchar" MaxLength="300" />
  1474. <Property Name="TeamLevSId" Type="int" />
  1475. <Property Name="HotelComplain" Type="int" />
  1476. <Property Name="OPComplain" Type="int" />
  1477. <Property Name="VisaComplain" Type="int" />
  1478. <Property Name="OAComplain" Type="int" />
  1479. <Property Name="AirComplain" Type="int" />
  1480. <Property Name="Director" Type="varchar" MaxLength="50" />
  1481. <Property Name="TontractTime" Type="datetime" />
  1482. <Property Name="IsBid" Type="int" />
  1483. <Property Name="PaymentMoney" Type="decimal" Precision="10" Scale="2" />
  1484. <Property Name="PayDay" Type="int" />
  1485. <Property Name="CGRWSPBMMC" Type="varchar" MaxLength="50" />
  1486. <Property Name="CGRWSPWH" Type="varchar" MaxLength="50" />
  1487. <Property Name="ZZSCBMMC" Type="varchar" MaxLength="50" />
  1488. <Property Name="ZZSCSPWH" Type="varchar" MaxLength="50" />
  1489. <Property Name="OpRoyaltyLv" Type="int" />
  1490. <Property Name="OpRoyaltyRemark" Type="varchar" MaxLength="100" />
  1491. <Property Name="Officialneeds" Type="varchar" MaxLength="300" />
  1492. <Property Name="CreateUserId" Type="int" />
  1493. <Property Name="CreateTime" Type="datetime" />
  1494. <Property Name="DeleteUserId" Type="int" />
  1495. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1496. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1497. <Property Name="IsDel" Type="int" />
  1498. </EntityType>
  1499. <EntityType Name="Grp_DelegationJoinCustomer">
  1500. <Key>
  1501. <PropertyRef Name="Id" />
  1502. </Key>
  1503. <Property Name="Id" Type="int" Nullable="false" />
  1504. <Property Name="GrpDCId" Type="int" />
  1505. <Property Name="CrmDCId" Type="int" />
  1506. <Property Name="CreateUserId" Type="int" />
  1507. <Property Name="CreateTime" Type="datetime" />
  1508. <Property Name="DeleteUserId" Type="int" />
  1509. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1510. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1511. <Property Name="IsDel" Type="int" />
  1512. </EntityType>
  1513. <EntityType Name="Grp_DeleMeetingNeeds">
  1514. <Key>
  1515. <PropertyRef Name="Id" />
  1516. </Key>
  1517. <Property Name="Id" Type="int" Nullable="false" />
  1518. <Property Name="DeleClientNeedId" Type="int" />
  1519. <Property Name="MeetingType" Type="int" />
  1520. <Property Name="MeetingDt" Type="datetime" />
  1521. <Property Name="MeethingSeptal" Type="varchar" MaxLength="50" />
  1522. <Property Name="Person" Type="int" />
  1523. <Property Name="MeetingPrice" Type="varchar" MaxLength="50" />
  1524. <Property Name="Contact" Type="varchar" MaxLength="20" />
  1525. <Property Name="Mobile" Type="varchar" MaxLength="20" />
  1526. <Property Name="NeedsChoose" Type="varchar" MaxLength="500" />
  1527. <Property Name="CreateUserId" Type="int" />
  1528. <Property Name="CreateTime" Type="datetime" />
  1529. <Property Name="DeleteUserId" Type="int" />
  1530. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1531. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1532. <Property Name="IsDel" Type="int" />
  1533. </EntityType>
  1534. <EntityType Name="Grp_EnterExitCost">
  1535. <Key>
  1536. <PropertyRef Name="Id" />
  1537. </Key>
  1538. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1539. <Property Name="DiId" Type="int" />
  1540. <Property Name="InsidePay" Type="decimal" Precision="10" Scale="2" />
  1541. <Property Name="Visa" Type="decimal" Precision="10" Scale="2" />
  1542. <Property Name="VisaRemark" Type="varchar" MaxLength="200" />
  1543. <Property Name="YiMiao" Type="decimal" Precision="10" Scale="2" />
  1544. <Property Name="HeSuan" Type="decimal" Precision="10" Scale="2" />
  1545. <Property Name="Service" Type="decimal" Precision="10" Scale="2" />
  1546. <Property Name="Ticket" Type="decimal" Precision="10" Scale="2" />
  1547. <Property Name="Safe" Type="decimal" Precision="10" Scale="2" />
  1548. <Property Name="FirstItemRemark" Type="varchar" MaxLength="500" />
  1549. <Property Name="OutsideJJPay" Type="decimal" Precision="10" Scale="2" />
  1550. <Property Name="OutsideGWPay" Type="decimal" Precision="10" Scale="2" />
  1551. <Property Name="OutsideTDPay" Type="decimal" Precision="10" Scale="2" />
  1552. <Property Name="AirJJ" Type="decimal" Precision="10" Scale="2" />
  1553. <Property Name="AirGW" Type="decimal" Precision="10" Scale="2" />
  1554. <Property Name="AirTD" Type="decimal" Precision="10" Scale="2" />
  1555. <Property Name="CityTranffic" Type="decimal" Precision="10" Scale="2" />
  1556. <Property Name="RateUSD" Type="decimal" Precision="10" Scale="4" />
  1557. <Property Name="RateJPY" Type="decimal" Precision="10" Scale="4" />
  1558. <Property Name="RateEUR" Type="decimal" Precision="10" Scale="4" />
  1559. <Property Name="RateGBP" Type="decimal" Precision="10" Scale="4" />
  1560. <Property Name="RateHKD" Type="decimal" Precision="10" Scale="4" />
  1561. <Property Name="CurrencyRemark" Type="varchar" MaxLength="500" />
  1562. <Property Name="ChoiceOne" Type="int" />
  1563. <Property Name="ChoiceTwo" Type="int" />
  1564. <Property Name="ChoiceThree" Type="int" />
  1565. <Property Name="ChoiceFour" Type="int" />
  1566. <Property Name="ChoiceFive" Type="int" />
  1567. <Property Name="SumJJC" Type="int" />
  1568. <Property Name="SumGWC" Type="int" />
  1569. <Property Name="SumTDC" Type="int" />
  1570. <Property Name="AirJJC_Checked" Type="int" />
  1571. <Property Name="AirGWC_Checked" Type="int" />
  1572. <Property Name="AirTDC_Checked" Type="int" />
  1573. <Property Name="OtherExpenses_Checked" Type="int" />
  1574. <Property Name="ChoiceSix" Type="int" />
  1575. <Property Name="CreateUserId" Type="int" />
  1576. <Property Name="CreateTime" Type="datetime" />
  1577. <Property Name="DeleteUserId" Type="int" />
  1578. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1579. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1580. <Property Name="IsDel" Type="int" />
  1581. <Property Name="IsConfirm" Type="int" />
  1582. <Property Name="TwoItemRemark" Type="varchar" MaxLength="500" />
  1583. </EntityType>
  1584. <EntityType Name="Grp_EnterExitCostDraft">
  1585. <Key>
  1586. <PropertyRef Name="Id" />
  1587. </Key>
  1588. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1589. <Property Name="DraftName" Type="varchar" MaxLength="200" />
  1590. <Property Name="InsidePay" Type="decimal" Precision="10" Scale="2" />
  1591. <Property Name="Visa" Type="decimal" Precision="10" Scale="2" />
  1592. <Property Name="VisaRemark" Type="varchar" MaxLength="200" />
  1593. <Property Name="YiMiao" Type="decimal" Precision="10" Scale="2" />
  1594. <Property Name="HeSuan" Type="decimal" Precision="10" Scale="2" />
  1595. <Property Name="Service" Type="decimal" Precision="10" Scale="2" />
  1596. <Property Name="Ticket" Type="decimal" Precision="10" Scale="2" />
  1597. <Property Name="Safe" Type="decimal" Precision="10" Scale="2" />
  1598. <Property Name="FirstItemRemark" Type="nvarchar" MaxLength="500" />
  1599. <Property Name="OutsideJJPay" Type="decimal" Precision="10" Scale="2" />
  1600. <Property Name="OutsideGWPay" Type="decimal" Precision="10" Scale="2" />
  1601. <Property Name="OutsideTDPay" Type="decimal" Precision="10" Scale="2" />
  1602. <Property Name="AirJJ" Type="decimal" Precision="10" Scale="2" />
  1603. <Property Name="AirGW" Type="decimal" Precision="10" Scale="2" />
  1604. <Property Name="AirTD" Type="decimal" Precision="10" Scale="2" />
  1605. <Property Name="CityTranffic" Type="decimal" Precision="10" Scale="2" />
  1606. <Property Name="RateUSD" Type="decimal" Precision="10" Scale="4" />
  1607. <Property Name="RateJPY" Type="decimal" Precision="10" Scale="4" />
  1608. <Property Name="RateEUR" Type="decimal" Precision="10" Scale="4" />
  1609. <Property Name="RateGBP" Type="decimal" Precision="10" Scale="4" />
  1610. <Property Name="RateHKD" Type="decimal" Precision="10" Scale="4" />
  1611. <Property Name="CurrencyRemark" Type="varchar" MaxLength="500" />
  1612. <Property Name="ChoiceOne" Type="int" />
  1613. <Property Name="ChoiceTwo" Type="int" />
  1614. <Property Name="ChoiceThree" Type="int" />
  1615. <Property Name="ChoiceFour" Type="int" />
  1616. <Property Name="ChoiceFive" Type="int" />
  1617. <Property Name="SumJJC" Type="int" />
  1618. <Property Name="SumGWC" Type="int" />
  1619. <Property Name="SumTDC" Type="int" />
  1620. <Property Name="AirJJC_Checked" Type="int" />
  1621. <Property Name="AirGWC_Checked" Type="int" />
  1622. <Property Name="AirTDC_Checked" Type="int" />
  1623. <Property Name="OtherExpenses_Checked" Type="int" />
  1624. <Property Name="ChoiceSix" Type="int" />
  1625. <Property Name="CreateUserId" Type="int" />
  1626. <Property Name="CreateTime" Type="datetime" />
  1627. <Property Name="DeleteUserId" Type="int" />
  1628. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1629. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1630. <Property Name="IsDel" Type="int" />
  1631. <Property Name="IsConfirm" Type="int" />
  1632. <Property Name="TwoItemRemark" Type="varchar" MaxLength="500" />
  1633. </EntityType>
  1634. <EntityType Name="Grp_EnterExitCostDraftPermission">
  1635. <Key>
  1636. <PropertyRef Name="Id" />
  1637. </Key>
  1638. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1639. <Property Name="DraftId" Type="int" />
  1640. <Property Name="UserId" Type="int" />
  1641. <Property Name="Permission" Type="int" />
  1642. <Property Name="CreateUserId" Type="int" />
  1643. <Property Name="CreateTime" Type="datetime" />
  1644. <Property Name="DeleteUserId" Type="int" />
  1645. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1646. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1647. <Property Name="IsDel" Type="int" />
  1648. </EntityType>
  1649. <EntityType Name="Grp_EnterExitCostPermission">
  1650. <Key>
  1651. <PropertyRef Name="Id" />
  1652. </Key>
  1653. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1654. <Property Name="GroupId" Type="int" />
  1655. <Property Name="UserId" Type="int" />
  1656. <Property Name="Permission" Type="int" />
  1657. <Property Name="CreateUserId" Type="int" />
  1658. <Property Name="CreateTime" Type="datetime" />
  1659. <Property Name="DeleteUserId" Type="int" />
  1660. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1661. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1662. <Property Name="IsDel" Type="int" />
  1663. </EntityType>
  1664. <EntityType Name="Grp_GroupCost">
  1665. <Key>
  1666. <PropertyRef Name="Id" />
  1667. </Key>
  1668. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1669. <Property Name="Diid" Type="int" />
  1670. <Property Name="DAY" Type="varchar" MaxLength="50" />
  1671. <Property Name="Date" Type="varchar" MaxLength="50" />
  1672. <Property Name="ITIN" Type="varchar" MaxLength="500" />
  1673. <Property Name="CarType" Type="varchar" MaxLength="500" />
  1674. <Property Name="CarCost" Type="decimal" Precision="18" Scale="2" />
  1675. <Property Name="CarNumber" Type="int" />
  1676. <Property Name="CarTiming" Type="decimal" Precision="18" Scale="2" />
  1677. <Property Name="TGS" Type="decimal" Precision="18" Scale="2" />
  1678. <Property Name="TGWH" Type="decimal" Precision="18" Scale="2" />
  1679. <Property Name="TGN" Type="decimal" Precision="18" Scale="2" />
  1680. <Property Name="TGOF" Type="decimal" Precision="18" Scale="2" />
  1681. <Property Name="TGM" Type="decimal" Precision="18" Scale="2" />
  1682. <Property Name="TGA" Type="decimal" Precision="18" Scale="2" />
  1683. <Property Name="TGTF" Type="decimal" Precision="18" Scale="2" />
  1684. <Property Name="TGEF" Type="decimal" Precision="18" Scale="2" />
  1685. <Property Name="CFS" Type="decimal" Precision="18" Scale="2" />
  1686. <Property Name="CFM" Type="decimal" Precision="18" Scale="2" />
  1687. <Property Name="CFOF" Type="decimal" Precision="18" Scale="2" />
  1688. <Property Name="B" Type="decimal" Precision="18" Scale="2" />
  1689. <Property Name="L" Type="decimal" Precision="18" Scale="2" />
  1690. <Property Name="D" Type="decimal" Precision="18" Scale="2" />
  1691. <Property Name="TBR" Type="decimal" Precision="18" Scale="2" />
  1692. <Property Name="SGR" Type="decimal" Precision="18" Scale="2" />
  1693. <Property Name="JS_ES" Type="decimal" Precision="18" Scale="2" />
  1694. <Property Name="Suite" Type="decimal" Precision="18" Scale="2" />
  1695. <Property Name="ACCON" Type="varchar" MaxLength="500" />
  1696. <Property Name="TV" Type="decimal" Precision="18" Scale="2" />
  1697. <Property Name="iL" Type="decimal" Precision="18" Scale="2" />
  1698. <Property Name="IF" Type="decimal" Precision="18" Scale="2" />
  1699. <Property Name="EF" Type="decimal" Precision="18" Scale="2" />
  1700. <Property Name="B_R_F" Type="decimal" Precision="18" Scale="2" />
  1701. <Property Name="TE" Type="decimal" Precision="18" Scale="2" />
  1702. <Property Name="TGTips" Type="decimal" Precision="18" Scale="2" />
  1703. <Property Name="DRVTips" Type="decimal" Precision="18" Scale="2" />
  1704. <Property Name="PC" Type="decimal" Precision="18" Scale="2" />
  1705. <Property Name="TLF" Type="decimal" Precision="18" Scale="2" />
  1706. <Property Name="ECT" Type="decimal" Precision="18" Scale="2" />
  1707. <Property Name="CreateUserId" Type="int" />
  1708. <Property Name="CreateTime" Type="datetime" />
  1709. <Property Name="DeleteUserId" Type="int" />
  1710. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1711. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1712. <Property Name="IsDel" Type="int" />
  1713. <Property Name="gwCount" Type="nvarchar" MaxLength="50" />
  1714. <Property Name="fyCount" Type="nvarchar" MaxLength="50" />
  1715. <Property Name="EFR" Type="nvarchar" MaxLength="200" />
  1716. </EntityType>
  1717. <EntityType Name="Grp_GroupCostParameter">
  1718. <Key>
  1719. <PropertyRef Name="Id" />
  1720. </Key>
  1721. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1722. <Property Name="DiId" Type="int" />
  1723. <Property Name="Currency" Type="varchar" MaxLength="50" />
  1724. <Property Name="Rate" Type="decimal" Precision="10" Scale="2" />
  1725. <Property Name="Tax" Type="decimal" Precision="10" Scale="2" />
  1726. <Property Name="FFYS" Type="decimal" Precision="10" Scale="2" />
  1727. <Property Name="HotelXS" Type="decimal" Precision="10" Scale="2" />
  1728. <Property Name="JJCCB" Type="decimal" Precision="10" Scale="2" />
  1729. <Property Name="JJCXS" Type="decimal" Precision="10" Scale="2" />
  1730. <Property Name="JJCRS" Type="int" />
  1731. <Property Name="GWCCB" Type="decimal" Precision="10" Scale="2" />
  1732. <Property Name="GWCXS" Type="decimal" Precision="10" Scale="2" />
  1733. <Property Name="GWCRS" Type="int" />
  1734. <Property Name="HCPCB" Type="decimal" Precision="10" Scale="2" />
  1735. <Property Name="HCPXS" Type="decimal" Precision="10" Scale="2" />
  1736. <Property Name="HCPRS" Type="int" />
  1737. <Property Name="CPCB" Type="decimal" Precision="10" Scale="2" />
  1738. <Property Name="CPXS" Type="decimal" Precision="10" Scale="2" />
  1739. <Property Name="CPRS" Type="int" />
  1740. <Property Name="BXCB" Type="decimal" Precision="10" Scale="2" />
  1741. <Property Name="BXXS" Type="decimal" Precision="10" Scale="2" />
  1742. <Property Name="BXRS" Type="int" />
  1743. <Property Name="HSCB" Type="decimal" Precision="10" Scale="2" />
  1744. <Property Name="HSXS" Type="decimal" Precision="10" Scale="2" />
  1745. <Property Name="HSRS" Type="int" />
  1746. <Property Name="VisaCB" Type="decimal" Precision="10" Scale="2" />
  1747. <Property Name="VisaXS" Type="decimal" Precision="10" Scale="2" />
  1748. <Property Name="VisaRS" Type="int" />
  1749. <Property Name="GWCB" Type="decimal" Precision="10" Scale="2" />
  1750. <Property Name="GWXS" Type="decimal" Precision="10" Scale="2" />
  1751. <Property Name="GWRS" Type="int" />
  1752. <Property Name="DJCB" Type="decimal" Precision="10" Scale="2" />
  1753. <Property Name="DJXS" Type="decimal" Precision="10" Scale="2" />
  1754. <Property Name="SGRCB" Type="decimal" Precision="10" Scale="2" />
  1755. <Property Name="SGRNumber" Type="int" />
  1756. <Property Name="SGRXS" Type="decimal" Precision="10" Scale="2" />
  1757. <Property Name="TBRCB" Type="decimal" Precision="10" Scale="2" />
  1758. <Property Name="TBRNumber" Type="int" />
  1759. <Property Name="TBRXS" Type="decimal" Precision="10" Scale="2" />
  1760. <Property Name="JSESCB" Type="decimal" Precision="10" Scale="2" />
  1761. <Property Name="JSESNumber" Type="int" />
  1762. <Property Name="JSESXS" Type="decimal" Precision="10" Scale="2" />
  1763. <Property Name="SUITECB" Type="decimal" Precision="10" Scale="2" />
  1764. <Property Name="SUITENumber" Type="int" />
  1765. <Property Name="SUITEXS" Type="decimal" Precision="10" Scale="2" />
  1766. <Property Name="LYJCB" Type="decimal" Precision="10" Scale="2" />
  1767. <Property Name="LYJXS" Type="decimal" Precision="10" Scale="2" />
  1768. <Property Name="LYJRS" Type="int" />
  1769. <Property Name="IsShare" Type="int" />
  1770. <Property Name="CreateUserId" Type="int" />
  1771. <Property Name="CreateTime" Type="datetime" />
  1772. <Property Name="DeleteUserId" Type="int" />
  1773. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1774. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1775. <Property Name="IsDel" Type="int" />
  1776. <Property Name="CostType" Type="varchar" MaxLength="50" />
  1777. <Property Name="CostTypeStartTime" Type="datetime" />
  1778. <Property Name="CostTypeendTime" Type="datetime" />
  1779. <Property Name="CostTypenumber" Type="int" />
  1780. <Property Name="DJRS" Type="int" />
  1781. <Property Name="TDCCB" Type="decimal" Precision="18" Scale="2" />
  1782. <Property Name="TDCXS" Type="decimal" Precision="18" Scale="2" />
  1783. <Property Name="TDCRS" Type="int" />
  1784. </EntityType>
  1785. <EntityType Name="Grp_GroupModelFile">
  1786. <Key>
  1787. <PropertyRef Name="Id" />
  1788. </Key>
  1789. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1790. <Property Name="Diid" Type="int" Nullable="false" />
  1791. <Property Name="FilePath" Type="nvarchar" MaxLength="150" />
  1792. <Property Name="Ctable" Type="int" Nullable="false" />
  1793. <Property Name="Cid" Type="int" Nullable="false" />
  1794. <Property Name="CreateUserId" Type="int" />
  1795. <Property Name="CreateTime" Type="datetime" />
  1796. <Property Name="DeleteUserId" Type="int" />
  1797. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1798. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1799. <Property Name="IsDel" Type="int" />
  1800. <Property Name="FileName" Type="nvarchar" MaxLength="50" />
  1801. </EntityType>
  1802. <EntityType Name="Grp_GroupsTaskAssignment">
  1803. <Key>
  1804. <PropertyRef Name="Id" />
  1805. </Key>
  1806. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1807. <Property Name="DIId" Type="int" />
  1808. <Property Name="CTId" Type="int" />
  1809. <Property Name="UId" Type="int" />
  1810. <Property Name="IsEnable" Type="int" />
  1811. <Property Name="CreateUserId" Type="int" />
  1812. <Property Name="CreateTime" Type="datetime" />
  1813. <Property Name="DeleteUserId" Type="int" />
  1814. <Property Name="DeleteTime" Type="varchar" MaxLength="500" />
  1815. <Property Name="IsDel" Type="int" />
  1816. <Property Name="Remark" Type="nvarchar" MaxLength="1000" />
  1817. </EntityType>
  1818. <EntityType Name="Grp_GuidesInfo">
  1819. <Key>
  1820. <PropertyRef Name="Id" />
  1821. </Key>
  1822. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1823. <Property Name="Country" Type="varchar" MaxLength="50" Nullable="false" />
  1824. <Property Name="City" Type="varchar" MaxLength="50" Nullable="false" />
  1825. <Property Name="ServiceType" Type="varchar" MaxLength="50" Nullable="false" />
  1826. <Property Name="When" Type="varchar" MaxLength="50" Nullable="false" />
  1827. <Property Name="Price" Type="varchar" MaxLength="50" Nullable="false" />
  1828. <Property Name="TranslationPrice" Type="varchar" MaxLength="50" Nullable="false" />
  1829. <Property Name="OvertimeFee" Type="varchar" MaxLength="50" Nullable="false" />
  1830. <Property Name="Currency" Type="varchar" MaxLength="50" Nullable="false" />
  1831. <Property Name="CreateUserId" Type="int" />
  1832. <Property Name="CreateTime" Type="datetime" />
  1833. <Property Name="DeleteUserId" Type="int" />
  1834. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1835. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1836. <Property Name="IsDel" Type="int" />
  1837. </EntityType>
  1838. <EntityType Name="Grp_HotelInquiry">
  1839. <Key>
  1840. <PropertyRef Name="Id" />
  1841. </Key>
  1842. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1843. <Property Name="DiId" Type="int" />
  1844. <Property Name="City" Type="varchar" MaxLength="50" />
  1845. <Property Name="Name" Type="varchar" MaxLength="100" />
  1846. <Property Name="Address" Type="varchar" MaxLength="200" />
  1847. <Property Name="SelectDt" Type="datetime" />
  1848. <Property Name="CheckInDate" Type="datetime" />
  1849. <Property Name="CheckOutDate" Type="datetime" />
  1850. <Property Name="SinglePrice" Type="decimal" Precision="10" Scale="2" />
  1851. <Property Name="SingleQuantity" Type="int" />
  1852. <Property Name="SingleCurrency" Type="int" />
  1853. <Property Name="DoublePrice" Type="decimal" Precision="10" Scale="2" />
  1854. <Property Name="DoubleQuantity" Type="int" />
  1855. <Property Name="DoubleCurrency" Type="int" />
  1856. <Property Name="SuitePrice" Type="decimal" Precision="10" Scale="2" />
  1857. <Property Name="SuiteQuantity" Type="int" />
  1858. <Property Name="SuiteCurrency" Type="int" />
  1859. <Property Name="OtherPrice" Type="decimal" Precision="10" Scale="2" />
  1860. <Property Name="OtherQuantity" Type="int" />
  1861. <Property Name="OtherCurrency" Type="int" />
  1862. <Property Name="CreateUserId" Type="int" />
  1863. <Property Name="CreateTime" Type="datetime" />
  1864. <Property Name="DeleteUserId" Type="int" />
  1865. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1866. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1867. <Property Name="IsDel" Type="int" />
  1868. </EntityType>
  1869. <EntityType Name="Grp_HotelReservations">
  1870. <Key>
  1871. <PropertyRef Name="Id" />
  1872. </Key>
  1873. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1874. <Property Name="DiId" Type="int" />
  1875. <Property Name="GTId" Type="int" />
  1876. <Property Name="CheckNumber" Type="varchar" MaxLength="50" />
  1877. <Property Name="ReservationsWebsite" Type="int" />
  1878. <Property Name="ReservationsNo" Type="varchar" MaxLength="225" />
  1879. <Property Name="DetermineNo" Type="varchar" MaxLength="225" />
  1880. <Property Name="AreaId" Type="int" />
  1881. <Property Name="City" Type="nvarchar" MaxLength="100" />
  1882. <Property Name="HotelName" Type="nvarchar" MaxLength="100" />
  1883. <Property Name="HotelAddress" Type="nvarchar" MaxLength="225" />
  1884. <Property Name="HotelTel" Type="varchar" MaxLength="50" />
  1885. <Property Name="HotelFax" Type="varchar" MaxLength="50" />
  1886. <Property Name="GuestName" Type="varchar" MaxLength="225" />
  1887. <Property Name="CheckInDate" Type="varchar" MaxLength="30" />
  1888. <Property Name="CheckOutDate" Type="varchar" MaxLength="30" />
  1889. <Property Name="Budget" Type="decimal" Precision="10" Scale="2" />
  1890. <Property Name="BudgetCurrency" Type="int" />
  1891. <Property Name="SingleRoomCount" Type="int" />
  1892. <Property Name="SingleRoomPrice" Type="decimal" Precision="10" Scale="2" />
  1893. <Property Name="DoubleRoomCount" Type="int" />
  1894. <Property Name="DoubleRoomPrice" Type="decimal" Precision="10" Scale="2" />
  1895. <Property Name="SuiteRoomCount" Type="int" />
  1896. <Property Name="SuiteRoomPrice" Type="decimal" Precision="10" Scale="2" />
  1897. <Property Name="OtherRoomCount" Type="int" />
  1898. <Property Name="OtherRoomPrice" Type="decimal" Precision="10" Scale="2" />
  1899. <Property Name="Commission" Type="decimal" Precision="10" Scale="2" />
  1900. <Property Name="CommissionCurrency" Type="int" />
  1901. <Property Name="CommissionMark" Type="int" />
  1902. <Property Name="RoomExplanation" Type="varchar" MaxLength="500" />
  1903. <Property Name="Attachment" Type="varchar" MaxLength="225" />
  1904. <Property Name="CardPrice" Type="decimal" Precision="10" Scale="2" />
  1905. <Property Name="CardPriceCurrency" Type="int" />
  1906. <Property Name="IsCardPrice" Type="int" />
  1907. <Property Name="BreakfastPrice" Type="decimal" Precision="10" Scale="2" />
  1908. <Property Name="BreakfastCurrency" Type="int" />
  1909. <Property Name="Isoppay" Type="int" />
  1910. <Property Name="CboOne" Type="int" />
  1911. <Property Name="CboTwo" Type="int" />
  1912. <Property Name="CboThree" Type="int" />
  1913. <Property Name="CboFour" Type="int" />
  1914. <Property Name="PredictSingleRoom" Type="int" />
  1915. <Property Name="PredictDoubleRoom" Type="int" />
  1916. <Property Name="PredictSuiteRoom" Type="int" />
  1917. <Property Name="PredictOtherRoom" Type="int" />
  1918. <Property Name="GovernmentRent" Type="decimal" Precision="10" Scale="2" />
  1919. <Property Name="GovernmentRentCurrency" Type="int" />
  1920. <Property Name="CityTax" Type="decimal" Precision="10" Scale="2" />
  1921. <Property Name="CityTaxCurrency" Type="int" />
  1922. <Property Name="CheckType" Type="int" />
  1923. <Property Name="CreateUserId" Type="int" />
  1924. <Property Name="CreateTime" Type="datetime" />
  1925. <Property Name="DeleteUserId" Type="int" />
  1926. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1927. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1928. <Property Name="IsDel" Type="int" />
  1929. </EntityType>
  1930. <EntityType Name="Grp_HotelReservationsContent">
  1931. <Key>
  1932. <PropertyRef Name="Id" />
  1933. </Key>
  1934. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1935. <Property Name="DiId" Type="int" />
  1936. <Property Name="HrId" Type="int" />
  1937. <Property Name="PriceType" Type="int" />
  1938. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  1939. <Property Name="Currency" Type="int" />
  1940. <Property Name="Rate" Type="decimal" Precision="10" Scale="4" />
  1941. <Property Name="IsOppay" Type="int" />
  1942. <Property Name="PayDId" Type="int" />
  1943. <Property Name="ConsumptionPatterns" Type="varchar" MaxLength="125" />
  1944. <Property Name="ConsumptionDate" Type="varchar" MaxLength="30" />
  1945. <Property Name="CTDId" Type="int" />
  1946. <Property Name="BankNo" Type="varchar" MaxLength="125" />
  1947. <Property Name="CardholderName" Type="varchar" MaxLength="125" />
  1948. <Property Name="CompanyBankNo" Type="varchar" MaxLength="125" />
  1949. <Property Name="OtherBankName" Type="varchar" MaxLength="125" />
  1950. <Property Name="OtherSideNo" Type="varchar" MaxLength="125" />
  1951. <Property Name="OtherSideName" Type="varchar" MaxLength="125" />
  1952. <Property Name="IsPay" Type="int" />
  1953. <Property Name="Payee" Type="varchar" MaxLength="50" />
  1954. <Property Name="OrbitalPrivateTransfer" Type="int" />
  1955. <Property Name="CreateUserId" Type="int" />
  1956. <Property Name="CreateTime" Type="datetime" />
  1957. <Property Name="DeleteUserId" Type="int" />
  1958. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1959. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1960. <Property Name="IsDel" Type="int" />
  1961. </EntityType>
  1962. <EntityType Name="Grp_InsuranceCost">
  1963. <Key>
  1964. <PropertyRef Name="Id" />
  1965. </Key>
  1966. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1967. <Property Name="GName" Type="varchar" MaxLength="100" />
  1968. <Property Name="RechargeCost" Type="decimal" Precision="18" Scale="2" />
  1969. <Property Name="CreateUserId" Type="int" />
  1970. <Property Name="CreateTime" Type="datetime" />
  1971. <Property Name="DeleteUserId" Type="int" />
  1972. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  1973. <Property Name="Remark" Type="varchar" MaxLength="500" />
  1974. <Property Name="IsDel" Type="int" />
  1975. </EntityType>
  1976. <EntityType Name="Grp_InvertedList">
  1977. <Key>
  1978. <PropertyRef Name="Id" />
  1979. </Key>
  1980. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  1981. <Property Name="DiId" Type="int" />
  1982. <Property Name="ApprovalDataDt" Type="varchar" MaxLength="30" />
  1983. <Property Name="IsApprovalData" Type="int" />
  1984. <Property Name="ApprovalDataRemark" Type="varchar" MaxLength="300" />
  1985. <Property Name="ApprovalDt" Type="varchar" MaxLength="30" />
  1986. <Property Name="ApprovalType" Type="int" />
  1987. <Property Name="IsApproval" Type="int" />
  1988. <Property Name="ApprovalRemark" Type="varchar" MaxLength="300" />
  1989. <Property Name="IssueApprovalDt" Type="varchar" MaxLength="30" />
  1990. <Property Name="IsIssueApproval" Type="int" />
  1991. <Property Name="IssueApprovalRemark" Type="varchar" MaxLength="300" />
  1992. <Property Name="ApplyPassportDt" Type="varchar" MaxLength="30" />
  1993. <Property Name="IsApplyPassport" Type="int" />
  1994. <Property Name="ApplyPassportRemark" Type="varchar" MaxLength="300" />
  1995. <Property Name="VisaInformationDt" Type="varchar" MaxLength="30" />
  1996. <Property Name="IsVisaInformation" Type="int" />
  1997. <Property Name="VisaInformationRemark" Type="varchar" MaxLength="300" />
  1998. <Property Name="SendVisaDt" Type="varchar" MaxLength="30" />
  1999. <Property Name="IsSendVisa" Type="int" />
  2000. <Property Name="SendVisaRemark" Type="varchar" MaxLength="300" />
  2001. <Property Name="IssueVisaDt" Type="varchar" MaxLength="30" />
  2002. <Property Name="IsIssueVisa" Type="int" />
  2003. <Property Name="IssueVisaRemark" Type="varchar" MaxLength="300" />
  2004. <Property Name="PreTripMeetingDt" Type="varchar" MaxLength="30" />
  2005. <Property Name="IsPreTripMeeting" Type="int" />
  2006. <Property Name="PreTripMeetingRemark" Type="varchar" MaxLength="300" />
  2007. <Property Name="AirportdDropOffDt" Type="varchar" MaxLength="30" />
  2008. <Property Name="IsAirportdDropOff" Type="int" />
  2009. <Property Name="AirportdDropOffRemark" Type="varchar" MaxLength="300" />
  2010. <Property Name="CreateUserId" Type="int" />
  2011. <Property Name="CreateTime" Type="datetime" />
  2012. <Property Name="DeleteUserId" Type="int" />
  2013. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2014. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2015. <Property Name="IsDel" Type="int" />
  2016. <Property Name="AirTicketDt" Type="varchar" MaxLength="30" />
  2017. <Property Name="IsAirTicket" Type="int" />
  2018. <Property Name="AirTicketRemark" Type="varchar" MaxLength="300" />
  2019. <Property Name="HotelDt" Type="varchar" MaxLength="30" />
  2020. <Property Name="IsHotel" Type="int" />
  2021. <Property Name="HotelRemark" Type="varchar" MaxLength="300" />
  2022. <Property Name="IsSelectedAirportd" Type="bit" />
  2023. <Property Name="IsSelectedApprovalData" Type="bit" />
  2024. <Property Name="IsSelectedIssueApproval" Type="bit" />
  2025. <Property Name="IsSelectedVisaInfo" Type="bit" />
  2026. <Property Name="IsSelectedSendVisa" Type="bit" />
  2027. <Property Name="IsSelectedIssueVisa" Type="bit" />
  2028. <Property Name="IsSelectedAirTicket" Type="bit" />
  2029. <Property Name="IsSelectedHotel" Type="bit" />
  2030. <Property Name="IsSelectedPreTripMeeting" Type="bit" />
  2031. <Property Name="IsSelectedAirportdDropOff" Type="bit" />
  2032. </EntityType>
  2033. <EntityType Name="Grp_InvertedListVisaCountry">
  2034. <Key>
  2035. <PropertyRef Name="Id" />
  2036. </Key>
  2037. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2038. <Property Name="ILId" Type="int" />
  2039. <Property Name="Country" Type="varchar" MaxLength="100" />
  2040. <Property Name="OfficialTypeId" Type="int" />
  2041. <Property Name="VisaTypeId" Type="int" />
  2042. <Property Name="VisaDay" Type="int" />
  2043. <Property Name="CreateUserId" Type="int" />
  2044. <Property Name="CreateTime" Type="datetime" />
  2045. <Property Name="DeleteUserId" Type="int" />
  2046. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2047. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2048. <Property Name="IsDel" Type="int" />
  2049. </EntityType>
  2050. <EntityType Name="Grp_InvitationOfficialActivities">
  2051. <Key>
  2052. <PropertyRef Name="Id" />
  2053. </Key>
  2054. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2055. <Property Name="DiId" Type="int" />
  2056. <Property Name="InviterArea" Type="varchar" MaxLength="225" />
  2057. <Property Name="Inviter" Type="varchar" MaxLength="225" />
  2058. <Property Name="InviteTime" Type="datetime" />
  2059. <Property Name="Attachment" Type="varchar" MaxLength="225" />
  2060. <Property Name="InviteCost" Type="decimal" Precision="10" Scale="2" />
  2061. <Property Name="InviteCurrency" Type="int" />
  2062. <Property Name="SendCost" Type="decimal" Precision="10" Scale="2" />
  2063. <Property Name="SendCurrency" Type="int" />
  2064. <Property Name="EventsCost" Type="decimal" Precision="10" Scale="2" />
  2065. <Property Name="EventsCurrency" Type="int" />
  2066. <Property Name="TranslateCost" Type="decimal" Precision="10" Scale="2" />
  2067. <Property Name="TranslateCurrency" Type="int" />
  2068. <Property Name="IsGoOfficaiaBussiness" Type="int" />
  2069. <Property Name="CreateUserId" Type="int" />
  2070. <Property Name="CreateTime" Type="datetime" />
  2071. <Property Name="DeleteUserId" Type="int" />
  2072. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2073. <Property Name="Remark" Type="varchar" MaxLength="5000" />
  2074. <Property Name="DataId" Type="int" />
  2075. <Property Name="IsDel" Type="int" />
  2076. </EntityType>
  2077. <EntityType Name="Grp_NationalTravelFee">
  2078. <Key>
  2079. <PropertyRef Name="Id" />
  2080. </Key>
  2081. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2082. <Property Name="Continent" Type="varchar" MaxLength="50" />
  2083. <Property Name="Country" Type="varchar" MaxLength="50" />
  2084. <Property Name="City" Type="varchar" MaxLength="50" />
  2085. <Property Name="Currency" Type="int" />
  2086. <Property Name="RoomCost" Type="decimal" Precision="10" Scale="2" />
  2087. <Property Name="FoodCost" Type="decimal" Precision="10" Scale="2" />
  2088. <Property Name="PublicCost" Type="decimal" Precision="10" Scale="2" />
  2089. <Property Name="LastUpdateUserId" Type="int" />
  2090. <Property Name="LastUpdateTime" Type="datetime" />
  2091. <Property Name="CreateUserId" Type="int" />
  2092. <Property Name="CreateTime" Type="datetime" />
  2093. <Property Name="DeleteUserId" Type="int" />
  2094. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2095. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2096. <Property Name="IsDel" Type="int" />
  2097. </EntityType>
  2098. <EntityType Name="Grp_OfficialDutyLinkTranslator">
  2099. <Key>
  2100. <PropertyRef Name="Id" />
  2101. </Key>
  2102. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2103. <Property Name="OfficialDutyId" Type="int" />
  2104. <Property Name="TranslatorId" Type="int" />
  2105. <Property Name="CreateUserId" Type="int" />
  2106. <Property Name="CreateTime" Type="datetime" />
  2107. <Property Name="DeleteUserId" Type="int" />
  2108. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2109. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2110. <Property Name="IsDel" Type="int" />
  2111. </EntityType>
  2112. <EntityType Name="Grp_Opinionaire">
  2113. <Key>
  2114. <PropertyRef Name="Id" />
  2115. </Key>
  2116. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2117. <Property Name="DiId" Type="int" />
  2118. <Property Name="CityName" Type="varchar" MaxLength="200" />
  2119. <Property Name="TourGuideName" Type="nvarchar" MaxLength="200" />
  2120. <Property Name="Catering" Type="varchar" MaxLength="10" />
  2121. <Property Name="CateringReason" Type="varchar" MaxLength="500" />
  2122. <Property Name="Stay" Type="varchar" MaxLength="10" />
  2123. <Property Name="StayReason" Type="varchar" MaxLength="500" />
  2124. <Property Name="Route" Type="varchar" MaxLength="10" />
  2125. <Property Name="RouteReason" Type="varchar" MaxLength="500" />
  2126. <Property Name="OfficialActivity" Type="varchar" MaxLength="10" />
  2127. <Property Name="OfficialActivityReason" Type="varchar" MaxLength="500" />
  2128. <Property Name="TourGuide" Type="varchar" MaxLength="10" />
  2129. <Property Name="TourGuideReason" Type="varchar" MaxLength="500" />
  2130. <Property Name="Translate" Type="varchar" MaxLength="10" />
  2131. <Property Name="TranslateReason" Type="varchar" MaxLength="500" />
  2132. <Property Name="Trip" Type="varchar" MaxLength="10" />
  2133. <Property Name="TripReason" Type="varchar" MaxLength="500" />
  2134. <Property Name="ESFileName" Type="varchar" MaxLength="100" />
  2135. <Property Name="SignatureDate" Type="varchar" MaxLength="30" />
  2136. <Property Name="CreateUserId" Type="int" />
  2137. <Property Name="CreateTime" Type="datetime" />
  2138. <Property Name="DeleteUserId" Type="int" />
  2139. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2140. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2141. <Property Name="IsDel" Type="int" />
  2142. </EntityType>
  2143. <EntityType Name="Grp_RestaurantInfo">
  2144. <Key>
  2145. <PropertyRef Name="Id" />
  2146. </Key>
  2147. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2148. <Property Name="GroupId" Type="int" />
  2149. <Property Name="Date" Type="varchar" MaxLength="30" />
  2150. <Property Name="StartTime" Type="varchar" MaxLength="30" />
  2151. <Property Name="EndTime" Type="varchar" MaxLength="30" />
  2152. <Property Name="Type" Type="int" />
  2153. <Property Name="Name" Type="nvarchar" MaxLength="200" />
  2154. <Property Name="Tel" Type="nvarchar" MaxLength="100" />
  2155. <Property Name="Address" Type="nvarchar" MaxLength="300" />
  2156. <Property Name="CreateUserId" Type="int" />
  2157. <Property Name="CreateTime" Type="datetime" />
  2158. <Property Name="DeleteUserId" Type="int" />
  2159. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2160. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2161. <Property Name="IsDel" Type="int" />
  2162. </EntityType>
  2163. <EntityType Name="Grp_ScenicSpotInfo">
  2164. <Key>
  2165. <PropertyRef Name="Id" />
  2166. </Key>
  2167. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2168. <Property Name="Country" Type="varchar" MaxLength="50" Nullable="false" />
  2169. <Property Name="City" Type="varchar" MaxLength="50" Nullable="false" />
  2170. <Property Name="ScenicSpot" Type="varchar" MaxLength="200" Nullable="false" />
  2171. <Property Name="ScenicSpotDetail" Type="varchar" MaxLength="500" Nullable="false" />
  2172. <Property Name="Price" Type="float" Nullable="false" />
  2173. <Property Name="Currency" Type="varchar" MaxLength="50" Nullable="false" />
  2174. <Property Name="Rate" Type="float" Nullable="false" />
  2175. <Property Name="Address" Type="varchar" MaxLength="500" Nullable="false" />
  2176. <Property Name="CreateUserId" Type="int" />
  2177. <Property Name="CreateTime" Type="datetime" />
  2178. <Property Name="DeleteUserId" Type="int" />
  2179. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2180. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2181. <Property Name="IsDel" Type="int" />
  2182. </EntityType>
  2183. <EntityType Name="Grp_Schedule">
  2184. <Key>
  2185. <PropertyRef Name="Id" />
  2186. </Key>
  2187. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2188. <Property Name="DiId" Type="int" />
  2189. <Property Name="PrimaryStep" Type="int" />
  2190. <Property Name="ExpectBeginDt" Type="datetime" />
  2191. <Property Name="ExpectEndDt" Type="datetime" />
  2192. <Property Name="RealBeginDt" Type="datetime" />
  2193. <Property Name="RealEndDt" Type="datetime" />
  2194. <Property Name="Leader" Type="int" />
  2195. <Property Name="CreateUserId" Type="int" />
  2196. <Property Name="CreateTime" Type="datetime" />
  2197. <Property Name="DeleteUserId" Type="int" />
  2198. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2199. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2200. <Property Name="IsDel" Type="int" />
  2201. <Property Name="Exception" Type="int" />
  2202. </EntityType>
  2203. <EntityType Name="Grp_ScheduleDetail">
  2204. <Key>
  2205. <PropertyRef Name="Id" />
  2206. </Key>
  2207. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2208. <Property Name="SLevel" Type="int" />
  2209. <Property Name="ScheduleId" Type="int" />
  2210. <Property Name="Step" Type="int" />
  2211. <Property Name="ParentStep" Type="int" />
  2212. <Property Name="StepStatus" Type="int" />
  2213. <Property Name="Duty" Type="int" />
  2214. <Property Name="JobContent" Type="varchar" MaxLength="50" />
  2215. <Property Name="ExpectBeginDt" Type="datetime" />
  2216. <Property Name="ExpectEndDt" Type="datetime" />
  2217. <Property Name="RealBeginDt" Type="datetime" />
  2218. <Property Name="RealEndDt" Type="datetime" />
  2219. <Property Name="CreateUserId" Type="int" />
  2220. <Property Name="CreateTime" Type="datetime" />
  2221. <Property Name="DeleteUserId" Type="int" />
  2222. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2223. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2224. <Property Name="IsDel" Type="int" />
  2225. <Property Name="Exception" Type="int" />
  2226. </EntityType>
  2227. <EntityType Name="Grp_SchedulePerson">
  2228. <Key>
  2229. <PropertyRef Name="Id" />
  2230. </Key>
  2231. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2232. <Property Name="ScheduleId" Type="int" />
  2233. <Property Name="SysUserId" Type="int" />
  2234. <Property Name="SysUserName" Type="varchar" MaxLength="50" />
  2235. <Property Name="JobStr" Type="varchar" MaxLength="50" />
  2236. <Property Name="CreateUserId" Type="int" />
  2237. <Property Name="CreateTime" Type="datetime" />
  2238. <Property Name="DeleteUserId" Type="int" />
  2239. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2240. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2241. <Property Name="IsDel" Type="int" />
  2242. </EntityType>
  2243. <EntityType Name="Grp_TeamRate">
  2244. <Key>
  2245. <PropertyRef Name="ID" />
  2246. </Key>
  2247. <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2248. <Property Name="DiId" Type="int" />
  2249. <Property Name="CTable" Type="int" />
  2250. <Property Name="OtherRateCode" Type="varchar" MaxLength="20" />
  2251. <Property Name="OtherPrice" Type="decimal" Precision="10" Scale="4" />
  2252. <Property Name="RateU" Type="decimal" Precision="10" Scale="4" />
  2253. <Property Name="RateE" Type="decimal" Precision="10" Scale="4" />
  2254. <Property Name="RateJ" Type="decimal" Precision="10" Scale="4" />
  2255. <Property Name="RateH" Type="decimal" Precision="10" Scale="4" />
  2256. <Property Name="RateN" Type="decimal" Precision="10" Scale="4" />
  2257. <Property Name="RateS" Type="decimal" Precision="10" Scale="4" />
  2258. <Property Name="RateA" Type="decimal" Precision="10" Scale="4" />
  2259. <Property Name="RateC" Type="decimal" Precision="10" Scale="4" />
  2260. <Property Name="RateT" Type="decimal" Precision="10" Scale="4" />
  2261. <Property Name="RateBL" Type="decimal" Precision="10" Scale="4" />
  2262. <Property Name="RateHB" Type="decimal" Precision="10" Scale="4" />
  2263. <Property Name="RateFJD" Type="decimal" Precision="10" Scale="4" />
  2264. <Property Name="RateTL" Type="decimal" Precision="10" Scale="4" />
  2265. <Property Name="RateRP" Type="decimal" Precision="10" Scale="4" />
  2266. <Property Name="RatePeso" Type="decimal" Precision="10" Scale="4" />
  2267. <Property Name="RateMYR" Type="decimal" Precision="10" Scale="4" />
  2268. <Property Name="RateCZK" Type="decimal" Precision="10" Scale="4" />
  2269. <Property Name="RateMXN" Type="decimal" Precision="10" Scale="4" />
  2270. <Property Name="RateMOP" Type="decimal" Precision="10" Scale="4" />
  2271. <Property Name="RateARS" Type="decimal" Precision="10" Scale="4" />
  2272. <Property Name="RateHUF" Type="decimal" Precision="10" Scale="4" />
  2273. <Property Name="RateRUB" Type="decimal" Precision="10" Scale="4" />
  2274. <Property Name="CreateUserId" Type="int" />
  2275. <Property Name="CreateTime" Type="datetime" />
  2276. <Property Name="DeleteUserId" Type="int" />
  2277. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2278. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2279. <Property Name="IsDel" Type="int" />
  2280. </EntityType>
  2281. <EntityType Name="Grp_TourClientList">
  2282. <Key>
  2283. <PropertyRef Name="Id" />
  2284. </Key>
  2285. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2286. <Property Name="DiId" Type="int" />
  2287. <Property Name="IsAccompany" Type="int" />
  2288. <Property Name="ClientId" Type="int" />
  2289. <Property Name="ShippingSpaceTypeId" Type="int" />
  2290. <Property Name="ShippingSpaceSpecialNeeds" Type="varchar" MaxLength="500" />
  2291. <Property Name="HotelSpecialNeeds" Type="varchar" MaxLength="500" />
  2292. <Property Name="MealSpecialNeeds" Type="varchar" MaxLength="500" />
  2293. <Property Name="CreateUserId" Type="int" />
  2294. <Property Name="CreateTime" Type="datetime" />
  2295. <Property Name="DeleteUserId" Type="int" />
  2296. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2297. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2298. <Property Name="IsDel" Type="int" />
  2299. </EntityType>
  2300. <EntityType Name="Grp_TravelList">
  2301. <Key>
  2302. <PropertyRef Name="Id" />
  2303. </Key>
  2304. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2305. <Property Name="Diid" Type="int" />
  2306. <Property Name="Days" Type="int" />
  2307. <Property Name="Date" Type="varchar" MaxLength="100" />
  2308. <Property Name="WeekDay" Type="varchar" MaxLength="100" />
  2309. <Property Name="Traffic_First" Type="varchar" MaxLength="100" />
  2310. <Property Name="Traffic_Second" Type="varchar" MaxLength="100" />
  2311. <Property Name="Trip" Type="nvarchar(max)" />
  2312. <Property Name="Diffgroup" Type="int" />
  2313. <Property Name="Issel" Type="int" />
  2314. <Property Name="CreateUserId" Type="int" />
  2315. <Property Name="CreateTime" Type="datetime" />
  2316. <Property Name="DeleteUserId" Type="int" />
  2317. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2318. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2319. <Property Name="IsDel" Type="int" />
  2320. </EntityType>
  2321. <EntityType Name="Grp_VisaCommission">
  2322. <Key>
  2323. <PropertyRef Name="Id" />
  2324. </Key>
  2325. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2326. <Property Name="DiId" Type="int" />
  2327. <Property Name="UId" Type="int" />
  2328. <Property Name="Country" Type="varchar" MaxLength="50" />
  2329. <Property Name="Quantity" Type="int" />
  2330. <Property Name="CreateUserId" Type="int" />
  2331. <Property Name="CreateTime" Type="datetime" />
  2332. <Property Name="DeleteUserId" Type="int" />
  2333. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2334. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2335. <Property Name="IsDel" Type="int" />
  2336. </EntityType>
  2337. <EntityType Name="Grp_VisaFeeInfo">
  2338. <Key>
  2339. <PropertyRef Name="Id" />
  2340. </Key>
  2341. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2342. <Property Name="DiId" Type="int" />
  2343. <Property Name="IsChecked" Type="int" />
  2344. <Property Name="CountryVisaFeeId" Type="int" />
  2345. <Property Name="OBType" Type="int" />
  2346. <Property Name="AgencyFee" Type="decimal" Precision="10" Scale="2" />
  2347. <Property Name="OtherFee" Type="decimal" Precision="10" Scale="2" />
  2348. <Property Name="CreateUserId" Type="int" />
  2349. <Property Name="CreateTime" Type="datetime" />
  2350. <Property Name="DeleteUserId" Type="int" />
  2351. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2352. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2353. <Property Name="IsDel" Type="int" />
  2354. </EntityType>
  2355. <EntityType Name="Grp_VisaInfo">
  2356. <Key>
  2357. <PropertyRef Name="Id" />
  2358. </Key>
  2359. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2360. <Property Name="DIId" Type="int" />
  2361. <Property Name="VisaClient" Type="varchar" MaxLength="120" />
  2362. <Property Name="VisaPrice" Type="decimal" Precision="10" Scale="2" />
  2363. <Property Name="VisaCurrency" Type="int" />
  2364. <Property Name="IsThird" Type="int" />
  2365. <Property Name="PassengerType" Type="int" />
  2366. <Property Name="VisaNumber" Type="int" />
  2367. <Property Name="VisaFreeNumber" Type="int" />
  2368. <Property Name="CreateUserId" Type="int" />
  2369. <Property Name="CreateTime" Type="datetime" />
  2370. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2371. <Property Name="DeleteUserId" Type="int" />
  2372. <Property Name="Remark" Type="text" />
  2373. <Property Name="IsDel" Type="int" Nullable="false" />
  2374. <Property Name="visaDescription" Type="nvarchar" MaxLength="150" />
  2375. <Property Name="Area" Type="varchar" MaxLength="100" />
  2376. <Property Name="AgencyFeeType" Type="int" />
  2377. </EntityType>
  2378. <EntityType Name="Grp_VisaProgress">
  2379. <Key>
  2380. <PropertyRef Name="Id" />
  2381. </Key>
  2382. <Property Name="Id" Type="int" Nullable="false" />
  2383. <Property Name="DiId" Type="int" />
  2384. <Property Name="Country" Type="varchar" MaxLength="50" />
  2385. <Property Name="GetData" Type="varchar" MaxLength="50" />
  2386. <Property Name="GetDataTime" Type="datetime" />
  2387. <Property Name="GetPassport" Type="varchar" MaxLength="50" />
  2388. <Property Name="GetPassportTime" Type="datetime" />
  2389. <Property Name="FillData" Type="varchar" MaxLength="50" />
  2390. <Property Name="FillDataTime" Type="datetime" />
  2391. <Property Name="SendVisa" Type="varchar" MaxLength="50" />
  2392. <Property Name="SendVisaTime" Type="datetime" />
  2393. <Property Name="SignOut" Type="varchar" MaxLength="50" />
  2394. <Property Name="SignOutTime" Type="datetime" />
  2395. <Property Name="SendBackPassport" Type="varchar" MaxLength="50" />
  2396. <Property Name="SendBackPassporTime" Type="datetime" />
  2397. <Property Name="Receiver" Type="varchar" MaxLength="50" />
  2398. <Property Name="CreateUserId" Type="int" />
  2399. <Property Name="CreateTime" Type="datetime" />
  2400. <Property Name="DeleteUserId" Type="int" />
  2401. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2402. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2403. <Property Name="IsDel" Type="int" />
  2404. </EntityType>
  2405. <EntityType Name="Grp_VisaProgressCustomer">
  2406. <Key>
  2407. <PropertyRef Name="Id" />
  2408. </Key>
  2409. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2410. <Property Name="DiId" Type="int" />
  2411. <Property Name="CustomerId" Type="int" />
  2412. <Property Name="LastName" Type="varchar" MaxLength="50" Nullable="false" />
  2413. <Property Name="FirstName" Type="varchar" MaxLength="50" Nullable="false" />
  2414. <Property Name="Country" Type="varchar" MaxLength="50" Nullable="false" />
  2415. <Property Name="WorkStatus" Type="int" Nullable="false" />
  2416. <Property Name="LastOperatorId" Type="int" />
  2417. <Property Name="LastOperatorDt" Type="datetime" />
  2418. <Property Name="CreateUserId" Type="int" />
  2419. <Property Name="CreateTime" Type="datetime" />
  2420. <Property Name="DeleteUserId" Type="int" />
  2421. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2422. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2423. <Property Name="IsDel" Type="int" />
  2424. </EntityType>
  2425. <EntityType Name="Grp_VisaProgressCustomerPicture">
  2426. <Key>
  2427. <PropertyRef Name="Id" />
  2428. </Key>
  2429. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2430. <Property Name="VisaProgressCustomerId" Type="int" />
  2431. <Property Name="PicName" Type="varchar" MaxLength="100" Nullable="false" />
  2432. <Property Name="PicPath" Type="nvarchar" MaxLength="200" Nullable="false" />
  2433. <Property Name="PicType" Type="int" Nullable="false" />
  2434. <Property Name="CreateUserId" Type="int" />
  2435. <Property Name="CreateTime" Type="datetime" />
  2436. <Property Name="DeleteUserId" Type="int" />
  2437. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2438. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2439. <Property Name="IsDel" Type="int" />
  2440. </EntityType>
  2441. <EntityType Name="Grp_VisitingClients">
  2442. <Key>
  2443. <PropertyRef Name="Id" />
  2444. </Key>
  2445. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2446. <Property Name="DiId" Type="int" />
  2447. <Property Name="BeginDt" Type="datetime" />
  2448. <Property Name="EndDt" Type="datetime" />
  2449. <Property Name="CustomerUnit" Type="varchar" MaxLength="100" />
  2450. <Property Name="CustomerJob" Type="varchar" MaxLength="50" />
  2451. <Property Name="CustomerName" Type="varchar" MaxLength="30" />
  2452. <Property Name="CustomerContact" Type="varchar" MaxLength="30" />
  2453. <Property Name="CreateUserId" Type="int" />
  2454. <Property Name="CreateTime" Type="datetime" />
  2455. <Property Name="DeleteUserId" Type="int" />
  2456. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2457. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2458. <Property Name="IsDel" Type="int" />
  2459. </EntityType>
  2460. <EntityType Name="Per_AssessmentContentSetting">
  2461. <Key>
  2462. <PropertyRef Name="Id" />
  2463. </Key>
  2464. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2465. <Property Name="AssessmentSettingId" Type="int" Nullable="false" />
  2466. <Property Name="AssessmentProportionChi" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  2467. <Property Name="TargetValue" Type="varchar" MaxLength="50" Nullable="false" />
  2468. <Property Name="JobId" Type="int" Nullable="false" />
  2469. <Property Name="UserId" Type="int" Nullable="false" />
  2470. <Property Name="Fixed" Type="int" Nullable="false" />
  2471. <Property Name="CreateUserId" Type="int" />
  2472. <Property Name="CreateTime" Type="datetime" />
  2473. <Property Name="DeleteUserId" Type="int" />
  2474. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2475. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2476. <Property Name="IsDel" Type="int" />
  2477. </EntityType>
  2478. <EntityType Name="Per_AssessmentScore">
  2479. <Key>
  2480. <PropertyRef Name="Id" />
  2481. </Key>
  2482. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2483. <Property Name="YearMonth" Type="datetime" />
  2484. <Property Name="AssessmentContentSettingId" Type="int" />
  2485. <Property Name="Status" Type="nvarchar" MaxLength="500" />
  2486. <Property Name="SelfAssessment" Type="decimal" Precision="18" Scale="4" />
  2487. <Property Name="HigherUpAssessment" Type="decimal" Precision="18" Scale="4" />
  2488. <Property Name="Score" Type="decimal" Precision="18" Scale="4" />
  2489. <Property Name="ScoreTotal" Type="decimal" Precision="18" Scale="4" />
  2490. <Property Name="HigherUpConfig" Type="int" />
  2491. <Property Name="HigherUpUserId" Type="int" />
  2492. <Property Name="Details" Type="varchar" MaxLength="500" />
  2493. <Property Name="CreateUserId" Type="int" />
  2494. <Property Name="CreateTime" Type="datetime" />
  2495. <Property Name="DeleteUserId" Type="int" />
  2496. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2497. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2498. <Property Name="IsDel" Type="int" />
  2499. </EntityType>
  2500. <EntityType Name="Per_AssessmentSetting">
  2501. <Key>
  2502. <PropertyRef Name="Id" />
  2503. </Key>
  2504. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2505. <Property Name="Name" Type="varchar" MaxLength="50" Nullable="false" />
  2506. <Property Name="AssessmentProportion" Type="decimal" Precision="18" Scale="4" Nullable="false" />
  2507. <Property Name="AssessmentStandard" Type="varchar" MaxLength="500" />
  2508. <Property Name="ParentId" Type="int" Nullable="false" />
  2509. <Property Name="CreateUserId" Type="int" />
  2510. <Property Name="CreateTime" Type="datetime" />
  2511. <Property Name="DeleteUserId" Type="int" />
  2512. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2513. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2514. <Property Name="IsDel" Type="int" />
  2515. </EntityType>
  2516. <EntityType Name="Pm_GoodsInfo">
  2517. <Key>
  2518. <PropertyRef Name="Id" />
  2519. </Key>
  2520. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2521. <Property Name="Type" Type="int" />
  2522. <Property Name="Name" Type="varchar" MaxLength="100" />
  2523. <Property Name="SQ_Total" Type="decimal" Precision="8" Scale="2" />
  2524. <Property Name="OQ_Total" Type="decimal" Precision="8" Scale="2" />
  2525. <Property Name="PriceTotal" Type="decimal" Precision="10" Scale="2" />
  2526. <Property Name="StockQuantity" Type="decimal" Precision="8" Scale="2" />
  2527. <Property Name="Unit" Type="varchar" MaxLength="20" />
  2528. <Property Name="LastUpdateUserId" Type="int" />
  2529. <Property Name="LastUpdateTime" Type="datetime" />
  2530. <Property Name="CreateUserId" Type="int" />
  2531. <Property Name="CreateTime" Type="datetime" />
  2532. <Property Name="DeleteUserId" Type="int" />
  2533. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2534. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2535. <Property Name="IsDel" Type="int" />
  2536. </EntityType>
  2537. <EntityType Name="Pm_GoodsReceive">
  2538. <Key>
  2539. <PropertyRef Name="Id" />
  2540. </Key>
  2541. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2542. <Property Name="GroupId" Type="int" />
  2543. <Property Name="GoodsId" Type="int" />
  2544. <Property Name="Quantity" Type="decimal" Precision="8" Scale="2" />
  2545. <Property Name="Reason" Type="varchar" MaxLength="200" />
  2546. <Property Name="GoodsStorageInfo" Type="varchar" MaxLength="200" />
  2547. <Property Name="AuditStatus" Type="int" />
  2548. <Property Name="AuditUserId" Type="int" />
  2549. <Property Name="AuditTime" Type="datetime" />
  2550. <Property Name="CreateUserId" Type="int" />
  2551. <Property Name="CreateTime" Type="datetime" />
  2552. <Property Name="DeleteUserId" Type="int" />
  2553. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2554. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2555. <Property Name="IsDel" Type="int" />
  2556. </EntityType>
  2557. <EntityType Name="Pm_GoodsStorage">
  2558. <Key>
  2559. <PropertyRef Name="Id" />
  2560. </Key>
  2561. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2562. <Property Name="GoodsId" Type="int" />
  2563. <Property Name="BatchNo" Type="varchar" MaxLength="50" />
  2564. <Property Name="ReceiveQuantity" Type="decimal" Precision="10" Scale="2" />
  2565. <Property Name="Quantity" Type="decimal" Precision="10" Scale="2" />
  2566. <Property Name="UnitPrice" Type="decimal" Precision="10" Scale="2" />
  2567. <Property Name="TotalPrice" Type="decimal" Precision="10" Scale="2" />
  2568. <Property Name="SupplierName" Type="varchar" MaxLength="100" />
  2569. <Property Name="SupplierTel" Type="varchar" MaxLength="30" />
  2570. <Property Name="SupplierAddress" Type="varchar" MaxLength="200" />
  2571. <Property Name="SupplierSource" Type="varchar" MaxLength="200" />
  2572. <Property Name="StorageUserId" Type="int" />
  2573. <Property Name="StorageTime" Type="varchar" MaxLength="30" />
  2574. <Property Name="CreateUserId" Type="int" />
  2575. <Property Name="CreateTime" Type="datetime" />
  2576. <Property Name="DeleteUserId" Type="int" />
  2577. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2578. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2579. <Property Name="IsDel" Type="int" />
  2580. </EntityType>
  2581. <EntityType Name="Pm_TaskAllocation">
  2582. <Key>
  2583. <PropertyRef Name="Id" />
  2584. </Key>
  2585. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2586. <Property Name="DiId" Type="int" />
  2587. <Property Name="DepId" Type="int" />
  2588. <Property Name="TaskName" Type="varchar" MaxLength="50" />
  2589. <Property Name="TaskContent" Type="varchar" MaxLength="500" />
  2590. <Property Name="TaskPriority" Type="int" />
  2591. <Property Name="PredictBeginTime" Type="varchar" MaxLength="50" />
  2592. <Property Name="PredictEndTime" Type="varchar" MaxLength="50" />
  2593. <Property Name="Status" Type="int" />
  2594. <Property Name="IsComplete" Type="int" />
  2595. <Property Name="IsIntoPerformance" Type="int" />
  2596. <Property Name="CreateUserId" Type="int" />
  2597. <Property Name="CreateTime" Type="datetime" />
  2598. <Property Name="DeleteUserId" Type="int" />
  2599. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2600. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2601. <Property Name="IsDel" Type="int" />
  2602. </EntityType>
  2603. <EntityType Name="Pm_TaskJobRelevancy">
  2604. <Key>
  2605. <PropertyRef Name="Id" />
  2606. </Key>
  2607. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2608. <Property Name="PrimaryUserId" Type="int" Nullable="false" />
  2609. <Property Name="SubUserId" Type="int" Nullable="false" />
  2610. <Property Name="CreateUserId" Type="int" />
  2611. <Property Name="CreateTime" Type="datetime" />
  2612. <Property Name="DeleteUserId" Type="int" />
  2613. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2614. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2615. <Property Name="IsDel" Type="int" />
  2616. </EntityType>
  2617. <EntityType Name="Pm_TaskRelevanceUser">
  2618. <Key>
  2619. <PropertyRef Name="Id" />
  2620. </Key>
  2621. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2622. <Property Name="TAId" Type="int" />
  2623. <Property Name="UserId" Type="int" />
  2624. <Property Name="BeginTime" Type="varchar" MaxLength="50" />
  2625. <Property Name="OverTime" Type="varchar" MaxLength="50" />
  2626. <Property Name="TaskStatus" Type="int" />
  2627. <Property Name="Cause" Type="varchar" MaxLength="200" />
  2628. <Property Name="Score" Type="int" />
  2629. <Property Name="CreateUserId" Type="int" />
  2630. <Property Name="CreateTime" Type="datetime" />
  2631. <Property Name="DeleteUserId" Type="int" />
  2632. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2633. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2634. <Property Name="IsDel" Type="int" />
  2635. </EntityType>
  2636. <EntityType Name="Pm_WageIssueWorkingDay">
  2637. <Key>
  2638. <PropertyRef Name="Id" />
  2639. </Key>
  2640. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2641. <Property Name="YearMonth" Type="varchar" MaxLength="50" />
  2642. <Property Name="StartDate" Type="varchar" MaxLength="50" />
  2643. <Property Name="EndDate" Type="varchar" MaxLength="50" />
  2644. <Property Name="Workdays" Type="int" />
  2645. <Property Name="CreateUserId" Type="int" />
  2646. <Property Name="CreateTime" Type="datetime" />
  2647. <Property Name="DeleteUserId" Type="int" />
  2648. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2649. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2650. <Property Name="IsDel" Type="int" />
  2651. </EntityType>
  2652. <EntityType Name="Pm_WageSheet">
  2653. <Key>
  2654. <PropertyRef Name="Id" />
  2655. </Key>
  2656. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2657. <Property Name="UserId" Type="int" />
  2658. <Property Name="YearMonth" Type="varchar" MaxLength="50" />
  2659. <Property Name="StartDate" Type="varchar" MaxLength="50" />
  2660. <Property Name="EndDate" Type="varchar" MaxLength="50" />
  2661. <Property Name="WorkDays" Type="int" />
  2662. <Property Name="RegularDays" Type="int" />
  2663. <Property Name="Basic" Type="decimal" Precision="8" Scale="2" />
  2664. <Property Name="Floats" Type="decimal" Precision="8" Scale="2" />
  2665. <Property Name="PostAllowance" Type="decimal" Precision="8" Scale="2" />
  2666. <Property Name="GarmentWashSubsidies" Type="decimal" Precision="8" Scale="2" />
  2667. <Property Name="CommunicationSubsidies" Type="decimal" Precision="8" Scale="2" />
  2668. <Property Name="TrafficSubsidies" Type="decimal" Precision="8" Scale="2" />
  2669. <Property Name="InformationSecurityFee" Type="decimal" Precision="8" Scale="2" />
  2670. <Property Name="OtherHandle" Type="decimal" Precision="8" Scale="2" />
  2671. <Property Name="OperationBonus" Type="decimal" Precision="8" Scale="2" />
  2672. <Property Name="SpecialAllowance" Type="decimal" Precision="8" Scale="2" />
  2673. <Property Name="OtherSubsidies" Type="decimal" Precision="8" Scale="2" />
  2674. <Property Name="WithholdingInsurance" Type="decimal" Precision="8" Scale="2" />
  2675. <Property Name="Mealsupplement" Type="decimal" Precision="8" Scale="2" />
  2676. <Property Name="ReservedFunds" Type="decimal" Precision="8" Scale="2" />
  2677. <Property Name="GroupCost" Type="decimal" Precision="8" Scale="2" />
  2678. <Property Name="WithholdingTax" Type="decimal" Precision="8" Scale="2" />
  2679. <Property Name="SickLeave" Type="decimal" Precision="8" Scale="2" />
  2680. <Property Name="SomethingFalse" Type="decimal" Precision="8" Scale="2" />
  2681. <Property Name="LateTo" Type="decimal" Precision="8" Scale="2" />
  2682. <Property Name="LeaveEarly" Type="decimal" Precision="8" Scale="2" />
  2683. <Property Name="Absenteeism" Type="decimal" Precision="8" Scale="2" />
  2684. <Property Name="NotPunch" Type="decimal" Precision="8" Scale="2" />
  2685. <Property Name="OtherDeductions" Type="decimal" Precision="8" Scale="2" />
  2686. <Property Name="Ex_ItemsRemark" Type="varchar(max)" />
  2687. <Property Name="Should" Type="decimal" Precision="8" Scale="2" />
  2688. <Property Name="TotalDeductions" Type="decimal" Precision="8" Scale="2" />
  2689. <Property Name="TotalRealHair" Type="decimal" Precision="8" Scale="2" />
  2690. <Property Name="AfterTax" Type="decimal" Precision="8" Scale="2" />
  2691. <Property Name="IsLock" Type="int" />
  2692. <Property Name="IsSure" Type="int" />
  2693. <Property Name="LastUpdateUserId" Type="int" />
  2694. <Property Name="LastUpdateDt" Type="datetime" />
  2695. <Property Name="CreateUserId" Type="int" />
  2696. <Property Name="CreateTime" Type="datetime" />
  2697. <Property Name="DeleteUserId" Type="int" />
  2698. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2699. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2700. <Property Name="IsDel" Type="int" />
  2701. </EntityType>
  2702. <EntityType Name="Res_AirCompany">
  2703. <Key>
  2704. <PropertyRef Name="Id" />
  2705. </Key>
  2706. <Property Name="Id" Type="int" Nullable="false" />
  2707. <Property Name="ShortCode" Type="varchar" MaxLength="100" />
  2708. <Property Name="CnName" Type="varchar" MaxLength="100" />
  2709. <Property Name="EnName" Type="varchar" MaxLength="100" />
  2710. <Property Name="CreateUserId" Type="int" />
  2711. <Property Name="CreateTime" Type="datetime" />
  2712. <Property Name="DeleteUserId" Type="int" />
  2713. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2714. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2715. <Property Name="IsDel" Type="int" />
  2716. </EntityType>
  2717. <EntityType Name="Res_AirTicketAgent">
  2718. <Key>
  2719. <PropertyRef Name="Id" />
  2720. </Key>
  2721. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2722. <Property Name="Name" Type="nvarchar" MaxLength="200" />
  2723. <Property Name="Account" Type="nvarchar" MaxLength="200" />
  2724. <Property Name="Bank" Type="nvarchar" MaxLength="200" />
  2725. <Property Name="CreateUserId" Type="int" />
  2726. <Property Name="CreateTime" Type="datetime" />
  2727. <Property Name="DeleteUserId" Type="int" />
  2728. <Property Name="DeleteTime" Type="varchar" MaxLength="50" />
  2729. <Property Name="Remark" Type="nvarchar(max)" />
  2730. <Property Name="IsDel" Type="int" />
  2731. </EntityType>
  2732. <EntityType Name="Res_AskData">
  2733. <Key>
  2734. <PropertyRef Name="Id" />
  2735. </Key>
  2736. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2737. <Property Name="DeleName" Type="varchar" MaxLength="100" />
  2738. <Property Name="Country" Type="varchar" MaxLength="100" />
  2739. <Property Name="Area" Type="varchar" MaxLength="500" />
  2740. <Property Name="UnitName" Type="varchar" MaxLength="200" />
  2741. <Property Name="Field" Type="varchar" MaxLength="100" />
  2742. <Property Name="TalkCase" Type="varchar" MaxLength="500" />
  2743. <Property Name="CreateUserId" Type="int" />
  2744. <Property Name="CreateTime" Type="datetime" />
  2745. <Property Name="DeleteUserId" Type="int" />
  2746. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2747. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2748. <Property Name="IsDel" Type="int" />
  2749. </EntityType>
  2750. <EntityType Name="Res_BasicInsuranceCost">
  2751. <Key>
  2752. <PropertyRef Name="Id" />
  2753. </Key>
  2754. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2755. <Property Name="IsSchengen" Type="int" Nullable="false" />
  2756. <Property Name="CountryName" Type="varchar" MaxLength="100" Nullable="false" />
  2757. <Property Name="Cost" Type="decimal" Precision="10" Scale="2" Nullable="false" />
  2758. <Property Name="CreateUserId" Type="int" />
  2759. <Property Name="CreateTime" Type="datetime" />
  2760. <Property Name="DeleteUserId" Type="int" />
  2761. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2762. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2763. <Property Name="IsDel" Type="int" />
  2764. </EntityType>
  2765. <EntityType Name="Res_CarData">
  2766. <Key>
  2767. <PropertyRef Name="Id" />
  2768. </Key>
  2769. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2770. <Property Name="UnitArea" Type="varchar" MaxLength="100" />
  2771. <Property Name="UnitName" Type="varchar" MaxLength="200" />
  2772. <Property Name="Address" Type="varchar" MaxLength="300" />
  2773. <Property Name="Contact" Type="varchar" MaxLength="100" />
  2774. <Property Name="ContactTel" Type="varchar" MaxLength="100" />
  2775. <Property Name="ContactEmail" Type="varchar" MaxLength="100" />
  2776. <Property Name="ContactFax" Type="varchar" MaxLength="100" />
  2777. <Property Name="CarDes" Type="varchar" MaxLength="200" />
  2778. <Property Name="CarPicPaths" Type="varchar" MaxLength="200" />
  2779. <Property Name="OtherInfo" Type="text" />
  2780. <Property Name="Score" Type="int" />
  2781. <Property Name="QualificationScore" Type="varchar" MaxLength="50" />
  2782. <Property Name="CarAgeScore" Type="varchar" MaxLength="50" />
  2783. <Property Name="CleanImgScore" Type="varchar" MaxLength="50" />
  2784. <Property Name="SmellScore" Type="varchar" MaxLength="50" />
  2785. <Property Name="WaterPaperScore" Type="varchar" MaxLength="50" />
  2786. <Property Name="HardwareScore" Type="varchar" MaxLength="50" />
  2787. <Property Name="TimeScore" Type="varchar" MaxLength="50" />
  2788. <Property Name="SafetyScore" Type="varchar" MaxLength="50" />
  2789. <Property Name="DrivingAgeScore" Type="varchar" MaxLength="50" />
  2790. <Property Name="CreateUserId" Type="int" />
  2791. <Property Name="CreateTime" Type="datetime" />
  2792. <Property Name="DeleteUserId" Type="int" />
  2793. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2794. <Property Name="Remark" Type="text" />
  2795. <Property Name="IsDel" Type="int" />
  2796. <Property Name="LastUpdateUserId " Type="int" />
  2797. <Property Name="LastUpdateTime " Type="datetime" />
  2798. </EntityType>
  2799. <EntityType Name="Res_CarGuides">
  2800. <Key>
  2801. <PropertyRef Name="Id" />
  2802. </Key>
  2803. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2804. <Property Name="Country" Type="varchar" MaxLength="50" />
  2805. <Property Name="City" Type="varchar" MaxLength="50" />
  2806. <Property Name="ServiceType" Type="varchar" MaxLength="50" />
  2807. <Property Name="CarType" Type="varchar" MaxLength="50" />
  2808. <Property Name="Offer" Type="decimal" Precision="10" Scale="2" />
  2809. <Property Name="CGCost" Type="decimal" Precision="10" Scale="2" />
  2810. <Property Name="RuningTime" Type="int" />
  2811. <Property Name="OvertimeFee" Type="decimal" Precision="10" Scale="2" />
  2812. <Property Name="CGOvertimeFee" Type="decimal" Precision="10" Scale="2" />
  2813. <Property Name="Currency" Type="varchar" MaxLength="10" />
  2814. <Property Name="CreateUserId" Type="int" />
  2815. <Property Name="CreateTime" Type="datetime" />
  2816. <Property Name="DeleteUserId" Type="int" />
  2817. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2818. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2819. <Property Name="IsDel" Type="int" />
  2820. </EntityType>
  2821. <EntityType Name="Res_CarInfo">
  2822. <Key>
  2823. <PropertyRef Name="Id" />
  2824. </Key>
  2825. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2826. <Property Name="Country" Type="varchar" MaxLength="50" />
  2827. <Property Name="City" Type="varchar" MaxLength="50" />
  2828. <Property Name="ServiceType" Type="varchar" MaxLength="50" />
  2829. <Property Name="CarType" Type="varchar" MaxLength="50" />
  2830. <Property Name="RuningTime" Type="int" />
  2831. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  2832. <Property Name="OvertimeFee" Type="decimal" Precision="10" Scale="2" />
  2833. <Property Name="Currency" Type="varchar" MaxLength="10" />
  2834. <Property Name="CreateUserId" Type="int" />
  2835. <Property Name="CreateTime" Type="datetime" />
  2836. <Property Name="DeleteUserId" Type="int" />
  2837. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2838. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2839. <Property Name="IsDel" Type="int" />
  2840. </EntityType>
  2841. <EntityType Name="Res_CompanyEnglishComparison">
  2842. <Key>
  2843. <PropertyRef Name="Id" />
  2844. </Key>
  2845. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2846. <Property Name="zhName" Type="varchar" MaxLength="500" Nullable="false" />
  2847. <Property Name="enName" Type="nvarchar" MaxLength="500" Nullable="false" />
  2848. <Property Name="CreateUserId" Type="int" />
  2849. <Property Name="CreateTime" Type="datetime" />
  2850. <Property Name="DeleteUserId" Type="int" />
  2851. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2852. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2853. <Property Name="IsDel" Type="int" />
  2854. </EntityType>
  2855. <EntityType Name="Res_CountryFeeCost">
  2856. <Key>
  2857. <PropertyRef Name="Id" />
  2858. </Key>
  2859. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2860. <Property Name="VisaContinent" Type="varchar" MaxLength="50" />
  2861. <Property Name="VisaCountry" Type="varchar" MaxLength="50" />
  2862. <Property Name="IsVisaExemption" Type="int" />
  2863. <Property Name="IsVisaOnArrival" Type="int" />
  2864. <Property Name="IsElectronicSignature" Type="int" />
  2865. <Property Name="VisaPrice" Type="decimal" Precision="10" Scale="2" />
  2866. <Property Name="VisaPriceDesc" Type="varchar" MaxLength="300" />
  2867. <Property Name="VisaType" Type="varchar" MaxLength="50" />
  2868. <Property Name="GrandBusinessAgencyFee" Type="decimal" Precision="10" Scale="2" />
  2869. <Property Name="PettyBusinessAgencyFee" Type="decimal" Precision="10" Scale="2" />
  2870. <Property Name="VisaTime" Type="varchar" MaxLength="50" />
  2871. <Property Name="IsUrgent" Type="int" />
  2872. <Property Name="UrgentTime" Type="varchar" MaxLength="50" />
  2873. <Property Name="UrgentPrice" Type="decimal" Precision="10" Scale="2" />
  2874. <Property Name="UrgentPriceDesc" Type="varchar" MaxLength="300" />
  2875. <Property Name="VisaAddress" Type="varchar" MaxLength="255" />
  2876. <Property Name="LastUpdateTime" Type="varchar" MaxLength="30" />
  2877. <Property Name="CreateUserId" Type="int" />
  2878. <Property Name="CreateTime" Type="datetime" />
  2879. <Property Name="DeleteUserId" Type="int" />
  2880. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2881. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2882. <Property Name="IsDel" Type="int" />
  2883. </EntityType>
  2884. <EntityType Name="Res_GuidesInfo">
  2885. <Key>
  2886. <PropertyRef Name="Id" />
  2887. </Key>
  2888. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2889. <Property Name="Country" Type="varchar" MaxLength="50" />
  2890. <Property Name="City" Type="varchar" MaxLength="50" />
  2891. <Property Name="ServiceType" Type="varchar" MaxLength="50" />
  2892. <Property Name="When" Type="int" />
  2893. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  2894. <Property Name="TranslationPrice" Type="decimal" Precision="10" Scale="2" />
  2895. <Property Name="OvertimeFee" Type="decimal" Precision="10" Scale="2" />
  2896. <Property Name="Currency" Type="varchar" MaxLength="10" />
  2897. <Property Name="CreateUserId" Type="int" />
  2898. <Property Name="CreateTime" Type="datetime" />
  2899. <Property Name="DeleteUserId" Type="int" />
  2900. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2901. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2902. <Property Name="IsDel" Type="int" />
  2903. </EntityType>
  2904. <EntityType Name="Res_HotelData">
  2905. <Key>
  2906. <PropertyRef Name="Id" />
  2907. </Key>
  2908. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2909. <Property Name="City" Type="varchar" MaxLength="100" />
  2910. <Property Name="Name" Type="varchar" MaxLength="100" />
  2911. <Property Name="Level" Type="varchar" MaxLength="100" />
  2912. <Property Name="Address" Type="varchar" MaxLength="225" />
  2913. <Property Name="Tel" Type="varchar" MaxLength="50" />
  2914. <Property Name="Fax" Type="varchar" MaxLength="50" />
  2915. <Property Name="Contact" Type="varchar" MaxLength="100" />
  2916. <Property Name="ContactPhone" Type="varchar" MaxLength="50" />
  2917. <Property Name="OtherInformation" Type="varchar" MaxLength="500" />
  2918. <Property Name="CreateUserId" Type="int" />
  2919. <Property Name="CreateTime" Type="datetime" />
  2920. <Property Name="DeleteUserId" Type="int" />
  2921. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2922. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2923. <Property Name="IsDel" Type="int" />
  2924. </EntityType>
  2925. <EntityType Name="Res_InvitationOfficialActivityData">
  2926. <Key>
  2927. <PropertyRef Name="Id" />
  2928. </Key>
  2929. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2930. <Property Name="Country" Type="nvarchar(max)" />
  2931. <Property Name="City" Type="nvarchar(max)" />
  2932. <Property Name="UnitName" Type="nvarchar(max)" />
  2933. <Property Name="UnitWeb" Type="nvarchar(max)" />
  2934. <Property Name="Field" Type="nvarchar(max)" />
  2935. <Property Name="Address" Type="nvarchar(max)" />
  2936. <Property Name="UnitInfo" Type="nvarchar(max)" />
  2937. <Property Name="Contact" Type="nvarchar(max)" />
  2938. <Property Name="Job" Type="nvarchar(max)" />
  2939. <Property Name="Tel" Type="nvarchar(max)" />
  2940. <Property Name="Email" Type="nvarchar(max)" />
  2941. <Property Name="WeChat" Type="nvarchar(max)" />
  2942. <Property Name="FaceBook" Type="nvarchar(max)" />
  2943. <Property Name="Ins" Type="nvarchar(max)" />
  2944. <Property Name="Delegation" Type="nvarchar(max)" />
  2945. <Property Name="FileName" Type="nvarchar(max)" />
  2946. <Property Name="FilePath" Type="nvarchar(max)" />
  2947. <Property Name="SndFileName" Type="nvarchar(max)" />
  2948. <Property Name="SndFilePath" Type="nvarchar(max)" />
  2949. <Property Name="Fax" Type="nvarchar(max)" />
  2950. <Property Name="OtherInfo" Type="nvarchar(max)" />
  2951. <Property Name="Background" Type="nvarchar(max)" />
  2952. <Property Name="CreateUserId" Type="int" />
  2953. <Property Name="CreateTime" Type="datetime" />
  2954. <Property Name="DeleteUserId" Type="int" />
  2955. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2956. <Property Name="Remark" Type="nvarchar(max)" />
  2957. <Property Name="IsDel" Type="int" />
  2958. <Property Name="LastUpdateUserId " Type="int" />
  2959. <Property Name="LastUpdateTime" Type="datetime" />
  2960. </EntityType>
  2961. <!--生成过程中发现错误:
  2962. 警告 6002: 表/视图“OA2023DB.dbo.Res_InvitationOfficialActivityData_Data”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  2963. <EntityType Name="Res_InvitationOfficialActivityData_Data">
  2964. <Key>
  2965. <PropertyRef Name="Id" />
  2966. </Key>
  2967. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  2968. <Property Name="Country" Type="nvarchar(max)" />
  2969. <Property Name="City" Type="nvarchar(max)" />
  2970. <Property Name="UnitName" Type="nvarchar(max)" />
  2971. <Property Name="UnitWeb" Type="nvarchar(max)" />
  2972. <Property Name="Field" Type="nvarchar(max)" />
  2973. <Property Name="Address" Type="nvarchar(max)" />
  2974. <Property Name="UnitInfo" Type="nvarchar(max)" />
  2975. <Property Name="Contact" Type="nvarchar(max)" />
  2976. <Property Name="Job" Type="nvarchar(max)" />
  2977. <Property Name="Tel" Type="nvarchar(max)" />
  2978. <Property Name="Email" Type="nvarchar(max)" />
  2979. <Property Name="WeChat" Type="nvarchar(max)" />
  2980. <Property Name="FaceBook" Type="nvarchar(max)" />
  2981. <Property Name="Ins" Type="nvarchar(max)" />
  2982. <Property Name="Delegation" Type="nvarchar(max)" />
  2983. <Property Name="FileName" Type="nvarchar(max)" />
  2984. <Property Name="FilePath" Type="nvarchar(max)" />
  2985. <Property Name="SndFileName" Type="nvarchar(max)" />
  2986. <Property Name="SndFilePath" Type="nvarchar(max)" />
  2987. <Property Name="Fax" Type="nvarchar(max)" />
  2988. <Property Name="OtherInfo" Type="nvarchar(max)" />
  2989. <Property Name="Background" Type="nvarchar(max)" />
  2990. <Property Name="CreateUserId" Type="int" />
  2991. <Property Name="CreateTime" Type="datetime" />
  2992. <Property Name="DeleteUserId" Type="int" />
  2993. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  2994. <Property Name="Remark" Type="varchar" MaxLength="500" />
  2995. <Property Name="IsDel" Type="int" />
  2996. </EntityType>
  2997. <EntityType Name="Res_ItemDetail">
  2998. <Key>
  2999. <PropertyRef Name="Id" />
  3000. </Key>
  3001. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3002. <Property Name="VendorId" Type="int" />
  3003. <Property Name="ItemName" Type="varchar" MaxLength="50" />
  3004. <Property Name="ItemTypeId" Type="int" />
  3005. <Property Name="MinRate" Type="decimal" Precision="9" Scale="2" />
  3006. <Property Name="MinDt" Type="datetime" />
  3007. <Property Name="MaxRate" Type="decimal" Precision="9" Scale="2" />
  3008. <Property Name="MaxDt" Type="datetime" />
  3009. <Property Name="CurrRate" Type="decimal" Precision="9" Scale="2" />
  3010. <Property Name="CurrDt" Type="datetime" />
  3011. <Property Name="CreateUserId" Type="int" />
  3012. <Property Name="CreateTime" Type="datetime" />
  3013. <Property Name="DeleteUserId" Type="int" />
  3014. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3015. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3016. <Property Name="IsDel" Type="int" />
  3017. </EntityType>
  3018. <EntityType Name="Res_ItemType">
  3019. <Key>
  3020. <PropertyRef Name="Id" />
  3021. </Key>
  3022. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3023. <Property Name="SdId" Type="int" />
  3024. <Property Name="TypeName" Type="varchar" MaxLength="50" />
  3025. <Property Name="CreateUserId" Type="int" />
  3026. <Property Name="CreateTime" Type="datetime" />
  3027. <Property Name="DeleteUserId" Type="int" />
  3028. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3029. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3030. <Property Name="IsDel" Type="int" />
  3031. </EntityType>
  3032. <EntityType Name="Res_ItemVendor">
  3033. <Key>
  3034. <PropertyRef Name="Id" />
  3035. </Key>
  3036. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3037. <Property Name="BusRange" Type="varchar" MaxLength="50" />
  3038. <Property Name="FullName" Type="varchar" MaxLength="100" />
  3039. <Property Name="ShortName" Type="varchar" MaxLength="50" />
  3040. <Property Name="Address" Type="varchar" MaxLength="100" />
  3041. <Property Name="Linker" Type="varchar" MaxLength="50" />
  3042. <Property Name="Job" Type="varchar" MaxLength="50" />
  3043. <Property Name="Mobile" Type="varchar" MaxLength="50" />
  3044. <Property Name="CreateUserId" Type="int" />
  3045. <Property Name="CreateTime" Type="datetime" />
  3046. <Property Name="DeleteUserId" Type="int" />
  3047. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3048. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3049. <Property Name="IsDel" Type="int" />
  3050. </EntityType>
  3051. <!--生成过程中发现错误:
  3052. 警告 6002: 表/视图“OA2023DB.dbo.Res_LocalGuideData”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  3053. <EntityType Name="Res_LocalGuideData">
  3054. <Key>
  3055. <PropertyRef Name="Id" />
  3056. </Key>
  3057. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3058. <Property Name="UnitArea" Type="nvarchar" MaxLength="200" />
  3059. <Property Name="UnitName" Type="nvarchar" MaxLength="200" />
  3060. <Property Name="Address" Type="nvarchar" MaxLength="500" />
  3061. <Property Name="Contact" Type="nvarchar" MaxLength="100" />
  3062. <Property Name="ContactTel" Type="nvarchar" MaxLength="100" />
  3063. <Property Name="ContactEmail" Type="nvarchar" MaxLength="100" />
  3064. <Property Name="ContactFax" Type="nvarchar" MaxLength="100" />
  3065. <Property Name="OtherInfo" Type="nvarchar(max)" />
  3066. <Property Name="Score" Type="int" />
  3067. <Property Name="SuitScore" Type="nvarchar" MaxLength="50" />
  3068. <Property Name="ServeScore" Type="nvarchar" MaxLength="50" />
  3069. <Property Name="TalkProScore" Type="nvarchar" MaxLength="50" />
  3070. <Property Name="TimeScore" Type="nvarchar" MaxLength="50" />
  3071. <Property Name="FitScore" Type="nvarchar" MaxLength="50" />
  3072. <Property Name="StrainScore" Type="nvarchar" MaxLength="50" />
  3073. <Property Name="LocalAndChineseScore" Type="nvarchar" MaxLength="50" />
  3074. <Property Name="StaffType" Type="int" />
  3075. <Property Name="LastUpdateTime" Type="datetime" />
  3076. <Property Name="CreateUserId" Type="int" />
  3077. <Property Name="CreateTime" Type="datetime" />
  3078. <Property Name="DeleteUserId" Type="int" />
  3079. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3080. <Property Name="Remark" Type="nvarchar(max)" />
  3081. <Property Name="IsDel" Type="int" />
  3082. <Property Name="LastUpdateUserId" Type="int" />
  3083. </EntityType>
  3084. <EntityType Name="Res_MediaSuppliers">
  3085. <Key>
  3086. <PropertyRef Name="Id" />
  3087. </Key>
  3088. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3089. <Property Name="TypeId" Type="int" />
  3090. <Property Name="Privince" Type="nvarchar" MaxLength="240" />
  3091. <Property Name="City" Type="nvarchar" MaxLength="240" />
  3092. <Property Name="UnitName" Type="nvarchar" MaxLength="400" />
  3093. <Property Name="UnitAbbreviation" Type="nvarchar" MaxLength="400" />
  3094. <Property Name="UnitAddress" Type="nvarchar" MaxLength="240" />
  3095. <Property Name="Contact" Type="nvarchar" MaxLength="200" />
  3096. <Property Name="Sex" Type="int" />
  3097. <Property Name="Post" Type="nvarchar" MaxLength="200" />
  3098. <Property Name="Fax" Type="nvarchar" MaxLength="200" />
  3099. <Property Name="Tel" Type="nvarchar" MaxLength="200" />
  3100. <Property Name="Email" Type="nvarchar" MaxLength="200" />
  3101. <Property Name="WeChat" Type="nvarchar" MaxLength="200" />
  3102. <Property Name="CreateUserId" Type="int" />
  3103. <Property Name="CreateTime" Type="datetime" />
  3104. <Property Name="DeleteUserId" Type="int" />
  3105. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3106. <Property Name="Remark" Type="nvarchar" MaxLength="500" />
  3107. <Property Name="IsDel" Type="int" />
  3108. </EntityType>
  3109. <EntityType Name="Res_Memo">
  3110. <Key>
  3111. <PropertyRef Name="Id" />
  3112. </Key>
  3113. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3114. <Property Name="DepartmentId" Type="int" />
  3115. <Property Name="ReadLevel" Type="int" />
  3116. <Property Name="Title" Type="nvarchar" MaxLength="100" />
  3117. <Property Name="Abstracts" Type="nvarchar" MaxLength="100" />
  3118. <Property Name="MDFilePath" Type="nvarchar" MaxLength="200" />
  3119. <Property Name="LastedEditDt" Type="datetime" />
  3120. <Property Name="LastedEditor" Type="int" />
  3121. <Property Name="CreateUserId" Type="int" />
  3122. <Property Name="CreateTime" Type="datetime" />
  3123. <Property Name="DeleteUserId" Type="int" />
  3124. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3125. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3126. <Property Name="IsDel" Type="int" />
  3127. </EntityType>
  3128. <EntityType Name="Res_OfficialActivities">
  3129. <Key>
  3130. <PropertyRef Name="Id" />
  3131. </Key>
  3132. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3133. <Property Name="DiId" Type="int" />
  3134. <Property Name="DataSource" Type="int" />
  3135. <Property Name="Type" Type="int" />
  3136. <Property Name="Country" Type="nvarchar" MaxLength="100" />
  3137. <Property Name="Area" Type="nvarchar" MaxLength="200" />
  3138. <Property Name="Client" Type="nvarchar(max)" />
  3139. <Property Name="Date" Type="varchar" MaxLength="120" />
  3140. <Property Name="Time" Type="varchar" MaxLength="120" />
  3141. <Property Name="Address" Type="nvarchar(max)" />
  3142. <Property Name="Contact" Type="nvarchar" MaxLength="120" />
  3143. <Property Name="Job" Type="nvarchar" MaxLength="50" />
  3144. <Property Name="Tel" Type="nvarchar" MaxLength="120" />
  3145. <Property Name="OfficialForm" Type="int" />
  3146. <Property Name="Field" Type="nvarchar" MaxLength="100" />
  3147. <Property Name="ReqSample" Type="nvarchar" MaxLength="500" />
  3148. <Property Name="Setting" Type="nvarchar(max)" />
  3149. <Property Name="Dresscode" Type="nvarchar" MaxLength="120" />
  3150. <Property Name="Attendees" Type="nvarchar(max)" />
  3151. <Property Name="IsNeedTrans" Type="int" />
  3152. <Property Name="Translators" Type="nvarchar" MaxLength="120" />
  3153. <Property Name="Language" Type="nvarchar" MaxLength="120" />
  3154. <Property Name="Trip" Type="nvarchar(max)" />
  3155. <Property Name="ConfirmTheInvitation" Type="int" />
  3156. <Property Name="ScreenshotOfMailUrl" Type="nvarchar" MaxLength="500" />
  3157. <Property Name="EmailOrWeChat" Type="varchar" MaxLength="200" />
  3158. <Property Name="Website" Type="varchar" MaxLength="100" />
  3159. <Property Name="Nature" Type="varchar" MaxLength="250" />
  3160. <Property Name="CreateUserId" Type="int" />
  3161. <Property Name="CreateTime" Type="datetime" />
  3162. <Property Name="DeleteUserId" Type="int" />
  3163. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3164. <Property Name="Remark" Type="nvarchar" MaxLength="500" />
  3165. <Property Name="IsDel" Type="int" />
  3166. <Property Name="IsSubmitApproval" Type="int" />
  3167. <Property Name="IsPay" Type="int" />
  3168. <Property Name="DataId" Type="int" />
  3169. </EntityType>
  3170. <!--生成过程中发现错误:
  3171. 警告 6002: 表/视图“OA2023DB.dbo.Res_OfficialActivities0426”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  3172. <EntityType Name="Res_OfficialActivities0426">
  3173. <Key>
  3174. <PropertyRef Name="Id" />
  3175. <PropertyRef Name="DiId" />
  3176. </Key>
  3177. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3178. <Property Name="DiId" Type="int" Nullable="false" />
  3179. <Property Name="Type" Type="int" />
  3180. <Property Name="Client" Type="varchar(max)" />
  3181. <Property Name="Date" Type="varchar" MaxLength="120" />
  3182. <Property Name="Time" Type="varchar" MaxLength="120" />
  3183. <Property Name="Address" Type="varchar(max)" />
  3184. <Property Name="Contact" Type="varchar" MaxLength="120" />
  3185. <Property Name="Job" Type="varchar" MaxLength="50" />
  3186. <Property Name="Tel" Type="varchar" MaxLength="120" />
  3187. <Property Name="OfficialForm" Type="int" />
  3188. <Property Name="Setting" Type="varchar(max)" />
  3189. <Property Name="Dresscode" Type="varchar" MaxLength="120" />
  3190. <Property Name="Attendees" Type="varchar(max)" />
  3191. <Property Name="IsNeedTrans" Type="int" />
  3192. <Property Name="Translators" Type="nvarchar" MaxLength="255" />
  3193. <Property Name="language" Type="varchar" MaxLength="120" />
  3194. <Property Name="Trip" Type="varchar(max)" />
  3195. <Property Name="CreateUserId" Type="int" />
  3196. <Property Name="CreateTime" Type="datetime" />
  3197. <Property Name="DeleteUserId" Type="int" />
  3198. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3199. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3200. <Property Name="Isdel" Type="int" />
  3201. </EntityType>
  3202. <EntityType Name="Res_PositionEnglishComparison">
  3203. <Key>
  3204. <PropertyRef Name="Id" />
  3205. </Key>
  3206. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3207. <Property Name="zhName" Type="varchar" MaxLength="200" Nullable="false" />
  3208. <Property Name="enName" Type="varchar" MaxLength="500" Nullable="false" />
  3209. <Property Name="CreateUserId" Type="int" />
  3210. <Property Name="CreateTime" Type="datetime" />
  3211. <Property Name="DeleteUserId" Type="int" />
  3212. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3213. <Property Name="Remark" Type="varchar" MaxLength="100" />
  3214. <Property Name="IsDel" Type="int" />
  3215. </EntityType>
  3216. <EntityType Name="Res_ScenicSpotInfo">
  3217. <Key>
  3218. <PropertyRef Name="Id" />
  3219. </Key>
  3220. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3221. <Property Name="Country" Type="varchar" MaxLength="50" />
  3222. <Property Name="City" Type="varchar" MaxLength="50" />
  3223. <Property Name="ScenicSpot" Type="varchar" MaxLength="100" />
  3224. <Property Name="ScenicSpotDetail" Type="varchar" MaxLength="100" />
  3225. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  3226. <Property Name="Rate" Type="decimal" Precision="10" Scale="2" />
  3227. <Property Name="Currency" Type="varchar" MaxLength="10" />
  3228. <Property Name="Address" Type="varchar" MaxLength="200" />
  3229. <Property Name="CreateUserId" Type="int" />
  3230. <Property Name="CreateTime" Type="datetime" />
  3231. <Property Name="DeleteUserId" Type="int" />
  3232. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3233. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3234. <Property Name="IsDel" Type="int" />
  3235. </EntityType>
  3236. <EntityType Name="Res_ThreeCode">
  3237. <Key>
  3238. <PropertyRef Name="Id" />
  3239. </Key>
  3240. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3241. <Property Name="Three" Type="varchar" MaxLength="20" />
  3242. <Property Name="Four" Type="varchar" MaxLength="20" />
  3243. <Property Name="Country" Type="varchar" MaxLength="100" />
  3244. <Property Name="City" Type="varchar" MaxLength="100" />
  3245. <Property Name="AirPort" Type="varchar" MaxLength="100" />
  3246. <Property Name="AirPort_En" Type="varchar" MaxLength="100" />
  3247. <Property Name="CreateUserId" Type="int" />
  3248. <Property Name="CreateTime" Type="datetime" />
  3249. <Property Name="DeleteUserId" Type="int" />
  3250. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3251. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3252. <Property Name="IsDel" Type="int" />
  3253. </EntityType>
  3254. <EntityType Name="Res_TranslatorLibrary">
  3255. <Key>
  3256. <PropertyRef Name="Id" />
  3257. </Key>
  3258. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3259. <Property Name="Area" Type="nvarchar" MaxLength="200" />
  3260. <Property Name="Name" Type="nvarchar" MaxLength="200" />
  3261. <Property Name="Sex" Type="int" />
  3262. <Property Name="Photo" Type="text" />
  3263. <Property Name="Tel" Type="nvarchar" MaxLength="100" />
  3264. <Property Name="Email" Type="nvarchar" MaxLength="100" />
  3265. <Property Name="WechatNo" Type="nvarchar" MaxLength="100" />
  3266. <Property Name="OtherSocialAccounts" Type="nvarchar" MaxLength="500" />
  3267. <Property Name="Language" Type="nvarchar" MaxLength="100" />
  3268. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  3269. <Property Name="Currency" Type="int" />
  3270. <Property Name="Files" Type="text" />
  3271. <Property Name="CreateUserId" Type="int" />
  3272. <Property Name="CreateTime" Type="datetime" />
  3273. <Property Name="DeleteUserId" Type="int" />
  3274. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3275. <Property Name="Remark" Type="nvarchar(max)" />
  3276. <Property Name="IsDel" Type="int" />
  3277. <Property Name="LastUpdateUserId" Type="int" />
  3278. <Property Name="LastUpdateTime" Type="datetime" />
  3279. </EntityType>
  3280. <!--生成过程中发现错误:
  3281. 警告 6002: 表/视图“OA2023DB.dbo.Res_TranslatorLibrary_Encryption”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  3282. <EntityType Name="Res_TranslatorLibrary_Encryption">
  3283. <Key>
  3284. <PropertyRef Name="Id" />
  3285. </Key>
  3286. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3287. <Property Name="Area" Type="nvarchar" MaxLength="100" />
  3288. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  3289. <Property Name="Sex" Type="int" />
  3290. <Property Name="Photo" Type="nvarchar(max)" />
  3291. <Property Name="Tel" Type="varchar" MaxLength="50" />
  3292. <Property Name="Email" Type="varchar" MaxLength="50" />
  3293. <Property Name="WechatNo" Type="varchar" MaxLength="50" />
  3294. <Property Name="OtherSocialAccounts" Type="varchar" MaxLength="200" />
  3295. <Property Name="Language" Type="varchar" MaxLength="50" />
  3296. <Property Name="Price" Type="decimal" Precision="10" Scale="2" />
  3297. <Property Name="Currency" Type="int" />
  3298. <Property Name="Files" Type="varchar" MaxLength="500" />
  3299. <Property Name="CreateUserId" Type="int" />
  3300. <Property Name="CreateTime" Type="datetime" />
  3301. <Property Name="DeleteUserId" Type="int" />
  3302. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3303. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3304. <Property Name="IsDel" Type="int" />
  3305. </EntityType>
  3306. <EntityType Name="Sys_Calendar">
  3307. <Key>
  3308. <PropertyRef Name="Id" />
  3309. </Key>
  3310. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3311. <Property Name="Dt" Type="varchar" MaxLength="30" />
  3312. <Property Name="IsWorkDay" Type="bit" />
  3313. <Property Name="IsHoliDay" Type="bit" />
  3314. <Property Name="HoliName" Type="varchar" MaxLength="50" />
  3315. <Property Name="CreateUserId" Type="int" />
  3316. <Property Name="CreateTime" Type="date" />
  3317. <Property Name="DeleteUserId" Type="int" />
  3318. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3319. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3320. <Property Name="Isdel" Type="int" />
  3321. </EntityType>
  3322. <EntityType Name="Sys_Cities">
  3323. <Key>
  3324. <PropertyRef Name="Id" />
  3325. </Key>
  3326. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3327. <Property Name="CountriesId" Type="int" />
  3328. <Property Name="Name_CN" Type="varchar" MaxLength="50" />
  3329. <Property Name="Name_EN" Type="nvarchar" MaxLength="100" />
  3330. <Property Name="ThreeCode" Type="varchar" MaxLength="10" />
  3331. <Property Name="IsCapital" Type="int" />
  3332. <Property Name="ParentId" Type="int" />
  3333. <Property Name="Level" Type="int" />
  3334. <Property Name="CreateUserId" Type="int" />
  3335. <Property Name="CreateTime" Type="datetime" />
  3336. <Property Name="DeleteUserId" Type="int" />
  3337. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3338. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3339. <Property Name="IsDel" Type="int" />
  3340. </EntityType>
  3341. <EntityType Name="Sys_Company">
  3342. <Key>
  3343. <PropertyRef Name="Id" />
  3344. </Key>
  3345. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3346. <Property Name="CompanyCode" Type="varchar" MaxLength="20" />
  3347. <Property Name="CompanyName" Type="varchar" MaxLength="50" />
  3348. <Property Name="Address" Type="varchar" MaxLength="200" />
  3349. <Property Name="ContactUserId" Type="int" />
  3350. <Property Name="Tel" Type="varchar" MaxLength="30" />
  3351. <Property Name="ParentCompanyId" Type="int" />
  3352. <Property Name="CreateUserId" Type="int" />
  3353. <Property Name="CreateTime" Type="datetime" />
  3354. <Property Name="DeleteUserId" Type="int" />
  3355. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3356. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3357. <Property Name="IsDel" Type="int" />
  3358. </EntityType>
  3359. <EntityType Name="Sys_Continent">
  3360. <Key>
  3361. <PropertyRef Name="Id" />
  3362. </Key>
  3363. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3364. <Property Name="Name_CN" Type="varchar" MaxLength="50" />
  3365. <Property Name="Name_EN" Type="nvarchar" MaxLength="100" />
  3366. <Property Name="CreateUserId" Type="int" />
  3367. <Property Name="CreateTime" Type="datetime" />
  3368. <Property Name="DeleteUserId" Type="int" />
  3369. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3370. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3371. <Property Name="IsDel" Type="int" />
  3372. </EntityType>
  3373. <EntityType Name="Sys_Countries">
  3374. <Key>
  3375. <PropertyRef Name="Id" />
  3376. </Key>
  3377. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3378. <Property Name="ContinentId" Type="int" />
  3379. <Property Name="ThreeCode" Type="varchar" MaxLength="10" />
  3380. <Property Name="Name_CN" Type="varchar" MaxLength="50" />
  3381. <Property Name="Name_CN_Full" Type="varchar" MaxLength="100" />
  3382. <Property Name="Name_EN" Type="nvarchar" MaxLength="50" />
  3383. <Property Name="Name_EN_Full" Type="nvarchar" MaxLength="100" />
  3384. <Property Name="CreateUserId" Type="int" />
  3385. <Property Name="CreateTime" Type="datetime" />
  3386. <Property Name="DeleteUserId" Type="int" />
  3387. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3388. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3389. <Property Name="IsDel" Type="int" />
  3390. </EntityType>
  3391. <EntityType Name="Sys_Department">
  3392. <Key>
  3393. <PropertyRef Name="Id" />
  3394. </Key>
  3395. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3396. <Property Name="CompanyId" Type="int" />
  3397. <Property Name="DepCode" Type="varchar" MaxLength="20" />
  3398. <Property Name="DepName" Type="varchar" MaxLength="50" />
  3399. <Property Name="ParentDepId" Type="int" />
  3400. <Property Name="CreateUserId" Type="int" />
  3401. <Property Name="CreateTime" Type="datetime" />
  3402. <Property Name="DeleteUserId" Type="int" />
  3403. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3404. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3405. <Property Name="IsDel" Type="int" />
  3406. </EntityType>
  3407. <EntityType Name="Sys_DeviceToken">
  3408. <Key>
  3409. <PropertyRef Name="Id" />
  3410. </Key>
  3411. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3412. <Property Name="Number" Type="varchar" MaxLength="50" />
  3413. <Property Name="DeviceToken" Type="nvarchar" MaxLength="256" />
  3414. <Property Name="CreateUserId" Type="int" />
  3415. <Property Name="CreateTime" Type="datetime" />
  3416. <Property Name="DeleteUserId" Type="int" />
  3417. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3418. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3419. <Property Name="IsDel" Type="int" />
  3420. </EntityType>
  3421. <EntityType Name="Sys_ExchangeRateRecord">
  3422. <Key>
  3423. <PropertyRef Name="Id" />
  3424. </Key>
  3425. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3426. <Property Name="DiId" Type="int" />
  3427. <Property Name="LinkModule" Type="varchar" MaxLength="50" />
  3428. <Property Name="RateDateTime" Type="datetime" />
  3429. <Property Name="RateDataSource" Type="int" />
  3430. <Property Name="RateInfo" Type="nvarchar" MaxLength="500" />
  3431. <Property Name="CreateUserId" Type="int" />
  3432. <Property Name="CreateTime" Type="datetime" />
  3433. <Property Name="DeleteUserId" Type="int" />
  3434. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3435. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3436. <Property Name="IsDel" Type="int" />
  3437. </EntityType>
  3438. <EntityType Name="Sys_JobPost">
  3439. <Key>
  3440. <PropertyRef Name="Id" />
  3441. </Key>
  3442. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3443. <Property Name="CompanyId" Type="int" />
  3444. <Property Name="DepId" Type="int" />
  3445. <Property Name="JobName" Type="varchar" MaxLength="80" />
  3446. <Property Name="CreateUserId" Type="int" />
  3447. <Property Name="CreateTime" Type="datetime" />
  3448. <Property Name="DeleteUserId" Type="int" />
  3449. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3450. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3451. <Property Name="IsDel" Type="int" />
  3452. </EntityType>
  3453. <EntityType Name="Sys_JobPostAuthority">
  3454. <Key>
  3455. <PropertyRef Name="Id" />
  3456. </Key>
  3457. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3458. <Property Name="JpId" Type="int" />
  3459. <Property Name="SmId" Type="int" />
  3460. <Property Name="FId" Type="int" />
  3461. <Property Name="CreateUserId" Type="int" />
  3462. <Property Name="CreateTime" Type="datetime" />
  3463. <Property Name="DeleteUserId" Type="int" />
  3464. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3465. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3466. <Property Name="IsDel" Type="int" />
  3467. </EntityType>
  3468. <EntityType Name="Sys_Message">
  3469. <Key>
  3470. <PropertyRef Name="Id" />
  3471. </Key>
  3472. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3473. <Property Name="Type" Type="int" />
  3474. <Property Name="Param" Type="varchar" MaxLength="200" />
  3475. <Property Name="IssuerId" Type="int" />
  3476. <Property Name="Title" Type="varchar" MaxLength="100" />
  3477. <Property Name="Content" Type="text" />
  3478. <Property Name="ReleaseTime" Type="datetime" />
  3479. <Property Name="CreateUserId" Type="int" />
  3480. <Property Name="CreateTime" Type="datetime" />
  3481. <Property Name="DeleteUserId" Type="int" />
  3482. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3483. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3484. <Property Name="IsDel" Type="int" />
  3485. <Property Name="DiId" Type="int" />
  3486. </EntityType>
  3487. <EntityType Name="Sys_MessageReadAuth">
  3488. <Key>
  3489. <PropertyRef Name="Id" />
  3490. </Key>
  3491. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3492. <Property Name="MsgId" Type="int" />
  3493. <Property Name="ReadableUId" Type="int" />
  3494. <Property Name="IsRead" Type="int" />
  3495. <Property Name="ReadTime" Type="datetime" />
  3496. <Property Name="CreateUserId" Type="int" />
  3497. <Property Name="CreateTime" Type="datetime" />
  3498. <Property Name="DeleteUserId" Type="int" />
  3499. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3500. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3501. <Property Name="IsDel" Type="int" />
  3502. </EntityType>
  3503. <EntityType Name="Sys_PageFunctionPermission">
  3504. <Key>
  3505. <PropertyRef Name="Id" />
  3506. </Key>
  3507. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3508. <Property Name="FunctionName" Type="varchar" MaxLength="30" />
  3509. <Property Name="FunctionCode" Type="varchar" MaxLength="20" />
  3510. <Property Name="IsEnable" Type="int" />
  3511. <Property Name="CreateUserId" Type="int" />
  3512. <Property Name="CreateTime" Type="datetime" />
  3513. <Property Name="DeleteUserId" Type="int" />
  3514. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3515. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3516. <Property Name="IsDel" Type="int" />
  3517. </EntityType>
  3518. <EntityType Name="Sys_SetData">
  3519. <Key>
  3520. <PropertyRef Name="Id" />
  3521. </Key>
  3522. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3523. <Property Name="Name" Type="varchar" MaxLength="100" />
  3524. <Property Name="STid" Type="int" />
  3525. <Property Name="CreateUserId" Type="int" />
  3526. <Property Name="CreateTime" Type="datetime" />
  3527. <Property Name="DeleteUserId" Type="int" />
  3528. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3529. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3530. <Property Name="IsDel" Type="int" />
  3531. </EntityType>
  3532. <EntityType Name="Sys_SetDataType">
  3533. <Key>
  3534. <PropertyRef Name="Id" />
  3535. </Key>
  3536. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3537. <Property Name="Name" Type="varchar" MaxLength="50" />
  3538. <Property Name="IsEnable" Type="int" />
  3539. <Property Name="CreateUserId" Type="int" />
  3540. <Property Name="CreateTime" Type="datetime" />
  3541. <Property Name="DeleteUserId" Type="int" />
  3542. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3543. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3544. <Property Name="IsDel" Type="int" />
  3545. </EntityType>
  3546. <EntityType Name="Sys_SystemMenuAndFunction">
  3547. <Key>
  3548. <PropertyRef Name="Id" />
  3549. </Key>
  3550. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3551. <Property Name="SmId" Type="int" />
  3552. <Property Name="FId" Type="int" />
  3553. <Property Name="CreateUserId" Type="int" />
  3554. <Property Name="CreateTime" Type="datetime" />
  3555. <Property Name="DeleteUserId" Type="int" />
  3556. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3557. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3558. <Property Name="IsDel" Type="int" />
  3559. </EntityType>
  3560. <EntityType Name="Sys_SystemMenuPermission">
  3561. <Key>
  3562. <PropertyRef Name="Id" />
  3563. </Key>
  3564. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3565. <Property Name="Name" Type="varchar" MaxLength="80" />
  3566. <Property Name="IsEnable" Type="int" />
  3567. <Property Name="Mid" Type="int" />
  3568. <Property Name="SystemMenuCode" Type="varchar" MaxLength="20" />
  3569. <Property Name="webUrl" Type="varchar" MaxLength="50" />
  3570. <Property Name="AndroidUrl" Type="varchar" MaxLength="50" />
  3571. <Property Name="icon" Type="varchar" MaxLength="100" />
  3572. <Property Name="IosUrl" Type="varchar" MaxLength="50" />
  3573. <Property Name="phoneIsEnable" Type="int" />
  3574. <Property Name="CreateUserId" Type="int" />
  3575. <Property Name="CreateTime" Type="datetime" />
  3576. <Property Name="DeleteUserId" Type="int" />
  3577. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3578. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3579. <Property Name="IsDel" Type="int" />
  3580. </EntityType>
  3581. <EntityType Name="Sys_UserAuthority">
  3582. <Key>
  3583. <PropertyRef Name="Id" />
  3584. </Key>
  3585. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3586. <Property Name="UId" Type="int" />
  3587. <Property Name="SmId" Type="int" />
  3588. <Property Name="FId" Type="int" />
  3589. <Property Name="CreateUserId" Type="int" />
  3590. <Property Name="CreateTime" Type="datetime" />
  3591. <Property Name="DeleteUserId" Type="int" />
  3592. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3593. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3594. <Property Name="IsDel" Type="int" />
  3595. <Property Name="IsTemp" Type="int" />
  3596. </EntityType>
  3597. <!--生成过程中发现错误:
  3598. 警告 6002: 表/视图“OA2023DB.dbo.Sys_Users”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  3599. <EntityType Name="Sys_Users">
  3600. <Key>
  3601. <PropertyRef Name="Id" />
  3602. </Key>
  3603. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3604. <Property Name="CnName" Type="varchar" MaxLength="50" />
  3605. <Property Name="EnName" Type="varchar" MaxLength="50" />
  3606. <Property Name="Number" Type="varchar" MaxLength="50" />
  3607. <Property Name="CompanyId" Type="int" />
  3608. <Property Name="DepId" Type="int" />
  3609. <Property Name="JobPostId" Type="int" />
  3610. <Property Name="Password" Type="varchar" MaxLength="50" />
  3611. <Property Name="Sex" Type="int" />
  3612. <Property Name="Ext" Type="varchar" MaxLength="50" />
  3613. <Property Name="Phone" Type="nvarchar" MaxLength="100" />
  3614. <Property Name="UrgentPhone" Type="nvarchar" MaxLength="100" />
  3615. <Property Name="Email" Type="varchar" MaxLength="50" />
  3616. <Property Name="Address" Type="varchar" MaxLength="200" />
  3617. <Property Name="Edate" Type="datetime" />
  3618. <Property Name="Rdate" Type="datetime" />
  3619. <Property Name="Seniority" Type="int" />
  3620. <Property Name="Birthday" Type="datetime" />
  3621. <Property Name="IDCard" Type="nvarchar" MaxLength="100" />
  3622. <Property Name="StartWorkDate" Type="varchar" MaxLength="50" />
  3623. <Property Name="GraduateInstitutions" Type="varchar" MaxLength="200" />
  3624. <Property Name="Professional" Type="varchar" MaxLength="50" />
  3625. <Property Name="Education" Type="int" />
  3626. <Property Name="TheOrAdultEducation" Type="int" />
  3627. <Property Name="MaritalStatus" Type="varchar" MaxLength="200" />
  3628. <Property Name="HomeAddress" Type="varchar" MaxLength="200" />
  3629. <Property Name="UsePeriod" Type="varchar" MaxLength="200" />
  3630. <Property Name="WorkExperience" Type="varchar" MaxLength="500" />
  3631. <Property Name="Certificate" Type="varchar" MaxLength="500" />
  3632. <Property Name="HrAudit" Type="int" />
  3633. <Property Name="QiyeChatUserId" Type="varchar" MaxLength="200" />
  3634. <Property Name="CreateUserId" Type="int" />
  3635. <Property Name="CreateTime" Type="datetime" />
  3636. <Property Name="DeleteUserId" Type="int" />
  3637. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3638. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3639. <Property Name="IsDel" Type="int" />
  3640. </EntityType>
  3641. <!--生成过程中发现错误:
  3642. 警告 6002: 表/视图“OA2023DB.dbo.Sys_Users_Encryption”未定义主键。已推断出该键,并将定义创建为只读的表/视图。-->
  3643. <EntityType Name="Sys_Users_Encryption">
  3644. <Key>
  3645. <PropertyRef Name="Id" />
  3646. </Key>
  3647. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3648. <Property Name="CnName" Type="varchar" MaxLength="50" />
  3649. <Property Name="EnName" Type="varchar" MaxLength="50" />
  3650. <Property Name="Number" Type="varchar" MaxLength="50" />
  3651. <Property Name="CompanyId" Type="int" />
  3652. <Property Name="DepId" Type="int" />
  3653. <Property Name="JobPostId" Type="int" />
  3654. <Property Name="Password" Type="varchar" MaxLength="50" />
  3655. <Property Name="Sex" Type="int" />
  3656. <Property Name="Ext" Type="varchar" MaxLength="50" />
  3657. <Property Name="Phone" Type="varchar" MaxLength="50" />
  3658. <Property Name="UrgentPhone" Type="varchar" MaxLength="50" />
  3659. <Property Name="Email" Type="varchar" MaxLength="50" />
  3660. <Property Name="Address" Type="varchar" MaxLength="200" />
  3661. <Property Name="Edate" Type="datetime" />
  3662. <Property Name="Rdate" Type="datetime" />
  3663. <Property Name="Seniority" Type="int" />
  3664. <Property Name="Birthday" Type="datetime" />
  3665. <Property Name="IDCard" Type="varchar" MaxLength="20" />
  3666. <Property Name="StartWorkDate" Type="varchar" MaxLength="50" />
  3667. <Property Name="GraduateInstitutions" Type="varchar" MaxLength="200" />
  3668. <Property Name="Professional" Type="varchar" MaxLength="50" />
  3669. <Property Name="Education" Type="int" />
  3670. <Property Name="TheOrAdultEducation" Type="int" />
  3671. <Property Name="MaritalStatus" Type="varchar" MaxLength="200" />
  3672. <Property Name="HomeAddress" Type="varchar" MaxLength="200" />
  3673. <Property Name="UsePeriod" Type="varchar" MaxLength="200" />
  3674. <Property Name="WorkExperience" Type="varchar" MaxLength="500" />
  3675. <Property Name="Certificate" Type="varchar" MaxLength="500" />
  3676. <Property Name="HrAudit" Type="int" />
  3677. <Property Name="QiyeChatUserId" Type="varchar" MaxLength="200" />
  3678. <Property Name="CreateUserId" Type="int" />
  3679. <Property Name="CreateTime" Type="datetime" />
  3680. <Property Name="DeleteUserId" Type="int" />
  3681. <Property Name="DeleteTime" Type="varchar" MaxLength="30" />
  3682. <Property Name="Remark" Type="varchar" MaxLength="500" />
  3683. <Property Name="IsDel" Type="int" />
  3684. </EntityType>
  3685. <EntityType Name="sysdiagrams">
  3686. <Key>
  3687. <PropertyRef Name="diagram_id" />
  3688. </Key>
  3689. <Property Name="name" Type="nvarchar" MaxLength="128" Nullable="false" />
  3690. <Property Name="principal_id" Type="int" Nullable="false" />
  3691. <Property Name="diagram_id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  3692. <Property Name="version" Type="int" />
  3693. <Property Name="definition" Type="varbinary(max)" />
  3694. </EntityType>
  3695. <EntityContainer Name="oa2023DBModelStoreContainer">
  3696. <EntitySet Name="Air_TicketBlackCode" EntityType="Self.Air_TicketBlackCode" Schema="dbo" store:Type="Tables" />
  3697. <EntitySet Name="Bus_ConfItem" EntityType="Self.Bus_ConfItem" Schema="dbo" store:Type="Tables" />
  3698. <EntitySet Name="Bus_ConfItemList" EntityType="Self.Bus_ConfItemList" Schema="dbo" store:Type="Tables" />
  3699. <EntitySet Name="Bus_MsgPost" EntityType="Self.Bus_MsgPost" Schema="dbo" store:Type="Tables" />
  3700. <EntitySet Name="Crm_ClientDataAndBusiness" EntityType="Self.Crm_ClientDataAndBusiness" Schema="dbo" store:Type="Tables" />
  3701. <EntitySet Name="Crm_ClientDataAndUser" EntityType="Self.Crm_ClientDataAndUser" Schema="dbo" store:Type="Tables" />
  3702. <EntitySet Name="Crm_CustomerCert" EntityType="Self.Crm_CustomerCert" Schema="dbo" store:Type="Tables" />
  3703. <EntitySet Name="Crm_CustomerCompany" EntityType="Self.Crm_CustomerCompany" Schema="dbo" store:Type="Tables" />
  3704. <EntitySet Name="Crm_CustomerFile" EntityType="Self.Crm_CustomerFile" Schema="dbo" store:Type="Tables" />
  3705. <EntitySet Name="Crm_DeleClient" EntityType="Self.Crm_DeleClient" Schema="dbo" store:Type="Tables" />
  3706. <EntitySet Name="Crm_GroupCustomer" EntityType="Self.Crm_GroupCustomer" Schema="dbo" store:Type="Tables" />
  3707. <EntitySet Name="Crm_NewClientData" EntityType="Self.Crm_NewClientData" Schema="dbo" store:Type="Tables" />
  3708. <EntitySet Name="Crm_TableOperationRecord" EntityType="Self.Crm_TableOperationRecord" Schema="dbo" store:Type="Tables" />
  3709. <EntitySet Name="Crm_VisaCustomerCompany" EntityType="Self.Crm_VisaCustomerCompany" Schema="dbo" store:Type="Tables" />
  3710. <EntitySet Name="Crm_VisaCustomerFamily" EntityType="Self.Crm_VisaCustomerFamily" Schema="dbo" store:Type="Tables" />
  3711. <EntitySet Name="Crm_VisaCustomerSchool" EntityType="Self.Crm_VisaCustomerSchool" Schema="dbo" store:Type="Tables" />
  3712. <EntitySet Name="Dis_City" EntityType="Self.Dis_City" Schema="dbo" store:Type="Tables" />
  3713. <EntitySet Name="Dis_Country" EntityType="Self.Dis_Country" Schema="dbo" store:Type="Tables" />
  3714. <EntitySet Name="Dis_Intercontinental" EntityType="Self.Dis_Intercontinental" Schema="dbo" store:Type="Tables" />
  3715. <EntitySet Name="Fin_Commission" EntityType="Self.Fin_Commission" Schema="dbo" store:Type="Tables" />
  3716. <EntitySet Name="Fin_DailyFeePayment" EntityType="Self.Fin_DailyFeePayment" Schema="dbo" store:Type="Tables" />
  3717. <EntitySet Name="Fin_DailyFeePaymentContent" EntityType="Self.Fin_DailyFeePaymentContent" Schema="dbo" store:Type="Tables" />
  3718. <EntitySet Name="Fin_ForeignReceivables" EntityType="Self.Fin_ForeignReceivables" Schema="dbo" store:Type="Tables" />
  3719. <EntitySet Name="Fin_GroupExtraCost" EntityType="Self.Fin_GroupExtraCost" Schema="dbo" store:Type="Tables" />
  3720. <EntitySet Name="Fin_LocalGuideRelevancyOverspend" EntityType="Self.Fin_LocalGuideRelevancyOverspend" Schema="dbo" store:Type="Tables" />
  3721. <EntitySet Name="Fin_OtherPrice" EntityType="Self.Fin_OtherPrice" Schema="dbo" store:Type="Tables" />
  3722. <EntitySet Name="Fin_OverSpendRelevancyCollectionStatement" EntityType="Self.Fin_OverSpendRelevancyCollectionStatement" Schema="dbo" store:Type="Tables" />
  3723. <EntitySet Name="Fin_PaymentRefundAndOtherMoney" EntityType="Self.Fin_PaymentRefundAndOtherMoney" Schema="dbo" store:Type="Tables" />
  3724. <EntitySet Name="Fin_ProceedsReceived" EntityType="Self.Fin_ProceedsReceived" Schema="dbo" store:Type="Tables" />
  3725. <EntitySet Name="Fin_RoyaltyConfirm" EntityType="Self.Fin_RoyaltyConfirm" Schema="dbo" store:Type="Tables" />
  3726. <EntitySet Name="Fin_RoyaltyForm" EntityType="Self.Fin_RoyaltyForm" Schema="dbo" store:Type="Tables" />
  3727. <EntitySet Name="Grp_AirInquiry" EntityType="Self.Grp_AirInquiry" Schema="dbo" store:Type="Tables" />
  3728. <EntitySet Name="Grp_AirPrice" EntityType="Self.Grp_AirPrice" Schema="dbo" store:Type="Tables" />
  3729. <EntitySet Name="Grp_AirTicketReservations" EntityType="Self.Grp_AirTicketReservations" Schema="dbo" store:Type="Tables" />
  3730. <EntitySet Name="Grp_ApprovalTravel" EntityType="Self.Grp_ApprovalTravel" Schema="dbo" store:Type="Tables" />
  3731. <EntitySet Name="Grp_ApprovalTravelDetails" EntityType="Self.Grp_ApprovalTravelDetails" Schema="dbo" store:Type="Tables" />
  3732. <EntitySet Name="Grp_CarGuides" EntityType="Self.Grp_CarGuides" Schema="dbo" store:Type="Tables" />
  3733. <EntitySet Name="Grp_CarInfo" EntityType="Self.Grp_CarInfo" Schema="dbo" store:Type="Tables" />
  3734. <EntitySet Name="Grp_CarTouristGuideGroundReservations" EntityType="Self.Grp_CarTouristGuideGroundReservations" Schema="dbo" store:Type="Tables" />
  3735. <EntitySet Name="Grp_CarTouristGuideGroundReservationsContent" EntityType="Self.Grp_CarTouristGuideGroundReservationsContent" Schema="dbo" store:Type="Tables" />
  3736. <EntitySet Name="Grp_CarTouristGuideGroundReservationsContentOld" EntityType="Self.Grp_CarTouristGuideGroundReservationsContentOld" Schema="dbo" store:Type="Tables" />
  3737. <EntitySet Name="Grp_CarTouristGuideGroundReservationsOld" EntityType="Self.Grp_CarTouristGuideGroundReservationsOld" Schema="dbo" store:Type="Tables" />
  3738. <EntitySet Name="Grp_CheckBoxs" EntityType="Self.Grp_CheckBoxs" Schema="dbo" store:Type="Tables" />
  3739. <EntitySet Name="Grp_CostTypeHotelNumber" EntityType="Self.Grp_CostTypeHotelNumber" Schema="dbo" store:Type="Tables" />
  3740. <EntitySet Name="Grp_CreditCardPayment" EntityType="Self.Grp_CreditCardPayment" Schema="dbo" store:Type="Tables" />
  3741. <EntitySet Name="Grp_Customers" EntityType="Self.Grp_Customers" Schema="dbo" store:Type="Tables" />
  3742. <EntitySet Name="Grp_DayAndCost" EntityType="Self.Grp_DayAndCost" Schema="dbo" store:Type="Tables" />
  3743. <EntitySet Name="Grp_DayAndCostDraft" EntityType="Self.Grp_DayAndCostDraft" Schema="dbo" store:Type="Tables" />
  3744. <EntitySet Name="Grp_DayOtherPrice" EntityType="Self.Grp_DayOtherPrice" Schema="dbo" store:Type="Tables" />
  3745. <EntitySet Name="Grp_DayOtherPriceDraft" EntityType="Self.Grp_DayOtherPriceDraft" Schema="dbo" store:Type="Tables" />
  3746. <EntitySet Name="Grp_DecreasePayments" EntityType="Self.Grp_DecreasePayments" Schema="dbo" store:Type="Tables" />
  3747. <EntitySet Name="Grp_DeleClientNeeds" EntityType="Self.Grp_DeleClientNeeds" Schema="dbo" store:Type="Tables" />
  3748. <EntitySet Name="Grp_DeleFile" EntityType="Self.Grp_DeleFile" Schema="dbo" store:Type="Tables" />
  3749. <EntitySet Name="Grp_DelegationEnData" EntityType="Self.Grp_DelegationEnData" Schema="dbo" store:Type="Tables" />
  3750. <EntitySet Name="Grp_DelegationInfo" EntityType="Self.Grp_DelegationInfo" Schema="dbo" store:Type="Tables" />
  3751. <EntitySet Name="Grp_DelegationJoinCustomer" EntityType="Self.Grp_DelegationJoinCustomer" Schema="dbo" store:Type="Tables" />
  3752. <EntitySet Name="Grp_DeleMeetingNeeds" EntityType="Self.Grp_DeleMeetingNeeds" Schema="dbo" store:Type="Tables" />
  3753. <EntitySet Name="Grp_EnterExitCost" EntityType="Self.Grp_EnterExitCost" Schema="dbo" store:Type="Tables" />
  3754. <EntitySet Name="Grp_EnterExitCostDraft" EntityType="Self.Grp_EnterExitCostDraft" Schema="dbo" store:Type="Tables" />
  3755. <EntitySet Name="Grp_EnterExitCostDraftPermission" EntityType="Self.Grp_EnterExitCostDraftPermission" Schema="dbo" store:Type="Tables" />
  3756. <EntitySet Name="Grp_EnterExitCostPermission" EntityType="Self.Grp_EnterExitCostPermission" Schema="dbo" store:Type="Tables" />
  3757. <EntitySet Name="Grp_GroupCost" EntityType="Self.Grp_GroupCost" Schema="dbo" store:Type="Tables" />
  3758. <EntitySet Name="Grp_GroupCostParameter" EntityType="Self.Grp_GroupCostParameter" Schema="dbo" store:Type="Tables" />
  3759. <EntitySet Name="Grp_GroupModelFile" EntityType="Self.Grp_GroupModelFile" Schema="dbo" store:Type="Tables" />
  3760. <EntitySet Name="Grp_GroupsTaskAssignment" EntityType="Self.Grp_GroupsTaskAssignment" Schema="dbo" store:Type="Tables" />
  3761. <EntitySet Name="Grp_GuidesInfo" EntityType="Self.Grp_GuidesInfo" Schema="dbo" store:Type="Tables" />
  3762. <EntitySet Name="Grp_HotelInquiry" EntityType="Self.Grp_HotelInquiry" Schema="dbo" store:Type="Tables" />
  3763. <EntitySet Name="Grp_HotelReservations" EntityType="Self.Grp_HotelReservations" Schema="dbo" store:Type="Tables" />
  3764. <EntitySet Name="Grp_HotelReservationsContent" EntityType="Self.Grp_HotelReservationsContent" Schema="dbo" store:Type="Tables" />
  3765. <EntitySet Name="Grp_InsuranceCost" EntityType="Self.Grp_InsuranceCost" Schema="dbo" store:Type="Tables" />
  3766. <EntitySet Name="Grp_InvertedList" EntityType="Self.Grp_InvertedList" Schema="dbo" store:Type="Tables" />
  3767. <EntitySet Name="Grp_InvertedListVisaCountry" EntityType="Self.Grp_InvertedListVisaCountry" Schema="dbo" store:Type="Tables" />
  3768. <EntitySet Name="Grp_InvitationOfficialActivities" EntityType="Self.Grp_InvitationOfficialActivities" Schema="dbo" store:Type="Tables" />
  3769. <EntitySet Name="Grp_NationalTravelFee" EntityType="Self.Grp_NationalTravelFee" Schema="dbo" store:Type="Tables" />
  3770. <EntitySet Name="Grp_OfficialDutyLinkTranslator" EntityType="Self.Grp_OfficialDutyLinkTranslator" Schema="dbo" store:Type="Tables" />
  3771. <EntitySet Name="Grp_Opinionaire" EntityType="Self.Grp_Opinionaire" Schema="dbo" store:Type="Tables" />
  3772. <EntitySet Name="Grp_RestaurantInfo" EntityType="Self.Grp_RestaurantInfo" Schema="dbo" store:Type="Tables" />
  3773. <EntitySet Name="Grp_ScenicSpotInfo" EntityType="Self.Grp_ScenicSpotInfo" Schema="dbo" store:Type="Tables" />
  3774. <EntitySet Name="Grp_Schedule" EntityType="Self.Grp_Schedule" Schema="dbo" store:Type="Tables" />
  3775. <EntitySet Name="Grp_ScheduleDetail" EntityType="Self.Grp_ScheduleDetail" Schema="dbo" store:Type="Tables" />
  3776. <EntitySet Name="Grp_SchedulePerson" EntityType="Self.Grp_SchedulePerson" Schema="dbo" store:Type="Tables" />
  3777. <EntitySet Name="Grp_TeamRate" EntityType="Self.Grp_TeamRate" Schema="dbo" store:Type="Tables" />
  3778. <EntitySet Name="Grp_TourClientList" EntityType="Self.Grp_TourClientList" Schema="dbo" store:Type="Tables" />
  3779. <EntitySet Name="Grp_TravelList" EntityType="Self.Grp_TravelList" Schema="dbo" store:Type="Tables" />
  3780. <EntitySet Name="Grp_VisaCommission" EntityType="Self.Grp_VisaCommission" Schema="dbo" store:Type="Tables" />
  3781. <EntitySet Name="Grp_VisaFeeInfo" EntityType="Self.Grp_VisaFeeInfo" Schema="dbo" store:Type="Tables" />
  3782. <EntitySet Name="Grp_VisaInfo" EntityType="Self.Grp_VisaInfo" Schema="dbo" store:Type="Tables" />
  3783. <EntitySet Name="Grp_VisaProgress" EntityType="Self.Grp_VisaProgress" Schema="dbo" store:Type="Tables" />
  3784. <EntitySet Name="Grp_VisaProgressCustomer" EntityType="Self.Grp_VisaProgressCustomer" Schema="dbo" store:Type="Tables" />
  3785. <EntitySet Name="Grp_VisaProgressCustomerPicture" EntityType="Self.Grp_VisaProgressCustomerPicture" Schema="dbo" store:Type="Tables" />
  3786. <EntitySet Name="Grp_VisitingClients" EntityType="Self.Grp_VisitingClients" Schema="dbo" store:Type="Tables" />
  3787. <EntitySet Name="Per_AssessmentContentSetting" EntityType="Self.Per_AssessmentContentSetting" Schema="dbo" store:Type="Tables" />
  3788. <EntitySet Name="Per_AssessmentScore" EntityType="Self.Per_AssessmentScore" Schema="dbo" store:Type="Tables" />
  3789. <EntitySet Name="Per_AssessmentSetting" EntityType="Self.Per_AssessmentSetting" Schema="dbo" store:Type="Tables" />
  3790. <EntitySet Name="Pm_GoodsInfo" EntityType="Self.Pm_GoodsInfo" Schema="dbo" store:Type="Tables" />
  3791. <EntitySet Name="Pm_GoodsReceive" EntityType="Self.Pm_GoodsReceive" Schema="dbo" store:Type="Tables" />
  3792. <EntitySet Name="Pm_GoodsStorage" EntityType="Self.Pm_GoodsStorage" Schema="dbo" store:Type="Tables" />
  3793. <EntitySet Name="Pm_TaskAllocation" EntityType="Self.Pm_TaskAllocation" Schema="dbo" store:Type="Tables" />
  3794. <EntitySet Name="Pm_TaskJobRelevancy" EntityType="Self.Pm_TaskJobRelevancy" Schema="dbo" store:Type="Tables" />
  3795. <EntitySet Name="Pm_TaskRelevanceUser" EntityType="Self.Pm_TaskRelevanceUser" Schema="dbo" store:Type="Tables" />
  3796. <EntitySet Name="Pm_WageIssueWorkingDay" EntityType="Self.Pm_WageIssueWorkingDay" Schema="dbo" store:Type="Tables" />
  3797. <EntitySet Name="Pm_WageSheet" EntityType="Self.Pm_WageSheet" Schema="dbo" store:Type="Tables" />
  3798. <EntitySet Name="Res_AirCompany" EntityType="Self.Res_AirCompany" Schema="dbo" store:Type="Tables" />
  3799. <EntitySet Name="Res_AirTicketAgent" EntityType="Self.Res_AirTicketAgent" Schema="dbo" store:Type="Tables" />
  3800. <EntitySet Name="Res_AskData" EntityType="Self.Res_AskData" Schema="dbo" store:Type="Tables" />
  3801. <EntitySet Name="Res_BasicInsuranceCost" EntityType="Self.Res_BasicInsuranceCost" Schema="dbo" store:Type="Tables" />
  3802. <EntitySet Name="Res_CarData" EntityType="Self.Res_CarData" Schema="dbo" store:Type="Tables" />
  3803. <EntitySet Name="Res_CarGuides" EntityType="Self.Res_CarGuides" Schema="dbo" store:Type="Tables" />
  3804. <EntitySet Name="Res_CarInfo" EntityType="Self.Res_CarInfo" Schema="dbo" store:Type="Tables" />
  3805. <EntitySet Name="Res_CompanyEnglishComparison" EntityType="Self.Res_CompanyEnglishComparison" Schema="dbo" store:Type="Tables" />
  3806. <EntitySet Name="Res_CountryFeeCost" EntityType="Self.Res_CountryFeeCost" Schema="dbo" store:Type="Tables" />
  3807. <EntitySet Name="Res_GuidesInfo" EntityType="Self.Res_GuidesInfo" Schema="dbo" store:Type="Tables" />
  3808. <EntitySet Name="Res_HotelData" EntityType="Self.Res_HotelData" Schema="dbo" store:Type="Tables" />
  3809. <EntitySet Name="Res_InvitationOfficialActivityData" EntityType="Self.Res_InvitationOfficialActivityData" Schema="dbo" store:Type="Tables" />
  3810. <EntitySet Name="Res_ItemDetail" EntityType="Self.Res_ItemDetail" Schema="dbo" store:Type="Tables" />
  3811. <EntitySet Name="Res_ItemType" EntityType="Self.Res_ItemType" Schema="dbo" store:Type="Tables" />
  3812. <EntitySet Name="Res_ItemVendor" EntityType="Self.Res_ItemVendor" Schema="dbo" store:Type="Tables" />
  3813. <EntitySet Name="Res_MediaSuppliers" EntityType="Self.Res_MediaSuppliers" Schema="dbo" store:Type="Tables" />
  3814. <EntitySet Name="Res_Memo" EntityType="Self.Res_Memo" Schema="dbo" store:Type="Tables" />
  3815. <EntitySet Name="Res_OfficialActivities" EntityType="Self.Res_OfficialActivities" Schema="dbo" store:Type="Tables" />
  3816. <EntitySet Name="Res_PositionEnglishComparison" EntityType="Self.Res_PositionEnglishComparison" Schema="dbo" store:Type="Tables" />
  3817. <EntitySet Name="Res_ScenicSpotInfo" EntityType="Self.Res_ScenicSpotInfo" Schema="dbo" store:Type="Tables" />
  3818. <EntitySet Name="Res_ThreeCode" EntityType="Self.Res_ThreeCode" Schema="dbo" store:Type="Tables" />
  3819. <EntitySet Name="Res_TranslatorLibrary" EntityType="Self.Res_TranslatorLibrary" Schema="dbo" store:Type="Tables" />
  3820. <EntitySet Name="Sys_Calendar" EntityType="Self.Sys_Calendar" Schema="dbo" store:Type="Tables" />
  3821. <EntitySet Name="Sys_Cities" EntityType="Self.Sys_Cities" Schema="dbo" store:Type="Tables" />
  3822. <EntitySet Name="Sys_Company" EntityType="Self.Sys_Company" Schema="dbo" store:Type="Tables" />
  3823. <EntitySet Name="Sys_Continent" EntityType="Self.Sys_Continent" Schema="dbo" store:Type="Tables" />
  3824. <EntitySet Name="Sys_Countries" EntityType="Self.Sys_Countries" Schema="dbo" store:Type="Tables" />
  3825. <EntitySet Name="Sys_Department" EntityType="Self.Sys_Department" Schema="dbo" store:Type="Tables" />
  3826. <EntitySet Name="Sys_DeviceToken" EntityType="Self.Sys_DeviceToken" Schema="dbo" store:Type="Tables" />
  3827. <EntitySet Name="Sys_ExchangeRateRecord" EntityType="Self.Sys_ExchangeRateRecord" Schema="dbo" store:Type="Tables" />
  3828. <EntitySet Name="Sys_JobPost" EntityType="Self.Sys_JobPost" Schema="dbo" store:Type="Tables" />
  3829. <EntitySet Name="Sys_JobPostAuthority" EntityType="Self.Sys_JobPostAuthority" Schema="dbo" store:Type="Tables" />
  3830. <EntitySet Name="Sys_Message" EntityType="Self.Sys_Message" Schema="dbo" store:Type="Tables" />
  3831. <EntitySet Name="Sys_MessageReadAuth" EntityType="Self.Sys_MessageReadAuth" Schema="dbo" store:Type="Tables" />
  3832. <EntitySet Name="Sys_PageFunctionPermission" EntityType="Self.Sys_PageFunctionPermission" Schema="dbo" store:Type="Tables" />
  3833. <EntitySet Name="Sys_SetData" EntityType="Self.Sys_SetData" Schema="dbo" store:Type="Tables" />
  3834. <EntitySet Name="Sys_SetDataType" EntityType="Self.Sys_SetDataType" Schema="dbo" store:Type="Tables" />
  3835. <EntitySet Name="Sys_SystemMenuAndFunction" EntityType="Self.Sys_SystemMenuAndFunction" Schema="dbo" store:Type="Tables" />
  3836. <EntitySet Name="Sys_SystemMenuPermission" EntityType="Self.Sys_SystemMenuPermission" Schema="dbo" store:Type="Tables" />
  3837. <EntitySet Name="Sys_UserAuthority" EntityType="Self.Sys_UserAuthority" Schema="dbo" store:Type="Tables" />
  3838. <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
  3839. <EntitySet Name="Crm_CustomerCert_Data" EntityType="Self.Crm_CustomerCert_Data" store:Type="Tables" store:Schema="dbo">
  3840. <DefiningQuery>SELECT
  3841. [Crm_CustomerCert_Data].[Id] AS [Id],
  3842. [Crm_CustomerCert_Data].[DcId] AS [DcId],
  3843. [Crm_CustomerCert_Data].[SdId] AS [SdId],
  3844. [Crm_CustomerCert_Data].[PassportType] AS [PassportType],
  3845. [Crm_CustomerCert_Data].[CertNo] AS [CertNo],
  3846. [Crm_CustomerCert_Data].[Country] AS [Country],
  3847. [Crm_CustomerCert_Data].[Area] AS [Area],
  3848. [Crm_CustomerCert_Data].[TargetCountry] AS [TargetCountry],
  3849. [Crm_CustomerCert_Data].[IssueDt] AS [IssueDt],
  3850. [Crm_CustomerCert_Data].[ExpiryDt] AS [ExpiryDt],
  3851. [Crm_CustomerCert_Data].[IDCardAddress] AS [IDCardAddress],
  3852. [Crm_CustomerCert_Data].[CreateUserId] AS [CreateUserId],
  3853. [Crm_CustomerCert_Data].[CreateTime] AS [CreateTime],
  3854. [Crm_CustomerCert_Data].[DeleteUserId] AS [DeleteUserId],
  3855. [Crm_CustomerCert_Data].[DeleteTime] AS [DeleteTime],
  3856. [Crm_CustomerCert_Data].[Remark] AS [Remark],
  3857. [Crm_CustomerCert_Data].[IsDel] AS [IsDel]
  3858. FROM [dbo].[Crm_CustomerCert_Data] AS [Crm_CustomerCert_Data]</DefiningQuery>
  3859. </EntitySet>
  3860. <EntitySet Name="Crm_CustomerCompany_Data" EntityType="Self.Crm_CustomerCompany_Data" store:Type="Tables" store:Schema="dbo">
  3861. <DefiningQuery>SELECT
  3862. [Crm_CustomerCompany_Data].[Id] AS [Id],
  3863. [Crm_CustomerCompany_Data].[CompanyAbbreviation] AS [CompanyAbbreviation],
  3864. [Crm_CustomerCompany_Data].[CompanyFullName] AS [CompanyFullName],
  3865. [Crm_CustomerCompany_Data].[Address] AS [Address],
  3866. [Crm_CustomerCompany_Data].[PostCodes] AS [PostCodes],
  3867. [Crm_CustomerCompany_Data].[LastedOpUserId] AS [LastedOpUserId],
  3868. [Crm_CustomerCompany_Data].[LastedOpDt] AS [LastedOpDt],
  3869. [Crm_CustomerCompany_Data].[CreateUserId] AS [CreateUserId],
  3870. [Crm_CustomerCompany_Data].[CreateTime] AS [CreateTime],
  3871. [Crm_CustomerCompany_Data].[DeleteUserId] AS [DeleteUserId],
  3872. [Crm_CustomerCompany_Data].[DeleteTime] AS [DeleteTime],
  3873. [Crm_CustomerCompany_Data].[Remark] AS [Remark],
  3874. [Crm_CustomerCompany_Data].[IsDel] AS [IsDel]
  3875. FROM [dbo].[Crm_CustomerCompany_Data] AS [Crm_CustomerCompany_Data]</DefiningQuery>
  3876. </EntitySet>
  3877. <EntitySet Name="Crm_DeleClient_Data" EntityType="Self.Crm_DeleClient_Data" store:Type="Tables" store:Schema="dbo">
  3878. <DefiningQuery>SELECT
  3879. [Crm_DeleClient_Data].[Id] AS [Id],
  3880. [Crm_DeleClient_Data].[DiId] AS [DiId],
  3881. [Crm_DeleClient_Data].[LastName] AS [LastName],
  3882. [Crm_DeleClient_Data].[FirstName] AS [FirstName],
  3883. [Crm_DeleClient_Data].[OldName] AS [OldName],
  3884. [Crm_DeleClient_Data].[Pinyin] AS [Pinyin],
  3885. [Crm_DeleClient_Data].[Sex] AS [Sex],
  3886. [Crm_DeleClient_Data].[Marriage] AS [Marriage],
  3887. [Crm_DeleClient_Data].[Tel] AS [Tel],
  3888. [Crm_DeleClient_Data].[BirthProvince] AS [BirthProvince],
  3889. [Crm_DeleClient_Data].[BirthCity] AS [BirthCity],
  3890. [Crm_DeleClient_Data].[BirthDay] AS [BirthDay],
  3891. [Crm_DeleClient_Data].[AirType] AS [AirType],
  3892. [Crm_DeleClient_Data].[SeatPref] AS [SeatPref],
  3893. [Crm_DeleClient_Data].[AirRemark] AS [AirRemark],
  3894. [Crm_DeleClient_Data].[RoomType] AS [RoomType],
  3895. [Crm_DeleClient_Data].[RoomPref] AS [RoomPref],
  3896. [Crm_DeleClient_Data].[Phone] AS [Phone],
  3897. [Crm_DeleClient_Data].[Email] AS [Email],
  3898. [Crm_DeleClient_Data].[Address] AS [Address],
  3899. [Crm_DeleClient_Data].[HighestEducation] AS [HighestEducation],
  3900. [Crm_DeleClient_Data].[PostCodes] AS [PostCodes],
  3901. [Crm_DeleClient_Data].[CrmCompanyId] AS [CrmCompanyId],
  3902. [Crm_DeleClient_Data].[Job] AS [Job],
  3903. [Crm_DeleClient_Data].[WorkState] AS [WorkState],
  3904. [Crm_DeleClient_Data].[WorkDate] AS [WorkDate],
  3905. [Crm_DeleClient_Data].[Wage] AS [Wage],
  3906. [Crm_DeleClient_Data].[ClientPhone] AS [ClientPhone],
  3907. [Crm_DeleClient_Data].[ClientFax] AS [ClientFax],
  3908. [Crm_DeleClient_Data].[ClientEmail] AS [ClientEmail],
  3909. [Crm_DeleClient_Data].[ClientLeader] AS [ClientLeader],
  3910. [Crm_DeleClient_Data].[ClientLeaderJob] AS [ClientLeaderJob],
  3911. [Crm_DeleClient_Data].[IsGetSchengen] AS [IsGetSchengen],
  3912. [Crm_DeleClient_Data].[StartTime] AS [StartTime],
  3913. [Crm_DeleClient_Data].[EndTime] AS [EndTime],
  3914. [Crm_DeleClient_Data].[IsFinger] AS [IsFinger],
  3915. [Crm_DeleClient_Data].[FingerDate] AS [FingerDate],
  3916. [Crm_DeleClient_Data].[IsVisitUC] AS [IsVisitUC],
  3917. [Crm_DeleClient_Data].[USADate] AS [USADate],
  3918. [Crm_DeleClient_Data].[USADays] AS [USADays],
  3919. [Crm_DeleClient_Data].[CanDate] AS [CanDate],
  3920. [Crm_DeleClient_Data].[CanDays] AS [CanDays],
  3921. [Crm_DeleClient_Data].[IsUSAVia] AS [IsUSAVia],
  3922. [Crm_DeleClient_Data].[GetUSAVisaDate] AS [GetUSAVisaDate],
  3923. [Crm_DeleClient_Data].[GetUPPlace] AS [GetUPPlace],
  3924. [Crm_DeleClient_Data].[USAVisaCate] AS [USAVisaCate],
  3925. [Crm_DeleClient_Data].[USAVisaCode] AS [USAVisaCode],
  3926. [Crm_DeleClient_Data].[USAFinger] AS [USAFinger],
  3927. [Crm_DeleClient_Data].[IsRejected] AS [IsRejected],
  3928. [Crm_DeleClient_Data].[RejectedDate] AS [RejectedDate],
  3929. [Crm_DeleClient_Data].[RejectedPlace] AS [RejectedPlace],
  3930. [Crm_DeleClient_Data].[RejectedVisa] AS [RejectedVisa],
  3931. [Crm_DeleClient_Data].[IsRevoke] AS [IsRevoke],
  3932. [Crm_DeleClient_Data].[IsLose] AS [IsLose],
  3933. [Crm_DeleClient_Data].[LoseDate] AS [LoseDate],
  3934. [Crm_DeleClient_Data].[LoseCode] AS [LoseCode],
  3935. [Crm_DeleClient_Data].[IsUSAVisa] AS [IsUSAVisa],
  3936. [Crm_DeleClient_Data].[MateUSA] AS [MateUSA],
  3937. [Crm_DeleClient_Data].[MateIden] AS [MateIden],
  3938. [Crm_DeleClient_Data].[WHUSA] AS [WHUSA],
  3939. [Crm_DeleClient_Data].[WHIden] AS [WHIden],
  3940. [Crm_DeleClient_Data].[ParentUSA] AS [ParentUSA],
  3941. [Crm_DeleClient_Data].[ParentIden] AS [ParentIden],
  3942. [Crm_DeleClient_Data].[ChildUSA] AS [ChildUSA],
  3943. [Crm_DeleClient_Data].[ChildIden] AS [ChildIden],
  3944. [Crm_DeleClient_Data].[BroUSA] AS [BroUSA],
  3945. [Crm_DeleClient_Data].[BroIden] AS [BroIden],
  3946. [Crm_DeleClient_Data].[Social] AS [Social],
  3947. [Crm_DeleClient_Data].[IsArmy] AS [IsArmy],
  3948. [Crm_DeleClient_Data].[ArmyState] AS [ArmyState],
  3949. [Crm_DeleClient_Data].[CostBearers] AS [CostBearers],
  3950. [Crm_DeleClient_Data].[TableOpName] AS [TableOpName],
  3951. [Crm_DeleClient_Data].[TableOpTel] AS [TableOpTel],
  3952. [Crm_DeleClient_Data].[TableDate] AS [TableDate],
  3953. [Crm_DeleClient_Data].[Party] AS [Party],
  3954. [Crm_DeleClient_Data].[Nationality] AS [Nationality],
  3955. [Crm_DeleClient_Data].[WeddingDate] AS [WeddingDate],
  3956. [Crm_DeleClient_Data].[DivorceDate] AS [DivorceDate],
  3957. [Crm_DeleClient_Data].[MateName] AS [MateName],
  3958. [Crm_DeleClient_Data].[MateBirthDay] AS [MateBirthDay],
  3959. [Crm_DeleClient_Data].[MateBirthCity] AS [MateBirthCity],
  3960. [Crm_DeleClient_Data].[MateBirthCountry] AS [MateBirthCountry],
  3961. [Crm_DeleClient_Data].[MateAddress] AS [MateAddress],
  3962. [Crm_DeleClient_Data].[MateClient] AS [MateClient],
  3963. [Crm_DeleClient_Data].[MateClientAddress] AS [MateClientAddress],
  3964. [Crm_DeleClient_Data].[MateJob] AS [MateJob],
  3965. [Crm_DeleClient_Data].[VisitCountry] AS [VisitCountry],
  3966. [Crm_DeleClient_Data].[Paper] AS [Paper],
  3967. [Crm_DeleClient_Data].[Papent] AS [Papent],
  3968. [Crm_DeleClient_Data].[PhD] AS [PhD],
  3969. [Crm_DeleClient_Data].[CreateUserId] AS [CreateUserId],
  3970. [Crm_DeleClient_Data].[CreateTime] AS [CreateTime],
  3971. [Crm_DeleClient_Data].[DeleteUserId] AS [DeleteUserId],
  3972. [Crm_DeleClient_Data].[DeleteTime] AS [DeleteTime],
  3973. [Crm_DeleClient_Data].[Remark] AS [Remark],
  3974. [Crm_DeleClient_Data].[IsDel] AS [IsDel]
  3975. FROM [dbo].[Crm_DeleClient_Data] AS [Crm_DeleClient_Data]</DefiningQuery>
  3976. </EntitySet>
  3977. <EntitySet Name="Crm_NewClientData_Encryption" EntityType="Self.Crm_NewClientData_Encryption" store:Type="Tables" store:Schema="dbo">
  3978. <DefiningQuery>SELECT
  3979. [Crm_NewClientData_Encryption].[Id] AS [Id],
  3980. [Crm_NewClientData_Encryption].[Number] AS [Number],
  3981. [Crm_NewClientData_Encryption].[Lvlid] AS [Lvlid],
  3982. [Crm_NewClientData_Encryption].[Client] AS [Client],
  3983. [Crm_NewClientData_Encryption].[Weight] AS [Weight],
  3984. [Crm_NewClientData_Encryption].[ClientShort] AS [ClientShort],
  3985. [Crm_NewClientData_Encryption].[Contact] AS [Contact],
  3986. [Crm_NewClientData_Encryption].[Gender] AS [Gender],
  3987. [Crm_NewClientData_Encryption].[Passport] AS [Passport],
  3988. [Crm_NewClientData_Encryption].[PassportDate] AS [PassportDate],
  3989. [Crm_NewClientData_Encryption].[Job] AS [Job],
  3990. [Crm_NewClientData_Encryption].[TelePhone] AS [TelePhone],
  3991. [Crm_NewClientData_Encryption].[Phone] AS [Phone],
  3992. [Crm_NewClientData_Encryption].[Email] AS [Email],
  3993. [Crm_NewClientData_Encryption].[Location] AS [Location],
  3994. [Crm_NewClientData_Encryption].[Address] AS [Address],
  3995. [Crm_NewClientData_Encryption].[Birthday] AS [Birthday],
  3996. [Crm_NewClientData_Encryption].[OtherInfo] AS [OtherInfo],
  3997. [Crm_NewClientData_Encryption].[WeChat] AS [WeChat],
  3998. [Crm_NewClientData_Encryption].[Category] AS [Category],
  3999. [Crm_NewClientData_Encryption].[PreDele] AS [PreDele],
  4000. [Crm_NewClientData_Encryption].[FinlishedDele] AS [FinlishedDele],
  4001. [Crm_NewClientData_Encryption].[CreateUserId] AS [CreateUserId],
  4002. [Crm_NewClientData_Encryption].[CreateTime] AS [CreateTime],
  4003. [Crm_NewClientData_Encryption].[DeleteUserId] AS [DeleteUserId],
  4004. [Crm_NewClientData_Encryption].[DeleteTime] AS [DeleteTime],
  4005. [Crm_NewClientData_Encryption].[Remark] AS [Remark],
  4006. [Crm_NewClientData_Encryption].[IsDel] AS [IsDel]
  4007. FROM [dbo].[Crm_NewClientData_Encryption] AS [Crm_NewClientData_Encryption]</DefiningQuery>
  4008. </EntitySet>
  4009. <EntitySet Name="Res_InvitationOfficialActivityData_Data" EntityType="Self.Res_InvitationOfficialActivityData_Data" store:Type="Tables" store:Schema="dbo">
  4010. <DefiningQuery>SELECT
  4011. [Res_InvitationOfficialActivityData_Data].[Id] AS [Id],
  4012. [Res_InvitationOfficialActivityData_Data].[Country] AS [Country],
  4013. [Res_InvitationOfficialActivityData_Data].[City] AS [City],
  4014. [Res_InvitationOfficialActivityData_Data].[UnitName] AS [UnitName],
  4015. [Res_InvitationOfficialActivityData_Data].[UnitWeb] AS [UnitWeb],
  4016. [Res_InvitationOfficialActivityData_Data].[Field] AS [Field],
  4017. [Res_InvitationOfficialActivityData_Data].[Address] AS [Address],
  4018. [Res_InvitationOfficialActivityData_Data].[UnitInfo] AS [UnitInfo],
  4019. [Res_InvitationOfficialActivityData_Data].[Contact] AS [Contact],
  4020. [Res_InvitationOfficialActivityData_Data].[Job] AS [Job],
  4021. [Res_InvitationOfficialActivityData_Data].[Tel] AS [Tel],
  4022. [Res_InvitationOfficialActivityData_Data].[Email] AS [Email],
  4023. [Res_InvitationOfficialActivityData_Data].[WeChat] AS [WeChat],
  4024. [Res_InvitationOfficialActivityData_Data].[FaceBook] AS [FaceBook],
  4025. [Res_InvitationOfficialActivityData_Data].[Ins] AS [Ins],
  4026. [Res_InvitationOfficialActivityData_Data].[Delegation] AS [Delegation],
  4027. [Res_InvitationOfficialActivityData_Data].[FileName] AS [FileName],
  4028. [Res_InvitationOfficialActivityData_Data].[FilePath] AS [FilePath],
  4029. [Res_InvitationOfficialActivityData_Data].[SndFileName] AS [SndFileName],
  4030. [Res_InvitationOfficialActivityData_Data].[SndFilePath] AS [SndFilePath],
  4031. [Res_InvitationOfficialActivityData_Data].[Fax] AS [Fax],
  4032. [Res_InvitationOfficialActivityData_Data].[OtherInfo] AS [OtherInfo],
  4033. [Res_InvitationOfficialActivityData_Data].[Background] AS [Background],
  4034. [Res_InvitationOfficialActivityData_Data].[CreateUserId] AS [CreateUserId],
  4035. [Res_InvitationOfficialActivityData_Data].[CreateTime] AS [CreateTime],
  4036. [Res_InvitationOfficialActivityData_Data].[DeleteUserId] AS [DeleteUserId],
  4037. [Res_InvitationOfficialActivityData_Data].[DeleteTime] AS [DeleteTime],
  4038. [Res_InvitationOfficialActivityData_Data].[Remark] AS [Remark],
  4039. [Res_InvitationOfficialActivityData_Data].[IsDel] AS [IsDel]
  4040. FROM [dbo].[Res_InvitationOfficialActivityData_Data] AS [Res_InvitationOfficialActivityData_Data]</DefiningQuery>
  4041. </EntitySet>
  4042. <EntitySet Name="Res_LocalGuideData" EntityType="Self.Res_LocalGuideData" store:Type="Tables" store:Schema="dbo">
  4043. <DefiningQuery>SELECT
  4044. [Res_LocalGuideData].[Id] AS [Id],
  4045. [Res_LocalGuideData].[UnitArea] AS [UnitArea],
  4046. [Res_LocalGuideData].[UnitName] AS [UnitName],
  4047. [Res_LocalGuideData].[Address] AS [Address],
  4048. [Res_LocalGuideData].[Contact] AS [Contact],
  4049. [Res_LocalGuideData].[ContactTel] AS [ContactTel],
  4050. [Res_LocalGuideData].[ContactEmail] AS [ContactEmail],
  4051. [Res_LocalGuideData].[ContactFax] AS [ContactFax],
  4052. [Res_LocalGuideData].[OtherInfo] AS [OtherInfo],
  4053. [Res_LocalGuideData].[Score] AS [Score],
  4054. [Res_LocalGuideData].[SuitScore] AS [SuitScore],
  4055. [Res_LocalGuideData].[ServeScore] AS [ServeScore],
  4056. [Res_LocalGuideData].[TalkProScore] AS [TalkProScore],
  4057. [Res_LocalGuideData].[TimeScore] AS [TimeScore],
  4058. [Res_LocalGuideData].[FitScore] AS [FitScore],
  4059. [Res_LocalGuideData].[StrainScore] AS [StrainScore],
  4060. [Res_LocalGuideData].[LocalAndChineseScore] AS [LocalAndChineseScore],
  4061. [Res_LocalGuideData].[StaffType] AS [StaffType],
  4062. [Res_LocalGuideData].[LastUpdateTime] AS [LastUpdateTime],
  4063. [Res_LocalGuideData].[CreateUserId] AS [CreateUserId],
  4064. [Res_LocalGuideData].[CreateTime] AS [CreateTime],
  4065. [Res_LocalGuideData].[DeleteUserId] AS [DeleteUserId],
  4066. [Res_LocalGuideData].[DeleteTime] AS [DeleteTime],
  4067. [Res_LocalGuideData].[Remark] AS [Remark],
  4068. [Res_LocalGuideData].[IsDel] AS [IsDel],
  4069. [Res_LocalGuideData].[LastUpdateUserId] AS [LastUpdateUserId]
  4070. FROM [dbo].[Res_LocalGuideData] AS [Res_LocalGuideData]</DefiningQuery>
  4071. </EntitySet>
  4072. <EntitySet Name="Res_OfficialActivities0426" EntityType="Self.Res_OfficialActivities0426" store:Type="Tables" store:Schema="dbo">
  4073. <DefiningQuery>SELECT
  4074. [Res_OfficialActivities0426].[Id] AS [Id],
  4075. [Res_OfficialActivities0426].[DiId] AS [DiId],
  4076. [Res_OfficialActivities0426].[Type] AS [Type],
  4077. [Res_OfficialActivities0426].[Client] AS [Client],
  4078. [Res_OfficialActivities0426].[Date] AS [Date],
  4079. [Res_OfficialActivities0426].[Time] AS [Time],
  4080. [Res_OfficialActivities0426].[Address] AS [Address],
  4081. [Res_OfficialActivities0426].[Contact] AS [Contact],
  4082. [Res_OfficialActivities0426].[Job] AS [Job],
  4083. [Res_OfficialActivities0426].[Tel] AS [Tel],
  4084. [Res_OfficialActivities0426].[OfficialForm] AS [OfficialForm],
  4085. [Res_OfficialActivities0426].[Setting] AS [Setting],
  4086. [Res_OfficialActivities0426].[Dresscode] AS [Dresscode],
  4087. [Res_OfficialActivities0426].[Attendees] AS [Attendees],
  4088. [Res_OfficialActivities0426].[IsNeedTrans] AS [IsNeedTrans],
  4089. [Res_OfficialActivities0426].[Translators] AS [Translators],
  4090. [Res_OfficialActivities0426].[language] AS [language],
  4091. [Res_OfficialActivities0426].[Trip] AS [Trip],
  4092. [Res_OfficialActivities0426].[CreateUserId] AS [CreateUserId],
  4093. [Res_OfficialActivities0426].[CreateTime] AS [CreateTime],
  4094. [Res_OfficialActivities0426].[DeleteUserId] AS [DeleteUserId],
  4095. [Res_OfficialActivities0426].[DeleteTime] AS [DeleteTime],
  4096. [Res_OfficialActivities0426].[Remark] AS [Remark],
  4097. [Res_OfficialActivities0426].[Isdel] AS [Isdel]
  4098. FROM [dbo].[Res_OfficialActivities0426] AS [Res_OfficialActivities0426]</DefiningQuery>
  4099. </EntitySet>
  4100. <EntitySet Name="Res_TranslatorLibrary_Encryption" EntityType="Self.Res_TranslatorLibrary_Encryption" store:Type="Tables" store:Schema="dbo">
  4101. <DefiningQuery>SELECT
  4102. [Res_TranslatorLibrary_Encryption].[Id] AS [Id],
  4103. [Res_TranslatorLibrary_Encryption].[Area] AS [Area],
  4104. [Res_TranslatorLibrary_Encryption].[Name] AS [Name],
  4105. [Res_TranslatorLibrary_Encryption].[Sex] AS [Sex],
  4106. [Res_TranslatorLibrary_Encryption].[Photo] AS [Photo],
  4107. [Res_TranslatorLibrary_Encryption].[Tel] AS [Tel],
  4108. [Res_TranslatorLibrary_Encryption].[Email] AS [Email],
  4109. [Res_TranslatorLibrary_Encryption].[WechatNo] AS [WechatNo],
  4110. [Res_TranslatorLibrary_Encryption].[OtherSocialAccounts] AS [OtherSocialAccounts],
  4111. [Res_TranslatorLibrary_Encryption].[Language] AS [Language],
  4112. [Res_TranslatorLibrary_Encryption].[Price] AS [Price],
  4113. [Res_TranslatorLibrary_Encryption].[Currency] AS [Currency],
  4114. [Res_TranslatorLibrary_Encryption].[Files] AS [Files],
  4115. [Res_TranslatorLibrary_Encryption].[CreateUserId] AS [CreateUserId],
  4116. [Res_TranslatorLibrary_Encryption].[CreateTime] AS [CreateTime],
  4117. [Res_TranslatorLibrary_Encryption].[DeleteUserId] AS [DeleteUserId],
  4118. [Res_TranslatorLibrary_Encryption].[DeleteTime] AS [DeleteTime],
  4119. [Res_TranslatorLibrary_Encryption].[Remark] AS [Remark],
  4120. [Res_TranslatorLibrary_Encryption].[IsDel] AS [IsDel]
  4121. FROM [dbo].[Res_TranslatorLibrary_Encryption] AS [Res_TranslatorLibrary_Encryption]</DefiningQuery>
  4122. </EntitySet>
  4123. <EntitySet Name="Sys_Users" EntityType="Self.Sys_Users" store:Type="Tables" store:Schema="dbo">
  4124. <DefiningQuery>SELECT
  4125. [Sys_Users].[Id] AS [Id],
  4126. [Sys_Users].[CnName] AS [CnName],
  4127. [Sys_Users].[EnName] AS [EnName],
  4128. [Sys_Users].[Number] AS [Number],
  4129. [Sys_Users].[CompanyId] AS [CompanyId],
  4130. [Sys_Users].[DepId] AS [DepId],
  4131. [Sys_Users].[JobPostId] AS [JobPostId],
  4132. [Sys_Users].[Password] AS [Password],
  4133. [Sys_Users].[Sex] AS [Sex],
  4134. [Sys_Users].[Ext] AS [Ext],
  4135. [Sys_Users].[Phone] AS [Phone],
  4136. [Sys_Users].[UrgentPhone] AS [UrgentPhone],
  4137. [Sys_Users].[Email] AS [Email],
  4138. [Sys_Users].[Address] AS [Address],
  4139. [Sys_Users].[Edate] AS [Edate],
  4140. [Sys_Users].[Rdate] AS [Rdate],
  4141. [Sys_Users].[Seniority] AS [Seniority],
  4142. [Sys_Users].[Birthday] AS [Birthday],
  4143. [Sys_Users].[IDCard] AS [IDCard],
  4144. [Sys_Users].[StartWorkDate] AS [StartWorkDate],
  4145. [Sys_Users].[GraduateInstitutions] AS [GraduateInstitutions],
  4146. [Sys_Users].[Professional] AS [Professional],
  4147. [Sys_Users].[Education] AS [Education],
  4148. [Sys_Users].[TheOrAdultEducation] AS [TheOrAdultEducation],
  4149. [Sys_Users].[MaritalStatus] AS [MaritalStatus],
  4150. [Sys_Users].[HomeAddress] AS [HomeAddress],
  4151. [Sys_Users].[UsePeriod] AS [UsePeriod],
  4152. [Sys_Users].[WorkExperience] AS [WorkExperience],
  4153. [Sys_Users].[Certificate] AS [Certificate],
  4154. [Sys_Users].[HrAudit] AS [HrAudit],
  4155. [Sys_Users].[QiyeChatUserId] AS [QiyeChatUserId],
  4156. [Sys_Users].[CreateUserId] AS [CreateUserId],
  4157. [Sys_Users].[CreateTime] AS [CreateTime],
  4158. [Sys_Users].[DeleteUserId] AS [DeleteUserId],
  4159. [Sys_Users].[DeleteTime] AS [DeleteTime],
  4160. [Sys_Users].[Remark] AS [Remark],
  4161. [Sys_Users].[IsDel] AS [IsDel]
  4162. FROM [dbo].[Sys_Users] AS [Sys_Users]</DefiningQuery>
  4163. </EntitySet>
  4164. <EntitySet Name="Sys_Users_Encryption" EntityType="Self.Sys_Users_Encryption" store:Type="Tables" store:Schema="dbo">
  4165. <DefiningQuery>SELECT
  4166. [Sys_Users_Encryption].[Id] AS [Id],
  4167. [Sys_Users_Encryption].[CnName] AS [CnName],
  4168. [Sys_Users_Encryption].[EnName] AS [EnName],
  4169. [Sys_Users_Encryption].[Number] AS [Number],
  4170. [Sys_Users_Encryption].[CompanyId] AS [CompanyId],
  4171. [Sys_Users_Encryption].[DepId] AS [DepId],
  4172. [Sys_Users_Encryption].[JobPostId] AS [JobPostId],
  4173. [Sys_Users_Encryption].[Password] AS [Password],
  4174. [Sys_Users_Encryption].[Sex] AS [Sex],
  4175. [Sys_Users_Encryption].[Ext] AS [Ext],
  4176. [Sys_Users_Encryption].[Phone] AS [Phone],
  4177. [Sys_Users_Encryption].[UrgentPhone] AS [UrgentPhone],
  4178. [Sys_Users_Encryption].[Email] AS [Email],
  4179. [Sys_Users_Encryption].[Address] AS [Address],
  4180. [Sys_Users_Encryption].[Edate] AS [Edate],
  4181. [Sys_Users_Encryption].[Rdate] AS [Rdate],
  4182. [Sys_Users_Encryption].[Seniority] AS [Seniority],
  4183. [Sys_Users_Encryption].[Birthday] AS [Birthday],
  4184. [Sys_Users_Encryption].[IDCard] AS [IDCard],
  4185. [Sys_Users_Encryption].[StartWorkDate] AS [StartWorkDate],
  4186. [Sys_Users_Encryption].[GraduateInstitutions] AS [GraduateInstitutions],
  4187. [Sys_Users_Encryption].[Professional] AS [Professional],
  4188. [Sys_Users_Encryption].[Education] AS [Education],
  4189. [Sys_Users_Encryption].[TheOrAdultEducation] AS [TheOrAdultEducation],
  4190. [Sys_Users_Encryption].[MaritalStatus] AS [MaritalStatus],
  4191. [Sys_Users_Encryption].[HomeAddress] AS [HomeAddress],
  4192. [Sys_Users_Encryption].[UsePeriod] AS [UsePeriod],
  4193. [Sys_Users_Encryption].[WorkExperience] AS [WorkExperience],
  4194. [Sys_Users_Encryption].[Certificate] AS [Certificate],
  4195. [Sys_Users_Encryption].[HrAudit] AS [HrAudit],
  4196. [Sys_Users_Encryption].[QiyeChatUserId] AS [QiyeChatUserId],
  4197. [Sys_Users_Encryption].[CreateUserId] AS [CreateUserId],
  4198. [Sys_Users_Encryption].[CreateTime] AS [CreateTime],
  4199. [Sys_Users_Encryption].[DeleteUserId] AS [DeleteUserId],
  4200. [Sys_Users_Encryption].[DeleteTime] AS [DeleteTime],
  4201. [Sys_Users_Encryption].[Remark] AS [Remark],
  4202. [Sys_Users_Encryption].[IsDel] AS [IsDel]
  4203. FROM [dbo].[Sys_Users_Encryption] AS [Sys_Users_Encryption]</DefiningQuery>
  4204. </EntitySet>
  4205. </EntityContainer>
  4206. </Schema></edmx:StorageModels>
  4207. <!-- CSDL content -->
  4208. <edmx:ConceptualModels>
  4209. <Schema Namespace="oa2023DBModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  4210. <EntityType Name="Air_TicketBlackCode">
  4211. <Key>
  4212. <PropertyRef Name="Id" />
  4213. </Key>
  4214. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4215. <Property Name="DiId" Type="Int32" />
  4216. <Property Name="LeaveCode" Type="String" MaxLength="800" FixedLength="false" Unicode="false" />
  4217. <Property Name="BlackCode" Type="String" MaxLength="800" FixedLength="false" Unicode="false" />
  4218. <Property Name="ReturnCode" Type="String" MaxLength="800" FixedLength="false" Unicode="false" />
  4219. <Property Name="Price" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4220. <Property Name="NowPrice" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4221. <Property Name="BCPrice" Type="Decimal" Precision="10" Scale="2" />
  4222. <Property Name="ECPrice" Type="Decimal" Precision="10" Scale="2" />
  4223. <Property Name="CreateUserId" Type="Int32" />
  4224. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4225. <Property Name="DeleteUserId" Type="Int32" />
  4226. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4227. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4228. <Property Name="IsDel" Type="Int32" />
  4229. <Property Name="Title" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4230. </EntityType>
  4231. <EntityType Name="Bus_ConfItem">
  4232. <Key>
  4233. <PropertyRef Name="Id" />
  4234. </Key>
  4235. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4236. <Property Name="ItemId" Type="Int32" />
  4237. <Property Name="ConfListId" Type="Int32" />
  4238. <Property Name="Count" Type="Int32" />
  4239. <Property Name="Specs" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4240. <Property Name="CurrCost" Type="Decimal" Precision="9" Scale="2" />
  4241. <Property Name="OpRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  4242. <Property Name="CreateUserId" Type="Int32" />
  4243. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4244. <Property Name="DeleteUserId" Type="Int32" />
  4245. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4246. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4247. <Property Name="IsDel" Type="Int32" />
  4248. </EntityType>
  4249. <EntityType Name="Bus_ConfItemList">
  4250. <Key>
  4251. <PropertyRef Name="Id" />
  4252. </Key>
  4253. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4254. <Property Name="Diid" Type="Int32" />
  4255. <Property Name="TotalCost" Type="Decimal" Precision="10" Scale="2" />
  4256. <Property Name="ExcelPath" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  4257. <Property Name="CreateUserId" Type="Int32" />
  4258. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4259. <Property Name="DeleteUserId" Type="Int32" />
  4260. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4261. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4262. <Property Name="IsDel" Type="Int32" />
  4263. </EntityType>
  4264. <EntityType Name="Bus_MsgPost">
  4265. <Key>
  4266. <PropertyRef Name="Id" />
  4267. </Key>
  4268. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4269. <Property Name="Source" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
  4270. <Property Name="PostType" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
  4271. <Property Name="PhoneNumber" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
  4272. <Property Name="PostResult" Type="String" MaxLength="500" FixedLength="false" Unicode="true" Nullable="false" />
  4273. <Property Name="CreateUserId" Type="Int32" />
  4274. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4275. <Property Name="DeleteUserId" Type="Int32" />
  4276. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4277. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4278. <Property Name="IsDel" Type="Int32" />
  4279. </EntityType>
  4280. <EntityType Name="Crm_ClientDataAndBusiness">
  4281. <Key>
  4282. <PropertyRef Name="Id" />
  4283. </Key>
  4284. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4285. <Property Name="SetDataId" Type="Int32" />
  4286. <Property Name="NewClientDataId" Type="Int32" />
  4287. <Property Name="CreateUserId" Type="Int32" />
  4288. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4289. <Property Name="DeleteUserId" Type="Int32" />
  4290. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4291. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4292. <Property Name="IsDel" Type="Int32" />
  4293. </EntityType>
  4294. <EntityType Name="Crm_ClientDataAndUser">
  4295. <Key>
  4296. <PropertyRef Name="Id" />
  4297. </Key>
  4298. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4299. <Property Name="UsersId" Type="Int32" />
  4300. <Property Name="NewClientDataId" Type="Int32" />
  4301. <Property Name="CreateUserId" Type="Int32" />
  4302. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4303. <Property Name="DeleteUserId" Type="Int32" />
  4304. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4305. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4306. <Property Name="IsDel" Type="Int32" />
  4307. </EntityType>
  4308. <EntityType Name="Crm_CustomerCert">
  4309. <Key>
  4310. <PropertyRef Name="Id" />
  4311. </Key>
  4312. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4313. <Property Name="DcId" Type="Int32" />
  4314. <Property Name="SdId" Type="Int32" />
  4315. <Property Name="PassportType" Type="Int32" />
  4316. <Property Name="CertNo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4317. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4318. <Property Name="Area" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4319. <Property Name="TargetCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4320. <Property Name="IssueDt" Type="DateTime" Precision="3" />
  4321. <Property Name="ExpiryDt" Type="DateTime" Precision="3" />
  4322. <Property Name="IDCardAddress" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4323. <Property Name="CreateUserId" Type="Int32" />
  4324. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4325. <Property Name="DeleteUserId" Type="Int32" />
  4326. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4327. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4328. <Property Name="IsDel" Type="Int32" />
  4329. </EntityType>
  4330. <EntityType Name="Crm_CustomerCompany">
  4331. <Key>
  4332. <PropertyRef Name="Id" />
  4333. </Key>
  4334. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4335. <Property Name="CompanyAbbreviation" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4336. <Property Name="CompanyFullName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4337. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4338. <Property Name="PostCodes" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4339. <Property Name="LastedOpUserId" Type="Int32" />
  4340. <Property Name="LastedOpDt" Type="DateTime" Precision="3" />
  4341. <Property Name="CreateUserId" Type="Int32" />
  4342. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4343. <Property Name="DeleteUserId" Type="Int32" />
  4344. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4345. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4346. <Property Name="IsDel" Type="Int32" />
  4347. </EntityType>
  4348. <EntityType Name="Crm_CustomerFile">
  4349. <Key>
  4350. <PropertyRef Name="Id" />
  4351. </Key>
  4352. <Property Name="Id" Type="Int32" Nullable="false" />
  4353. <Property Name="DcId" Type="Int32" />
  4354. <Property Name="Publisher" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4355. <Property Name="FileName" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4356. <Property Name="FileBusiType" Type="Int32" />
  4357. <Property Name="CreateUserId" Type="Int32" />
  4358. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4359. <Property Name="DeleteUserId" Type="Int32" />
  4360. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4361. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4362. <Property Name="IsDel" Type="Int32" />
  4363. </EntityType>
  4364. <EntityType Name="Crm_DeleClient">
  4365. <Key>
  4366. <PropertyRef Name="Id" />
  4367. </Key>
  4368. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4369. <Property Name="DiId" Type="Int32" />
  4370. <Property Name="LastName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4371. <Property Name="FirstName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4372. <Property Name="OldName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4373. <Property Name="Pinyin" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4374. <Property Name="Sex" Type="Int32" />
  4375. <Property Name="Marriage" Type="Int32" />
  4376. <Property Name="Tel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4377. <Property Name="BirthProvince" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4378. <Property Name="BirthCity" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4379. <Property Name="BirthDay" Type="DateTime" Precision="3" />
  4380. <Property Name="AirType" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4381. <Property Name="SeatPref" Type="Int32" />
  4382. <Property Name="AirRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4383. <Property Name="RoomType" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4384. <Property Name="RoomPref" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4385. <Property Name="Phone" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4386. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4387. <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4388. <Property Name="HighestEducation" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4389. <Property Name="PostCodes" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4390. <Property Name="CrmCompanyId" Type="Int32" />
  4391. <Property Name="Job" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4392. <Property Name="WorkState" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4393. <Property Name="WorkDate" Type="DateTime" Precision="3" />
  4394. <Property Name="Wage" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4395. <Property Name="ClientPhone" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4396. <Property Name="ClientFax" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4397. <Property Name="ClientEmail" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4398. <Property Name="ClientLeader" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4399. <Property Name="ClientLeaderJob" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4400. <Property Name="IsGetSchengen" Type="Int32" />
  4401. <Property Name="StartTime" Type="DateTime" Precision="3" />
  4402. <Property Name="EndTime" Type="DateTime" Precision="3" />
  4403. <Property Name="IsFinger" Type="Int32" />
  4404. <Property Name="FingerDate" Type="DateTime" Precision="3" />
  4405. <Property Name="IsVisitUC" Type="Int32" />
  4406. <Property Name="USADate" Type="DateTime" Precision="3" />
  4407. <Property Name="USADays" Type="Int32" />
  4408. <Property Name="CanDate" Type="DateTime" Precision="3" />
  4409. <Property Name="CanDays" Type="Int32" />
  4410. <Property Name="IsUSAVia" Type="Int32" />
  4411. <Property Name="GetUSAVisaDate" Type="DateTime" Precision="3" />
  4412. <Property Name="GetUPPlace" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4413. <Property Name="USAVisaCate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4414. <Property Name="USAVisaCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4415. <Property Name="USAFinger" Type="Int32" />
  4416. <Property Name="IsRejected" Type="Int32" />
  4417. <Property Name="RejectedDate" Type="DateTime" Precision="3" />
  4418. <Property Name="RejectedPlace" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4419. <Property Name="RejectedVisa" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4420. <Property Name="IsRevoke" Type="Int32" />
  4421. <Property Name="IsLose" Type="Int32" />
  4422. <Property Name="LoseDate" Type="DateTime" Precision="3" />
  4423. <Property Name="LoseCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4424. <Property Name="IsUSAVisa" Type="Int32" />
  4425. <Property Name="MateUSA" Type="Int32" />
  4426. <Property Name="MateIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4427. <Property Name="WHUSA" Type="Int32" />
  4428. <Property Name="WHIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4429. <Property Name="ParentUSA" Type="Int32" />
  4430. <Property Name="ParentIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4431. <Property Name="ChildUSA" Type="Int32" />
  4432. <Property Name="ChildIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4433. <Property Name="BroUSA" Type="Int32" />
  4434. <Property Name="BroIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4435. <Property Name="Social" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4436. <Property Name="IsArmy" Type="Int32" />
  4437. <Property Name="ArmyState" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4438. <Property Name="CostBearers" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4439. <Property Name="TableOpName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4440. <Property Name="TableOpTel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4441. <Property Name="TableDate" Type="DateTime" Precision="3" />
  4442. <Property Name="Party" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4443. <Property Name="Nationality" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4444. <Property Name="WeddingDate" Type="DateTime" Precision="3" />
  4445. <Property Name="DivorceDate" Type="DateTime" Precision="3" />
  4446. <Property Name="MateName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4447. <Property Name="MateBirthDay" Type="DateTime" Precision="3" />
  4448. <Property Name="MateBirthCity" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4449. <Property Name="MateBirthCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4450. <Property Name="MateAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4451. <Property Name="MateClient" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4452. <Property Name="MateClientAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4453. <Property Name="MateJob" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4454. <Property Name="VisitCountry" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4455. <Property Name="Paper" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4456. <Property Name="Papent" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4457. <Property Name="PhD" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4458. <Property Name="CreateUserId" Type="Int32" />
  4459. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4460. <Property Name="DeleteUserId" Type="Int32" />
  4461. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4462. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4463. <Property Name="IsDel" Type="Int32" />
  4464. </EntityType>
  4465. <EntityType Name="Crm_GroupCustomer">
  4466. <Key>
  4467. <PropertyRef Name="Id" />
  4468. </Key>
  4469. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4470. <Property Name="DiId" Type="Int32" />
  4471. <Property Name="FirstName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4472. <Property Name="LastName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4473. <Property Name="Pinyin" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4474. <Property Name="Company" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4475. <Property Name="Job" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4476. <Property Name="Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4477. <Property Name="Sex" Type="Int32" />
  4478. <Property Name="IDcard" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4479. <Property Name="PassprotType" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4480. <Property Name="passportCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4481. <Property Name="PassportNo" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4482. <Property Name="IssuePlace" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4483. <Property Name="IssueDate" Type="DateTime" Precision="0" />
  4484. <Property Name="ExpiryDate" Type="DateTime" Precision="0" />
  4485. <Property Name="Birthday" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  4486. <Property Name="AirType" Type="Int32" />
  4487. <Property Name="AirRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4488. <Property Name="RoomType" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4489. <Property Name="CreateUserId" Type="Int32" />
  4490. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4491. <Property Name="DeleteUserId" Type="Int32" />
  4492. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4493. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4494. <Property Name="IsDel" Type="Int32" />
  4495. </EntityType>
  4496. <EntityType Name="Crm_NewClientData">
  4497. <Key>
  4498. <PropertyRef Name="Id" />
  4499. </Key>
  4500. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4501. <Property Name="Number" Type="Int32" />
  4502. <Property Name="Lvlid" Type="Int32" />
  4503. <Property Name="Client" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4504. <Property Name="Weight" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  4505. <Property Name="ClientShort" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4506. <Property Name="Contact" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4507. <Property Name="Gender" Type="Int32" />
  4508. <Property Name="Passport" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4509. <Property Name="PassportDate" Type="DateTime" Precision="3" />
  4510. <Property Name="Job" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4511. <Property Name="TelePhone" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4512. <Property Name="Phone" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4513. <Property Name="Email" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4514. <Property Name="Location" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4515. <Property Name="Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4516. <Property Name="Birthday" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4517. <Property Name="OtherInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4518. <Property Name="WeChat" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  4519. <Property Name="Category" Type="Int32" />
  4520. <Property Name="PreDele" Type="Int32" />
  4521. <Property Name="FinlishedDele" Type="Int32" />
  4522. <Property Name="CreateUserId" Type="Int32" />
  4523. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4524. <Property Name="DeleteUserId" Type="Int32" />
  4525. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="true" />
  4526. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  4527. <Property Name="IsDel" Type="Int32" />
  4528. <Property Name="LastUpdateUserId" Type="Int32" />
  4529. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  4530. </EntityType>
  4531. <EntityType Name="Crm_TableOperationRecord">
  4532. <Key>
  4533. <PropertyRef Name="Id" />
  4534. </Key>
  4535. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4536. <Property Name="TableName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4537. <Property Name="PortType" Type="Int32" />
  4538. <Property Name="OperationItem" Type="Int32" />
  4539. <Property Name="DataId" Type="Int32" />
  4540. <Property Name="CreateUserId" Type="Int32" />
  4541. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4542. <Property Name="DeleteUserId" Type="Int32" />
  4543. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4544. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4545. <Property Name="IsDel" Type="Int32" />
  4546. <Property Name="Status" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4547. <Property Name="RemoteIp" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4548. <Property Name="Location" Type="String" MaxLength="150" FixedLength="false" Unicode="false" />
  4549. <Property Name="browser" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4550. <Property Name="Os" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4551. <Property Name="Elapsed" Type="Int64" />
  4552. <Property Name="RequestParam" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4553. <Property Name="ReturnResult" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4554. <Property Name="UpdatePreData" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4555. <Property Name="UpdateBefData" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4556. <Property Name="RequestUrl" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4557. <Property Name="DeviceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4558. </EntityType>
  4559. <EntityType Name="Crm_VisaCustomerCompany">
  4560. <Key>
  4561. <PropertyRef Name="Id" />
  4562. </Key>
  4563. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4564. <Property Name="DcId" Type="Int32" />
  4565. <Property Name="Company" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4566. <Property Name="CompanyAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4567. <Property Name="Phone" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4568. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4569. <Property Name="LeaderName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4570. <Property Name="WorkStart" Type="DateTime" Precision="3" />
  4571. <Property Name="WorkEnd" Type="DateTime" Precision="3" />
  4572. <Property Name="WorkState" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4573. <Property Name="CreateUserId" Type="Int32" />
  4574. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4575. <Property Name="DeleteUserId" Type="Int32" />
  4576. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4577. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4578. <Property Name="IsDel" Type="Int32" />
  4579. </EntityType>
  4580. <EntityType Name="Crm_VisaCustomerFamily">
  4581. <Key>
  4582. <PropertyRef Name="Id" />
  4583. </Key>
  4584. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4585. <Property Name="DcId" Type="Int32" />
  4586. <Property Name="Appellation" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4587. <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4588. <Property Name="BirthDay" Type="DateTime" Precision="3" />
  4589. <Property Name="BirthPlace" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4590. <Property Name="Politics" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4591. <Property Name="Client" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4592. <Property Name="Address" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4593. <Property Name="IsEu" Type="Int32" />
  4594. <Property Name="NameSnd" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4595. <Property Name="BirthDaySnd" Type="DateTime" Precision="3" />
  4596. <Property Name="Nationality" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4597. <Property Name="IDCard" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4598. <Property Name="Reletionship" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4599. <Property Name="IsUSA" Type="Int32" />
  4600. <Property Name="CreateUserId" Type="Int32" />
  4601. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4602. <Property Name="DeleteUserId" Type="Int32" />
  4603. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4604. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4605. <Property Name="IsDel" Type="Int32" />
  4606. </EntityType>
  4607. <EntityType Name="Crm_VisaCustomerSchool">
  4608. <Key>
  4609. <PropertyRef Name="Id" />
  4610. </Key>
  4611. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4612. <Property Name="DcId" Type="Int32" />
  4613. <Property Name="School" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4614. <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4615. <Property Name="Teacher" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4616. <Property Name="Education" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4617. <Property Name="Subject" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4618. <Property Name="StudyStart" Type="DateTime" Precision="3" />
  4619. <Property Name="StudyEnd" Type="DateTime" Precision="3" />
  4620. <Property Name="CreateUserId" Type="Int32" />
  4621. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4622. <Property Name="DeleteUserId" Type="Int32" />
  4623. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4624. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4625. <Property Name="IsDel" Type="Int32" />
  4626. </EntityType>
  4627. <EntityType Name="Dis_City">
  4628. <Key>
  4629. <PropertyRef Name="Id" />
  4630. </Key>
  4631. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4632. <Property Name="CountryId" Type="Int32" />
  4633. <Property Name="CnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4634. <Property Name="EnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4635. <Property Name="ThreeCharacterCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4636. <Property Name="FourCharacterCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  4637. <Property Name="CnAirportName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4638. <Property Name="EnAirportName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4639. <Property Name="CreateUserId" Type="Int32" />
  4640. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4641. <Property Name="DeleteUserId" Type="Int32" />
  4642. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4643. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4644. <Property Name="IsDel" Type="Int32" />
  4645. </EntityType>
  4646. <EntityType Name="Dis_Country">
  4647. <Key>
  4648. <PropertyRef Name="Id" />
  4649. </Key>
  4650. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4651. <Property Name="IntercontinentalId" Type="Int32" />
  4652. <Property Name="FullName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4653. <Property Name="CnShortName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4654. <Property Name="EnShortName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4655. <Property Name="CurrencyCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4656. <Property Name="CreateUserId" Type="Int32" />
  4657. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4658. <Property Name="DeleteUserId" Type="Int32" />
  4659. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4660. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4661. <Property Name="IsDel" Type="Int32" />
  4662. </EntityType>
  4663. <EntityType Name="Dis_Intercontinental">
  4664. <Key>
  4665. <PropertyRef Name="Id" />
  4666. </Key>
  4667. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4668. <Property Name="FullName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4669. <Property Name="CnShortName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4670. <Property Name="EnShortName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4671. <Property Name="CreateUserId" Type="Int32" />
  4672. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4673. <Property Name="DeleteUserId" Type="Int32" />
  4674. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4675. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4676. <Property Name="IsDel" Type="Int32" />
  4677. </EntityType>
  4678. <EntityType Name="Fin_Commission">
  4679. <Key>
  4680. <PropertyRef Name="Id" />
  4681. </Key>
  4682. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4683. <Property Name="Personnel" Type="Int32" />
  4684. <Property Name="Diid" Type="Int32" />
  4685. <Property Name="GroupDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4686. <Property Name="GroupLvl" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4687. <Property Name="Detail" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  4688. <Property Name="Money" Type="Decimal" Precision="18" Scale="2" />
  4689. <Property Name="WageYearMonth" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4690. <Property Name="IsMakeLoss" Type="Int32" />
  4691. <Property Name="IsLoss" Type="Int32" />
  4692. <Property Name="CreateUserId" Type="Int32" />
  4693. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4694. <Property Name="DeleteUserId" Type="Int32" />
  4695. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4696. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4697. <Property Name="IsDel" Type="Int32" />
  4698. </EntityType>
  4699. <EntityType Name="Fin_DailyFeePayment">
  4700. <Key>
  4701. <PropertyRef Name="Id" />
  4702. </Key>
  4703. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4704. <Property Name="Instructions" Type="String" MaxLength="4000" FixedLength="false" Unicode="true" />
  4705. <Property Name="SumPrice" Type="Decimal" Precision="18" Scale="4" />
  4706. <Property Name="FAudit" Type="Int32" />
  4707. <Property Name="FAuditDate" Type="DateTime" Precision="3" />
  4708. <Property Name="MAudit" Type="Int32" />
  4709. <Property Name="MAuditDate" Type="DateTime" Precision="3" />
  4710. <Property Name="IsPay" Type="Int32" />
  4711. <Property Name="TransferTypeId" Type="Int32" />
  4712. <Property Name="PriceTypeId" Type="Int32" />
  4713. <Property Name="CompanyId" Type="Int32" />
  4714. <Property Name="CreateUserId" Type="Int32" />
  4715. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4716. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4717. <Property Name="IsDel" Type="Int32" />
  4718. <Property Name="DeleteUserId" Type="Int32" />
  4719. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4720. </EntityType>
  4721. <EntityType Name="Fin_DailyFeePaymentContent">
  4722. <Key>
  4723. <PropertyRef Name="Id" />
  4724. </Key>
  4725. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4726. <Property Name="DFPId" Type="Int32" />
  4727. <Property Name="PriceName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  4728. <Property Name="Quantity" Type="Decimal" Precision="18" Scale="2" />
  4729. <Property Name="Price" Type="Decimal" Precision="18" Scale="4" />
  4730. <Property Name="ItemTotal" Type="Decimal" Precision="18" Scale="4" />
  4731. <Property Name="CreateUserId" Type="Int32" />
  4732. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4733. <Property Name="DeleteUserId" Type="Int32" />
  4734. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4735. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4736. <Property Name="IsDel" Type="Int32" />
  4737. </EntityType>
  4738. <EntityType Name="Fin_ForeignReceivables">
  4739. <Key>
  4740. <PropertyRef Name="Id" />
  4741. </Key>
  4742. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4743. <Property Name="Diid" Type="Int32" />
  4744. <Property Name="PriceName" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4745. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  4746. <Property Name="Count" Type="Int32" />
  4747. <Property Name="Unit" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4748. <Property Name="ItemSumPrice" Type="Decimal" Precision="10" Scale="2" />
  4749. <Property Name="To" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  4750. <Property Name="ToTel" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4751. <Property Name="PayDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4752. <Property Name="Attention" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4753. <Property Name="Rate" Type="Decimal" Precision="10" Scale="4" />
  4754. <Property Name="Currency" Type="Int32" />
  4755. <Property Name="AddingWay" Type="Int32" />
  4756. <Property Name="CreateUserId" Type="Int32" />
  4757. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4758. <Property Name="DeleteUserId" Type="Int32" />
  4759. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4760. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4761. <Property Name="IsDel" Type="Int32" />
  4762. <Property Name="Status" Type="Int32" />
  4763. <Property Name="Auditor" Type="Int32" />
  4764. <Property Name="AuditTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4765. </EntityType>
  4766. <EntityType Name="Fin_GroupExtraCost">
  4767. <Key>
  4768. <PropertyRef Name="Id" />
  4769. </Key>
  4770. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4771. <Property Name="DiId" Type="Int32" />
  4772. <Property Name="PriceName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4773. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  4774. <Property Name="PriceCount" Type="Int32" />
  4775. <Property Name="PriceSum" Type="Decimal" Precision="14" Scale="2" />
  4776. <Property Name="PriceDt" Type="DateTime" Precision="3" />
  4777. <Property Name="PriceCurrency" Type="Int32" />
  4778. <Property Name="PriceType" Type="Int32" />
  4779. <Property Name="Coefficient" Type="Decimal" Precision="10" Scale="2" />
  4780. <Property Name="PriceDetailType" Type="Int32" />
  4781. <Property Name="FilePath" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4782. <Property Name="CreateUserId" Type="Int32" />
  4783. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4784. <Property Name="DeleteUserId" Type="Int32" />
  4785. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4786. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4787. <Property Name="IsDel" Type="Int32" />
  4788. <Property Name="Area" Type="Int32" />
  4789. <Property Name="ManagerConfirm" Type="Int32" />
  4790. <Property Name="SupervisorConfirm" Type="Int32" />
  4791. <Property Name="SYsupervisorConfirm" Type="Int32" />
  4792. </EntityType>
  4793. <EntityType Name="Fin_OtherPrice">
  4794. <Key>
  4795. <PropertyRef Name="Id" />
  4796. </Key>
  4797. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4798. <Property Name="Diid" Type="Int32" />
  4799. <Property Name="PriceName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4800. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  4801. <Property Name="CurrencyId" Type="Int32" />
  4802. <Property Name="DayRate" Type="Decimal" Precision="10" Scale="4" />
  4803. <Property Name="PayType" Type="Int32" />
  4804. <Property Name="RefundType" Type="Int32" />
  4805. <Property Name="CreateUserId" Type="Int32" />
  4806. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4807. <Property Name="DeleteUserId" Type="Int32" />
  4808. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4809. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4810. <Property Name="IsDel" Type="Int32" />
  4811. </EntityType>
  4812. <EntityType Name="Fin_PaymentRefundAndOtherMoney">
  4813. <Key>
  4814. <PropertyRef Name="Id" />
  4815. </Key>
  4816. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4817. <Property Name="DiId" Type="Int32" />
  4818. <Property Name="PriceName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  4819. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  4820. <Property Name="CurrencyId" Type="Int32" />
  4821. <Property Name="PayType" Type="Int32" />
  4822. <Property Name="PriceType" Type="Int32" />
  4823. <Property Name="CreateUserId" Type="Int32" />
  4824. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4825. <Property Name="DeleteUserId" Type="Int32" />
  4826. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4827. <Property Name="IsDel" Type="Int32" />
  4828. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4829. </EntityType>
  4830. <EntityType Name="Fin_ProceedsReceived">
  4831. <Key>
  4832. <PropertyRef Name="Id" />
  4833. </Key>
  4834. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4835. <Property Name="DIId" Type="Int32" />
  4836. <Property Name="SectionTime" Type="String" MaxLength="22" FixedLength="false" Unicode="false" />
  4837. <Property Name="Price" Type="Decimal" Precision="18" Scale="2" />
  4838. <Property Name="Currency" Type="Int32" />
  4839. <Property Name="ReceivablesType" Type="Int32" />
  4840. <Property Name="Client" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
  4841. <Property Name="CustomerName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4842. <Property Name="CustomerTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4843. <Property Name="FID" Type="Int32" />
  4844. <Property Name="CreateUserId" Type="Int32" />
  4845. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4846. <Property Name="DeleteUserId" Type="Int32" />
  4847. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4848. <Property Name="IsDel" Type="Int32" />
  4849. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4850. </EntityType>
  4851. <EntityType Name="Grp_AirInquiry">
  4852. <Key>
  4853. <PropertyRef Name="Id" />
  4854. </Key>
  4855. <Property Name="Id" Type="Int32" Nullable="false" />
  4856. <Property Name="DiId" Type="Int32" />
  4857. <Property Name="BlackCode" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4858. <Property Name="Routing" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4859. <Property Name="Carrier" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4860. <Property Name="FlightNo" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4861. <Property Name="DepartDate" Type="DateTime" Precision="3" />
  4862. <Property Name="DepartTime" Type="DateTime" Precision="3" />
  4863. <Property Name="ArrivalTime" Type="DateTime" Precision="3" />
  4864. <Property Name="FirstYPrice" Type="Decimal" Precision="10" Scale="2" />
  4865. <Property Name="FirstCabinPrice" Type="Decimal" Precision="10" Scale="2" />
  4866. <Property Name="BusinessYPrice" Type="Decimal" Precision="10" Scale="2" />
  4867. <Property Name="BusinessCabinPrice" Type="Decimal" Precision="10" Scale="2" />
  4868. <Property Name="YPrice" Type="Decimal" Precision="10" Scale="2" />
  4869. <Property Name="CabinPrice" Type="Decimal" Precision="10" Scale="2" />
  4870. <Property Name="SearchDt" Type="DateTime" Precision="3" />
  4871. <Property Name="CreateUserId" Type="Int32" />
  4872. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4873. <Property Name="DeleteUserId" Type="Int32" />
  4874. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4875. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4876. <Property Name="IsDel" Type="Int32" />
  4877. </EntityType>
  4878. <EntityType Name="Grp_AirPrice">
  4879. <Key>
  4880. <PropertyRef Name="Id" />
  4881. </Key>
  4882. <Property Name="Id" Type="Int32" Nullable="false" />
  4883. <Property Name="DiId" Type="Int32" />
  4884. <Property Name="AiId" Type="Int32" />
  4885. <Property Name="CabinCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4886. <Property Name="SinglePrice" Type="Decimal" Precision="10" Scale="2" />
  4887. <Property Name="SingleCurency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4888. <Property Name="Count" Type="Int32" />
  4889. <Property Name="TotalPrice" Type="Decimal" Precision="10" Scale="2" />
  4890. <Property Name="TotalCurency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  4891. <Property Name="IsCheck" Type="Int32" />
  4892. <Property Name="IsSeat" Type="Int32" />
  4893. <Property Name="IsPackage" Type="Int32" />
  4894. <Property Name="IsBag" Type="Int32" />
  4895. <Property Name="PriceRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4896. <Property Name="CreateUserId" Type="Int32" />
  4897. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4898. <Property Name="DeleteUserId" Type="Int32" />
  4899. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4900. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4901. <Property Name="IsDel" Type="Int32" />
  4902. </EntityType>
  4903. <EntityType Name="Grp_AirTicketReservations">
  4904. <Key>
  4905. <PropertyRef Name="Id" />
  4906. </Key>
  4907. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4908. <Property Name="DIId" Type="Int32" />
  4909. <Property Name="FlightsCode" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4910. <Property Name="FlightsDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4911. <Property Name="FlightsTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4912. <Property Name="ArrivedTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4913. <Property Name="IsCheckIn" Type="Int32" />
  4914. <Property Name="IsSetSeat" Type="Int32" />
  4915. <Property Name="IsPackage" Type="Int32" />
  4916. <Property Name="IsBagHandle" Type="Int32" />
  4917. <Property Name="IsTrain" Type="Int32" />
  4918. <Property Name="CType" Type="Int32" />
  4919. <Property Name="FlightsCity" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4920. <Property Name="LeaveDescription" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4921. <Property Name="FlightsDescription" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4922. <Property Name="ReturnDescription" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4923. <Property Name="PassengerType" Type="Int32" />
  4924. <Property Name="ClientNum" Type="Int32" />
  4925. <Property Name="ClientName" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4926. <Property Name="PrePrice" Type="Decimal" Precision="10" Scale="2" />
  4927. <Property Name="PreCurrency" Type="Int32" />
  4928. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  4929. <Property Name="Currency" Type="Int32" />
  4930. <Property Name="PriceDescription" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  4931. <Property Name="TicketNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4932. <Property Name="TicketCode" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4933. <Property Name="CreateUserId" Type="Int32" />
  4934. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4935. <Property Name="DeleteUserId" Type="Int32" />
  4936. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4937. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4938. <Property Name="IsDel" Type="Int32" />
  4939. </EntityType>
  4940. <EntityType Name="Grp_CarGuides">
  4941. <Key>
  4942. <PropertyRef Name="Id" />
  4943. </Key>
  4944. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4945. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4946. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4947. <Property Name="ServiceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4948. <Property Name="CarType" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
  4949. <Property Name="Offer" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4950. <Property Name="CGCost" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4951. <Property Name="RuningTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4952. <Property Name="OvertimeFee" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4953. <Property Name="CGOvertimeFee" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4954. <Property Name="Currency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4955. <Property Name="CreateUserId" Type="Int32" />
  4956. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4957. <Property Name="DeleteUserId" Type="Int32" />
  4958. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4959. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4960. <Property Name="IsDel" Type="Int32" />
  4961. </EntityType>
  4962. <EntityType Name="Grp_CarInfo">
  4963. <Key>
  4964. <PropertyRef Name="Id" />
  4965. </Key>
  4966. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4967. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4968. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4969. <Property Name="CarType" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
  4970. <Property Name="ServiceType" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
  4971. <Property Name="When" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4972. <Property Name="Price" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4973. <Property Name="Currency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4974. <Property Name="OvertimeFee" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  4975. <Property Name="CreateUserId" Type="Int32" />
  4976. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  4977. <Property Name="DeleteUserId" Type="Int32" />
  4978. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4979. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  4980. <Property Name="IsDel" Type="Int32" />
  4981. </EntityType>
  4982. <EntityType Name="Grp_CarTouristGuideGroundReservations">
  4983. <Key>
  4984. <PropertyRef Name="Id" />
  4985. </Key>
  4986. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  4987. <Property Name="DiId" Type="Int32" />
  4988. <Property Name="Area" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4989. <Property Name="ServiceCompany" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4990. <Property Name="ServiceGuide" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  4991. <Property Name="ServiceTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4992. <Property Name="BusName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  4993. <Property Name="BusDescription" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  4994. <Property Name="BusTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  4995. <Property Name="ServiceStartTime" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4996. <Property Name="ServiceEndTime" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  4997. <Property Name="ServiceDescription" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  4998. <Property Name="ServiceQuotedPrice" Type="Decimal" Precision="18" Scale="2" />
  4999. <Property Name="CId" Type="Int32" />
  5000. <Property Name="QuotedPriceExplanation" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5001. <Property Name="OrbitalPrivateTransfer" Type="Int32" />
  5002. <Property Name="CreateUserId" Type="Int32" />
  5003. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5004. <Property Name="DeleteUserId" Type="Int32" />
  5005. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5006. <Property Name="Remark" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5007. <Property Name="IsDel" Type="Int32" />
  5008. <Property Name="SelectCheck" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5009. <Property Name="PriceType" Type="Int32" />
  5010. <Property Name="PriceName" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  5011. <Property Name="toCurr" Type="Int32" />
  5012. <Property Name="Rate" Type="Decimal" Precision="10" Scale="2" />
  5013. </EntityType>
  5014. <EntityType Name="Grp_CarTouristGuideGroundReservationsContent">
  5015. <Key>
  5016. <PropertyRef Name="Id" />
  5017. </Key>
  5018. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5019. <Property Name="DiId" Type="Int32" />
  5020. <Property Name="CTGGRId" Type="Int32" />
  5021. <Property Name="SId" Type="Int32" />
  5022. <Property Name="Price" Type="Decimal" Precision="18" Scale="2" />
  5023. <Property Name="PriceContent" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5024. <Property Name="Currency" Type="Int32" />
  5025. <Property Name="CreateUserId" Type="Int32" />
  5026. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5027. <Property Name="DeleteUserId" Type="Int32" />
  5028. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5029. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5030. <Property Name="IsDel" Type="Int32" />
  5031. <Property Name="DatePrice" Type="DateTime" Precision="3" />
  5032. <Property Name="Count" Type="Int32" />
  5033. <Property Name="Units" Type="Int32" />
  5034. </EntityType>
  5035. <EntityType Name="Grp_CarTouristGuideGroundReservationsContentOld">
  5036. <Key>
  5037. <PropertyRef Name="Id" />
  5038. </Key>
  5039. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5040. <Property Name="DiId" Type="Int32" />
  5041. <Property Name="CTGGRId" Type="Int32" />
  5042. <Property Name="SId" Type="Int32" />
  5043. <Property Name="Price" Type="Decimal" Precision="18" Scale="2" />
  5044. <Property Name="PriceContent" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5045. <Property Name="Currency" Type="Int32" />
  5046. <Property Name="CreateUserId" Type="Int32" />
  5047. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5048. <Property Name="DeleteUserId" Type="Int32" />
  5049. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5050. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5051. <Property Name="IsDel" Type="Int32" />
  5052. <Property Name="DatePrice" Type="DateTime" Precision="3" />
  5053. <Property Name="Count" Type="Int32" />
  5054. <Property Name="Units" Type="Int32" />
  5055. </EntityType>
  5056. <EntityType Name="Grp_CarTouristGuideGroundReservationsOld">
  5057. <Key>
  5058. <PropertyRef Name="Id" />
  5059. </Key>
  5060. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5061. <Property Name="DiId" Type="Int32" />
  5062. <Property Name="Area" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5063. <Property Name="ServiceCompany" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5064. <Property Name="ServiceGuide" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5065. <Property Name="ServiceTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5066. <Property Name="BusName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5067. <Property Name="BusDescription" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5068. <Property Name="BusTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5069. <Property Name="ServiceStartTime" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  5070. <Property Name="ServiceEndTime" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  5071. <Property Name="ServiceDescription" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5072. <Property Name="ServiceQuotedPrice" Type="Decimal" Precision="18" Scale="2" />
  5073. <Property Name="CId" Type="Int32" />
  5074. <Property Name="QuotedPriceExplanation" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5075. <Property Name="OrbitalPrivateTransfer" Type="Int32" />
  5076. <Property Name="CreateUserId" Type="Int32" />
  5077. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5078. <Property Name="DeleteUserId" Type="Int32" />
  5079. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5080. <Property Name="Remark" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5081. <Property Name="IsDel" Type="Int32" />
  5082. <Property Name="SelectCheck" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5083. </EntityType>
  5084. <EntityType Name="Grp_CheckBoxs">
  5085. <Key>
  5086. <PropertyRef Name="Id" />
  5087. </Key>
  5088. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5089. <Property Name="Diid" Type="Int32" />
  5090. <Property Name="CbType" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5091. <Property Name="CbValues" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  5092. <Property Name="CreateUserId" Type="Int32" />
  5093. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5094. <Property Name="DeleteUserId" Type="Int32" />
  5095. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5096. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5097. <Property Name="IsDel" Type="Int32" />
  5098. </EntityType>
  5099. <EntityType Name="Grp_CostTypeHotelNumber">
  5100. <Key>
  5101. <PropertyRef Name="Id" />
  5102. </Key>
  5103. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5104. <Property Name="SGR" Type="Int32" Nullable="false" />
  5105. <Property Name="TBR" Type="Int32" Nullable="false" />
  5106. <Property Name="JSES" Type="Int32" Nullable="false" />
  5107. <Property Name="SUITE" Type="Int32" Nullable="false" />
  5108. <Property Name="Type" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5109. <Property Name="Diid" Type="Int32" Nullable="false" />
  5110. <Property Name="CreateUserId" Type="Int32" />
  5111. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5112. <Property Name="DeleteUserId" Type="Int32" />
  5113. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5114. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5115. <Property Name="IsDel" Type="Int32" />
  5116. </EntityType>
  5117. <EntityType Name="Grp_CreditCardPayment">
  5118. <Key>
  5119. <PropertyRef Name="Id" />
  5120. </Key>
  5121. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5122. <Property Name="DIId" Type="Int32" />
  5123. <Property Name="CId" Type="Int32" />
  5124. <Property Name="CTable" Type="Int32" />
  5125. <Property Name="PayDId" Type="Int32" />
  5126. <Property Name="ConsumptionPatterns" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5127. <Property Name="ConsumptionDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5128. <Property Name="CTDId" Type="Int32" />
  5129. <Property Name="BankNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5130. <Property Name="CardholderName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5131. <Property Name="PayMoney" Type="Decimal" Precision="10" Scale="2" />
  5132. <Property Name="PaymentCurrency" Type="Int32" />
  5133. <Property Name="DayRate" Type="Decimal" Precision="10" Scale="4" />
  5134. <Property Name="CompanyBankNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5135. <Property Name="OtherBankName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5136. <Property Name="OtherSideNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5137. <Property Name="OtherSideName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  5138. <Property Name="MFOperator" Type="Int32" />
  5139. <Property Name="MFOperatorDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5140. <Property Name="IsAuditDM" Type="Int32" />
  5141. <Property Name="AuditDMOperate" Type="Int32" />
  5142. <Property Name="AuditDMDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5143. <Property Name="IsAuditMF" Type="Int32" />
  5144. <Property Name="AuditMFOperate" Type="Int32" />
  5145. <Property Name="AuditMFDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5146. <Property Name="IsAuditGM" Type="Int32" />
  5147. <Property Name="AuditGMOperate" Type="Int32" />
  5148. <Property Name="AuditGMDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5149. <Property Name="IsPay" Type="Int32" />
  5150. <Property Name="PayPercentage" Type="Decimal" Precision="10" Scale="2" />
  5151. <Property Name="PayThenMoney" Type="Decimal" Precision="10" Scale="2" />
  5152. <Property Name="PayPercentageOld" Type="Decimal" Precision="10" Scale="2" />
  5153. <Property Name="PayThenMoneyOld" Type="Decimal" Precision="10" Scale="2" />
  5154. <Property Name="UpdateDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5155. <Property Name="Payee" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
  5156. <Property Name="RMBPrice" Type="Decimal" Precision="10" Scale="2" />
  5157. <Property Name="OrbitalPrivateTransfer" Type="Int32" />
  5158. <Property Name="ExceedBudget" Type="Decimal" Precision="10" Scale="2" />
  5159. <Property Name="IsMatchCreditCard" Type="Int32" />
  5160. <Property Name="CreateUserId" Type="Int32" />
  5161. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5162. <Property Name="DeleteUserId" Type="Int32" />
  5163. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5164. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5165. <Property Name="IsDel" Type="Int32" />
  5166. </EntityType>
  5167. <EntityType Name="Grp_Customers">
  5168. <Key>
  5169. <PropertyRef Name="Id" />
  5170. </Key>
  5171. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5172. <Property Name="DiId" Type="Int32" />
  5173. <Property Name="Iid" Type="Int32" />
  5174. <Property Name="ClientName" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  5175. <Property Name="InsuranceCosts" Type="Decimal" Precision="10" Scale="2" />
  5176. <Property Name="Currency" Type="Int32" />
  5177. <Property Name="Attachment" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5178. <Property Name="CreateUserId" Type="Int32" />
  5179. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5180. <Property Name="DeleteUserId" Type="Int32" />
  5181. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5182. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5183. <Property Name="IsDel" Type="Int32" />
  5184. </EntityType>
  5185. <EntityType Name="Grp_DayAndCost">
  5186. <Key>
  5187. <PropertyRef Name="Id" />
  5188. </Key>
  5189. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5190. <Property Name="DiId" Type="Int32" />
  5191. <Property Name="Type" Type="Int32" />
  5192. <Property Name="Days" Type="Int32" />
  5193. <Property Name="NationalTravelFeeId" Type="Int32" />
  5194. <Property Name="Place" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5195. <Property Name="Cost" Type="Decimal" Precision="10" Scale="2" />
  5196. <Property Name="Currency" Type="Int32" />
  5197. <Property Name="SubTotal" Type="Decimal" Precision="10" Scale="2" />
  5198. <Property Name="CreateUserId" Type="Int32" />
  5199. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5200. <Property Name="DeleteUserId" Type="Int32" />
  5201. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5202. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5203. <Property Name="IsDel" Type="Int32" />
  5204. </EntityType>
  5205. <EntityType Name="Grp_DecreasePayments">
  5206. <Key>
  5207. <PropertyRef Name="Id" />
  5208. </Key>
  5209. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5210. <Property Name="DiId" Type="Int32" />
  5211. <Property Name="PriceName" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5212. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  5213. <Property Name="Currency" Type="Int32" />
  5214. <Property Name="FilePath" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  5215. <Property Name="CreateUserId" Type="Int32" />
  5216. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5217. <Property Name="DeleteUserId" Type="Int32" />
  5218. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5219. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5220. <Property Name="IsDel" Type="Int32" />
  5221. <Property Name="SupplierArea" Type="Int32" />
  5222. <Property Name="SupplierTypeId" Type="Int32" />
  5223. <Property Name="SupplierName" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  5224. <Property Name="SupplierContact" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  5225. <Property Name="SupplierContactNumber" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5226. <Property Name="SupplierSocialAccount" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  5227. <Property Name="SupplierEmail" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  5228. <Property Name="SupplierAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="true" />
  5229. <Property Name="Quantity" Type="Decimal" Precision="10" Scale="2" />
  5230. <Property Name="FeeTotal" Type="Decimal" Precision="10" Scale="2" />
  5231. <Property Name="OTAOrderNo" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5232. <Property Name="IsSelect" Type="Int32" />
  5233. </EntityType>
  5234. <EntityType Name="Grp_DeleClientNeeds">
  5235. <Key>
  5236. <PropertyRef Name="Id" />
  5237. </Key>
  5238. <Property Name="Id" Type="Int32" Nullable="false" />
  5239. <Property Name="DiId" Type="Int32" />
  5240. <Property Name="HotelName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5241. <Property Name="HotelAddress" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5242. <Property Name="HotelStarRank" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5243. <Property Name="HotelNeedRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5244. <Property Name="CabinName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5245. <Property Name="CabinNeedRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5246. <Property Name="CarType" Type="Int32" />
  5247. <Property Name="CarNeedRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5248. <Property Name="FoodNeedRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5249. <Property Name="CreateUserId" Type="Int32" />
  5250. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5251. <Property Name="DeleteUserId" Type="Int32" />
  5252. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5253. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5254. <Property Name="IsDel" Type="Int32" />
  5255. </EntityType>
  5256. <EntityType Name="Grp_DeleFile">
  5257. <Key>
  5258. <PropertyRef Name="Id" />
  5259. </Key>
  5260. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5261. <Property Name="Diid" Type="Int32" />
  5262. <Property Name="Category" Type="Int32" />
  5263. <Property Name="Kind" Type="Int32" />
  5264. <Property Name="FileName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5265. <Property Name="FilePath" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5266. <Property Name="CreateUserId" Type="Int32" />
  5267. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5268. <Property Name="DeleteUserId" Type="Int32" />
  5269. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5270. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5271. <Property Name="IsDel" Type="Int32" />
  5272. </EntityType>
  5273. <EntityType Name="Grp_DelegationEnData">
  5274. <Key>
  5275. <PropertyRef Name="Id" />
  5276. </Key>
  5277. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5278. <Property Name="Area" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5279. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5280. <Property Name="JobEn" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5281. <Property Name="DelegationSetting" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5282. <Property Name="DelegationSettingEN" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5283. <Property Name="CreateUserId" Type="Int32" />
  5284. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5285. <Property Name="DeleteUserId" Type="Int32" />
  5286. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5287. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5288. <Property Name="IsDel" Type="Int32" />
  5289. </EntityType>
  5290. <EntityType Name="Grp_DelegationInfo">
  5291. <Key>
  5292. <PropertyRef Name="Id" />
  5293. </Key>
  5294. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5295. <Property Name="SalesQuoteNo" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5296. <Property Name="SalesDate" Type="DateTime" Precision="3" />
  5297. <Property Name="ClientName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5298. <Property Name="ClientUnit" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5299. <Property Name="TourCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5300. <Property Name="TeamName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5301. <Property Name="TeamDid" Type="Int32" />
  5302. <Property Name="VisitDate" Type="DateTime" Precision="3" />
  5303. <Property Name="VisitStartDate" Type="DateTime" Precision="3" />
  5304. <Property Name="VisitEndDate" Type="DateTime" Precision="3" />
  5305. <Property Name="VisitCountry" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5306. <Property Name="VisitPurpose" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5307. <Property Name="VisitDays" Type="Int32" />
  5308. <Property Name="VisitPNumber" Type="Int32" />
  5309. <Property Name="SpecialNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5310. <Property Name="OtherNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5311. <Property Name="ClientNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5312. <Property Name="IsState" Type="Int32" />
  5313. <Property Name="JietuanOperator" Type="Int32" />
  5314. <Property Name="JietuanTime" Type="DateTime" Precision="3" />
  5315. <Property Name="GroupsOperator" Type="Int32" />
  5316. <Property Name="GroupsTime" Type="DateTime" Precision="3" />
  5317. <Property Name="BudgetCost" Type="Decimal" Precision="10" Scale="2" />
  5318. <Property Name="IsSure" Type="Int32" />
  5319. <Property Name="SureTime" Type="DateTime" Precision="3" />
  5320. <Property Name="TellPhone" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5321. <Property Name="WeChatNo" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5322. <Property Name="TeamLevSId" Type="Int32" />
  5323. <Property Name="HotelComplain" Type="Int32" />
  5324. <Property Name="OPComplain" Type="Int32" />
  5325. <Property Name="VisaComplain" Type="Int32" />
  5326. <Property Name="OAComplain" Type="Int32" />
  5327. <Property Name="AirComplain" Type="Int32" />
  5328. <Property Name="Director" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5329. <Property Name="TontractTime" Type="DateTime" Precision="3" />
  5330. <Property Name="PaymentMoney" Type="Decimal" Precision="10" Scale="2" />
  5331. <Property Name="PayDay" Type="Int32" />
  5332. <Property Name="CGRWSPBMMC" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5333. <Property Name="CGRWSPWH" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5334. <Property Name="ZZSCBMMC" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5335. <Property Name="ZZSCSPWH" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5336. <Property Name="OpRoyaltyLv" Type="Int32" />
  5337. <Property Name="OpRoyaltyRemark" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5338. <Property Name="Officialneeds" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5339. <Property Name="CreateUserId" Type="Int32" />
  5340. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5341. <Property Name="DeleteUserId" Type="Int32" />
  5342. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5343. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5344. <Property Name="IsDel" Type="Int32" />
  5345. <Property Name="IsBid" Type="Int32" />
  5346. </EntityType>
  5347. <EntityType Name="Grp_DelegationJoinCustomer">
  5348. <Key>
  5349. <PropertyRef Name="Id" />
  5350. </Key>
  5351. <Property Name="Id" Type="Int32" Nullable="false" />
  5352. <Property Name="GrpDCId" Type="Int32" />
  5353. <Property Name="CrmDCId" Type="Int32" />
  5354. <Property Name="CreateUserId" Type="Int32" />
  5355. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5356. <Property Name="DeleteUserId" Type="Int32" />
  5357. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5358. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5359. <Property Name="IsDel" Type="Int32" />
  5360. </EntityType>
  5361. <EntityType Name="Grp_DeleMeetingNeeds">
  5362. <Key>
  5363. <PropertyRef Name="Id" />
  5364. </Key>
  5365. <Property Name="Id" Type="Int32" Nullable="false" />
  5366. <Property Name="DeleClientNeedId" Type="Int32" />
  5367. <Property Name="MeetingType" Type="Int32" />
  5368. <Property Name="MeetingDt" Type="DateTime" Precision="3" />
  5369. <Property Name="MeethingSeptal" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5370. <Property Name="Person" Type="Int32" />
  5371. <Property Name="MeetingPrice" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5372. <Property Name="Contact" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  5373. <Property Name="Mobile" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  5374. <Property Name="NeedsChoose" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5375. <Property Name="CreateUserId" Type="Int32" />
  5376. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5377. <Property Name="DeleteUserId" Type="Int32" />
  5378. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5379. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5380. <Property Name="IsDel" Type="Int32" />
  5381. </EntityType>
  5382. <EntityType Name="Grp_EnterExitCost">
  5383. <Key>
  5384. <PropertyRef Name="Id" />
  5385. </Key>
  5386. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5387. <Property Name="DiId" Type="Int32" />
  5388. <Property Name="InsidePay" Type="Decimal" Precision="10" Scale="2" />
  5389. <Property Name="Visa" Type="Decimal" Precision="10" Scale="2" />
  5390. <Property Name="VisaRemark" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  5391. <Property Name="YiMiao" Type="Decimal" Precision="10" Scale="2" />
  5392. <Property Name="HeSuan" Type="Decimal" Precision="10" Scale="2" />
  5393. <Property Name="Service" Type="Decimal" Precision="10" Scale="2" />
  5394. <Property Name="Ticket" Type="Decimal" Precision="10" Scale="2" />
  5395. <Property Name="Safe" Type="Decimal" Precision="10" Scale="2" />
  5396. <Property Name="OutsideJJPay" Type="Decimal" Precision="10" Scale="2" />
  5397. <Property Name="AirJJ" Type="Decimal" Precision="10" Scale="2" />
  5398. <Property Name="AirGW" Type="Decimal" Precision="10" Scale="2" />
  5399. <Property Name="CityTranffic" Type="Decimal" Precision="10" Scale="2" />
  5400. <Property Name="RateUSD" Type="Decimal" Precision="10" Scale="4" />
  5401. <Property Name="RateJPY" Type="Decimal" Precision="10" Scale="4" />
  5402. <Property Name="RateEUR" Type="Decimal" Precision="10" Scale="4" />
  5403. <Property Name="RateGBP" Type="Decimal" Precision="10" Scale="4" />
  5404. <Property Name="RateHKD" Type="Decimal" Precision="10" Scale="4" />
  5405. <Property Name="CurrencyRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5406. <Property Name="ChoiceOne" Type="Int32" />
  5407. <Property Name="ChoiceTwo" Type="Int32" />
  5408. <Property Name="ChoiceThree" Type="Int32" />
  5409. <Property Name="ChoiceFour" Type="Int32" />
  5410. <Property Name="ChoiceFive" Type="Int32" />
  5411. <Property Name="SumJJC" Type="Int32" />
  5412. <Property Name="SumGWC" Type="Int32" />
  5413. <Property Name="AirJJC_Checked" Type="Int32" />
  5414. <Property Name="AirGWC_Checked" Type="Int32" />
  5415. <Property Name="ChoiceSix" Type="Int32" />
  5416. <Property Name="CreateUserId" Type="Int32" />
  5417. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5418. <Property Name="DeleteUserId" Type="Int32" />
  5419. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5420. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5421. <Property Name="IsDel" Type="Int32" />
  5422. <Property Name="FirstItemRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5423. <Property Name="OutsideGWPay" Type="Decimal" Precision="10" Scale="2" />
  5424. <Property Name="OutsideTDPay" Type="Decimal" Precision="10" Scale="2" />
  5425. <Property Name="AirTD" Type="Decimal" Precision="10" Scale="2" />
  5426. <Property Name="SumTDC" Type="Int32" />
  5427. <Property Name="AirTDC_Checked" Type="Int32" />
  5428. <Property Name="OtherExpenses_Checked" Type="Int32" />
  5429. <Property Name="IsConfirm" Type="Int32" />
  5430. <Property Name="TwoItemRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5431. </EntityType>
  5432. <EntityType Name="Grp_GroupCost">
  5433. <Key>
  5434. <PropertyRef Name="Id" />
  5435. </Key>
  5436. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5437. <Property Name="Diid" Type="Int32" />
  5438. <Property Name="DAY" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5439. <Property Name="Date" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5440. <Property Name="ITIN" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5441. <Property Name="CarType" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5442. <Property Name="CarCost" Type="Decimal" Precision="18" Scale="2" />
  5443. <Property Name="CarNumber" Type="Int32" />
  5444. <Property Name="CarTiming" Type="Decimal" Precision="18" Scale="2" />
  5445. <Property Name="TGS" Type="Decimal" Precision="18" Scale="2" />
  5446. <Property Name="TGWH" Type="Decimal" Precision="18" Scale="2" />
  5447. <Property Name="TGN" Type="Decimal" Precision="18" Scale="2" />
  5448. <Property Name="TGOF" Type="Decimal" Precision="18" Scale="2" />
  5449. <Property Name="TGM" Type="Decimal" Precision="18" Scale="2" />
  5450. <Property Name="TGA" Type="Decimal" Precision="18" Scale="2" />
  5451. <Property Name="TGTF" Type="Decimal" Precision="18" Scale="2" />
  5452. <Property Name="TGEF" Type="Decimal" Precision="18" Scale="2" />
  5453. <Property Name="CFS" Type="Decimal" Precision="18" Scale="2" />
  5454. <Property Name="CFM" Type="Decimal" Precision="18" Scale="2" />
  5455. <Property Name="CFOF" Type="Decimal" Precision="18" Scale="2" />
  5456. <Property Name="B" Type="Decimal" Precision="18" Scale="2" />
  5457. <Property Name="L" Type="Decimal" Precision="18" Scale="2" />
  5458. <Property Name="D" Type="Decimal" Precision="18" Scale="2" />
  5459. <Property Name="TBR" Type="Decimal" Precision="18" Scale="2" />
  5460. <Property Name="SGR" Type="Decimal" Precision="18" Scale="2" />
  5461. <Property Name="JS_ES" Type="Decimal" Precision="18" Scale="2" />
  5462. <Property Name="Suite" Type="Decimal" Precision="18" Scale="2" />
  5463. <Property Name="ACCON" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5464. <Property Name="TV" Type="Decimal" Precision="18" Scale="2" />
  5465. <Property Name="iL" Type="Decimal" Precision="18" Scale="2" />
  5466. <Property Name="IF" Type="Decimal" Precision="18" Scale="2" />
  5467. <Property Name="EF" Type="Decimal" Precision="18" Scale="2" />
  5468. <Property Name="B_R_F" Type="Decimal" Precision="18" Scale="2" />
  5469. <Property Name="TE" Type="Decimal" Precision="18" Scale="2" />
  5470. <Property Name="TGTips" Type="Decimal" Precision="18" Scale="2" />
  5471. <Property Name="DRVTips" Type="Decimal" Precision="18" Scale="2" />
  5472. <Property Name="PC" Type="Decimal" Precision="18" Scale="2" />
  5473. <Property Name="TLF" Type="Decimal" Precision="18" Scale="2" />
  5474. <Property Name="ECT" Type="Decimal" Precision="18" Scale="2" />
  5475. <Property Name="CreateUserId" Type="Int32" />
  5476. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5477. <Property Name="DeleteUserId" Type="Int32" />
  5478. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5479. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5480. <Property Name="IsDel" Type="Int32" />
  5481. <Property Name="gwCount" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  5482. <Property Name="fyCount" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  5483. <Property Name="EFR" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  5484. </EntityType>
  5485. <EntityType Name="Grp_GroupCostParameter">
  5486. <Key>
  5487. <PropertyRef Name="Id" />
  5488. </Key>
  5489. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5490. <Property Name="DiId" Type="Int32" />
  5491. <Property Name="Currency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5492. <Property Name="Rate" Type="Decimal" Precision="10" Scale="2" />
  5493. <Property Name="Tax" Type="Decimal" Precision="10" Scale="2" />
  5494. <Property Name="FFYS" Type="Decimal" Precision="10" Scale="2" />
  5495. <Property Name="HotelXS" Type="Decimal" Precision="10" Scale="2" />
  5496. <Property Name="JJCCB" Type="Decimal" Precision="10" Scale="2" />
  5497. <Property Name="JJCXS" Type="Decimal" Precision="10" Scale="2" />
  5498. <Property Name="JJCRS" Type="Int32" />
  5499. <Property Name="GWCCB" Type="Decimal" Precision="10" Scale="2" />
  5500. <Property Name="GWCXS" Type="Decimal" Precision="10" Scale="2" />
  5501. <Property Name="GWCRS" Type="Int32" />
  5502. <Property Name="HCPCB" Type="Decimal" Precision="10" Scale="2" />
  5503. <Property Name="HCPXS" Type="Decimal" Precision="10" Scale="2" />
  5504. <Property Name="HCPRS" Type="Int32" />
  5505. <Property Name="CPCB" Type="Decimal" Precision="10" Scale="2" />
  5506. <Property Name="CPXS" Type="Decimal" Precision="10" Scale="2" />
  5507. <Property Name="CPRS" Type="Int32" />
  5508. <Property Name="BXCB" Type="Decimal" Precision="10" Scale="2" />
  5509. <Property Name="BXXS" Type="Decimal" Precision="10" Scale="2" />
  5510. <Property Name="BXRS" Type="Int32" />
  5511. <Property Name="HSCB" Type="Decimal" Precision="10" Scale="2" />
  5512. <Property Name="HSXS" Type="Decimal" Precision="10" Scale="2" />
  5513. <Property Name="HSRS" Type="Int32" />
  5514. <Property Name="VisaCB" Type="Decimal" Precision="10" Scale="2" />
  5515. <Property Name="VisaXS" Type="Decimal" Precision="10" Scale="2" />
  5516. <Property Name="VisaRS" Type="Int32" />
  5517. <Property Name="GWCB" Type="Decimal" Precision="10" Scale="2" />
  5518. <Property Name="GWXS" Type="Decimal" Precision="10" Scale="2" />
  5519. <Property Name="GWRS" Type="Int32" />
  5520. <Property Name="DJCB" Type="Decimal" Precision="10" Scale="2" />
  5521. <Property Name="DJXS" Type="Decimal" Precision="10" Scale="2" />
  5522. <Property Name="SGRCB" Type="Decimal" Precision="10" Scale="2" />
  5523. <Property Name="SGRNumber" Type="Int32" />
  5524. <Property Name="SGRXS" Type="Decimal" Precision="10" Scale="2" />
  5525. <Property Name="TBRCB" Type="Decimal" Precision="10" Scale="2" />
  5526. <Property Name="TBRNumber" Type="Int32" />
  5527. <Property Name="TBRXS" Type="Decimal" Precision="10" Scale="2" />
  5528. <Property Name="JSESCB" Type="Decimal" Precision="10" Scale="2" />
  5529. <Property Name="JSESNumber" Type="Int32" />
  5530. <Property Name="JSESXS" Type="Decimal" Precision="10" Scale="2" />
  5531. <Property Name="SUITECB" Type="Decimal" Precision="10" Scale="2" />
  5532. <Property Name="SUITENumber" Type="Int32" />
  5533. <Property Name="SUITEXS" Type="Decimal" Precision="10" Scale="2" />
  5534. <Property Name="LYJCB" Type="Decimal" Precision="10" Scale="2" />
  5535. <Property Name="LYJXS" Type="Decimal" Precision="10" Scale="2" />
  5536. <Property Name="LYJRS" Type="Int32" />
  5537. <Property Name="IsShare" Type="Int32" />
  5538. <Property Name="CreateUserId" Type="Int32" />
  5539. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5540. <Property Name="DeleteUserId" Type="Int32" />
  5541. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5542. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5543. <Property Name="IsDel" Type="Int32" />
  5544. <Property Name="CostType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5545. <Property Name="CostTypeStartTime" Type="DateTime" Precision="3" />
  5546. <Property Name="CostTypeendTime" Type="DateTime" Precision="3" />
  5547. <Property Name="CostTypenumber" Type="Int32" />
  5548. <Property Name="DJRS" Type="Int32" />
  5549. <Property Name="TDCCB" Type="Decimal" Precision="18" Scale="2" />
  5550. <Property Name="TDCXS" Type="Decimal" Precision="18" Scale="2" />
  5551. <Property Name="TDCRS" Type="Int32" />
  5552. </EntityType>
  5553. <EntityType Name="Grp_GroupsTaskAssignment">
  5554. <Key>
  5555. <PropertyRef Name="Id" />
  5556. </Key>
  5557. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5558. <Property Name="DIId" Type="Int32" />
  5559. <Property Name="CTId" Type="Int32" />
  5560. <Property Name="UId" Type="Int32" />
  5561. <Property Name="IsEnable" Type="Int32" />
  5562. <Property Name="CreateUserId" Type="Int32" />
  5563. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5564. <Property Name="DeleteUserId" Type="Int32" />
  5565. <Property Name="DeleteTime" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5566. <Property Name="IsDel" Type="Int32" />
  5567. <Property Name="Remark" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
  5568. </EntityType>
  5569. <EntityType Name="Grp_GuidesInfo">
  5570. <Key>
  5571. <PropertyRef Name="Id" />
  5572. </Key>
  5573. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5574. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5575. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5576. <Property Name="ServiceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5577. <Property Name="When" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5578. <Property Name="Price" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5579. <Property Name="TranslationPrice" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5580. <Property Name="OvertimeFee" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5581. <Property Name="Currency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5582. <Property Name="CreateUserId" Type="Int32" />
  5583. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5584. <Property Name="DeleteUserId" Type="Int32" />
  5585. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5586. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5587. <Property Name="IsDel" Type="Int32" />
  5588. </EntityType>
  5589. <EntityType Name="Grp_HotelReservations">
  5590. <Key>
  5591. <PropertyRef Name="Id" />
  5592. </Key>
  5593. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5594. <Property Name="DiId" Type="Int32" />
  5595. <Property Name="GTId" Type="Int32" />
  5596. <Property Name="CheckNumber" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5597. <Property Name="ReservationsWebsite" Type="Int32" />
  5598. <Property Name="ReservationsNo" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5599. <Property Name="DetermineNo" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5600. <Property Name="City" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  5601. <Property Name="HotelName" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  5602. <Property Name="HotelAddress" Type="String" MaxLength="225" FixedLength="false" Unicode="true" />
  5603. <Property Name="HotelTel" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5604. <Property Name="HotelFax" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5605. <Property Name="GuestName" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5606. <Property Name="CheckInDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5607. <Property Name="CheckOutDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5608. <Property Name="Budget" Type="Decimal" Precision="10" Scale="2" />
  5609. <Property Name="BudgetCurrency" Type="Int32" />
  5610. <Property Name="SingleRoomCount" Type="Int32" />
  5611. <Property Name="SingleRoomPrice" Type="Decimal" Precision="10" Scale="2" />
  5612. <Property Name="DoubleRoomCount" Type="Int32" />
  5613. <Property Name="DoubleRoomPrice" Type="Decimal" Precision="10" Scale="2" />
  5614. <Property Name="SuiteRoomCount" Type="Int32" />
  5615. <Property Name="SuiteRoomPrice" Type="Decimal" Precision="10" Scale="2" />
  5616. <Property Name="OtherRoomCount" Type="Int32" />
  5617. <Property Name="OtherRoomPrice" Type="Decimal" Precision="10" Scale="2" />
  5618. <Property Name="Commission" Type="Decimal" Precision="10" Scale="2" />
  5619. <Property Name="CommissionCurrency" Type="Int32" />
  5620. <Property Name="CommissionMark" Type="Int32" />
  5621. <Property Name="RoomExplanation" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5622. <Property Name="Attachment" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5623. <Property Name="CardPrice" Type="Decimal" Precision="10" Scale="2" />
  5624. <Property Name="CardPriceCurrency" Type="Int32" />
  5625. <Property Name="IsCardPrice" Type="Int32" />
  5626. <Property Name="BreakfastPrice" Type="Decimal" Precision="10" Scale="2" />
  5627. <Property Name="BreakfastCurrency" Type="Int32" />
  5628. <Property Name="Isoppay" Type="Int32" />
  5629. <Property Name="CboOne" Type="Int32" />
  5630. <Property Name="CboTwo" Type="Int32" />
  5631. <Property Name="CboThree" Type="Int32" />
  5632. <Property Name="CboFour" Type="Int32" />
  5633. <Property Name="PredictSingleRoom" Type="Int32" />
  5634. <Property Name="PredictDoubleRoom" Type="Int32" />
  5635. <Property Name="PredictSuiteRoom" Type="Int32" />
  5636. <Property Name="PredictOtherRoom" Type="Int32" />
  5637. <Property Name="GovernmentRent" Type="Decimal" Precision="10" Scale="2" />
  5638. <Property Name="GovernmentRentCurrency" Type="Int32" />
  5639. <Property Name="CityTax" Type="Decimal" Precision="10" Scale="2" />
  5640. <Property Name="CityTaxCurrency" Type="Int32" />
  5641. <Property Name="CheckType" Type="Int32" />
  5642. <Property Name="CreateUserId" Type="Int32" />
  5643. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5644. <Property Name="DeleteUserId" Type="Int32" />
  5645. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5646. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5647. <Property Name="IsDel" Type="Int32" />
  5648. <Property Name="AreaId" Type="Int32" />
  5649. </EntityType>
  5650. <EntityType Name="Grp_InsuranceCost">
  5651. <Key>
  5652. <PropertyRef Name="Id" />
  5653. </Key>
  5654. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5655. <Property Name="GName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5656. <Property Name="RechargeCost" Type="Decimal" Precision="18" Scale="2" />
  5657. <Property Name="CreateUserId" Type="Int32" />
  5658. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5659. <Property Name="DeleteUserId" Type="Int32" />
  5660. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5661. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5662. <Property Name="IsDel" Type="Int32" />
  5663. </EntityType>
  5664. <EntityType Name="Grp_InvertedList">
  5665. <Key>
  5666. <PropertyRef Name="Id" />
  5667. </Key>
  5668. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5669. <Property Name="DiId" Type="Int32" />
  5670. <Property Name="ApprovalDataDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5671. <Property Name="IsApprovalData" Type="Int32" />
  5672. <Property Name="ApprovalDataRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5673. <Property Name="ApprovalDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5674. <Property Name="ApprovalType" Type="Int32" />
  5675. <Property Name="IsApproval" Type="Int32" />
  5676. <Property Name="ApprovalRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5677. <Property Name="IssueApprovalDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5678. <Property Name="IsIssueApproval" Type="Int32" />
  5679. <Property Name="IssueApprovalRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5680. <Property Name="ApplyPassportDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5681. <Property Name="IsApplyPassport" Type="Int32" />
  5682. <Property Name="ApplyPassportRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5683. <Property Name="VisaInformationDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5684. <Property Name="IsVisaInformation" Type="Int32" />
  5685. <Property Name="VisaInformationRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5686. <Property Name="SendVisaDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5687. <Property Name="IsSendVisa" Type="Int32" />
  5688. <Property Name="SendVisaRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5689. <Property Name="IssueVisaDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5690. <Property Name="IsIssueVisa" Type="Int32" />
  5691. <Property Name="IssueVisaRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5692. <Property Name="PreTripMeetingDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5693. <Property Name="IsPreTripMeeting" Type="Int32" />
  5694. <Property Name="PreTripMeetingRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5695. <Property Name="AirportdDropOffDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5696. <Property Name="IsAirportdDropOff" Type="Int32" />
  5697. <Property Name="AirportdDropOffRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5698. <Property Name="CreateUserId" Type="Int32" />
  5699. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5700. <Property Name="DeleteUserId" Type="Int32" />
  5701. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5702. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5703. <Property Name="IsDel" Type="Int32" />
  5704. <Property Name="AirTicketDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5705. <Property Name="IsAirTicket" Type="Int32" />
  5706. <Property Name="AirTicketRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5707. <Property Name="HotelDt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5708. <Property Name="IsHotel" Type="Int32" />
  5709. <Property Name="HotelRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  5710. <Property Name="IsSelectedAirportd" Type="Boolean" />
  5711. <Property Name="IsSelectedApprovalData" Type="Boolean" />
  5712. <Property Name="IsSelectedIssueApproval" Type="Boolean" />
  5713. <Property Name="IsSelectedVisaInfo" Type="Boolean" />
  5714. <Property Name="IsSelectedSendVisa" Type="Boolean" />
  5715. <Property Name="IsSelectedIssueVisa" Type="Boolean" />
  5716. <Property Name="IsSelectedAirTicket" Type="Boolean" />
  5717. <Property Name="IsSelectedHotel" Type="Boolean" />
  5718. <Property Name="IsSelectedPreTripMeeting" Type="Boolean" />
  5719. <Property Name="IsSelectedAirportdDropOff" Type="Boolean" />
  5720. </EntityType>
  5721. <EntityType Name="Grp_InvertedListVisaCountry">
  5722. <Key>
  5723. <PropertyRef Name="Id" />
  5724. </Key>
  5725. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5726. <Property Name="ILId" Type="Int32" />
  5727. <Property Name="Country" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5728. <Property Name="OfficialTypeId" Type="Int32" />
  5729. <Property Name="VisaTypeId" Type="Int32" />
  5730. <Property Name="VisaDay" Type="Int32" />
  5731. <Property Name="CreateUserId" Type="Int32" />
  5732. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5733. <Property Name="DeleteUserId" Type="Int32" />
  5734. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5735. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5736. <Property Name="IsDel" Type="Int32" />
  5737. </EntityType>
  5738. <EntityType Name="Grp_InvitationOfficialActivities">
  5739. <Key>
  5740. <PropertyRef Name="Id" />
  5741. </Key>
  5742. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5743. <Property Name="DiId" Type="Int32" />
  5744. <Property Name="InviterArea" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5745. <Property Name="Inviter" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5746. <Property Name="InviteTime" Type="DateTime" Precision="3" />
  5747. <Property Name="Attachment" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  5748. <Property Name="InviteCost" Type="Decimal" Precision="10" Scale="2" />
  5749. <Property Name="InviteCurrency" Type="Int32" />
  5750. <Property Name="SendCost" Type="Decimal" Precision="10" Scale="2" />
  5751. <Property Name="SendCurrency" Type="Int32" />
  5752. <Property Name="EventsCost" Type="Decimal" Precision="10" Scale="2" />
  5753. <Property Name="EventsCurrency" Type="Int32" />
  5754. <Property Name="TranslateCost" Type="Decimal" Precision="10" Scale="2" />
  5755. <Property Name="TranslateCurrency" Type="Int32" />
  5756. <Property Name="IsGoOfficaiaBussiness" Type="Int32" />
  5757. <Property Name="CreateUserId" Type="Int32" />
  5758. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5759. <Property Name="DeleteUserId" Type="Int32" />
  5760. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5761. <Property Name="Remark" Type="String" MaxLength="5000" FixedLength="false" Unicode="false" />
  5762. <Property Name="IsDel" Type="Int32" />
  5763. <Property Name="DataId" Type="Int32" />
  5764. </EntityType>
  5765. <EntityType Name="Grp_NationalTravelFee">
  5766. <Key>
  5767. <PropertyRef Name="Id" />
  5768. </Key>
  5769. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5770. <Property Name="Continent" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5771. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5772. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5773. <Property Name="Currency" Type="Int32" />
  5774. <Property Name="RoomCost" Type="Decimal" Precision="10" Scale="2" />
  5775. <Property Name="FoodCost" Type="Decimal" Precision="10" Scale="2" />
  5776. <Property Name="PublicCost" Type="Decimal" Precision="10" Scale="2" />
  5777. <Property Name="LastUpdateUserId" Type="Int32" />
  5778. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  5779. <Property Name="CreateUserId" Type="Int32" />
  5780. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5781. <Property Name="DeleteUserId" Type="Int32" />
  5782. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5783. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5784. <Property Name="IsDel" Type="Int32" />
  5785. </EntityType>
  5786. <EntityType Name="Grp_ScenicSpotInfo">
  5787. <Key>
  5788. <PropertyRef Name="Id" />
  5789. </Key>
  5790. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5791. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5792. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5793. <Property Name="ScenicSpot" Type="String" MaxLength="200" FixedLength="false" Unicode="false" Nullable="false" />
  5794. <Property Name="ScenicSpotDetail" Type="String" MaxLength="500" FixedLength="false" Unicode="false" Nullable="false" />
  5795. <Property Name="Price" Type="Double" Nullable="false" />
  5796. <Property Name="Currency" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5797. <Property Name="Rate" Type="Double" Nullable="false" />
  5798. <Property Name="Address" Type="String" MaxLength="500" FixedLength="false" Unicode="false" Nullable="false" />
  5799. <Property Name="CreateUserId" Type="Int32" />
  5800. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5801. <Property Name="DeleteUserId" Type="Int32" />
  5802. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5803. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5804. <Property Name="IsDel" Type="Int32" />
  5805. </EntityType>
  5806. <EntityType Name="Grp_Schedule">
  5807. <Key>
  5808. <PropertyRef Name="Id" />
  5809. </Key>
  5810. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5811. <Property Name="DiId" Type="Int32" />
  5812. <Property Name="PrimaryStep" Type="Int32" />
  5813. <Property Name="ExpectBeginDt" Type="DateTime" Precision="3" />
  5814. <Property Name="ExpectEndDt" Type="DateTime" Precision="3" />
  5815. <Property Name="RealBeginDt" Type="DateTime" Precision="3" />
  5816. <Property Name="RealEndDt" Type="DateTime" Precision="3" />
  5817. <Property Name="Leader" Type="Int32" />
  5818. <Property Name="CreateUserId" Type="Int32" />
  5819. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5820. <Property Name="DeleteUserId" Type="Int32" />
  5821. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5822. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5823. <Property Name="IsDel" Type="Int32" />
  5824. <Property Name="Exception" Type="Int32" />
  5825. </EntityType>
  5826. <EntityType Name="Grp_ScheduleDetail">
  5827. <Key>
  5828. <PropertyRef Name="Id" />
  5829. </Key>
  5830. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5831. <Property Name="SLevel" Type="Int32" />
  5832. <Property Name="ScheduleId" Type="Int32" />
  5833. <Property Name="Step" Type="Int32" />
  5834. <Property Name="ParentStep" Type="Int32" />
  5835. <Property Name="StepStatus" Type="Int32" />
  5836. <Property Name="Duty" Type="Int32" />
  5837. <Property Name="JobContent" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5838. <Property Name="ExpectBeginDt" Type="DateTime" Precision="3" />
  5839. <Property Name="ExpectEndDt" Type="DateTime" Precision="3" />
  5840. <Property Name="RealBeginDt" Type="DateTime" Precision="3" />
  5841. <Property Name="RealEndDt" Type="DateTime" Precision="3" />
  5842. <Property Name="CreateUserId" Type="Int32" />
  5843. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5844. <Property Name="DeleteUserId" Type="Int32" />
  5845. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5846. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5847. <Property Name="IsDel" Type="Int32" />
  5848. <Property Name="Exception" Type="Int32" />
  5849. </EntityType>
  5850. <EntityType Name="Grp_SchedulePerson">
  5851. <Key>
  5852. <PropertyRef Name="Id" />
  5853. </Key>
  5854. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5855. <Property Name="ScheduleId" Type="Int32" />
  5856. <Property Name="SysUserId" Type="Int32" />
  5857. <Property Name="SysUserName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5858. <Property Name="JobStr" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5859. <Property Name="CreateUserId" Type="Int32" />
  5860. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5861. <Property Name="DeleteUserId" Type="Int32" />
  5862. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5863. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5864. <Property Name="IsDel" Type="Int32" />
  5865. </EntityType>
  5866. <EntityType Name="Grp_TeamRate">
  5867. <Key>
  5868. <PropertyRef Name="ID" />
  5869. </Key>
  5870. <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5871. <Property Name="DiId" Type="Int32" />
  5872. <Property Name="CTable" Type="Int32" />
  5873. <Property Name="OtherRateCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  5874. <Property Name="OtherPrice" Type="Decimal" Precision="10" Scale="4" />
  5875. <Property Name="RateU" Type="Decimal" Precision="10" Scale="4" />
  5876. <Property Name="RateE" Type="Decimal" Precision="10" Scale="4" />
  5877. <Property Name="RateJ" Type="Decimal" Precision="10" Scale="4" />
  5878. <Property Name="RateH" Type="Decimal" Precision="10" Scale="4" />
  5879. <Property Name="RateN" Type="Decimal" Precision="10" Scale="4" />
  5880. <Property Name="RateS" Type="Decimal" Precision="10" Scale="4" />
  5881. <Property Name="RateA" Type="Decimal" Precision="10" Scale="4" />
  5882. <Property Name="RateC" Type="Decimal" Precision="10" Scale="4" />
  5883. <Property Name="RateT" Type="Decimal" Precision="10" Scale="4" />
  5884. <Property Name="RateBL" Type="Decimal" Precision="10" Scale="4" />
  5885. <Property Name="RateHB" Type="Decimal" Precision="10" Scale="4" />
  5886. <Property Name="RateFJD" Type="Decimal" Precision="10" Scale="4" />
  5887. <Property Name="RateTL" Type="Decimal" Precision="10" Scale="4" />
  5888. <Property Name="RateRP" Type="Decimal" Precision="10" Scale="4" />
  5889. <Property Name="RatePeso" Type="Decimal" Precision="10" Scale="4" />
  5890. <Property Name="RateMYR" Type="Decimal" Precision="10" Scale="4" />
  5891. <Property Name="RateCZK" Type="Decimal" Precision="10" Scale="4" />
  5892. <Property Name="RateMXN" Type="Decimal" Precision="10" Scale="4" />
  5893. <Property Name="RateMOP" Type="Decimal" Precision="10" Scale="4" />
  5894. <Property Name="RateARS" Type="Decimal" Precision="10" Scale="4" />
  5895. <Property Name="RateHUF" Type="Decimal" Precision="10" Scale="4" />
  5896. <Property Name="RateRUB" Type="Decimal" Precision="10" Scale="4" />
  5897. <Property Name="CreateUserId" Type="Int32" />
  5898. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5899. <Property Name="DeleteUserId" Type="Int32" />
  5900. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5901. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5902. <Property Name="IsDel" Type="Int32" />
  5903. </EntityType>
  5904. <EntityType Name="Grp_TourClientList">
  5905. <Key>
  5906. <PropertyRef Name="Id" />
  5907. </Key>
  5908. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5909. <Property Name="DiId" Type="Int32" />
  5910. <Property Name="ClientId" Type="Int32" />
  5911. <Property Name="ShippingSpaceTypeId" Type="Int32" />
  5912. <Property Name="ShippingSpaceSpecialNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5913. <Property Name="HotelSpecialNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5914. <Property Name="MealSpecialNeeds" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5915. <Property Name="CreateUserId" Type="Int32" />
  5916. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5917. <Property Name="DeleteUserId" Type="Int32" />
  5918. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5919. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5920. <Property Name="IsDel" Type="Int32" />
  5921. <Property Name="IsAccompany" Type="Int32" />
  5922. </EntityType>
  5923. <EntityType Name="Grp_TravelList">
  5924. <Key>
  5925. <PropertyRef Name="Id" />
  5926. </Key>
  5927. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5928. <Property Name="Diid" Type="Int32" />
  5929. <Property Name="Days" Type="Int32" />
  5930. <Property Name="Date" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5931. <Property Name="WeekDay" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5932. <Property Name="Traffic_First" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5933. <Property Name="Traffic_Second" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  5934. <Property Name="Trip" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  5935. <Property Name="Diffgroup" Type="Int32" />
  5936. <Property Name="Issel" Type="Int32" />
  5937. <Property Name="CreateUserId" Type="Int32" />
  5938. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5939. <Property Name="DeleteUserId" Type="Int32" />
  5940. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5941. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5942. <Property Name="IsDel" Type="Int32" />
  5943. </EntityType>
  5944. <EntityType Name="Grp_VisaFeeInfo">
  5945. <Key>
  5946. <PropertyRef Name="Id" />
  5947. </Key>
  5948. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5949. <Property Name="DiId" Type="Int32" />
  5950. <Property Name="IsChecked" Type="Int32" />
  5951. <Property Name="CountryVisaFeeId" Type="Int32" />
  5952. <Property Name="AgencyFee" Type="Decimal" Precision="10" Scale="2" />
  5953. <Property Name="OtherFee" Type="Decimal" Precision="10" Scale="2" />
  5954. <Property Name="CreateUserId" Type="Int32" />
  5955. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5956. <Property Name="DeleteUserId" Type="Int32" />
  5957. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5958. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5959. <Property Name="IsDel" Type="Int32" />
  5960. <Property Name="OBType" Type="Int32" />
  5961. </EntityType>
  5962. <EntityType Name="Grp_VisaProgress">
  5963. <Key>
  5964. <PropertyRef Name="Id" />
  5965. </Key>
  5966. <Property Name="Id" Type="Int32" Nullable="false" />
  5967. <Property Name="DiId" Type="Int32" />
  5968. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5969. <Property Name="GetData" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5970. <Property Name="GetDataTime" Type="DateTime" Precision="3" />
  5971. <Property Name="GetPassport" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5972. <Property Name="GetPassportTime" Type="DateTime" Precision="3" />
  5973. <Property Name="FillData" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5974. <Property Name="FillDataTime" Type="DateTime" Precision="3" />
  5975. <Property Name="SendVisa" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5976. <Property Name="SendVisaTime" Type="DateTime" Precision="3" />
  5977. <Property Name="SignOut" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5978. <Property Name="SignOutTime" Type="DateTime" Precision="3" />
  5979. <Property Name="SendBackPassport" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5980. <Property Name="SendBackPassporTime" Type="DateTime" Precision="3" />
  5981. <Property Name="Receiver" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  5982. <Property Name="CreateUserId" Type="Int32" />
  5983. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  5984. <Property Name="DeleteUserId" Type="Int32" />
  5985. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  5986. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  5987. <Property Name="IsDel" Type="Int32" />
  5988. </EntityType>
  5989. <EntityType Name="Grp_VisaProgressCustomer">
  5990. <Key>
  5991. <PropertyRef Name="Id" />
  5992. </Key>
  5993. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  5994. <Property Name="DiId" Type="Int32" />
  5995. <Property Name="CustomerId" Type="Int32" />
  5996. <Property Name="LastName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5997. <Property Name="FirstName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5998. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
  5999. <Property Name="WorkStatus" Type="Int32" Nullable="false" />
  6000. <Property Name="LastOperatorId" Type="Int32" />
  6001. <Property Name="LastOperatorDt" Type="DateTime" Precision="3" />
  6002. <Property Name="CreateUserId" Type="Int32" />
  6003. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6004. <Property Name="DeleteUserId" Type="Int32" />
  6005. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6006. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6007. <Property Name="IsDel" Type="Int32" />
  6008. </EntityType>
  6009. <EntityType Name="Grp_VisaProgressCustomerPicture">
  6010. <Key>
  6011. <PropertyRef Name="Id" />
  6012. </Key>
  6013. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6014. <Property Name="VisaProgressCustomerId" Type="Int32" />
  6015. <Property Name="PicName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
  6016. <Property Name="PicPath" Type="String" MaxLength="200" FixedLength="false" Unicode="true" Nullable="false" />
  6017. <Property Name="PicType" Type="Int32" Nullable="false" />
  6018. <Property Name="CreateUserId" Type="Int32" />
  6019. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6020. <Property Name="DeleteUserId" Type="Int32" />
  6021. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6022. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6023. <Property Name="IsDel" Type="Int32" />
  6024. </EntityType>
  6025. <EntityType Name="Pm_TaskAllocation">
  6026. <Key>
  6027. <PropertyRef Name="Id" />
  6028. </Key>
  6029. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6030. <Property Name="DiId" Type="Int32" />
  6031. <Property Name="DepId" Type="Int32" />
  6032. <Property Name="TaskName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6033. <Property Name="TaskContent" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6034. <Property Name="TaskPriority" Type="Int32" />
  6035. <Property Name="PredictBeginTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6036. <Property Name="PredictEndTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6037. <Property Name="Status" Type="Int32" />
  6038. <Property Name="IsComplete" Type="Int32" />
  6039. <Property Name="IsIntoPerformance" Type="Int32" />
  6040. <Property Name="CreateUserId" Type="Int32" />
  6041. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6042. <Property Name="DeleteUserId" Type="Int32" />
  6043. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6044. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6045. <Property Name="IsDel" Type="Int32" />
  6046. </EntityType>
  6047. <EntityType Name="Pm_TaskJobRelevancy">
  6048. <Key>
  6049. <PropertyRef Name="Id" />
  6050. </Key>
  6051. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6052. <Property Name="PrimaryUserId" Type="Int32" Nullable="false" />
  6053. <Property Name="SubUserId" Type="Int32" Nullable="false" />
  6054. <Property Name="CreateUserId" Type="Int32" />
  6055. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6056. <Property Name="DeleteUserId" Type="Int32" />
  6057. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6058. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6059. <Property Name="IsDel" Type="Int32" />
  6060. </EntityType>
  6061. <EntityType Name="Pm_TaskRelevanceUser">
  6062. <Key>
  6063. <PropertyRef Name="Id" />
  6064. </Key>
  6065. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6066. <Property Name="TAId" Type="Int32" />
  6067. <Property Name="UserId" Type="Int32" />
  6068. <Property Name="BeginTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6069. <Property Name="OverTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6070. <Property Name="TaskStatus" Type="Int32" />
  6071. <Property Name="Cause" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6072. <Property Name="Score" Type="Int32" />
  6073. <Property Name="CreateUserId" Type="Int32" />
  6074. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6075. <Property Name="DeleteUserId" Type="Int32" />
  6076. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6077. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6078. <Property Name="IsDel" Type="Int32" />
  6079. </EntityType>
  6080. <EntityType Name="Pm_WageIssueWorkingDay">
  6081. <Key>
  6082. <PropertyRef Name="Id" />
  6083. </Key>
  6084. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6085. <Property Name="YearMonth" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6086. <Property Name="StartDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6087. <Property Name="EndDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6088. <Property Name="Workdays" Type="Int32" />
  6089. <Property Name="CreateUserId" Type="Int32" />
  6090. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6091. <Property Name="DeleteUserId" Type="Int32" />
  6092. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6093. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6094. <Property Name="IsDel" Type="Int32" />
  6095. </EntityType>
  6096. <EntityType Name="Pm_WageSheet">
  6097. <Key>
  6098. <PropertyRef Name="Id" />
  6099. </Key>
  6100. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6101. <Property Name="UserId" Type="Int32" />
  6102. <Property Name="YearMonth" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6103. <Property Name="StartDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6104. <Property Name="EndDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6105. <Property Name="WorkDays" Type="Int32" />
  6106. <Property Name="RegularDays" Type="Int32" />
  6107. <Property Name="Basic" Type="Decimal" Precision="8" Scale="2" />
  6108. <Property Name="Floats" Type="Decimal" Precision="8" Scale="2" />
  6109. <Property Name="PostAllowance" Type="Decimal" Precision="8" Scale="2" />
  6110. <Property Name="GarmentWashSubsidies" Type="Decimal" Precision="8" Scale="2" />
  6111. <Property Name="CommunicationSubsidies" Type="Decimal" Precision="8" Scale="2" />
  6112. <Property Name="TrafficSubsidies" Type="Decimal" Precision="8" Scale="2" />
  6113. <Property Name="InformationSecurityFee" Type="Decimal" Precision="8" Scale="2" />
  6114. <Property Name="OtherHandle" Type="Decimal" Precision="8" Scale="2" />
  6115. <Property Name="OperationBonus" Type="Decimal" Precision="8" Scale="2" />
  6116. <Property Name="SpecialAllowance" Type="Decimal" Precision="8" Scale="2" />
  6117. <Property Name="OtherSubsidies" Type="Decimal" Precision="8" Scale="2" />
  6118. <Property Name="WithholdingInsurance" Type="Decimal" Precision="8" Scale="2" />
  6119. <Property Name="Mealsupplement" Type="Decimal" Precision="8" Scale="2" />
  6120. <Property Name="ReservedFunds" Type="Decimal" Precision="8" Scale="2" />
  6121. <Property Name="GroupCost" Type="Decimal" Precision="8" Scale="2" />
  6122. <Property Name="WithholdingTax" Type="Decimal" Precision="8" Scale="2" />
  6123. <Property Name="SickLeave" Type="Decimal" Precision="8" Scale="2" />
  6124. <Property Name="SomethingFalse" Type="Decimal" Precision="8" Scale="2" />
  6125. <Property Name="LateTo" Type="Decimal" Precision="8" Scale="2" />
  6126. <Property Name="LeaveEarly" Type="Decimal" Precision="8" Scale="2" />
  6127. <Property Name="Absenteeism" Type="Decimal" Precision="8" Scale="2" />
  6128. <Property Name="NotPunch" Type="Decimal" Precision="8" Scale="2" />
  6129. <Property Name="OtherDeductions" Type="Decimal" Precision="8" Scale="2" />
  6130. <Property Name="Ex_ItemsRemark" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6131. <Property Name="Should" Type="Decimal" Precision="8" Scale="2" />
  6132. <Property Name="TotalDeductions" Type="Decimal" Precision="8" Scale="2" />
  6133. <Property Name="TotalRealHair" Type="Decimal" Precision="8" Scale="2" />
  6134. <Property Name="AfterTax" Type="Decimal" Precision="8" Scale="2" />
  6135. <Property Name="IsLock" Type="Int32" />
  6136. <Property Name="IsSure" Type="Int32" />
  6137. <Property Name="LastUpdateUserId" Type="Int32" />
  6138. <Property Name="LastUpdateDt" Type="DateTime" Precision="3" />
  6139. <Property Name="CreateUserId" Type="Int32" />
  6140. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6141. <Property Name="DeleteUserId" Type="Int32" />
  6142. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6143. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6144. <Property Name="IsDel" Type="Int32" />
  6145. </EntityType>
  6146. <EntityType Name="Res_AirCompany">
  6147. <Key>
  6148. <PropertyRef Name="Id" />
  6149. </Key>
  6150. <Property Name="Id" Type="Int32" Nullable="false" />
  6151. <Property Name="ShortCode" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6152. <Property Name="CnName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6153. <Property Name="EnName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6154. <Property Name="CreateUserId" Type="Int32" />
  6155. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6156. <Property Name="DeleteUserId" Type="Int32" />
  6157. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6158. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6159. <Property Name="IsDel" Type="Int32" />
  6160. </EntityType>
  6161. <EntityType Name="Res_AirTicketAgent">
  6162. <Key>
  6163. <PropertyRef Name="Id" />
  6164. </Key>
  6165. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6166. <Property Name="Name" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6167. <Property Name="Account" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6168. <Property Name="Bank" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6169. <Property Name="CreateUserId" Type="Int32" />
  6170. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6171. <Property Name="DeleteUserId" Type="Int32" />
  6172. <Property Name="DeleteTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6173. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6174. <Property Name="IsDel" Type="Int32" />
  6175. </EntityType>
  6176. <EntityType Name="Res_AskData">
  6177. <Key>
  6178. <PropertyRef Name="Id" />
  6179. </Key>
  6180. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6181. <Property Name="DeleName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6182. <Property Name="Country" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6183. <Property Name="Area" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6184. <Property Name="UnitName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6185. <Property Name="Field" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6186. <Property Name="TalkCase" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6187. <Property Name="CreateUserId" Type="Int32" />
  6188. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6189. <Property Name="DeleteUserId" Type="Int32" />
  6190. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6191. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6192. <Property Name="IsDel" Type="Int32" />
  6193. </EntityType>
  6194. <EntityType Name="Res_CarData">
  6195. <Key>
  6196. <PropertyRef Name="Id" />
  6197. </Key>
  6198. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6199. <Property Name="UnitArea" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6200. <Property Name="UnitName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6201. <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  6202. <Property Name="Contact" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6203. <Property Name="ContactTel" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6204. <Property Name="ContactEmail" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6205. <Property Name="ContactFax" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6206. <Property Name="CarDes" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6207. <Property Name="CarPicPaths" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6208. <Property Name="OtherInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6209. <Property Name="Score" Type="Int32" />
  6210. <Property Name="QualificationScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6211. <Property Name="CarAgeScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6212. <Property Name="CleanImgScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6213. <Property Name="SmellScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6214. <Property Name="WaterPaperScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6215. <Property Name="HardwareScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6216. <Property Name="TimeScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6217. <Property Name="SafetyScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6218. <Property Name="DrivingAgeScore" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6219. <Property Name="CreateUserId" Type="Int32" />
  6220. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6221. <Property Name="DeleteUserId" Type="Int32" />
  6222. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6223. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6224. <Property Name="IsDel" Type="Int32" />
  6225. <Property Name="LastUpdateUserId_" Type="Int32" />
  6226. <Property Name="LastUpdateTime_" Type="DateTime" Precision="3" />
  6227. </EntityType>
  6228. <EntityType Name="Res_CarGuides">
  6229. <Key>
  6230. <PropertyRef Name="Id" />
  6231. </Key>
  6232. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6233. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6234. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6235. <Property Name="ServiceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6236. <Property Name="CarType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6237. <Property Name="Offer" Type="Decimal" Precision="10" Scale="2" />
  6238. <Property Name="CGCost" Type="Decimal" Precision="10" Scale="2" />
  6239. <Property Name="RuningTime" Type="Int32" />
  6240. <Property Name="OvertimeFee" Type="Decimal" Precision="10" Scale="2" />
  6241. <Property Name="CGOvertimeFee" Type="Decimal" Precision="10" Scale="2" />
  6242. <Property Name="Currency" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  6243. <Property Name="CreateUserId" Type="Int32" />
  6244. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6245. <Property Name="DeleteUserId" Type="Int32" />
  6246. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6247. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6248. <Property Name="IsDel" Type="Int32" />
  6249. </EntityType>
  6250. <EntityType Name="Res_CarInfo">
  6251. <Key>
  6252. <PropertyRef Name="Id" />
  6253. </Key>
  6254. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6255. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6256. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6257. <Property Name="ServiceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6258. <Property Name="CarType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6259. <Property Name="RuningTime" Type="Int32" />
  6260. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  6261. <Property Name="OvertimeFee" Type="Decimal" Precision="10" Scale="2" />
  6262. <Property Name="Currency" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  6263. <Property Name="CreateUserId" Type="Int32" />
  6264. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6265. <Property Name="DeleteUserId" Type="Int32" />
  6266. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6267. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6268. <Property Name="IsDel" Type="Int32" />
  6269. </EntityType>
  6270. <EntityType Name="Res_CompanyEnglishComparison">
  6271. <Key>
  6272. <PropertyRef Name="Id" />
  6273. </Key>
  6274. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6275. <Property Name="zhName" Type="String" MaxLength="500" FixedLength="false" Unicode="false" Nullable="false" />
  6276. <Property Name="enName" Type="String" MaxLength="500" FixedLength="false" Unicode="true" Nullable="false" />
  6277. <Property Name="CreateUserId" Type="Int32" />
  6278. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6279. <Property Name="DeleteUserId" Type="Int32" />
  6280. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6281. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6282. <Property Name="IsDel" Type="Int32" />
  6283. </EntityType>
  6284. <EntityType Name="Res_CountryFeeCost">
  6285. <Key>
  6286. <PropertyRef Name="Id" />
  6287. </Key>
  6288. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6289. <Property Name="VisaContinent" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6290. <Property Name="VisaCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6291. <Property Name="IsVisaExemption" Type="Int32" />
  6292. <Property Name="IsVisaOnArrival" Type="Int32" />
  6293. <Property Name="IsElectronicSignature" Type="Int32" />
  6294. <Property Name="VisaPrice" Type="Decimal" Precision="10" Scale="2" />
  6295. <Property Name="VisaPriceDesc" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  6296. <Property Name="VisaType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6297. <Property Name="VisaTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6298. <Property Name="IsUrgent" Type="Int32" />
  6299. <Property Name="UrgentTime" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6300. <Property Name="UrgentPrice" Type="Decimal" Precision="10" Scale="2" />
  6301. <Property Name="UrgentPriceDesc" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  6302. <Property Name="VisaAddress" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
  6303. <Property Name="LastUpdateTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6304. <Property Name="CreateUserId" Type="Int32" />
  6305. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6306. <Property Name="DeleteUserId" Type="Int32" />
  6307. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6308. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6309. <Property Name="IsDel" Type="Int32" />
  6310. <Property Name="GrandBusinessAgencyFee" Type="Decimal" Precision="10" Scale="2" />
  6311. <Property Name="PettyBusinessAgencyFee" Type="Decimal" Precision="10" Scale="2" />
  6312. </EntityType>
  6313. <EntityType Name="Res_GuidesInfo">
  6314. <Key>
  6315. <PropertyRef Name="Id" />
  6316. </Key>
  6317. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6318. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6319. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6320. <Property Name="ServiceType" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6321. <Property Name="When" Type="Int32" />
  6322. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  6323. <Property Name="TranslationPrice" Type="Decimal" Precision="10" Scale="2" />
  6324. <Property Name="OvertimeFee" Type="Decimal" Precision="10" Scale="2" />
  6325. <Property Name="Currency" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  6326. <Property Name="CreateUserId" Type="Int32" />
  6327. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6328. <Property Name="DeleteUserId" Type="Int32" />
  6329. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6330. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6331. <Property Name="IsDel" Type="Int32" />
  6332. </EntityType>
  6333. <EntityType Name="Res_HotelData">
  6334. <Key>
  6335. <PropertyRef Name="Id" />
  6336. </Key>
  6337. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6338. <Property Name="City" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6339. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6340. <Property Name="Level" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6341. <Property Name="Address" Type="String" MaxLength="225" FixedLength="false" Unicode="false" />
  6342. <Property Name="Tel" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6343. <Property Name="Fax" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6344. <Property Name="Contact" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6345. <Property Name="ContactPhone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6346. <Property Name="OtherInformation" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6347. <Property Name="CreateUserId" Type="Int32" />
  6348. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6349. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6350. <Property Name="IsDel" Type="Int32" />
  6351. <Property Name="DeleteUserId" Type="Int32" />
  6352. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6353. </EntityType>
  6354. <EntityType Name="Res_InvitationOfficialActivityData">
  6355. <Key>
  6356. <PropertyRef Name="Id" />
  6357. </Key>
  6358. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6359. <Property Name="Country" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6360. <Property Name="City" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6361. <Property Name="UnitName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6362. <Property Name="UnitWeb" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6363. <Property Name="Field" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6364. <Property Name="Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6365. <Property Name="UnitInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6366. <Property Name="Contact" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6367. <Property Name="Job" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6368. <Property Name="Tel" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6369. <Property Name="Email" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6370. <Property Name="WeChat" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6371. <Property Name="FaceBook" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6372. <Property Name="Ins" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6373. <Property Name="Delegation" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6374. <Property Name="FileName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6375. <Property Name="FilePath" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6376. <Property Name="SndFileName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6377. <Property Name="SndFilePath" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6378. <Property Name="Fax" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6379. <Property Name="OtherInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6380. <Property Name="Background" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6381. <Property Name="CreateUserId" Type="Int32" />
  6382. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6383. <Property Name="DeleteUserId" Type="Int32" />
  6384. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6385. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6386. <Property Name="IsDel" Type="Int32" />
  6387. <Property Name="LastUpdateUserId_" Type="Int32" />
  6388. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  6389. </EntityType>
  6390. <EntityType Name="Res_ItemDetail">
  6391. <Key>
  6392. <PropertyRef Name="Id" />
  6393. </Key>
  6394. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6395. <Property Name="VendorId" Type="Int32" />
  6396. <Property Name="ItemName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6397. <Property Name="ItemTypeId" Type="Int32" />
  6398. <Property Name="MinRate" Type="Decimal" Precision="9" Scale="2" />
  6399. <Property Name="MinDt" Type="DateTime" Precision="3" />
  6400. <Property Name="MaxRate" Type="Decimal" Precision="9" Scale="2" />
  6401. <Property Name="MaxDt" Type="DateTime" Precision="3" />
  6402. <Property Name="CurrRate" Type="Decimal" Precision="9" Scale="2" />
  6403. <Property Name="CurrDt" Type="DateTime" Precision="3" />
  6404. <Property Name="CreateUserId" Type="Int32" />
  6405. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6406. <Property Name="DeleteUserId" Type="Int32" />
  6407. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6408. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6409. <Property Name="IsDel" Type="Int32" />
  6410. </EntityType>
  6411. <EntityType Name="Res_ItemType">
  6412. <Key>
  6413. <PropertyRef Name="Id" />
  6414. </Key>
  6415. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6416. <Property Name="SdId" Type="Int32" />
  6417. <Property Name="TypeName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6418. <Property Name="CreateUserId" Type="Int32" />
  6419. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6420. <Property Name="DeleteUserId" Type="Int32" />
  6421. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6422. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6423. <Property Name="IsDel" Type="Int32" />
  6424. </EntityType>
  6425. <EntityType Name="Res_ItemVendor">
  6426. <Key>
  6427. <PropertyRef Name="Id" />
  6428. </Key>
  6429. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6430. <Property Name="BusRange" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6431. <Property Name="FullName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6432. <Property Name="ShortName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6433. <Property Name="Address" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6434. <Property Name="Linker" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6435. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6436. <Property Name="Mobile" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6437. <Property Name="CreateUserId" Type="Int32" />
  6438. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6439. <Property Name="DeleteUserId" Type="Int32" />
  6440. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6441. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6442. <Property Name="IsDel" Type="Int32" />
  6443. </EntityType>
  6444. <EntityType Name="Res_LocalGuideData">
  6445. <Key>
  6446. <PropertyRef Name="Id" />
  6447. </Key>
  6448. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6449. <Property Name="UnitArea" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6450. <Property Name="UnitName" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6451. <Property Name="Address" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  6452. <Property Name="Contact" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6453. <Property Name="ContactTel" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6454. <Property Name="ContactEmail" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6455. <Property Name="ContactFax" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6456. <Property Name="OtherInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6457. <Property Name="Score" Type="Int32" />
  6458. <Property Name="SuitScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6459. <Property Name="ServeScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6460. <Property Name="TalkProScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6461. <Property Name="TimeScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6462. <Property Name="FitScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6463. <Property Name="StrainScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6464. <Property Name="LocalAndChineseScore" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6465. <Property Name="StaffType" Type="Int32" />
  6466. <Property Name="CreateUserId" Type="Int32" />
  6467. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6468. <Property Name="DeleteUserId" Type="Int32" />
  6469. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6470. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6471. <Property Name="IsDel" Type="Int32" />
  6472. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  6473. <Property Name="LastUpdateUserId" Type="Int32" />
  6474. </EntityType>
  6475. <EntityType Name="Res_Memo">
  6476. <Key>
  6477. <PropertyRef Name="Id" />
  6478. </Key>
  6479. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6480. <Property Name="DepartmentId" Type="Int32" />
  6481. <Property Name="ReadLevel" Type="Int32" />
  6482. <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6483. <Property Name="Abstracts" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6484. <Property Name="MDFilePath" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6485. <Property Name="LastedEditDt" Type="DateTime" Precision="3" />
  6486. <Property Name="LastedEditor" Type="Int32" />
  6487. <Property Name="CreateUserId" Type="Int32" />
  6488. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6489. <Property Name="DeleteUserId" Type="Int32" />
  6490. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6491. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6492. <Property Name="IsDel" Type="Int32" />
  6493. </EntityType>
  6494. <EntityType Name="Res_OfficialActivities">
  6495. <Key>
  6496. <PropertyRef Name="Id" />
  6497. </Key>
  6498. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6499. <Property Name="DiId" Type="Int32" />
  6500. <Property Name="Type" Type="Int32" />
  6501. <Property Name="Client" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6502. <Property Name="Date" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6503. <Property Name="Time" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6504. <Property Name="Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6505. <Property Name="Contact" Type="String" MaxLength="120" FixedLength="false" Unicode="true" />
  6506. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  6507. <Property Name="Tel" Type="String" MaxLength="120" FixedLength="false" Unicode="true" />
  6508. <Property Name="OfficialForm" Type="Int32" />
  6509. <Property Name="Setting" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6510. <Property Name="Dresscode" Type="String" MaxLength="120" FixedLength="false" Unicode="true" />
  6511. <Property Name="Attendees" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6512. <Property Name="IsNeedTrans" Type="Int32" />
  6513. <Property Name="Translators" Type="String" MaxLength="120" FixedLength="false" Unicode="true" />
  6514. <Property Name="Trip" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  6515. <Property Name="CreateUserId" Type="Int32" />
  6516. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6517. <Property Name="DeleteUserId" Type="Int32" />
  6518. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6519. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  6520. <Property Name="IsDel" Type="Int32" />
  6521. <Property Name="IsSubmitApproval" Type="Int32" />
  6522. <Property Name="IsPay" Type="Int32" />
  6523. <Property Name="Country" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6524. <Property Name="Area" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  6525. <Property Name="Field" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6526. <Property Name="ReqSample" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  6527. <Property Name="DataSource" Type="Int32" />
  6528. <Property Name="Language" Type="String" MaxLength="120" FixedLength="false" Unicode="true" />
  6529. <Property Name="ConfirmTheInvitation" Type="Int32" />
  6530. <Property Name="ScreenshotOfMailUrl" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  6531. <Property Name="EmailOrWeChat" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6532. <Property Name="Website" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6533. <Property Name="Nature" Type="String" MaxLength="250" FixedLength="false" Unicode="false" />
  6534. <Property Name="DataId" Type="Int32" />
  6535. </EntityType>
  6536. <EntityType Name="Res_PositionEnglishComparison">
  6537. <Key>
  6538. <PropertyRef Name="Id" />
  6539. </Key>
  6540. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6541. <Property Name="zhName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" Nullable="false" />
  6542. <Property Name="enName" Type="String" MaxLength="500" FixedLength="false" Unicode="false" Nullable="false" />
  6543. <Property Name="CreateUserId" Type="Int32" />
  6544. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6545. <Property Name="DeleteUserId" Type="Int32" />
  6546. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6547. <Property Name="Remark" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6548. <Property Name="IsDel" Type="Int32" />
  6549. </EntityType>
  6550. <EntityType Name="Res_ScenicSpotInfo">
  6551. <Key>
  6552. <PropertyRef Name="Id" />
  6553. </Key>
  6554. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6555. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6556. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6557. <Property Name="ScenicSpot" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6558. <Property Name="ScenicSpotDetail" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6559. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  6560. <Property Name="Rate" Type="Decimal" Precision="10" Scale="2" />
  6561. <Property Name="Currency" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  6562. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6563. <Property Name="CreateUserId" Type="Int32" />
  6564. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6565. <Property Name="DeleteUserId" Type="Int32" />
  6566. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6567. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6568. <Property Name="IsDel" Type="Int32" />
  6569. </EntityType>
  6570. <EntityType Name="Res_ThreeCode">
  6571. <Key>
  6572. <PropertyRef Name="Id" />
  6573. </Key>
  6574. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6575. <Property Name="Three" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6576. <Property Name="Four" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6577. <Property Name="Country" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6578. <Property Name="City" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6579. <Property Name="AirPort" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6580. <Property Name="AirPort_En" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6581. <Property Name="CreateUserId" Type="Int32" />
  6582. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6583. <Property Name="DeleteUserId" Type="Int32" />
  6584. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6585. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6586. <Property Name="IsDel" Type="Int32" />
  6587. </EntityType>
  6588. <EntityType Name="Sys_Calendar">
  6589. <Key>
  6590. <PropertyRef Name="Id" />
  6591. </Key>
  6592. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6593. <Property Name="Dt" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6594. <Property Name="IsWorkDay" Type="Boolean" />
  6595. <Property Name="IsHoliDay" Type="Boolean" />
  6596. <Property Name="HoliName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6597. <Property Name="CreateUserId" Type="Int32" />
  6598. <Property Name="CreateTime" Type="DateTime" Precision="0" />
  6599. <Property Name="DeleteUserId" Type="Int32" />
  6600. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6601. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6602. <Property Name="Isdel" Type="Int32" />
  6603. </EntityType>
  6604. <EntityType Name="Sys_Company">
  6605. <Key>
  6606. <PropertyRef Name="Id" />
  6607. </Key>
  6608. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6609. <Property Name="CompanyCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6610. <Property Name="CompanyName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6611. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6612. <Property Name="ContactUserId" Type="Int32" />
  6613. <Property Name="Tel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6614. <Property Name="ParentCompanyId" Type="Int32" />
  6615. <Property Name="CreateUserId" Type="Int32" />
  6616. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6617. <Property Name="DeleteUserId" Type="Int32" />
  6618. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6619. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6620. <Property Name="IsDel" Type="Int32" />
  6621. </EntityType>
  6622. <EntityType Name="Sys_Department">
  6623. <Key>
  6624. <PropertyRef Name="Id" />
  6625. </Key>
  6626. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6627. <Property Name="CompanyId" Type="Int32" />
  6628. <Property Name="DepCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6629. <Property Name="DepName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6630. <Property Name="ParentDepId" Type="Int32" />
  6631. <Property Name="CreateUserId" Type="Int32" />
  6632. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6633. <Property Name="DeleteUserId" Type="Int32" />
  6634. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6635. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6636. <Property Name="IsDel" Type="Int32" />
  6637. </EntityType>
  6638. <EntityType Name="Sys_JobPost">
  6639. <Key>
  6640. <PropertyRef Name="Id" />
  6641. </Key>
  6642. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6643. <Property Name="CompanyId" Type="Int32" />
  6644. <Property Name="DepId" Type="Int32" />
  6645. <Property Name="JobName" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  6646. <Property Name="CreateUserId" Type="Int32" />
  6647. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6648. <Property Name="DeleteUserId" Type="Int32" />
  6649. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6650. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6651. <Property Name="IsDel" Type="Int32" />
  6652. </EntityType>
  6653. <EntityType Name="Sys_JobPostAuthority">
  6654. <Key>
  6655. <PropertyRef Name="Id" />
  6656. </Key>
  6657. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6658. <Property Name="JpId" Type="Int32" />
  6659. <Property Name="SmId" Type="Int32" />
  6660. <Property Name="FId" Type="Int32" />
  6661. <Property Name="CreateUserId" Type="Int32" />
  6662. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6663. <Property Name="DeleteUserId" Type="Int32" />
  6664. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6665. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6666. <Property Name="IsDel" Type="Int32" />
  6667. </EntityType>
  6668. <EntityType Name="Sys_Message">
  6669. <Key>
  6670. <PropertyRef Name="Id" />
  6671. </Key>
  6672. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6673. <Property Name="Type" Type="Int32" />
  6674. <Property Name="Param" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6675. <Property Name="IssuerId" Type="Int32" />
  6676. <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6677. <Property Name="Content" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6678. <Property Name="ReleaseTime" Type="DateTime" Precision="3" />
  6679. <Property Name="CreateUserId" Type="Int32" />
  6680. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6681. <Property Name="DeleteUserId" Type="Int32" />
  6682. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6683. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6684. <Property Name="IsDel" Type="Int32" />
  6685. <Property Name="DiId" Type="Int32" />
  6686. </EntityType>
  6687. <EntityType Name="Sys_MessageReadAuth">
  6688. <Key>
  6689. <PropertyRef Name="Id" />
  6690. </Key>
  6691. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6692. <Property Name="MsgId" Type="Int32" />
  6693. <Property Name="ReadableUId" Type="Int32" />
  6694. <Property Name="IsRead" Type="Int32" />
  6695. <Property Name="ReadTime" Type="DateTime" Precision="3" />
  6696. <Property Name="CreateUserId" Type="Int32" />
  6697. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6698. <Property Name="DeleteUserId" Type="Int32" />
  6699. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6700. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6701. <Property Name="IsDel" Type="Int32" />
  6702. </EntityType>
  6703. <EntityType Name="Sys_PageFunctionPermission">
  6704. <Key>
  6705. <PropertyRef Name="Id" />
  6706. </Key>
  6707. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6708. <Property Name="FunctionName" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6709. <Property Name="FunctionCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6710. <Property Name="IsEnable" Type="Int32" />
  6711. <Property Name="CreateUserId" Type="Int32" />
  6712. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6713. <Property Name="DeleteUserId" Type="Int32" />
  6714. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6715. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6716. <Property Name="IsDel" Type="Int32" />
  6717. </EntityType>
  6718. <EntityType Name="Sys_SetData">
  6719. <Key>
  6720. <PropertyRef Name="Id" />
  6721. </Key>
  6722. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6723. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6724. <Property Name="STid" Type="Int32" />
  6725. <Property Name="CreateUserId" Type="Int32" />
  6726. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6727. <Property Name="DeleteUserId" Type="Int32" />
  6728. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6729. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6730. <Property Name="IsDel" Type="Int32" />
  6731. </EntityType>
  6732. <EntityType Name="Sys_SetDataType">
  6733. <Key>
  6734. <PropertyRef Name="Id" />
  6735. </Key>
  6736. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6737. <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6738. <Property Name="IsEnable" Type="Int32" />
  6739. <Property Name="CreateUserId" Type="Int32" />
  6740. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6741. <Property Name="DeleteUserId" Type="Int32" />
  6742. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6743. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6744. <Property Name="IsDel" Type="Int32" />
  6745. </EntityType>
  6746. <EntityType Name="Sys_SystemMenuAndFunction">
  6747. <Key>
  6748. <PropertyRef Name="Id" />
  6749. </Key>
  6750. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6751. <Property Name="SmId" Type="Int32" />
  6752. <Property Name="FId" Type="Int32" />
  6753. <Property Name="CreateUserId" Type="Int32" />
  6754. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6755. <Property Name="DeleteUserId" Type="Int32" />
  6756. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6757. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6758. <Property Name="IsDel" Type="Int32" />
  6759. </EntityType>
  6760. <EntityType Name="Sys_SystemMenuPermission">
  6761. <Key>
  6762. <PropertyRef Name="Id" />
  6763. </Key>
  6764. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6765. <Property Name="Name" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  6766. <Property Name="IsEnable" Type="Int32" />
  6767. <Property Name="Mid" Type="Int32" />
  6768. <Property Name="SystemMenuCode" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  6769. <Property Name="webUrl" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6770. <Property Name="AndroidUrl" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6771. <Property Name="icon" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  6772. <Property Name="IosUrl" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6773. <Property Name="phoneIsEnable" Type="Int32" />
  6774. <Property Name="CreateUserId" Type="Int32" />
  6775. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6776. <Property Name="DeleteUserId" Type="Int32" />
  6777. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6778. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6779. <Property Name="IsDel" Type="Int32" />
  6780. </EntityType>
  6781. <EntityType Name="Sys_UserAuthority">
  6782. <Key>
  6783. <PropertyRef Name="Id" />
  6784. </Key>
  6785. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6786. <Property Name="UId" Type="Int32" />
  6787. <Property Name="SmId" Type="Int32" />
  6788. <Property Name="FId" Type="Int32" />
  6789. <Property Name="CreateUserId" Type="Int32" />
  6790. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6791. <Property Name="DeleteUserId" Type="Int32" />
  6792. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6793. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6794. <Property Name="IsDel" Type="Int32" />
  6795. <Property Name="IsTemp" Type="Int32" />
  6796. </EntityType>
  6797. <EntityType Name="Sys_Users">
  6798. <Key>
  6799. <PropertyRef Name="Id" />
  6800. </Key>
  6801. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6802. <Property Name="CnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6803. <Property Name="EnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6804. <Property Name="Number" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6805. <Property Name="CompanyId" Type="Int32" />
  6806. <Property Name="DepId" Type="Int32" />
  6807. <Property Name="JobPostId" Type="Int32" />
  6808. <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6809. <Property Name="Sex" Type="Int32" />
  6810. <Property Name="Ext" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6811. <Property Name="Phone" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6812. <Property Name="UrgentPhone" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6813. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6814. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6815. <Property Name="Edate" Type="DateTime" Precision="3" />
  6816. <Property Name="Rdate" Type="DateTime" Precision="3" />
  6817. <Property Name="Seniority" Type="Int32" />
  6818. <Property Name="Birthday" Type="DateTime" Precision="3" />
  6819. <Property Name="IDCard" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  6820. <Property Name="StartWorkDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6821. <Property Name="GraduateInstitutions" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6822. <Property Name="Professional" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6823. <Property Name="Education" Type="Int32" />
  6824. <Property Name="TheOrAdultEducation" Type="Int32" />
  6825. <Property Name="MaritalStatus" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6826. <Property Name="HomeAddress" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6827. <Property Name="UsePeriod" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6828. <Property Name="WorkExperience" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6829. <Property Name="Certificate" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6830. <Property Name="HrAudit" Type="Int32" />
  6831. <Property Name="CreateUserId" Type="Int32" />
  6832. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6833. <Property Name="DeleteUserId" Type="Int32" />
  6834. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6835. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6836. <Property Name="IsDel" Type="Int32" />
  6837. <Property Name="QiyeChatUserId" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  6838. </EntityType>
  6839. <EntityType Name="sysdiagrams">
  6840. <Key>
  6841. <PropertyRef Name="diagram_id" />
  6842. </Key>
  6843. <Property Name="name" Type="String" MaxLength="128" FixedLength="false" Unicode="true" Nullable="false" />
  6844. <Property Name="principal_id" Type="Int32" Nullable="false" />
  6845. <Property Name="diagram_id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6846. <Property Name="version" Type="Int32" />
  6847. <Property Name="definition" Type="Binary" MaxLength="Max" FixedLength="false" />
  6848. </EntityType>
  6849. <EntityType Name="Res_OfficialActivities0426">
  6850. <Key>
  6851. <PropertyRef Name="Id" />
  6852. <PropertyRef Name="DiId" />
  6853. </Key>
  6854. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  6855. <Property Name="DiId" Type="Int32" Nullable="false" />
  6856. <Property Name="Type" Type="Int32" />
  6857. <Property Name="Client" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6858. <Property Name="Date" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6859. <Property Name="Time" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6860. <Property Name="Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6861. <Property Name="Contact" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6862. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  6863. <Property Name="Tel" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6864. <Property Name="OfficialForm" Type="Int32" />
  6865. <Property Name="Setting" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6866. <Property Name="Dresscode" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6867. <Property Name="Attendees" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6868. <Property Name="IsNeedTrans" Type="Int32" />
  6869. <Property Name="Translators" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  6870. <Property Name="language" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  6871. <Property Name="Trip" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  6872. <Property Name="CreateUserId" Type="Int32" />
  6873. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  6874. <Property Name="DeleteUserId" Type="Int32" />
  6875. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  6876. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  6877. <Property Name="Isdel" Type="Int32" />
  6878. </EntityType>
  6879. <EntityContainer Name="oa2023DBEntities" annotation:LazyLoadingEnabled="true">
  6880. <EntitySet Name="Air_TicketBlackCode" EntityType="Self.Air_TicketBlackCode" />
  6881. <EntitySet Name="Bus_ConfItem" EntityType="Self.Bus_ConfItem" />
  6882. <EntitySet Name="Bus_ConfItemList" EntityType="Self.Bus_ConfItemList" />
  6883. <EntitySet Name="Bus_MsgPost" EntityType="Self.Bus_MsgPost" />
  6884. <EntitySet Name="Crm_ClientDataAndBusiness" EntityType="Self.Crm_ClientDataAndBusiness" />
  6885. <EntitySet Name="Crm_ClientDataAndUser" EntityType="Self.Crm_ClientDataAndUser" />
  6886. <EntitySet Name="Crm_CustomerCert" EntityType="Self.Crm_CustomerCert" />
  6887. <EntitySet Name="Crm_CustomerCompany" EntityType="Self.Crm_CustomerCompany" />
  6888. <EntitySet Name="Crm_CustomerFile" EntityType="Self.Crm_CustomerFile" />
  6889. <EntitySet Name="Crm_DeleClient" EntityType="Self.Crm_DeleClient" />
  6890. <EntitySet Name="Crm_GroupCustomer" EntityType="Self.Crm_GroupCustomer" />
  6891. <EntitySet Name="Crm_NewClientData" EntityType="Self.Crm_NewClientData" />
  6892. <EntitySet Name="Crm_TableOperationRecord" EntityType="Self.Crm_TableOperationRecord" />
  6893. <EntitySet Name="Crm_VisaCustomerCompany" EntityType="Self.Crm_VisaCustomerCompany" />
  6894. <EntitySet Name="Crm_VisaCustomerFamily" EntityType="Self.Crm_VisaCustomerFamily" />
  6895. <EntitySet Name="Crm_VisaCustomerSchool" EntityType="Self.Crm_VisaCustomerSchool" />
  6896. <EntitySet Name="Dis_City" EntityType="Self.Dis_City" />
  6897. <EntitySet Name="Dis_Country" EntityType="Self.Dis_Country" />
  6898. <EntitySet Name="Dis_Intercontinental" EntityType="Self.Dis_Intercontinental" />
  6899. <EntitySet Name="Fin_Commission" EntityType="Self.Fin_Commission" />
  6900. <EntitySet Name="Fin_DailyFeePayment" EntityType="Self.Fin_DailyFeePayment" />
  6901. <EntitySet Name="Fin_DailyFeePaymentContent" EntityType="Self.Fin_DailyFeePaymentContent" />
  6902. <EntitySet Name="Fin_ForeignReceivables" EntityType="Self.Fin_ForeignReceivables" />
  6903. <EntitySet Name="Fin_GroupExtraCost" EntityType="Self.Fin_GroupExtraCost" />
  6904. <EntitySet Name="Fin_OtherPrice" EntityType="Self.Fin_OtherPrice" />
  6905. <EntitySet Name="Fin_PaymentRefundAndOtherMoney" EntityType="Self.Fin_PaymentRefundAndOtherMoney" />
  6906. <EntitySet Name="Fin_ProceedsReceived" EntityType="Self.Fin_ProceedsReceived" />
  6907. <EntitySet Name="Grp_AirInquiry" EntityType="Self.Grp_AirInquiry" />
  6908. <EntitySet Name="Grp_AirPrice" EntityType="Self.Grp_AirPrice" />
  6909. <EntitySet Name="Grp_AirTicketReservations" EntityType="Self.Grp_AirTicketReservations" />
  6910. <EntitySet Name="Grp_CarGuides" EntityType="Self.Grp_CarGuides" />
  6911. <EntitySet Name="Grp_CarInfo" EntityType="Self.Grp_CarInfo" />
  6912. <EntitySet Name="Grp_CarTouristGuideGroundReservations" EntityType="Self.Grp_CarTouristGuideGroundReservations" />
  6913. <EntitySet Name="Grp_CarTouristGuideGroundReservationsContent" EntityType="Self.Grp_CarTouristGuideGroundReservationsContent" />
  6914. <EntitySet Name="Grp_CarTouristGuideGroundReservationsContentOld" EntityType="Self.Grp_CarTouristGuideGroundReservationsContentOld" />
  6915. <EntitySet Name="Grp_CarTouristGuideGroundReservationsOld" EntityType="Self.Grp_CarTouristGuideGroundReservationsOld" />
  6916. <EntitySet Name="Grp_CheckBoxs" EntityType="Self.Grp_CheckBoxs" />
  6917. <EntitySet Name="Grp_CostTypeHotelNumber" EntityType="Self.Grp_CostTypeHotelNumber" />
  6918. <EntitySet Name="Grp_CreditCardPayment" EntityType="Self.Grp_CreditCardPayment" />
  6919. <EntitySet Name="Grp_Customers" EntityType="Self.Grp_Customers" />
  6920. <EntitySet Name="Grp_DayAndCost" EntityType="Self.Grp_DayAndCost" />
  6921. <EntitySet Name="Grp_DecreasePayments" EntityType="Self.Grp_DecreasePayments" />
  6922. <EntitySet Name="Grp_DeleClientNeeds" EntityType="Self.Grp_DeleClientNeeds" />
  6923. <EntitySet Name="Grp_DeleFile" EntityType="Self.Grp_DeleFile" />
  6924. <EntitySet Name="Grp_DelegationEnData" EntityType="Self.Grp_DelegationEnData" />
  6925. <EntitySet Name="Grp_DelegationInfo" EntityType="Self.Grp_DelegationInfo" />
  6926. <EntitySet Name="Grp_DelegationJoinCustomer" EntityType="Self.Grp_DelegationJoinCustomer" />
  6927. <EntitySet Name="Grp_DeleMeetingNeeds" EntityType="Self.Grp_DeleMeetingNeeds" />
  6928. <EntitySet Name="Grp_EnterExitCost" EntityType="Self.Grp_EnterExitCost" />
  6929. <EntitySet Name="Grp_GroupCost" EntityType="Self.Grp_GroupCost" />
  6930. <EntitySet Name="Grp_GroupCostParameter" EntityType="Self.Grp_GroupCostParameter" />
  6931. <EntitySet Name="Grp_GroupsTaskAssignment" EntityType="Self.Grp_GroupsTaskAssignment" />
  6932. <EntitySet Name="Grp_GuidesInfo" EntityType="Self.Grp_GuidesInfo" />
  6933. <EntitySet Name="Grp_HotelReservations" EntityType="Self.Grp_HotelReservations" />
  6934. <EntitySet Name="Grp_InsuranceCost" EntityType="Self.Grp_InsuranceCost" />
  6935. <EntitySet Name="Grp_InvertedList" EntityType="Self.Grp_InvertedList" />
  6936. <EntitySet Name="Grp_InvertedListVisaCountry" EntityType="Self.Grp_InvertedListVisaCountry" />
  6937. <EntitySet Name="Grp_InvitationOfficialActivities" EntityType="Self.Grp_InvitationOfficialActivities" />
  6938. <EntitySet Name="Grp_NationalTravelFee" EntityType="Self.Grp_NationalTravelFee" />
  6939. <EntitySet Name="Grp_ScenicSpotInfo" EntityType="Self.Grp_ScenicSpotInfo" />
  6940. <EntitySet Name="Grp_Schedule" EntityType="Self.Grp_Schedule" />
  6941. <EntitySet Name="Grp_ScheduleDetail" EntityType="Self.Grp_ScheduleDetail" />
  6942. <EntitySet Name="Grp_SchedulePerson" EntityType="Self.Grp_SchedulePerson" />
  6943. <EntitySet Name="Grp_TeamRate" EntityType="Self.Grp_TeamRate" />
  6944. <EntitySet Name="Grp_TourClientList" EntityType="Self.Grp_TourClientList" />
  6945. <EntitySet Name="Grp_TravelList" EntityType="Self.Grp_TravelList" />
  6946. <EntitySet Name="Grp_VisaFeeInfo" EntityType="Self.Grp_VisaFeeInfo" />
  6947. <EntitySet Name="Grp_VisaProgress" EntityType="Self.Grp_VisaProgress" />
  6948. <EntitySet Name="Grp_VisaProgressCustomer" EntityType="Self.Grp_VisaProgressCustomer" />
  6949. <EntitySet Name="Grp_VisaProgressCustomerPicture" EntityType="Self.Grp_VisaProgressCustomerPicture" />
  6950. <EntitySet Name="Pm_TaskAllocation" EntityType="Self.Pm_TaskAllocation" />
  6951. <EntitySet Name="Pm_TaskJobRelevancy" EntityType="Self.Pm_TaskJobRelevancy" />
  6952. <EntitySet Name="Pm_TaskRelevanceUser" EntityType="Self.Pm_TaskRelevanceUser" />
  6953. <EntitySet Name="Pm_WageIssueWorkingDay" EntityType="Self.Pm_WageIssueWorkingDay" />
  6954. <EntitySet Name="Pm_WageSheet" EntityType="Self.Pm_WageSheet" />
  6955. <EntitySet Name="Res_AirCompany" EntityType="Self.Res_AirCompany" />
  6956. <EntitySet Name="Res_AirTicketAgent" EntityType="Self.Res_AirTicketAgent" />
  6957. <EntitySet Name="Res_AskData" EntityType="Self.Res_AskData" />
  6958. <EntitySet Name="Res_CarData" EntityType="Self.Res_CarData" />
  6959. <EntitySet Name="Res_CarGuides" EntityType="Self.Res_CarGuides" />
  6960. <EntitySet Name="Res_CarInfo" EntityType="Self.Res_CarInfo" />
  6961. <EntitySet Name="Res_CompanyEnglishComparison" EntityType="Self.Res_CompanyEnglishComparison" />
  6962. <EntitySet Name="Res_CountryFeeCost" EntityType="Self.Res_CountryFeeCost" />
  6963. <EntitySet Name="Res_GuidesInfo" EntityType="Self.Res_GuidesInfo" />
  6964. <EntitySet Name="Res_HotelData" EntityType="Self.Res_HotelData" />
  6965. <EntitySet Name="Res_InvitationOfficialActivityData" EntityType="Self.Res_InvitationOfficialActivityData" />
  6966. <EntitySet Name="Res_ItemDetail" EntityType="Self.Res_ItemDetail" />
  6967. <EntitySet Name="Res_ItemType" EntityType="Self.Res_ItemType" />
  6968. <EntitySet Name="Res_ItemVendor" EntityType="Self.Res_ItemVendor" />
  6969. <EntitySet Name="Res_LocalGuideData" EntityType="Self.Res_LocalGuideData" />
  6970. <EntitySet Name="Res_Memo" EntityType="Self.Res_Memo" />
  6971. <EntitySet Name="Res_OfficialActivities" EntityType="Self.Res_OfficialActivities" />
  6972. <EntitySet Name="Res_PositionEnglishComparison" EntityType="Self.Res_PositionEnglishComparison" />
  6973. <EntitySet Name="Res_ScenicSpotInfo" EntityType="Self.Res_ScenicSpotInfo" />
  6974. <EntitySet Name="Res_ThreeCode" EntityType="Self.Res_ThreeCode" />
  6975. <EntitySet Name="Sys_Calendar" EntityType="Self.Sys_Calendar" />
  6976. <EntitySet Name="Sys_Company" EntityType="Self.Sys_Company" />
  6977. <EntitySet Name="Sys_Department" EntityType="Self.Sys_Department" />
  6978. <EntitySet Name="Sys_JobPost" EntityType="Self.Sys_JobPost" />
  6979. <EntitySet Name="Sys_JobPostAuthority" EntityType="Self.Sys_JobPostAuthority" />
  6980. <EntitySet Name="Sys_Message" EntityType="Self.Sys_Message" />
  6981. <EntitySet Name="Sys_MessageReadAuth" EntityType="Self.Sys_MessageReadAuth" />
  6982. <EntitySet Name="Sys_PageFunctionPermission" EntityType="Self.Sys_PageFunctionPermission" />
  6983. <EntitySet Name="Sys_SetData" EntityType="Self.Sys_SetData" />
  6984. <EntitySet Name="Sys_SetDataType" EntityType="Self.Sys_SetDataType" />
  6985. <EntitySet Name="Sys_SystemMenuAndFunction" EntityType="Self.Sys_SystemMenuAndFunction" />
  6986. <EntitySet Name="Sys_SystemMenuPermission" EntityType="Self.Sys_SystemMenuPermission" />
  6987. <EntitySet Name="Sys_UserAuthority" EntityType="Self.Sys_UserAuthority" />
  6988. <EntitySet Name="Sys_Users" EntityType="Self.Sys_Users" />
  6989. <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" />
  6990. <EntitySet Name="Res_OfficialActivities0426" EntityType="Self.Res_OfficialActivities0426" />
  6991. <EntitySet Name="Grp_HotelInquiry" EntityType="oa2023DBModel.Grp_HotelInquiry" />
  6992. <EntitySet Name="Grp_VisaInfo" EntityType="oa2023DBModel.Grp_VisaInfo" />
  6993. <EntitySet Name="Fin_LocalGuideRelevancyOverspend" EntityType="oa2023DBModel.Fin_LocalGuideRelevancyOverspend" />
  6994. <EntitySet Name="Fin_OverSpendRelevancyCollectionStatement" EntityType="oa2023DBModel.Fin_OverSpendRelevancyCollectionStatement" />
  6995. <EntitySet Name="Fin_RoyaltyConfirm" EntityType="oa2023DBModel.Fin_RoyaltyConfirm" />
  6996. <EntitySet Name="Fin_RoyaltyForm" EntityType="oa2023DBModel.Fin_RoyaltyForm" />
  6997. <EntitySet Name="Grp_ApprovalTravel" EntityType="oa2023DBModel.Grp_ApprovalTravel" />
  6998. <EntitySet Name="Grp_ApprovalTravelDetails" EntityType="oa2023DBModel.Grp_ApprovalTravelDetails" />
  6999. <EntitySet Name="Grp_DayAndCostDraft" EntityType="oa2023DBModel.Grp_DayAndCostDraft" />
  7000. <EntitySet Name="Grp_DayOtherPrice" EntityType="oa2023DBModel.Grp_DayOtherPrice" />
  7001. <EntitySet Name="Grp_DayOtherPriceDraft" EntityType="oa2023DBModel.Grp_DayOtherPriceDraft" />
  7002. <EntitySet Name="Grp_EnterExitCostDraft" EntityType="oa2023DBModel.Grp_EnterExitCostDraft" />
  7003. <EntitySet Name="Grp_EnterExitCostDraftPermission" EntityType="oa2023DBModel.Grp_EnterExitCostDraftPermission" />
  7004. <EntitySet Name="Grp_EnterExitCostPermission" EntityType="oa2023DBModel.Grp_EnterExitCostPermission" />
  7005. <EntitySet Name="Grp_GroupModelFile" EntityType="oa2023DBModel.Grp_GroupModelFile" />
  7006. <EntitySet Name="Grp_HotelReservationsContent" EntityType="oa2023DBModel.Grp_HotelReservationsContent" />
  7007. <EntitySet Name="Grp_OfficialDutyLinkTranslator" EntityType="oa2023DBModel.Grp_OfficialDutyLinkTranslator" />
  7008. <EntitySet Name="Grp_Opinionaire" EntityType="oa2023DBModel.Grp_Opinionaire" />
  7009. <EntitySet Name="Grp_RestaurantInfo" EntityType="oa2023DBModel.Grp_RestaurantInfo" />
  7010. <EntitySet Name="Grp_VisaCommission" EntityType="oa2023DBModel.Grp_VisaCommission" />
  7011. <EntitySet Name="Grp_VisitingClients" EntityType="oa2023DBModel.Grp_VisitingClients" />
  7012. <EntitySet Name="Per_AssessmentContentSetting" EntityType="oa2023DBModel.Per_AssessmentContentSetting" />
  7013. <EntitySet Name="Per_AssessmentScore" EntityType="oa2023DBModel.Per_AssessmentScore" />
  7014. <EntitySet Name="Per_AssessmentSetting" EntityType="oa2023DBModel.Per_AssessmentSetting" />
  7015. <EntitySet Name="Pm_GoodsInfo" EntityType="oa2023DBModel.Pm_GoodsInfo" />
  7016. <EntitySet Name="Pm_GoodsReceive" EntityType="oa2023DBModel.Pm_GoodsReceive" />
  7017. <EntitySet Name="Pm_GoodsStorage" EntityType="oa2023DBModel.Pm_GoodsStorage" />
  7018. <EntitySet Name="Res_BasicInsuranceCost" EntityType="oa2023DBModel.Res_BasicInsuranceCost" />
  7019. <EntitySet Name="Res_MediaSuppliers" EntityType="oa2023DBModel.Res_MediaSuppliers" />
  7020. <EntitySet Name="Res_TranslatorLibrary" EntityType="oa2023DBModel.Res_TranslatorLibrary" />
  7021. <EntitySet Name="Sys_Cities" EntityType="oa2023DBModel.Sys_Cities" />
  7022. <EntitySet Name="Sys_Continent" EntityType="oa2023DBModel.Sys_Continent" />
  7023. <EntitySet Name="Sys_Countries" EntityType="oa2023DBModel.Sys_Countries" />
  7024. <EntitySet Name="Sys_DeviceToken" EntityType="oa2023DBModel.Sys_DeviceToken" />
  7025. <EntitySet Name="Sys_ExchangeRateRecord" EntityType="oa2023DBModel.Sys_ExchangeRateRecord" />
  7026. <EntitySet Name="Crm_CustomerCert_Data" EntityType="oa2023DBModel.Crm_CustomerCert_Data" />
  7027. <EntitySet Name="Crm_CustomerCompany_Data" EntityType="oa2023DBModel.Crm_CustomerCompany_Data" />
  7028. <EntitySet Name="Crm_DeleClient_Data" EntityType="oa2023DBModel.Crm_DeleClient_Data" />
  7029. <EntitySet Name="Crm_NewClientData_Encryption" EntityType="oa2023DBModel.Crm_NewClientData_Encryption" />
  7030. <EntitySet Name="Res_InvitationOfficialActivityData_Data" EntityType="oa2023DBModel.Res_InvitationOfficialActivityData_Data" />
  7031. <EntitySet Name="Res_TranslatorLibrary_Encryption" EntityType="oa2023DBModel.Res_TranslatorLibrary_Encryption" />
  7032. <EntitySet Name="Sys_Users_Encryption" EntityType="oa2023DBModel.Sys_Users_Encryption" />
  7033. </EntityContainer>
  7034. <EntityType Name="Grp_HotelInquiry">
  7035. <Key>
  7036. <PropertyRef Name="Id" />
  7037. </Key>
  7038. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7039. <Property Name="DiId" Type="Int32" />
  7040. <Property Name="City" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7041. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7042. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7043. <Property Name="SelectDt" Type="DateTime" Precision="3" />
  7044. <Property Name="CheckInDate" Type="DateTime" Precision="3" />
  7045. <Property Name="CheckOutDate" Type="DateTime" Precision="3" />
  7046. <Property Name="SinglePrice" Type="Decimal" Precision="10" Scale="2" />
  7047. <Property Name="SingleQuantity" Type="Int32" />
  7048. <Property Name="SingleCurrency" Type="Int32" />
  7049. <Property Name="DoublePrice" Type="Decimal" Precision="10" Scale="2" />
  7050. <Property Name="DoubleQuantity" Type="Int32" />
  7051. <Property Name="DoubleCurrency" Type="Int32" />
  7052. <Property Name="SuitePrice" Type="Decimal" Precision="10" Scale="2" />
  7053. <Property Name="SuiteQuantity" Type="Int32" />
  7054. <Property Name="SuiteCurrency" Type="Int32" />
  7055. <Property Name="OtherPrice" Type="Decimal" Precision="10" Scale="2" />
  7056. <Property Name="OtherQuantity" Type="Int32" />
  7057. <Property Name="OtherCurrency" Type="Int32" />
  7058. <Property Name="CreateUserId" Type="Int32" />
  7059. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7060. <Property Name="DeleteUserId" Type="Int32" />
  7061. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7062. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7063. <Property Name="IsDel" Type="Int32" />
  7064. </EntityType>
  7065. <EntityType Name="Grp_VisaInfo">
  7066. <Key>
  7067. <PropertyRef Name="Id" />
  7068. </Key>
  7069. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7070. <Property Name="DIId" Type="Int32" />
  7071. <Property Name="VisaClient" Type="String" MaxLength="120" FixedLength="false" Unicode="false" />
  7072. <Property Name="VisaPrice" Type="Decimal" Precision="10" Scale="2" />
  7073. <Property Name="VisaCurrency" Type="Int32" />
  7074. <Property Name="IsThird" Type="Int32" />
  7075. <Property Name="PassengerType" Type="Int32" />
  7076. <Property Name="VisaNumber" Type="Int32" />
  7077. <Property Name="VisaFreeNumber" Type="Int32" />
  7078. <Property Name="CreateUserId" Type="Int32" />
  7079. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7080. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7081. <Property Name="DeleteUserId" Type="Int32" />
  7082. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  7083. <Property Name="IsDel" Type="Int32" Nullable="false" />
  7084. <Property Name="visaDescription" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
  7085. <Property Name="Area" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7086. <Property Name="AgencyFeeType" Type="Int32" />
  7087. </EntityType>
  7088. <EntityType Name="Fin_LocalGuideRelevancyOverspend">
  7089. <Key>
  7090. <PropertyRef Name="Id" />
  7091. </Key>
  7092. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7093. <Property Name="LocalGuideId" Type="Int32" Nullable="false" />
  7094. <Property Name="OverspendId" Type="Int32" Nullable="false" />
  7095. <Property Name="CreateUserId" Type="Int32" />
  7096. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7097. <Property Name="DeleteUserId" Type="Int32" />
  7098. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7099. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7100. <Property Name="IsDel" Type="Int32" />
  7101. </EntityType>
  7102. <EntityType Name="Fin_OverSpendRelevancyCollectionStatement">
  7103. <Key>
  7104. <PropertyRef Name="Id" />
  7105. </Key>
  7106. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7107. <Property Name="OverSpendId" Type="Int32" Nullable="false" />
  7108. <Property Name="CollectionStatementId" Type="Int32" Nullable="false" />
  7109. <Property Name="Diid" Type="Int32" Nullable="false" />
  7110. <Property Name="LocalGuideId" Type="Int32" Nullable="false" />
  7111. <Property Name="savePrice" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7112. <Property Name="CreateUserId" Type="Int32" />
  7113. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7114. <Property Name="DeleteUserId" Type="Int32" />
  7115. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7116. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7117. <Property Name="IsDel" Type="Int32" />
  7118. </EntityType>
  7119. <EntityType Name="Fin_RoyaltyConfirm">
  7120. <Key>
  7121. <PropertyRef Name="Id" />
  7122. </Key>
  7123. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7124. <Property Name="Price" Type="Decimal" Nullable="false" Precision="18" Scale="2" />
  7125. <Property Name="TeamName" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
  7126. <Property Name="TeamId" Type="Int32" Nullable="false" />
  7127. <Property Name="ChiArr" Type="String" MaxLength="1000" FixedLength="false" Unicode="false" />
  7128. <Property Name="TeamLvStr" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
  7129. <Property Name="VisitDate" Type="DateTime" Nullable="false" Precision="3" />
  7130. <Property Name="Temp" Type="String" Nullable="false" MaxLength="200" FixedLength="false" Unicode="false" />
  7131. <Property Name="IsConfirm" Type="Int32" Nullable="false" />
  7132. <Property Name="UserId" Type="Int32" Nullable="false" />
  7133. <Property Name="CreateUserId" Type="Int32" />
  7134. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7135. <Property Name="DeleteUserId" Type="Int32" />
  7136. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7137. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7138. <Property Name="IsDel" Type="Int32" />
  7139. <Property Name="IsSeed" Type="Int32" />
  7140. </EntityType>
  7141. <EntityType Name="Fin_RoyaltyForm">
  7142. <Key>
  7143. <PropertyRef Name="Id" />
  7144. </Key>
  7145. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7146. <Property Name="UserId" Type="Int32" Nullable="false" />
  7147. <Property Name="DayOverhead" Type="Int32" Nullable="false" />
  7148. <Property Name="ConfirmIdArr" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7149. <Property Name="CreateUserId" Type="Int32" />
  7150. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7151. <Property Name="DeleteUserId" Type="Int32" />
  7152. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7153. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7154. <Property Name="IsDel" Type="Int32" />
  7155. </EntityType>
  7156. <EntityType Name="Grp_ApprovalTravel">
  7157. <Key>
  7158. <PropertyRef Name="Id" />
  7159. </Key>
  7160. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7161. <Property Name="Diid" Type="Int32" />
  7162. <Property Name="Date" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7163. <Property Name="CreateUserId" Type="Int32" />
  7164. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7165. <Property Name="DeleteUserId" Type="Int32" />
  7166. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7167. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7168. <Property Name="IsDel" Type="Int32" />
  7169. </EntityType>
  7170. <EntityType Name="Grp_ApprovalTravelDetails">
  7171. <Key>
  7172. <PropertyRef Name="Id" />
  7173. </Key>
  7174. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7175. <Property Name="Time" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  7176. <Property Name="ParentId" Type="Int32" Nullable="false" />
  7177. <Property Name="Details" Type="String" Nullable="false" MaxLength="500" FixedLength="false" Unicode="false" />
  7178. <Property Name="CreateUserId" Type="Int32" />
  7179. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7180. <Property Name="DeleteUserId" Type="Int32" />
  7181. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7182. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7183. <Property Name="IsDel" Type="Int32" />
  7184. </EntityType>
  7185. <EntityType Name="Grp_DayAndCostDraft">
  7186. <Key>
  7187. <PropertyRef Name="Id" />
  7188. </Key>
  7189. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7190. <Property Name="ParentId" Type="Int32" />
  7191. <Property Name="Type" Type="Int32" />
  7192. <Property Name="Days" Type="Int32" />
  7193. <Property Name="NationalTravelFeeId" Type="Int32" />
  7194. <Property Name="Place" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7195. <Property Name="Cost" Type="Decimal" Precision="10" Scale="2" />
  7196. <Property Name="Currency" Type="Int32" />
  7197. <Property Name="SubTotal" Type="Decimal" Precision="10" Scale="2" />
  7198. <Property Name="CreateUserId" Type="Int32" />
  7199. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7200. <Property Name="DeleteUserId" Type="Int32" />
  7201. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7202. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7203. <Property Name="IsDel" Type="Int32" />
  7204. </EntityType>
  7205. <EntityType Name="Grp_DayOtherPrice">
  7206. <Key>
  7207. <PropertyRef Name="Id" />
  7208. </Key>
  7209. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7210. <Property Name="Diid" Type="Int32" Nullable="false" />
  7211. <Property Name="SetDataId" Type="Int32" Nullable="false" />
  7212. <Property Name="Index" Type="Int32" Nullable="false" />
  7213. <Property Name="Cost" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7214. <Property Name="Currency" Type="Int32" Nullable="false" />
  7215. <Property Name="SubTotal" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7216. <Property Name="CreateUserId" Type="Int32" />
  7217. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7218. <Property Name="DeleteUserId" Type="Int32" />
  7219. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7220. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7221. <Property Name="IsDel" Type="Int32" />
  7222. </EntityType>
  7223. <EntityType Name="Grp_DayOtherPriceDraft">
  7224. <Key>
  7225. <PropertyRef Name="Id" />
  7226. </Key>
  7227. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7228. <Property Name="ParentId" Type="Int32" Nullable="false" />
  7229. <Property Name="SetDataId" Type="Int32" Nullable="false" />
  7230. <Property Name="Index" Type="Int32" Nullable="false" />
  7231. <Property Name="Cost" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7232. <Property Name="Currency" Type="Int32" Nullable="false" />
  7233. <Property Name="SubTotal" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7234. <Property Name="CreateUserId" Type="Int32" />
  7235. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7236. <Property Name="DeleteUserId" Type="Int32" />
  7237. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7238. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7239. <Property Name="IsDel" Type="Int32" />
  7240. </EntityType>
  7241. <EntityType Name="Grp_EnterExitCostDraft">
  7242. <Key>
  7243. <PropertyRef Name="Id" />
  7244. </Key>
  7245. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7246. <Property Name="DraftName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7247. <Property Name="InsidePay" Type="Decimal" Precision="10" Scale="2" />
  7248. <Property Name="Visa" Type="Decimal" Precision="10" Scale="2" />
  7249. <Property Name="VisaRemark" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7250. <Property Name="YiMiao" Type="Decimal" Precision="10" Scale="2" />
  7251. <Property Name="HeSuan" Type="Decimal" Precision="10" Scale="2" />
  7252. <Property Name="Service" Type="Decimal" Precision="10" Scale="2" />
  7253. <Property Name="Ticket" Type="Decimal" Precision="10" Scale="2" />
  7254. <Property Name="Safe" Type="Decimal" Precision="10" Scale="2" />
  7255. <Property Name="FirstItemRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7256. <Property Name="OutsideJJPay" Type="Decimal" Precision="10" Scale="2" />
  7257. <Property Name="OutsideGWPay" Type="Decimal" Precision="10" Scale="2" />
  7258. <Property Name="OutsideTDPay" Type="Decimal" Precision="10" Scale="2" />
  7259. <Property Name="AirJJ" Type="Decimal" Precision="10" Scale="2" />
  7260. <Property Name="AirGW" Type="Decimal" Precision="10" Scale="2" />
  7261. <Property Name="AirTD" Type="Decimal" Precision="10" Scale="2" />
  7262. <Property Name="CityTranffic" Type="Decimal" Precision="10" Scale="2" />
  7263. <Property Name="RateUSD" Type="Decimal" Precision="10" Scale="4" />
  7264. <Property Name="RateJPY" Type="Decimal" Precision="10" Scale="4" />
  7265. <Property Name="RateEUR" Type="Decimal" Precision="10" Scale="4" />
  7266. <Property Name="RateGBP" Type="Decimal" Precision="10" Scale="4" />
  7267. <Property Name="RateHKD" Type="Decimal" Precision="10" Scale="4" />
  7268. <Property Name="CurrencyRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7269. <Property Name="ChoiceOne" Type="Int32" />
  7270. <Property Name="ChoiceTwo" Type="Int32" />
  7271. <Property Name="ChoiceThree" Type="Int32" />
  7272. <Property Name="ChoiceFour" Type="Int32" />
  7273. <Property Name="ChoiceFive" Type="Int32" />
  7274. <Property Name="SumJJC" Type="Int32" />
  7275. <Property Name="SumGWC" Type="Int32" />
  7276. <Property Name="SumTDC" Type="Int32" />
  7277. <Property Name="AirJJC_Checked" Type="Int32" />
  7278. <Property Name="AirGWC_Checked" Type="Int32" />
  7279. <Property Name="AirTDC_Checked" Type="Int32" />
  7280. <Property Name="OtherExpenses_Checked" Type="Int32" />
  7281. <Property Name="ChoiceSix" Type="Int32" />
  7282. <Property Name="CreateUserId" Type="Int32" />
  7283. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7284. <Property Name="DeleteUserId" Type="Int32" />
  7285. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7286. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7287. <Property Name="IsDel" Type="Int32" />
  7288. <Property Name="IsConfirm" Type="Int32" />
  7289. <Property Name="TwoItemRemark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7290. </EntityType>
  7291. <EntityType Name="Grp_EnterExitCostDraftPermission">
  7292. <Key>
  7293. <PropertyRef Name="Id" />
  7294. </Key>
  7295. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7296. <Property Name="DraftId" Type="Int32" />
  7297. <Property Name="UserId" Type="Int32" />
  7298. <Property Name="Permission" Type="Int32" />
  7299. <Property Name="CreateUserId" Type="Int32" />
  7300. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7301. <Property Name="DeleteUserId" Type="Int32" />
  7302. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7303. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7304. <Property Name="IsDel" Type="Int32" />
  7305. </EntityType>
  7306. <EntityType Name="Grp_EnterExitCostPermission">
  7307. <Key>
  7308. <PropertyRef Name="Id" />
  7309. </Key>
  7310. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7311. <Property Name="GroupId" Type="Int32" />
  7312. <Property Name="UserId" Type="Int32" />
  7313. <Property Name="Permission" Type="Int32" />
  7314. <Property Name="CreateUserId" Type="Int32" />
  7315. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7316. <Property Name="DeleteUserId" Type="Int32" />
  7317. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7318. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7319. <Property Name="IsDel" Type="Int32" />
  7320. </EntityType>
  7321. <EntityType Name="Grp_GroupModelFile">
  7322. <Key>
  7323. <PropertyRef Name="Id" />
  7324. </Key>
  7325. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7326. <Property Name="Diid" Type="Int32" Nullable="false" />
  7327. <Property Name="FilePath" Type="String" MaxLength="150" FixedLength="false" Unicode="true" />
  7328. <Property Name="Ctable" Type="Int32" Nullable="false" />
  7329. <Property Name="Cid" Type="Int32" Nullable="false" />
  7330. <Property Name="CreateUserId" Type="Int32" />
  7331. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7332. <Property Name="DeleteUserId" Type="Int32" />
  7333. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7334. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7335. <Property Name="IsDel" Type="Int32" />
  7336. <Property Name="FileName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  7337. </EntityType>
  7338. <EntityType Name="Grp_HotelReservationsContent">
  7339. <Key>
  7340. <PropertyRef Name="Id" />
  7341. </Key>
  7342. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7343. <Property Name="DiId" Type="Int32" />
  7344. <Property Name="HrId" Type="Int32" />
  7345. <Property Name="PriceType" Type="Int32" />
  7346. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  7347. <Property Name="Currency" Type="Int32" />
  7348. <Property Name="Rate" Type="Decimal" Precision="10" Scale="4" />
  7349. <Property Name="IsOppay" Type="Int32" />
  7350. <Property Name="PayDId" Type="Int32" />
  7351. <Property Name="ConsumptionPatterns" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7352. <Property Name="ConsumptionDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7353. <Property Name="CTDId" Type="Int32" />
  7354. <Property Name="BankNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7355. <Property Name="CardholderName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7356. <Property Name="CompanyBankNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7357. <Property Name="OtherBankName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7358. <Property Name="OtherSideNo" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7359. <Property Name="OtherSideName" Type="String" MaxLength="125" FixedLength="false" Unicode="false" />
  7360. <Property Name="IsPay" Type="Int32" />
  7361. <Property Name="Payee" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7362. <Property Name="OrbitalPrivateTransfer" Type="Int32" />
  7363. <Property Name="CreateUserId" Type="Int32" />
  7364. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7365. <Property Name="DeleteUserId" Type="Int32" />
  7366. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7367. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7368. <Property Name="IsDel" Type="Int32" />
  7369. </EntityType>
  7370. <EntityType Name="Grp_OfficialDutyLinkTranslator">
  7371. <Key>
  7372. <PropertyRef Name="Id" />
  7373. </Key>
  7374. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7375. <Property Name="OfficialDutyId" Type="Int32" />
  7376. <Property Name="TranslatorId" Type="Int32" />
  7377. <Property Name="CreateUserId" Type="Int32" />
  7378. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7379. <Property Name="DeleteUserId" Type="Int32" />
  7380. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7381. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7382. <Property Name="IsDel" Type="Int32" />
  7383. </EntityType>
  7384. <EntityType Name="Grp_Opinionaire">
  7385. <Key>
  7386. <PropertyRef Name="Id" />
  7387. </Key>
  7388. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7389. <Property Name="DiId" Type="Int32" />
  7390. <Property Name="CityName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7391. <Property Name="TourGuideName" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7392. <Property Name="Catering" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7393. <Property Name="CateringReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7394. <Property Name="Stay" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7395. <Property Name="StayReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7396. <Property Name="Route" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7397. <Property Name="RouteReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7398. <Property Name="OfficialActivity" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7399. <Property Name="OfficialActivityReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7400. <Property Name="TourGuide" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7401. <Property Name="TourGuideReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7402. <Property Name="Translate" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7403. <Property Name="TranslateReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7404. <Property Name="Trip" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7405. <Property Name="TripReason" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7406. <Property Name="ESFileName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7407. <Property Name="SignatureDate" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7408. <Property Name="CreateUserId" Type="Int32" />
  7409. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7410. <Property Name="DeleteUserId" Type="Int32" />
  7411. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7412. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7413. <Property Name="IsDel" Type="Int32" />
  7414. </EntityType>
  7415. <EntityType Name="Grp_RestaurantInfo">
  7416. <Key>
  7417. <PropertyRef Name="Id" />
  7418. </Key>
  7419. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7420. <Property Name="GroupId" Type="Int32" />
  7421. <Property Name="Date" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7422. <Property Name="StartTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7423. <Property Name="EndTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7424. <Property Name="Type" Type="Int32" />
  7425. <Property Name="Name" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7426. <Property Name="Tel" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7427. <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="true" />
  7428. <Property Name="CreateUserId" Type="Int32" />
  7429. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7430. <Property Name="DeleteUserId" Type="Int32" />
  7431. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7432. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7433. <Property Name="IsDel" Type="Int32" />
  7434. </EntityType>
  7435. <EntityType Name="Grp_VisaCommission">
  7436. <Key>
  7437. <PropertyRef Name="Id" />
  7438. </Key>
  7439. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7440. <Property Name="DiId" Type="Int32" />
  7441. <Property Name="UId" Type="Int32" />
  7442. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7443. <Property Name="Quantity" Type="Int32" />
  7444. <Property Name="CreateUserId" Type="Int32" />
  7445. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7446. <Property Name="DeleteUserId" Type="Int32" />
  7447. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7448. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7449. <Property Name="IsDel" Type="Int32" />
  7450. </EntityType>
  7451. <EntityType Name="Grp_VisitingClients">
  7452. <Key>
  7453. <PropertyRef Name="Id" />
  7454. </Key>
  7455. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7456. <Property Name="DiId" Type="Int32" />
  7457. <Property Name="BeginDt" Type="DateTime" Precision="3" />
  7458. <Property Name="EndDt" Type="DateTime" Precision="3" />
  7459. <Property Name="CustomerUnit" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7460. <Property Name="CustomerJob" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7461. <Property Name="CustomerName" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7462. <Property Name="CustomerContact" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7463. <Property Name="CreateUserId" Type="Int32" />
  7464. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7465. <Property Name="DeleteUserId" Type="Int32" />
  7466. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7467. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7468. <Property Name="IsDel" Type="Int32" />
  7469. </EntityType>
  7470. <EntityType Name="Per_AssessmentContentSetting">
  7471. <Key>
  7472. <PropertyRef Name="Id" />
  7473. </Key>
  7474. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7475. <Property Name="AssessmentSettingId" Type="Int32" Nullable="false" />
  7476. <Property Name="AssessmentProportionChi" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7477. <Property Name="TargetValue" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  7478. <Property Name="JobId" Type="Int32" Nullable="false" />
  7479. <Property Name="UserId" Type="Int32" Nullable="false" />
  7480. <Property Name="Fixed" Type="Int32" Nullable="false" />
  7481. <Property Name="CreateUserId" Type="Int32" />
  7482. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7483. <Property Name="DeleteUserId" Type="Int32" />
  7484. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7485. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7486. <Property Name="IsDel" Type="Int32" />
  7487. </EntityType>
  7488. <EntityType Name="Per_AssessmentScore">
  7489. <Key>
  7490. <PropertyRef Name="Id" />
  7491. </Key>
  7492. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7493. <Property Name="YearMonth" Type="DateTime" Precision="3" />
  7494. <Property Name="AssessmentContentSettingId" Type="Int32" />
  7495. <Property Name="Status" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7496. <Property Name="SelfAssessment" Type="Decimal" Precision="18" Scale="4" />
  7497. <Property Name="HigherUpAssessment" Type="Decimal" Precision="18" Scale="4" />
  7498. <Property Name="Score" Type="Decimal" Precision="18" Scale="4" />
  7499. <Property Name="ScoreTotal" Type="Decimal" Precision="18" Scale="4" />
  7500. <Property Name="HigherUpConfig" Type="Int32" />
  7501. <Property Name="HigherUpUserId" Type="Int32" />
  7502. <Property Name="Details" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7503. <Property Name="CreateUserId" Type="Int32" />
  7504. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7505. <Property Name="DeleteUserId" Type="Int32" />
  7506. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7507. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7508. <Property Name="IsDel" Type="Int32" />
  7509. </EntityType>
  7510. <EntityType Name="Per_AssessmentSetting">
  7511. <Key>
  7512. <PropertyRef Name="Id" />
  7513. </Key>
  7514. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7515. <Property Name="Name" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  7516. <Property Name="AssessmentProportion" Type="Decimal" Nullable="false" Precision="18" Scale="4" />
  7517. <Property Name="AssessmentStandard" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7518. <Property Name="ParentId" Type="Int32" Nullable="false" />
  7519. <Property Name="CreateUserId" Type="Int32" />
  7520. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7521. <Property Name="DeleteUserId" Type="Int32" />
  7522. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7523. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7524. <Property Name="IsDel" Type="Int32" />
  7525. </EntityType>
  7526. <EntityType Name="Pm_GoodsInfo">
  7527. <Key>
  7528. <PropertyRef Name="Id" />
  7529. </Key>
  7530. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7531. <Property Name="Type" Type="Int32" />
  7532. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7533. <Property Name="SQ_Total" Type="Decimal" Precision="8" Scale="2" />
  7534. <Property Name="OQ_Total" Type="Decimal" Precision="8" Scale="2" />
  7535. <Property Name="PriceTotal" Type="Decimal" Precision="10" Scale="2" />
  7536. <Property Name="StockQuantity" Type="Decimal" Precision="8" Scale="2" />
  7537. <Property Name="Unit" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7538. <Property Name="LastUpdateUserId" Type="Int32" />
  7539. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  7540. <Property Name="CreateUserId" Type="Int32" />
  7541. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7542. <Property Name="DeleteUserId" Type="Int32" />
  7543. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7544. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7545. <Property Name="IsDel" Type="Int32" />
  7546. </EntityType>
  7547. <EntityType Name="Pm_GoodsReceive">
  7548. <Key>
  7549. <PropertyRef Name="Id" />
  7550. </Key>
  7551. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7552. <Property Name="GroupId" Type="Int32" />
  7553. <Property Name="GoodsId" Type="Int32" />
  7554. <Property Name="Quantity" Type="Decimal" Precision="8" Scale="2" />
  7555. <Property Name="Reason" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7556. <Property Name="GoodsStorageInfo" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7557. <Property Name="AuditStatus" Type="Int32" />
  7558. <Property Name="AuditUserId" Type="Int32" />
  7559. <Property Name="AuditTime" Type="DateTime" Precision="3" />
  7560. <Property Name="CreateUserId" Type="Int32" />
  7561. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7562. <Property Name="DeleteUserId" Type="Int32" />
  7563. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7564. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7565. <Property Name="IsDel" Type="Int32" />
  7566. </EntityType>
  7567. <EntityType Name="Pm_GoodsStorage">
  7568. <Key>
  7569. <PropertyRef Name="Id" />
  7570. </Key>
  7571. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7572. <Property Name="GoodsId" Type="Int32" />
  7573. <Property Name="BatchNo" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7574. <Property Name="ReceiveQuantity" Type="Decimal" Precision="10" Scale="2" />
  7575. <Property Name="Quantity" Type="Decimal" Precision="10" Scale="2" />
  7576. <Property Name="UnitPrice" Type="Decimal" Precision="10" Scale="2" />
  7577. <Property Name="TotalPrice" Type="Decimal" Precision="10" Scale="2" />
  7578. <Property Name="SupplierName" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7579. <Property Name="SupplierTel" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7580. <Property Name="SupplierAddress" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7581. <Property Name="SupplierSource" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7582. <Property Name="StorageUserId" Type="Int32" />
  7583. <Property Name="StorageTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7584. <Property Name="CreateUserId" Type="Int32" />
  7585. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7586. <Property Name="DeleteUserId" Type="Int32" />
  7587. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7588. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7589. <Property Name="IsDel" Type="Int32" />
  7590. </EntityType>
  7591. <EntityType Name="Res_BasicInsuranceCost">
  7592. <Key>
  7593. <PropertyRef Name="Id" />
  7594. </Key>
  7595. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7596. <Property Name="IsSchengen" Type="Int32" Nullable="false" />
  7597. <Property Name="CountryName" Type="String" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
  7598. <Property Name="Cost" Type="Decimal" Nullable="false" Precision="10" Scale="2" />
  7599. <Property Name="CreateUserId" Type="Int32" />
  7600. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7601. <Property Name="DeleteUserId" Type="Int32" />
  7602. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7603. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7604. <Property Name="IsDel" Type="Int32" />
  7605. </EntityType>
  7606. <EntityType Name="Res_MediaSuppliers">
  7607. <Key>
  7608. <PropertyRef Name="Id" />
  7609. </Key>
  7610. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7611. <Property Name="TypeId" Type="Int32" />
  7612. <Property Name="Privince" Type="String" MaxLength="240" FixedLength="false" Unicode="true" />
  7613. <Property Name="City" Type="String" MaxLength="240" FixedLength="false" Unicode="true" />
  7614. <Property Name="UnitName" Type="String" MaxLength="400" FixedLength="false" Unicode="true" />
  7615. <Property Name="UnitAbbreviation" Type="String" MaxLength="400" FixedLength="false" Unicode="true" />
  7616. <Property Name="UnitAddress" Type="String" MaxLength="240" FixedLength="false" Unicode="true" />
  7617. <Property Name="Contact" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7618. <Property Name="Sex" Type="Int32" />
  7619. <Property Name="Post" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7620. <Property Name="Fax" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7621. <Property Name="Tel" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7622. <Property Name="Email" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7623. <Property Name="WeChat" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7624. <Property Name="CreateUserId" Type="Int32" />
  7625. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7626. <Property Name="DeleteUserId" Type="Int32" />
  7627. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7628. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7629. <Property Name="IsDel" Type="Int32" />
  7630. </EntityType>
  7631. <EntityType Name="Res_TranslatorLibrary">
  7632. <Key>
  7633. <PropertyRef Name="Id" />
  7634. </Key>
  7635. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7636. <Property Name="Area" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7637. <Property Name="Name" Type="String" MaxLength="200" FixedLength="false" Unicode="true" />
  7638. <Property Name="Sex" Type="Int32" />
  7639. <Property Name="Photo" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  7640. <Property Name="Tel" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7641. <Property Name="Email" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7642. <Property Name="WechatNo" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7643. <Property Name="OtherSocialAccounts" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7644. <Property Name="Language" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7645. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  7646. <Property Name="Currency" Type="Int32" />
  7647. <Property Name="Files" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  7648. <Property Name="CreateUserId" Type="Int32" />
  7649. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7650. <Property Name="DeleteUserId" Type="Int32" />
  7651. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7652. <Property Name="Remark" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7653. <Property Name="IsDel" Type="Int32" />
  7654. <Property Name="LastUpdateUserId" Type="Int32" />
  7655. <Property Name="LastUpdateTime" Type="DateTime" Precision="3" />
  7656. </EntityType>
  7657. <EntityType Name="Sys_Cities">
  7658. <Key>
  7659. <PropertyRef Name="Id" />
  7660. </Key>
  7661. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7662. <Property Name="CountriesId" Type="Int32" />
  7663. <Property Name="Name_CN" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7664. <Property Name="Name_EN" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7665. <Property Name="ThreeCode" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7666. <Property Name="IsCapital" Type="Int32" />
  7667. <Property Name="ParentId" Type="Int32" />
  7668. <Property Name="Level" Type="Int32" />
  7669. <Property Name="CreateUserId" Type="Int32" />
  7670. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7671. <Property Name="DeleteUserId" Type="Int32" />
  7672. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7673. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7674. <Property Name="IsDel" Type="Int32" />
  7675. </EntityType>
  7676. <EntityType Name="Sys_Continent">
  7677. <Key>
  7678. <PropertyRef Name="Id" />
  7679. </Key>
  7680. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7681. <Property Name="Name_CN" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7682. <Property Name="Name_EN" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7683. <Property Name="CreateUserId" Type="Int32" />
  7684. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7685. <Property Name="DeleteUserId" Type="Int32" />
  7686. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7687. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7688. <Property Name="IsDel" Type="Int32" />
  7689. </EntityType>
  7690. <EntityType Name="Sys_Countries">
  7691. <Key>
  7692. <PropertyRef Name="Id" />
  7693. </Key>
  7694. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7695. <Property Name="ContinentId" Type="Int32" />
  7696. <Property Name="ThreeCode" Type="String" MaxLength="10" FixedLength="false" Unicode="false" />
  7697. <Property Name="Name_CN" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7698. <Property Name="Name_CN_Full" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7699. <Property Name="Name_EN" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  7700. <Property Name="Name_EN_Full" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7701. <Property Name="CreateUserId" Type="Int32" />
  7702. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7703. <Property Name="DeleteUserId" Type="Int32" />
  7704. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7705. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7706. <Property Name="IsDel" Type="Int32" />
  7707. </EntityType>
  7708. <EntityType Name="Sys_DeviceToken">
  7709. <Key>
  7710. <PropertyRef Name="Id" />
  7711. </Key>
  7712. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7713. <Property Name="Number" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7714. <Property Name="DeviceToken" Type="String" MaxLength="256" FixedLength="false" Unicode="true" />
  7715. <Property Name="CreateUserId" Type="Int32" />
  7716. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7717. <Property Name="DeleteUserId" Type="Int32" />
  7718. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7719. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7720. <Property Name="IsDel" Type="Int32" />
  7721. </EntityType>
  7722. <EntityType Name="Sys_ExchangeRateRecord">
  7723. <Key>
  7724. <PropertyRef Name="Id" />
  7725. </Key>
  7726. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7727. <Property Name="DiId" Type="Int32" />
  7728. <Property Name="LinkModule" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7729. <Property Name="RateDateTime" Type="DateTime" Precision="3" />
  7730. <Property Name="RateDataSource" Type="Int32" />
  7731. <Property Name="RateInfo" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7732. <Property Name="CreateUserId" Type="Int32" />
  7733. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7734. <Property Name="DeleteUserId" Type="Int32" />
  7735. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7736. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7737. <Property Name="IsDel" Type="Int32" />
  7738. </EntityType>
  7739. <EntityType Name="Crm_CustomerCert_Data">
  7740. <Key>
  7741. <PropertyRef Name="Id" />
  7742. </Key>
  7743. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7744. <Property Name="DcId" Type="Int32" />
  7745. <Property Name="SdId" Type="Int32" />
  7746. <Property Name="PassportType" Type="Int32" />
  7747. <Property Name="CertNo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7748. <Property Name="Country" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7749. <Property Name="Area" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7750. <Property Name="TargetCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7751. <Property Name="IssueDt" Type="DateTime" Precision="3" />
  7752. <Property Name="ExpiryDt" Type="DateTime" Precision="3" />
  7753. <Property Name="IDCardAddress" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7754. <Property Name="CreateUserId" Type="Int32" />
  7755. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7756. <Property Name="DeleteUserId" Type="Int32" />
  7757. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7758. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7759. <Property Name="IsDel" Type="Int32" />
  7760. </EntityType>
  7761. <EntityType Name="Crm_CustomerCompany_Data">
  7762. <Key>
  7763. <PropertyRef Name="Id" />
  7764. </Key>
  7765. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7766. <Property Name="CompanyAbbreviation" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7767. <Property Name="CompanyFullName" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7768. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7769. <Property Name="PostCodes" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  7770. <Property Name="LastedOpUserId" Type="Int32" />
  7771. <Property Name="LastedOpDt" Type="DateTime" Precision="3" />
  7772. <Property Name="CreateUserId" Type="Int32" />
  7773. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7774. <Property Name="DeleteUserId" Type="Int32" />
  7775. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7776. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7777. <Property Name="IsDel" Type="Int32" />
  7778. </EntityType>
  7779. <EntityType Name="Crm_DeleClient_Data">
  7780. <Key>
  7781. <PropertyRef Name="Id" />
  7782. </Key>
  7783. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7784. <Property Name="DiId" Type="Int32" />
  7785. <Property Name="LastName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7786. <Property Name="FirstName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7787. <Property Name="OldName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7788. <Property Name="Pinyin" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7789. <Property Name="Sex" Type="Int32" />
  7790. <Property Name="Marriage" Type="Int32" />
  7791. <Property Name="Tel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7792. <Property Name="BirthProvince" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7793. <Property Name="BirthCity" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7794. <Property Name="BirthDay" Type="DateTime" Precision="3" />
  7795. <Property Name="AirType" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7796. <Property Name="SeatPref" Type="Int32" />
  7797. <Property Name="AirRemark" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7798. <Property Name="RoomType" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7799. <Property Name="RoomPref" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7800. <Property Name="Phone" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7801. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7802. <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7803. <Property Name="HighestEducation" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7804. <Property Name="PostCodes" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7805. <Property Name="CrmCompanyId" Type="Int32" />
  7806. <Property Name="Job" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7807. <Property Name="WorkState" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7808. <Property Name="WorkDate" Type="DateTime" Precision="3" />
  7809. <Property Name="Wage" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7810. <Property Name="ClientPhone" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7811. <Property Name="ClientFax" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7812. <Property Name="ClientEmail" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7813. <Property Name="ClientLeader" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7814. <Property Name="ClientLeaderJob" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7815. <Property Name="IsGetSchengen" Type="Int32" />
  7816. <Property Name="StartTime" Type="DateTime" Precision="3" />
  7817. <Property Name="EndTime" Type="DateTime" Precision="3" />
  7818. <Property Name="IsFinger" Type="Int32" />
  7819. <Property Name="FingerDate" Type="DateTime" Precision="3" />
  7820. <Property Name="IsVisitUC" Type="Int32" />
  7821. <Property Name="USADate" Type="DateTime" Precision="3" />
  7822. <Property Name="USADays" Type="Int32" />
  7823. <Property Name="CanDate" Type="DateTime" Precision="3" />
  7824. <Property Name="CanDays" Type="Int32" />
  7825. <Property Name="IsUSAVia" Type="Int32" />
  7826. <Property Name="GetUSAVisaDate" Type="DateTime" Precision="3" />
  7827. <Property Name="GetUPPlace" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7828. <Property Name="USAVisaCate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7829. <Property Name="USAVisaCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7830. <Property Name="USAFinger" Type="Int32" />
  7831. <Property Name="IsRejected" Type="Int32" />
  7832. <Property Name="RejectedDate" Type="DateTime" Precision="3" />
  7833. <Property Name="RejectedPlace" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7834. <Property Name="RejectedVisa" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7835. <Property Name="IsRevoke" Type="Int32" />
  7836. <Property Name="IsLose" Type="Int32" />
  7837. <Property Name="LoseDate" Type="DateTime" Precision="3" />
  7838. <Property Name="LoseCode" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7839. <Property Name="IsUSAVisa" Type="Int32" />
  7840. <Property Name="MateUSA" Type="Int32" />
  7841. <Property Name="MateIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7842. <Property Name="WHUSA" Type="Int32" />
  7843. <Property Name="WHIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7844. <Property Name="ParentUSA" Type="Int32" />
  7845. <Property Name="ParentIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7846. <Property Name="ChildUSA" Type="Int32" />
  7847. <Property Name="ChildIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7848. <Property Name="BroUSA" Type="Int32" />
  7849. <Property Name="BroIden" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7850. <Property Name="Social" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7851. <Property Name="IsArmy" Type="Int32" />
  7852. <Property Name="ArmyState" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7853. <Property Name="CostBearers" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7854. <Property Name="TableOpName" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7855. <Property Name="TableOpTel" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7856. <Property Name="TableDate" Type="DateTime" Precision="3" />
  7857. <Property Name="Party" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7858. <Property Name="Nationality" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7859. <Property Name="WeddingDate" Type="DateTime" Precision="3" />
  7860. <Property Name="DivorceDate" Type="DateTime" Precision="3" />
  7861. <Property Name="MateName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7862. <Property Name="MateBirthDay" Type="DateTime" Precision="3" />
  7863. <Property Name="MateBirthCity" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7864. <Property Name="MateBirthCountry" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7865. <Property Name="MateAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7866. <Property Name="MateClient" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7867. <Property Name="MateClientAddress" Type="String" MaxLength="300" FixedLength="false" Unicode="false" />
  7868. <Property Name="MateJob" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7869. <Property Name="VisitCountry" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7870. <Property Name="Paper" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7871. <Property Name="Papent" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7872. <Property Name="PhD" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7873. <Property Name="CreateUserId" Type="Int32" />
  7874. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7875. <Property Name="DeleteUserId" Type="Int32" />
  7876. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7877. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7878. <Property Name="IsDel" Type="Int32" />
  7879. </EntityType>
  7880. <EntityType Name="Crm_NewClientData_Encryption">
  7881. <Key>
  7882. <PropertyRef Name="Id" />
  7883. </Key>
  7884. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7885. <Property Name="Number" Type="Int32" />
  7886. <Property Name="Lvlid" Type="Int32" />
  7887. <Property Name="Client" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7888. <Property Name="Weight" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7889. <Property Name="ClientShort" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7890. <Property Name="Contact" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7891. <Property Name="Gender" Type="Int32" />
  7892. <Property Name="Passport" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7893. <Property Name="PassportDate" Type="DateTime" Precision="3" />
  7894. <Property Name="Job" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7895. <Property Name="TelePhone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7896. <Property Name="Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7897. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7898. <Property Name="Location" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7899. <Property Name="Address" Type="String" MaxLength="80" FixedLength="false" Unicode="false" />
  7900. <Property Name="Birthday" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7901. <Property Name="OtherInfo" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  7902. <Property Name="WeChat" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7903. <Property Name="Category" Type="Int32" />
  7904. <Property Name="PreDele" Type="Int32" />
  7905. <Property Name="FinlishedDele" Type="Int32" />
  7906. <Property Name="CreateUserId" Type="Int32" />
  7907. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7908. <Property Name="DeleteUserId" Type="Int32" />
  7909. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="true" />
  7910. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="true" />
  7911. <Property Name="IsDel" Type="Int32" />
  7912. </EntityType>
  7913. <EntityType Name="Res_InvitationOfficialActivityData_Data">
  7914. <Key>
  7915. <PropertyRef Name="Id" />
  7916. </Key>
  7917. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7918. <Property Name="Country" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7919. <Property Name="City" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7920. <Property Name="UnitName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7921. <Property Name="UnitWeb" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7922. <Property Name="Field" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7923. <Property Name="Address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7924. <Property Name="UnitInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7925. <Property Name="Contact" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7926. <Property Name="Job" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7927. <Property Name="Tel" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7928. <Property Name="Email" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7929. <Property Name="WeChat" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7930. <Property Name="FaceBook" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7931. <Property Name="Ins" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7932. <Property Name="Delegation" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7933. <Property Name="FileName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7934. <Property Name="FilePath" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7935. <Property Name="SndFileName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7936. <Property Name="SndFilePath" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7937. <Property Name="Fax" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7938. <Property Name="OtherInfo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7939. <Property Name="Background" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7940. <Property Name="CreateUserId" Type="Int32" />
  7941. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7942. <Property Name="DeleteUserId" Type="Int32" />
  7943. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7944. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7945. <Property Name="IsDel" Type="Int32" />
  7946. </EntityType>
  7947. <EntityType Name="Res_TranslatorLibrary_Encryption">
  7948. <Key>
  7949. <PropertyRef Name="Id" />
  7950. </Key>
  7951. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7952. <Property Name="Area" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7953. <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
  7954. <Property Name="Sex" Type="Int32" />
  7955. <Property Name="Photo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  7956. <Property Name="Tel" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7957. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7958. <Property Name="WechatNo" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7959. <Property Name="OtherSocialAccounts" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7960. <Property Name="Language" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7961. <Property Name="Price" Type="Decimal" Precision="10" Scale="2" />
  7962. <Property Name="Currency" Type="Int32" />
  7963. <Property Name="Files" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7964. <Property Name="CreateUserId" Type="Int32" />
  7965. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  7966. <Property Name="DeleteUserId" Type="Int32" />
  7967. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  7968. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  7969. <Property Name="IsDel" Type="Int32" />
  7970. </EntityType>
  7971. <EntityType Name="Sys_Users_Encryption">
  7972. <Key>
  7973. <PropertyRef Name="Id" />
  7974. </Key>
  7975. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  7976. <Property Name="CnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7977. <Property Name="EnName" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7978. <Property Name="Number" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7979. <Property Name="CompanyId" Type="Int32" />
  7980. <Property Name="DepId" Type="Int32" />
  7981. <Property Name="JobPostId" Type="Int32" />
  7982. <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7983. <Property Name="Sex" Type="Int32" />
  7984. <Property Name="Ext" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7985. <Property Name="Phone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7986. <Property Name="UrgentPhone" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7987. <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7988. <Property Name="Address" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7989. <Property Name="Edate" Type="DateTime" Precision="3" />
  7990. <Property Name="Rdate" Type="DateTime" Precision="3" />
  7991. <Property Name="Seniority" Type="Int32" />
  7992. <Property Name="Birthday" Type="DateTime" Precision="3" />
  7993. <Property Name="IDCard" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  7994. <Property Name="StartWorkDate" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7995. <Property Name="GraduateInstitutions" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  7996. <Property Name="Professional" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  7997. <Property Name="Education" Type="Int32" />
  7998. <Property Name="TheOrAdultEducation" Type="Int32" />
  7999. <Property Name="MaritalStatus" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  8000. <Property Name="HomeAddress" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  8001. <Property Name="UsePeriod" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  8002. <Property Name="WorkExperience" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  8003. <Property Name="Certificate" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  8004. <Property Name="HrAudit" Type="Int32" />
  8005. <Property Name="QiyeChatUserId" Type="String" MaxLength="200" FixedLength="false" Unicode="false" />
  8006. <Property Name="CreateUserId" Type="Int32" />
  8007. <Property Name="CreateTime" Type="DateTime" Precision="3" />
  8008. <Property Name="DeleteUserId" Type="Int32" />
  8009. <Property Name="DeleteTime" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  8010. <Property Name="Remark" Type="String" MaxLength="500" FixedLength="false" Unicode="false" />
  8011. <Property Name="IsDel" Type="Int32" />
  8012. </EntityType>
  8013. </Schema>
  8014. </edmx:ConceptualModels>
  8015. <!-- C-S mapping content -->
  8016. <edmx:Mappings>
  8017. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  8018. <EntityContainerMapping StorageEntityContainer="oa2023DBModelStoreContainer" CdmEntityContainer="oa2023DBEntities">
  8019. <EntitySetMapping Name="Air_TicketBlackCode">
  8020. <EntityTypeMapping TypeName="oa2023DBModel.Air_TicketBlackCode">
  8021. <MappingFragment StoreEntitySet="Air_TicketBlackCode">
  8022. <ScalarProperty Name="Title" ColumnName="Title" />
  8023. <ScalarProperty Name="Id" ColumnName="Id" />
  8024. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8025. <ScalarProperty Name="LeaveCode" ColumnName="LeaveCode" />
  8026. <ScalarProperty Name="BlackCode" ColumnName="BlackCode" />
  8027. <ScalarProperty Name="ReturnCode" ColumnName="ReturnCode" />
  8028. <ScalarProperty Name="Price" ColumnName="Price" />
  8029. <ScalarProperty Name="NowPrice" ColumnName="NowPrice" />
  8030. <ScalarProperty Name="BCPrice" ColumnName="BCPrice" />
  8031. <ScalarProperty Name="ECPrice" ColumnName="ECPrice" />
  8032. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8033. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8034. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8035. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8036. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8037. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8038. </MappingFragment>
  8039. </EntityTypeMapping>
  8040. </EntitySetMapping>
  8041. <EntitySetMapping Name="Bus_ConfItem">
  8042. <EntityTypeMapping TypeName="oa2023DBModel.Bus_ConfItem">
  8043. <MappingFragment StoreEntitySet="Bus_ConfItem">
  8044. <ScalarProperty Name="Id" ColumnName="Id" />
  8045. <ScalarProperty Name="ItemId" ColumnName="ItemId" />
  8046. <ScalarProperty Name="ConfListId" ColumnName="ConfListId" />
  8047. <ScalarProperty Name="Count" ColumnName="Count" />
  8048. <ScalarProperty Name="Specs" ColumnName="Specs" />
  8049. <ScalarProperty Name="CurrCost" ColumnName="CurrCost" />
  8050. <ScalarProperty Name="OpRemark" ColumnName="OpRemark" />
  8051. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8052. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8053. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8054. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8055. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8056. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8057. </MappingFragment>
  8058. </EntityTypeMapping>
  8059. </EntitySetMapping>
  8060. <EntitySetMapping Name="Bus_ConfItemList">
  8061. <EntityTypeMapping TypeName="oa2023DBModel.Bus_ConfItemList">
  8062. <MappingFragment StoreEntitySet="Bus_ConfItemList">
  8063. <ScalarProperty Name="Id" ColumnName="Id" />
  8064. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8065. <ScalarProperty Name="TotalCost" ColumnName="TotalCost" />
  8066. <ScalarProperty Name="ExcelPath" ColumnName="ExcelPath" />
  8067. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8068. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8069. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8070. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8071. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8072. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8073. </MappingFragment>
  8074. </EntityTypeMapping>
  8075. </EntitySetMapping>
  8076. <EntitySetMapping Name="Bus_MsgPost">
  8077. <EntityTypeMapping TypeName="oa2023DBModel.Bus_MsgPost">
  8078. <MappingFragment StoreEntitySet="Bus_MsgPost">
  8079. <ScalarProperty Name="Id" ColumnName="Id" />
  8080. <ScalarProperty Name="Source" ColumnName="Source" />
  8081. <ScalarProperty Name="PostType" ColumnName="PostType" />
  8082. <ScalarProperty Name="PhoneNumber" ColumnName="PhoneNumber" />
  8083. <ScalarProperty Name="PostResult" ColumnName="PostResult" />
  8084. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8085. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8086. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8087. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8088. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8089. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8090. </MappingFragment>
  8091. </EntityTypeMapping>
  8092. </EntitySetMapping>
  8093. <EntitySetMapping Name="Crm_ClientDataAndBusiness">
  8094. <EntityTypeMapping TypeName="oa2023DBModel.Crm_ClientDataAndBusiness">
  8095. <MappingFragment StoreEntitySet="Crm_ClientDataAndBusiness">
  8096. <ScalarProperty Name="Id" ColumnName="Id" />
  8097. <ScalarProperty Name="SetDataId" ColumnName="SetDataId" />
  8098. <ScalarProperty Name="NewClientDataId" ColumnName="NewClientDataId" />
  8099. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8100. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8101. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8102. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8103. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8104. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8105. </MappingFragment>
  8106. </EntityTypeMapping>
  8107. </EntitySetMapping>
  8108. <EntitySetMapping Name="Crm_ClientDataAndUser">
  8109. <EntityTypeMapping TypeName="oa2023DBModel.Crm_ClientDataAndUser">
  8110. <MappingFragment StoreEntitySet="Crm_ClientDataAndUser">
  8111. <ScalarProperty Name="Id" ColumnName="Id" />
  8112. <ScalarProperty Name="UsersId" ColumnName="UsersId" />
  8113. <ScalarProperty Name="NewClientDataId" ColumnName="NewClientDataId" />
  8114. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8115. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8116. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8117. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8118. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8119. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8120. </MappingFragment>
  8121. </EntityTypeMapping>
  8122. </EntitySetMapping>
  8123. <EntitySetMapping Name="Crm_CustomerCert">
  8124. <EntityTypeMapping TypeName="oa2023DBModel.Crm_CustomerCert">
  8125. <MappingFragment StoreEntitySet="Crm_CustomerCert">
  8126. <ScalarProperty Name="Id" ColumnName="Id" />
  8127. <ScalarProperty Name="DcId" ColumnName="DcId" />
  8128. <ScalarProperty Name="SdId" ColumnName="SdId" />
  8129. <ScalarProperty Name="PassportType" ColumnName="PassportType" />
  8130. <ScalarProperty Name="CertNo" ColumnName="CertNo" />
  8131. <ScalarProperty Name="Country" ColumnName="Country" />
  8132. <ScalarProperty Name="Area" ColumnName="Area" />
  8133. <ScalarProperty Name="TargetCountry" ColumnName="TargetCountry" />
  8134. <ScalarProperty Name="IssueDt" ColumnName="IssueDt" />
  8135. <ScalarProperty Name="ExpiryDt" ColumnName="ExpiryDt" />
  8136. <ScalarProperty Name="IDCardAddress" ColumnName="IDCardAddress" />
  8137. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8138. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8139. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8140. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8141. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8142. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8143. </MappingFragment>
  8144. </EntityTypeMapping>
  8145. </EntitySetMapping>
  8146. <EntitySetMapping Name="Crm_CustomerCompany">
  8147. <EntityTypeMapping TypeName="oa2023DBModel.Crm_CustomerCompany">
  8148. <MappingFragment StoreEntitySet="Crm_CustomerCompany">
  8149. <ScalarProperty Name="Id" ColumnName="Id" />
  8150. <ScalarProperty Name="CompanyAbbreviation" ColumnName="CompanyAbbreviation" />
  8151. <ScalarProperty Name="CompanyFullName" ColumnName="CompanyFullName" />
  8152. <ScalarProperty Name="Address" ColumnName="Address" />
  8153. <ScalarProperty Name="PostCodes" ColumnName="PostCodes" />
  8154. <ScalarProperty Name="LastedOpUserId" ColumnName="LastedOpUserId" />
  8155. <ScalarProperty Name="LastedOpDt" ColumnName="LastedOpDt" />
  8156. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8157. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8158. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8159. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8160. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8161. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8162. </MappingFragment>
  8163. </EntityTypeMapping>
  8164. </EntitySetMapping>
  8165. <EntitySetMapping Name="Crm_CustomerFile">
  8166. <EntityTypeMapping TypeName="oa2023DBModel.Crm_CustomerFile">
  8167. <MappingFragment StoreEntitySet="Crm_CustomerFile">
  8168. <ScalarProperty Name="Id" ColumnName="Id" />
  8169. <ScalarProperty Name="DcId" ColumnName="DcId" />
  8170. <ScalarProperty Name="Publisher" ColumnName="Publisher" />
  8171. <ScalarProperty Name="FileName" ColumnName="FileName" />
  8172. <ScalarProperty Name="FileBusiType" ColumnName="FileBusiType" />
  8173. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8174. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8175. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8176. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8177. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8178. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8179. </MappingFragment>
  8180. </EntityTypeMapping>
  8181. </EntitySetMapping>
  8182. <EntitySetMapping Name="Crm_DeleClient">
  8183. <EntityTypeMapping TypeName="oa2023DBModel.Crm_DeleClient">
  8184. <MappingFragment StoreEntitySet="Crm_DeleClient">
  8185. <ScalarProperty Name="Id" ColumnName="Id" />
  8186. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8187. <ScalarProperty Name="LastName" ColumnName="LastName" />
  8188. <ScalarProperty Name="FirstName" ColumnName="FirstName" />
  8189. <ScalarProperty Name="OldName" ColumnName="OldName" />
  8190. <ScalarProperty Name="Pinyin" ColumnName="Pinyin" />
  8191. <ScalarProperty Name="Sex" ColumnName="Sex" />
  8192. <ScalarProperty Name="Marriage" ColumnName="Marriage" />
  8193. <ScalarProperty Name="Tel" ColumnName="Tel" />
  8194. <ScalarProperty Name="BirthProvince" ColumnName="BirthProvince" />
  8195. <ScalarProperty Name="BirthCity" ColumnName="BirthCity" />
  8196. <ScalarProperty Name="BirthDay" ColumnName="BirthDay" />
  8197. <ScalarProperty Name="AirType" ColumnName="AirType" />
  8198. <ScalarProperty Name="SeatPref" ColumnName="SeatPref" />
  8199. <ScalarProperty Name="AirRemark" ColumnName="AirRemark" />
  8200. <ScalarProperty Name="RoomType" ColumnName="RoomType" />
  8201. <ScalarProperty Name="RoomPref" ColumnName="RoomPref" />
  8202. <ScalarProperty Name="Phone" ColumnName="Phone" />
  8203. <ScalarProperty Name="Email" ColumnName="Email" />
  8204. <ScalarProperty Name="Address" ColumnName="Address" />
  8205. <ScalarProperty Name="HighestEducation" ColumnName="HighestEducation" />
  8206. <ScalarProperty Name="PostCodes" ColumnName="PostCodes" />
  8207. <ScalarProperty Name="CrmCompanyId" ColumnName="CrmCompanyId" />
  8208. <ScalarProperty Name="Job" ColumnName="Job" />
  8209. <ScalarProperty Name="WorkState" ColumnName="WorkState" />
  8210. <ScalarProperty Name="WorkDate" ColumnName="WorkDate" />
  8211. <ScalarProperty Name="Wage" ColumnName="Wage" />
  8212. <ScalarProperty Name="ClientPhone" ColumnName="ClientPhone" />
  8213. <ScalarProperty Name="ClientFax" ColumnName="ClientFax" />
  8214. <ScalarProperty Name="ClientEmail" ColumnName="ClientEmail" />
  8215. <ScalarProperty Name="ClientLeader" ColumnName="ClientLeader" />
  8216. <ScalarProperty Name="ClientLeaderJob" ColumnName="ClientLeaderJob" />
  8217. <ScalarProperty Name="IsGetSchengen" ColumnName="IsGetSchengen" />
  8218. <ScalarProperty Name="StartTime" ColumnName="StartTime" />
  8219. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  8220. <ScalarProperty Name="IsFinger" ColumnName="IsFinger" />
  8221. <ScalarProperty Name="FingerDate" ColumnName="FingerDate" />
  8222. <ScalarProperty Name="IsVisitUC" ColumnName="IsVisitUC" />
  8223. <ScalarProperty Name="USADate" ColumnName="USADate" />
  8224. <ScalarProperty Name="USADays" ColumnName="USADays" />
  8225. <ScalarProperty Name="CanDate" ColumnName="CanDate" />
  8226. <ScalarProperty Name="CanDays" ColumnName="CanDays" />
  8227. <ScalarProperty Name="IsUSAVia" ColumnName="IsUSAVia" />
  8228. <ScalarProperty Name="GetUSAVisaDate" ColumnName="GetUSAVisaDate" />
  8229. <ScalarProperty Name="GetUPPlace" ColumnName="GetUPPlace" />
  8230. <ScalarProperty Name="USAVisaCate" ColumnName="USAVisaCate" />
  8231. <ScalarProperty Name="USAVisaCode" ColumnName="USAVisaCode" />
  8232. <ScalarProperty Name="USAFinger" ColumnName="USAFinger" />
  8233. <ScalarProperty Name="IsRejected" ColumnName="IsRejected" />
  8234. <ScalarProperty Name="RejectedDate" ColumnName="RejectedDate" />
  8235. <ScalarProperty Name="RejectedPlace" ColumnName="RejectedPlace" />
  8236. <ScalarProperty Name="RejectedVisa" ColumnName="RejectedVisa" />
  8237. <ScalarProperty Name="IsRevoke" ColumnName="IsRevoke" />
  8238. <ScalarProperty Name="IsLose" ColumnName="IsLose" />
  8239. <ScalarProperty Name="LoseDate" ColumnName="LoseDate" />
  8240. <ScalarProperty Name="LoseCode" ColumnName="LoseCode" />
  8241. <ScalarProperty Name="IsUSAVisa" ColumnName="IsUSAVisa" />
  8242. <ScalarProperty Name="MateUSA" ColumnName="MateUSA" />
  8243. <ScalarProperty Name="MateIden" ColumnName="MateIden" />
  8244. <ScalarProperty Name="WHUSA" ColumnName="WHUSA" />
  8245. <ScalarProperty Name="WHIden" ColumnName="WHIden" />
  8246. <ScalarProperty Name="ParentUSA" ColumnName="ParentUSA" />
  8247. <ScalarProperty Name="ParentIden" ColumnName="ParentIden" />
  8248. <ScalarProperty Name="ChildUSA" ColumnName="ChildUSA" />
  8249. <ScalarProperty Name="ChildIden" ColumnName="ChildIden" />
  8250. <ScalarProperty Name="BroUSA" ColumnName="BroUSA" />
  8251. <ScalarProperty Name="BroIden" ColumnName="BroIden" />
  8252. <ScalarProperty Name="Social" ColumnName="Social" />
  8253. <ScalarProperty Name="IsArmy" ColumnName="IsArmy" />
  8254. <ScalarProperty Name="ArmyState" ColumnName="ArmyState" />
  8255. <ScalarProperty Name="CostBearers" ColumnName="CostBearers" />
  8256. <ScalarProperty Name="TableOpName" ColumnName="TableOpName" />
  8257. <ScalarProperty Name="TableOpTel" ColumnName="TableOpTel" />
  8258. <ScalarProperty Name="TableDate" ColumnName="TableDate" />
  8259. <ScalarProperty Name="Party" ColumnName="Party" />
  8260. <ScalarProperty Name="Nationality" ColumnName="Nationality" />
  8261. <ScalarProperty Name="WeddingDate" ColumnName="WeddingDate" />
  8262. <ScalarProperty Name="DivorceDate" ColumnName="DivorceDate" />
  8263. <ScalarProperty Name="MateName" ColumnName="MateName" />
  8264. <ScalarProperty Name="MateBirthDay" ColumnName="MateBirthDay" />
  8265. <ScalarProperty Name="MateBirthCity" ColumnName="MateBirthCity" />
  8266. <ScalarProperty Name="MateBirthCountry" ColumnName="MateBirthCountry" />
  8267. <ScalarProperty Name="MateAddress" ColumnName="MateAddress" />
  8268. <ScalarProperty Name="MateClient" ColumnName="MateClient" />
  8269. <ScalarProperty Name="MateClientAddress" ColumnName="MateClientAddress" />
  8270. <ScalarProperty Name="MateJob" ColumnName="MateJob" />
  8271. <ScalarProperty Name="VisitCountry" ColumnName="VisitCountry" />
  8272. <ScalarProperty Name="Paper" ColumnName="Paper" />
  8273. <ScalarProperty Name="Papent" ColumnName="Papent" />
  8274. <ScalarProperty Name="PhD" ColumnName="PhD" />
  8275. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8276. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8277. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8278. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8279. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8280. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8281. </MappingFragment>
  8282. </EntityTypeMapping>
  8283. </EntitySetMapping>
  8284. <EntitySetMapping Name="Crm_GroupCustomer">
  8285. <EntityTypeMapping TypeName="oa2023DBModel.Crm_GroupCustomer">
  8286. <MappingFragment StoreEntitySet="Crm_GroupCustomer">
  8287. <ScalarProperty Name="Id" ColumnName="Id" />
  8288. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8289. <ScalarProperty Name="FirstName" ColumnName="FirstName" />
  8290. <ScalarProperty Name="LastName" ColumnName="LastName" />
  8291. <ScalarProperty Name="Pinyin" ColumnName="Pinyin" />
  8292. <ScalarProperty Name="Company" ColumnName="Company" />
  8293. <ScalarProperty Name="Job" ColumnName="Job" />
  8294. <ScalarProperty Name="Phone" ColumnName="Phone" />
  8295. <ScalarProperty Name="Sex" ColumnName="Sex" />
  8296. <ScalarProperty Name="IDcard" ColumnName="IDcard" />
  8297. <ScalarProperty Name="PassprotType" ColumnName="PassprotType" />
  8298. <ScalarProperty Name="passportCountry" ColumnName="passportCountry" />
  8299. <ScalarProperty Name="PassportNo" ColumnName="PassportNo" />
  8300. <ScalarProperty Name="IssuePlace" ColumnName="IssuePlace" />
  8301. <ScalarProperty Name="IssueDate" ColumnName="IssueDate" />
  8302. <ScalarProperty Name="ExpiryDate" ColumnName="ExpiryDate" />
  8303. <ScalarProperty Name="Birthday" ColumnName="Birthday" />
  8304. <ScalarProperty Name="AirType" ColumnName="AirType" />
  8305. <ScalarProperty Name="AirRemark" ColumnName="AirRemark" />
  8306. <ScalarProperty Name="RoomType" ColumnName="RoomType" />
  8307. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8308. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8309. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8310. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8311. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8312. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8313. </MappingFragment>
  8314. </EntityTypeMapping>
  8315. </EntitySetMapping>
  8316. <EntitySetMapping Name="Crm_NewClientData">
  8317. <EntityTypeMapping TypeName="oa2023DBModel.Crm_NewClientData">
  8318. <MappingFragment StoreEntitySet="Crm_NewClientData">
  8319. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  8320. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  8321. <ScalarProperty Name="Id" ColumnName="Id" />
  8322. <ScalarProperty Name="Number" ColumnName="Number" />
  8323. <ScalarProperty Name="Lvlid" ColumnName="Lvlid" />
  8324. <ScalarProperty Name="Client" ColumnName="Client" />
  8325. <ScalarProperty Name="Weight" ColumnName="Weight" />
  8326. <ScalarProperty Name="ClientShort" ColumnName="ClientShort" />
  8327. <ScalarProperty Name="Contact" ColumnName="Contact" />
  8328. <ScalarProperty Name="Gender" ColumnName="Gender" />
  8329. <ScalarProperty Name="Passport" ColumnName="Passport" />
  8330. <ScalarProperty Name="PassportDate" ColumnName="PassportDate" />
  8331. <ScalarProperty Name="Job" ColumnName="Job" />
  8332. <ScalarProperty Name="TelePhone" ColumnName="TelePhone" />
  8333. <ScalarProperty Name="Phone" ColumnName="Phone" />
  8334. <ScalarProperty Name="Email" ColumnName="Email" />
  8335. <ScalarProperty Name="Location" ColumnName="Location" />
  8336. <ScalarProperty Name="Address" ColumnName="Address" />
  8337. <ScalarProperty Name="Birthday" ColumnName="Birthday" />
  8338. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  8339. <ScalarProperty Name="WeChat" ColumnName="WeChat" />
  8340. <ScalarProperty Name="Category" ColumnName="Category" />
  8341. <ScalarProperty Name="PreDele" ColumnName="PreDele" />
  8342. <ScalarProperty Name="FinlishedDele" ColumnName="FinlishedDele" />
  8343. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8344. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8345. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8346. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8347. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8348. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8349. </MappingFragment>
  8350. </EntityTypeMapping>
  8351. </EntitySetMapping>
  8352. <EntitySetMapping Name="Crm_TableOperationRecord">
  8353. <EntityTypeMapping TypeName="oa2023DBModel.Crm_TableOperationRecord">
  8354. <MappingFragment StoreEntitySet="Crm_TableOperationRecord">
  8355. <ScalarProperty Name="DeviceType" ColumnName="DeviceType" />
  8356. <ScalarProperty Name="RequestUrl" ColumnName="RequestUrl" />
  8357. <ScalarProperty Name="UpdateBefData" ColumnName="UpdateBefData" />
  8358. <ScalarProperty Name="UpdatePreData" ColumnName="UpdatePreData" />
  8359. <ScalarProperty Name="ReturnResult" ColumnName="ReturnResult" />
  8360. <ScalarProperty Name="RequestParam" ColumnName="RequestParam" />
  8361. <ScalarProperty Name="Elapsed" ColumnName="Elapsed" />
  8362. <ScalarProperty Name="Os" ColumnName="Os" />
  8363. <ScalarProperty Name="browser" ColumnName="browser" />
  8364. <ScalarProperty Name="Location" ColumnName="Location" />
  8365. <ScalarProperty Name="RemoteIp" ColumnName="RemoteIp" />
  8366. <ScalarProperty Name="Status" ColumnName="Status" />
  8367. <ScalarProperty Name="Id" ColumnName="Id" />
  8368. <ScalarProperty Name="TableName" ColumnName="TableName" />
  8369. <ScalarProperty Name="PortType" ColumnName="PortType" />
  8370. <ScalarProperty Name="OperationItem" ColumnName="OperationItem" />
  8371. <ScalarProperty Name="DataId" ColumnName="DataId" />
  8372. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8373. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8374. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8375. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8376. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8377. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8378. </MappingFragment>
  8379. </EntityTypeMapping>
  8380. </EntitySetMapping>
  8381. <EntitySetMapping Name="Crm_VisaCustomerCompany">
  8382. <EntityTypeMapping TypeName="oa2023DBModel.Crm_VisaCustomerCompany">
  8383. <MappingFragment StoreEntitySet="Crm_VisaCustomerCompany">
  8384. <ScalarProperty Name="Id" ColumnName="Id" />
  8385. <ScalarProperty Name="DcId" ColumnName="DcId" />
  8386. <ScalarProperty Name="Company" ColumnName="Company" />
  8387. <ScalarProperty Name="CompanyAddress" ColumnName="CompanyAddress" />
  8388. <ScalarProperty Name="Phone" ColumnName="Phone" />
  8389. <ScalarProperty Name="Job" ColumnName="Job" />
  8390. <ScalarProperty Name="LeaderName" ColumnName="LeaderName" />
  8391. <ScalarProperty Name="WorkStart" ColumnName="WorkStart" />
  8392. <ScalarProperty Name="WorkEnd" ColumnName="WorkEnd" />
  8393. <ScalarProperty Name="WorkState" ColumnName="WorkState" />
  8394. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8395. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8396. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8397. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8398. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8399. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8400. </MappingFragment>
  8401. </EntityTypeMapping>
  8402. </EntitySetMapping>
  8403. <EntitySetMapping Name="Crm_VisaCustomerFamily">
  8404. <EntityTypeMapping TypeName="oa2023DBModel.Crm_VisaCustomerFamily">
  8405. <MappingFragment StoreEntitySet="Crm_VisaCustomerFamily">
  8406. <ScalarProperty Name="Id" ColumnName="Id" />
  8407. <ScalarProperty Name="DcId" ColumnName="DcId" />
  8408. <ScalarProperty Name="Appellation" ColumnName="Appellation" />
  8409. <ScalarProperty Name="Name" ColumnName="Name" />
  8410. <ScalarProperty Name="BirthDay" ColumnName="BirthDay" />
  8411. <ScalarProperty Name="BirthPlace" ColumnName="BirthPlace" />
  8412. <ScalarProperty Name="Politics" ColumnName="Politics" />
  8413. <ScalarProperty Name="Client" ColumnName="Client" />
  8414. <ScalarProperty Name="Address" ColumnName="Address" />
  8415. <ScalarProperty Name="IsEu" ColumnName="IsEu" />
  8416. <ScalarProperty Name="NameSnd" ColumnName="NameSnd" />
  8417. <ScalarProperty Name="BirthDaySnd" ColumnName="BirthDaySnd" />
  8418. <ScalarProperty Name="Nationality" ColumnName="Nationality" />
  8419. <ScalarProperty Name="IDCard" ColumnName="IDCard" />
  8420. <ScalarProperty Name="Reletionship" ColumnName="Reletionship" />
  8421. <ScalarProperty Name="IsUSA" ColumnName="IsUSA" />
  8422. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8423. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8424. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8425. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8426. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8427. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8428. </MappingFragment>
  8429. </EntityTypeMapping>
  8430. </EntitySetMapping>
  8431. <EntitySetMapping Name="Crm_VisaCustomerSchool">
  8432. <EntityTypeMapping TypeName="oa2023DBModel.Crm_VisaCustomerSchool">
  8433. <MappingFragment StoreEntitySet="Crm_VisaCustomerSchool">
  8434. <ScalarProperty Name="Id" ColumnName="Id" />
  8435. <ScalarProperty Name="DcId" ColumnName="DcId" />
  8436. <ScalarProperty Name="School" ColumnName="School" />
  8437. <ScalarProperty Name="Address" ColumnName="Address" />
  8438. <ScalarProperty Name="Teacher" ColumnName="Teacher" />
  8439. <ScalarProperty Name="Education" ColumnName="Education" />
  8440. <ScalarProperty Name="Subject" ColumnName="Subject" />
  8441. <ScalarProperty Name="StudyStart" ColumnName="StudyStart" />
  8442. <ScalarProperty Name="StudyEnd" ColumnName="StudyEnd" />
  8443. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8444. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8445. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8446. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8447. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8448. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8449. </MappingFragment>
  8450. </EntityTypeMapping>
  8451. </EntitySetMapping>
  8452. <EntitySetMapping Name="Dis_City">
  8453. <EntityTypeMapping TypeName="oa2023DBModel.Dis_City">
  8454. <MappingFragment StoreEntitySet="Dis_City">
  8455. <ScalarProperty Name="Id" ColumnName="Id" />
  8456. <ScalarProperty Name="CountryId" ColumnName="CountryId" />
  8457. <ScalarProperty Name="CnName" ColumnName="CnName" />
  8458. <ScalarProperty Name="EnName" ColumnName="EnName" />
  8459. <ScalarProperty Name="ThreeCharacterCode" ColumnName="ThreeCharacterCode" />
  8460. <ScalarProperty Name="FourCharacterCode" ColumnName="FourCharacterCode" />
  8461. <ScalarProperty Name="CnAirportName" ColumnName="CnAirportName" />
  8462. <ScalarProperty Name="EnAirportName" ColumnName="EnAirportName" />
  8463. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8464. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8465. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8466. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8467. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8468. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8469. </MappingFragment>
  8470. </EntityTypeMapping>
  8471. </EntitySetMapping>
  8472. <EntitySetMapping Name="Dis_Country">
  8473. <EntityTypeMapping TypeName="oa2023DBModel.Dis_Country">
  8474. <MappingFragment StoreEntitySet="Dis_Country">
  8475. <ScalarProperty Name="Id" ColumnName="Id" />
  8476. <ScalarProperty Name="IntercontinentalId" ColumnName="IntercontinentalId" />
  8477. <ScalarProperty Name="FullName" ColumnName="FullName" />
  8478. <ScalarProperty Name="CnShortName" ColumnName="CnShortName" />
  8479. <ScalarProperty Name="EnShortName" ColumnName="EnShortName" />
  8480. <ScalarProperty Name="CurrencyCode" ColumnName="CurrencyCode" />
  8481. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8482. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8483. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8484. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8485. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8486. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8487. </MappingFragment>
  8488. </EntityTypeMapping>
  8489. </EntitySetMapping>
  8490. <EntitySetMapping Name="Dis_Intercontinental">
  8491. <EntityTypeMapping TypeName="oa2023DBModel.Dis_Intercontinental">
  8492. <MappingFragment StoreEntitySet="Dis_Intercontinental">
  8493. <ScalarProperty Name="Id" ColumnName="Id" />
  8494. <ScalarProperty Name="FullName" ColumnName="FullName" />
  8495. <ScalarProperty Name="CnShortName" ColumnName="CnShortName" />
  8496. <ScalarProperty Name="EnShortName" ColumnName="EnShortName" />
  8497. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8498. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8499. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8500. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8501. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8502. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8503. </MappingFragment>
  8504. </EntityTypeMapping>
  8505. </EntitySetMapping>
  8506. <EntitySetMapping Name="Fin_Commission">
  8507. <EntityTypeMapping TypeName="oa2023DBModel.Fin_Commission">
  8508. <MappingFragment StoreEntitySet="Fin_Commission">
  8509. <ScalarProperty Name="Id" ColumnName="Id" />
  8510. <ScalarProperty Name="Personnel" ColumnName="Personnel" />
  8511. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8512. <ScalarProperty Name="GroupDate" ColumnName="GroupDate" />
  8513. <ScalarProperty Name="GroupLvl" ColumnName="GroupLvl" />
  8514. <ScalarProperty Name="Detail" ColumnName="Detail" />
  8515. <ScalarProperty Name="Money" ColumnName="Money" />
  8516. <ScalarProperty Name="WageYearMonth" ColumnName="WageYearMonth" />
  8517. <ScalarProperty Name="IsMakeLoss" ColumnName="IsMakeLoss" />
  8518. <ScalarProperty Name="IsLoss" ColumnName="IsLoss" />
  8519. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8520. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8521. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8522. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8523. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8524. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8525. </MappingFragment>
  8526. </EntityTypeMapping>
  8527. </EntitySetMapping>
  8528. <EntitySetMapping Name="Fin_DailyFeePayment">
  8529. <EntityTypeMapping TypeName="oa2023DBModel.Fin_DailyFeePayment">
  8530. <MappingFragment StoreEntitySet="Fin_DailyFeePayment">
  8531. <ScalarProperty Name="Id" ColumnName="Id" />
  8532. <ScalarProperty Name="Instructions" ColumnName="Instructions" />
  8533. <ScalarProperty Name="SumPrice" ColumnName="SumPrice" />
  8534. <ScalarProperty Name="FAudit" ColumnName="FAudit" />
  8535. <ScalarProperty Name="FAuditDate" ColumnName="FAuditDate" />
  8536. <ScalarProperty Name="MAudit" ColumnName="MAudit" />
  8537. <ScalarProperty Name="MAuditDate" ColumnName="MAuditDate" />
  8538. <ScalarProperty Name="IsPay" ColumnName="IsPay" />
  8539. <ScalarProperty Name="TransferTypeId" ColumnName="TransferTypeId" />
  8540. <ScalarProperty Name="PriceTypeId" ColumnName="PriceTypeId" />
  8541. <ScalarProperty Name="CompanyId" ColumnName="CompanyId" />
  8542. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8543. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8544. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8545. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8546. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8547. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8548. </MappingFragment>
  8549. </EntityTypeMapping>
  8550. </EntitySetMapping>
  8551. <EntitySetMapping Name="Fin_DailyFeePaymentContent">
  8552. <EntityTypeMapping TypeName="oa2023DBModel.Fin_DailyFeePaymentContent">
  8553. <MappingFragment StoreEntitySet="Fin_DailyFeePaymentContent">
  8554. <ScalarProperty Name="Id" ColumnName="Id" />
  8555. <ScalarProperty Name="DFPId" ColumnName="DFPId" />
  8556. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8557. <ScalarProperty Name="Quantity" ColumnName="Quantity" />
  8558. <ScalarProperty Name="Price" ColumnName="Price" />
  8559. <ScalarProperty Name="ItemTotal" ColumnName="ItemTotal" />
  8560. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8561. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8562. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8563. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8564. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8565. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8566. </MappingFragment>
  8567. </EntityTypeMapping>
  8568. </EntitySetMapping>
  8569. <EntitySetMapping Name="Fin_ForeignReceivables">
  8570. <EntityTypeMapping TypeName="oa2023DBModel.Fin_ForeignReceivables">
  8571. <MappingFragment StoreEntitySet="Fin_ForeignReceivables">
  8572. <ScalarProperty Name="AuditTime" ColumnName="AuditTime" />
  8573. <ScalarProperty Name="Auditor" ColumnName="Auditor" />
  8574. <ScalarProperty Name="Status" ColumnName="Status" />
  8575. <ScalarProperty Name="Id" ColumnName="Id" />
  8576. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8577. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8578. <ScalarProperty Name="Price" ColumnName="Price" />
  8579. <ScalarProperty Name="Count" ColumnName="Count" />
  8580. <ScalarProperty Name="Unit" ColumnName="Unit" />
  8581. <ScalarProperty Name="ItemSumPrice" ColumnName="ItemSumPrice" />
  8582. <ScalarProperty Name="To" ColumnName="To" />
  8583. <ScalarProperty Name="ToTel" ColumnName="ToTel" />
  8584. <ScalarProperty Name="PayDate" ColumnName="PayDate" />
  8585. <ScalarProperty Name="Attention" ColumnName="Attention" />
  8586. <ScalarProperty Name="Rate" ColumnName="Rate" />
  8587. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8588. <ScalarProperty Name="AddingWay" ColumnName="AddingWay" />
  8589. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8590. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8591. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8592. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8593. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8594. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8595. </MappingFragment>
  8596. </EntityTypeMapping>
  8597. </EntitySetMapping>
  8598. <EntitySetMapping Name="Fin_GroupExtraCost">
  8599. <EntityTypeMapping TypeName="oa2023DBModel.Fin_GroupExtraCost">
  8600. <MappingFragment StoreEntitySet="Fin_GroupExtraCost">
  8601. <ScalarProperty Name="SYsupervisorConfirm" ColumnName="SYsupervisorConfirm" />
  8602. <ScalarProperty Name="SupervisorConfirm" ColumnName="SupervisorConfirm" />
  8603. <ScalarProperty Name="ManagerConfirm" ColumnName="ManagerConfirm" />
  8604. <ScalarProperty Name="Area" ColumnName="Area" />
  8605. <ScalarProperty Name="Id" ColumnName="Id" />
  8606. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8607. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8608. <ScalarProperty Name="Price" ColumnName="Price" />
  8609. <ScalarProperty Name="PriceCount" ColumnName="PriceCount" />
  8610. <ScalarProperty Name="PriceSum" ColumnName="PriceSum" />
  8611. <ScalarProperty Name="PriceDt" ColumnName="PriceDt" />
  8612. <ScalarProperty Name="PriceCurrency" ColumnName="PriceCurrency" />
  8613. <ScalarProperty Name="PriceType" ColumnName="PriceType" />
  8614. <ScalarProperty Name="Coefficient" ColumnName="Coefficient" />
  8615. <ScalarProperty Name="PriceDetailType" ColumnName="PriceDetailType" />
  8616. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  8617. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8618. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8619. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8620. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8621. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8622. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8623. </MappingFragment>
  8624. </EntityTypeMapping>
  8625. </EntitySetMapping>
  8626. <EntitySetMapping Name="Fin_OtherPrice">
  8627. <EntityTypeMapping TypeName="oa2023DBModel.Fin_OtherPrice">
  8628. <MappingFragment StoreEntitySet="Fin_OtherPrice">
  8629. <ScalarProperty Name="Id" ColumnName="Id" />
  8630. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8631. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8632. <ScalarProperty Name="Price" ColumnName="Price" />
  8633. <ScalarProperty Name="CurrencyId" ColumnName="CurrencyId" />
  8634. <ScalarProperty Name="DayRate" ColumnName="DayRate" />
  8635. <ScalarProperty Name="PayType" ColumnName="PayType" />
  8636. <ScalarProperty Name="RefundType" ColumnName="RefundType" />
  8637. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8638. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8639. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8640. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8641. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8642. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8643. </MappingFragment>
  8644. </EntityTypeMapping>
  8645. </EntitySetMapping>
  8646. <EntitySetMapping Name="Fin_PaymentRefundAndOtherMoney">
  8647. <EntityTypeMapping TypeName="oa2023DBModel.Fin_PaymentRefundAndOtherMoney">
  8648. <MappingFragment StoreEntitySet="Fin_PaymentRefundAndOtherMoney">
  8649. <ScalarProperty Name="Id" ColumnName="Id" />
  8650. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8651. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8652. <ScalarProperty Name="Price" ColumnName="Price" />
  8653. <ScalarProperty Name="CurrencyId" ColumnName="CurrencyId" />
  8654. <ScalarProperty Name="PayType" ColumnName="PayType" />
  8655. <ScalarProperty Name="PriceType" ColumnName="PriceType" />
  8656. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8657. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8658. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8659. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8660. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8661. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8662. </MappingFragment>
  8663. </EntityTypeMapping>
  8664. </EntitySetMapping>
  8665. <EntitySetMapping Name="Fin_ProceedsReceived">
  8666. <EntityTypeMapping TypeName="oa2023DBModel.Fin_ProceedsReceived">
  8667. <MappingFragment StoreEntitySet="Fin_ProceedsReceived">
  8668. <ScalarProperty Name="Id" ColumnName="Id" />
  8669. <ScalarProperty Name="DIId" ColumnName="DIId" />
  8670. <ScalarProperty Name="SectionTime" ColumnName="SectionTime" />
  8671. <ScalarProperty Name="Price" ColumnName="Price" />
  8672. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8673. <ScalarProperty Name="ReceivablesType" ColumnName="ReceivablesType" />
  8674. <ScalarProperty Name="Client" ColumnName="Client" />
  8675. <ScalarProperty Name="CustomerName" ColumnName="CustomerName" />
  8676. <ScalarProperty Name="CustomerTel" ColumnName="CustomerTel" />
  8677. <ScalarProperty Name="FID" ColumnName="FID" />
  8678. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8679. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8680. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8681. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8682. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8683. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8684. </MappingFragment>
  8685. </EntityTypeMapping>
  8686. </EntitySetMapping>
  8687. <EntitySetMapping Name="Grp_AirInquiry">
  8688. <EntityTypeMapping TypeName="oa2023DBModel.Grp_AirInquiry">
  8689. <MappingFragment StoreEntitySet="Grp_AirInquiry">
  8690. <ScalarProperty Name="Id" ColumnName="Id" />
  8691. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8692. <ScalarProperty Name="BlackCode" ColumnName="BlackCode" />
  8693. <ScalarProperty Name="Routing" ColumnName="Routing" />
  8694. <ScalarProperty Name="Carrier" ColumnName="Carrier" />
  8695. <ScalarProperty Name="FlightNo" ColumnName="FlightNo" />
  8696. <ScalarProperty Name="DepartDate" ColumnName="DepartDate" />
  8697. <ScalarProperty Name="DepartTime" ColumnName="DepartTime" />
  8698. <ScalarProperty Name="ArrivalTime" ColumnName="ArrivalTime" />
  8699. <ScalarProperty Name="FirstYPrice" ColumnName="FirstYPrice" />
  8700. <ScalarProperty Name="FirstCabinPrice" ColumnName="FirstCabinPrice" />
  8701. <ScalarProperty Name="BusinessYPrice" ColumnName="BusinessYPrice" />
  8702. <ScalarProperty Name="BusinessCabinPrice" ColumnName="BusinessCabinPrice" />
  8703. <ScalarProperty Name="YPrice" ColumnName="YPrice" />
  8704. <ScalarProperty Name="CabinPrice" ColumnName="CabinPrice" />
  8705. <ScalarProperty Name="SearchDt" ColumnName="SearchDt" />
  8706. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8707. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8708. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8709. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8710. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8711. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8712. </MappingFragment>
  8713. </EntityTypeMapping>
  8714. </EntitySetMapping>
  8715. <EntitySetMapping Name="Grp_AirPrice">
  8716. <EntityTypeMapping TypeName="oa2023DBModel.Grp_AirPrice">
  8717. <MappingFragment StoreEntitySet="Grp_AirPrice">
  8718. <ScalarProperty Name="Id" ColumnName="Id" />
  8719. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8720. <ScalarProperty Name="AiId" ColumnName="AiId" />
  8721. <ScalarProperty Name="CabinCode" ColumnName="CabinCode" />
  8722. <ScalarProperty Name="SinglePrice" ColumnName="SinglePrice" />
  8723. <ScalarProperty Name="SingleCurency" ColumnName="SingleCurency" />
  8724. <ScalarProperty Name="Count" ColumnName="Count" />
  8725. <ScalarProperty Name="TotalPrice" ColumnName="TotalPrice" />
  8726. <ScalarProperty Name="TotalCurency" ColumnName="TotalCurency" />
  8727. <ScalarProperty Name="IsCheck" ColumnName="IsCheck" />
  8728. <ScalarProperty Name="IsSeat" ColumnName="IsSeat" />
  8729. <ScalarProperty Name="IsPackage" ColumnName="IsPackage" />
  8730. <ScalarProperty Name="IsBag" ColumnName="IsBag" />
  8731. <ScalarProperty Name="PriceRemark" ColumnName="PriceRemark" />
  8732. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8733. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8734. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8735. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8736. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8737. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8738. </MappingFragment>
  8739. </EntityTypeMapping>
  8740. </EntitySetMapping>
  8741. <EntitySetMapping Name="Grp_AirTicketReservations">
  8742. <EntityTypeMapping TypeName="oa2023DBModel.Grp_AirTicketReservations">
  8743. <MappingFragment StoreEntitySet="Grp_AirTicketReservations">
  8744. <ScalarProperty Name="Id" ColumnName="Id" />
  8745. <ScalarProperty Name="DIId" ColumnName="DIId" />
  8746. <ScalarProperty Name="FlightsCode" ColumnName="FlightsCode" />
  8747. <ScalarProperty Name="FlightsDate" ColumnName="FlightsDate" />
  8748. <ScalarProperty Name="FlightsTime" ColumnName="FlightsTime" />
  8749. <ScalarProperty Name="ArrivedTime" ColumnName="ArrivedTime" />
  8750. <ScalarProperty Name="IsCheckIn" ColumnName="IsCheckIn" />
  8751. <ScalarProperty Name="IsSetSeat" ColumnName="IsSetSeat" />
  8752. <ScalarProperty Name="IsPackage" ColumnName="IsPackage" />
  8753. <ScalarProperty Name="IsBagHandle" ColumnName="IsBagHandle" />
  8754. <ScalarProperty Name="IsTrain" ColumnName="IsTrain" />
  8755. <ScalarProperty Name="CType" ColumnName="CType" />
  8756. <ScalarProperty Name="FlightsCity" ColumnName="FlightsCity" />
  8757. <ScalarProperty Name="LeaveDescription" ColumnName="LeaveDescription" />
  8758. <ScalarProperty Name="FlightsDescription" ColumnName="FlightsDescription" />
  8759. <ScalarProperty Name="ReturnDescription" ColumnName="ReturnDescription" />
  8760. <ScalarProperty Name="PassengerType" ColumnName="PassengerType" />
  8761. <ScalarProperty Name="ClientNum" ColumnName="ClientNum" />
  8762. <ScalarProperty Name="ClientName" ColumnName="ClientName" />
  8763. <ScalarProperty Name="PrePrice" ColumnName="PrePrice" />
  8764. <ScalarProperty Name="PreCurrency" ColumnName="PreCurrency" />
  8765. <ScalarProperty Name="Price" ColumnName="Price" />
  8766. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8767. <ScalarProperty Name="PriceDescription" ColumnName="PriceDescription" />
  8768. <ScalarProperty Name="TicketNumber" ColumnName="TicketNumber" />
  8769. <ScalarProperty Name="TicketCode" ColumnName="TicketCode" />
  8770. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8771. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8772. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8773. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8774. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8775. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8776. </MappingFragment>
  8777. </EntityTypeMapping>
  8778. </EntitySetMapping>
  8779. <EntitySetMapping Name="Grp_CarGuides">
  8780. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarGuides">
  8781. <MappingFragment StoreEntitySet="Grp_CarGuides">
  8782. <ScalarProperty Name="Id" ColumnName="Id" />
  8783. <ScalarProperty Name="Country" ColumnName="Country" />
  8784. <ScalarProperty Name="City" ColumnName="City" />
  8785. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  8786. <ScalarProperty Name="CarType" ColumnName="CarType" />
  8787. <ScalarProperty Name="Offer" ColumnName="Offer" />
  8788. <ScalarProperty Name="CGCost" ColumnName="CGCost" />
  8789. <ScalarProperty Name="RuningTime" ColumnName="RuningTime" />
  8790. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  8791. <ScalarProperty Name="CGOvertimeFee" ColumnName="CGOvertimeFee" />
  8792. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8793. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8794. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8795. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8796. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8797. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8798. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8799. </MappingFragment>
  8800. </EntityTypeMapping>
  8801. </EntitySetMapping>
  8802. <EntitySetMapping Name="Grp_CarInfo">
  8803. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarInfo">
  8804. <MappingFragment StoreEntitySet="Grp_CarInfo">
  8805. <ScalarProperty Name="Id" ColumnName="Id" />
  8806. <ScalarProperty Name="Country" ColumnName="Country" />
  8807. <ScalarProperty Name="City" ColumnName="City" />
  8808. <ScalarProperty Name="CarType" ColumnName="CarType" />
  8809. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  8810. <ScalarProperty Name="When" ColumnName="When" />
  8811. <ScalarProperty Name="Price" ColumnName="Price" />
  8812. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8813. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  8814. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8815. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8816. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8817. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8818. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8819. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8820. </MappingFragment>
  8821. </EntityTypeMapping>
  8822. </EntitySetMapping>
  8823. <EntitySetMapping Name="Grp_CarTouristGuideGroundReservations">
  8824. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarTouristGuideGroundReservations">
  8825. <MappingFragment StoreEntitySet="Grp_CarTouristGuideGroundReservations">
  8826. <ScalarProperty Name="Rate" ColumnName="Rate" />
  8827. <ScalarProperty Name="toCurr" ColumnName="toCurr" />
  8828. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  8829. <ScalarProperty Name="Id" ColumnName="Id" />
  8830. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8831. <ScalarProperty Name="Area" ColumnName="Area" />
  8832. <ScalarProperty Name="ServiceCompany" ColumnName="ServiceCompany" />
  8833. <ScalarProperty Name="ServiceGuide" ColumnName="ServiceGuide" />
  8834. <ScalarProperty Name="ServiceTel" ColumnName="ServiceTel" />
  8835. <ScalarProperty Name="BusName" ColumnName="BusName" />
  8836. <ScalarProperty Name="BusDescription" ColumnName="BusDescription" />
  8837. <ScalarProperty Name="BusTel" ColumnName="BusTel" />
  8838. <ScalarProperty Name="ServiceStartTime" ColumnName="ServiceStartTime" />
  8839. <ScalarProperty Name="ServiceEndTime" ColumnName="ServiceEndTime" />
  8840. <ScalarProperty Name="ServiceDescription" ColumnName="ServiceDescription" />
  8841. <ScalarProperty Name="ServiceQuotedPrice" ColumnName="ServiceQuotedPrice" />
  8842. <ScalarProperty Name="CId" ColumnName="CId" />
  8843. <ScalarProperty Name="QuotedPriceExplanation" ColumnName="QuotedPriceExplanation" />
  8844. <ScalarProperty Name="OrbitalPrivateTransfer" ColumnName="OrbitalPrivateTransfer" />
  8845. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8846. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8847. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8848. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8849. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8850. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8851. <ScalarProperty Name="SelectCheck" ColumnName="SelectCheck" />
  8852. <ScalarProperty Name="PriceType" ColumnName="PriceType" />
  8853. </MappingFragment>
  8854. </EntityTypeMapping>
  8855. </EntitySetMapping>
  8856. <EntitySetMapping Name="Grp_CarTouristGuideGroundReservationsContent">
  8857. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarTouristGuideGroundReservationsContent">
  8858. <MappingFragment StoreEntitySet="Grp_CarTouristGuideGroundReservationsContent">
  8859. <ScalarProperty Name="Id" ColumnName="Id" />
  8860. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8861. <ScalarProperty Name="CTGGRId" ColumnName="CTGGRId" />
  8862. <ScalarProperty Name="SId" ColumnName="SId" />
  8863. <ScalarProperty Name="Price" ColumnName="Price" />
  8864. <ScalarProperty Name="PriceContent" ColumnName="PriceContent" />
  8865. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8866. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8867. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8868. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8869. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8870. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8871. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8872. <ScalarProperty Name="DatePrice" ColumnName="DatePrice" />
  8873. <ScalarProperty Name="Count" ColumnName="Count" />
  8874. <ScalarProperty Name="Units" ColumnName="Units" />
  8875. </MappingFragment>
  8876. </EntityTypeMapping>
  8877. </EntitySetMapping>
  8878. <EntitySetMapping Name="Grp_CarTouristGuideGroundReservationsContentOld">
  8879. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarTouristGuideGroundReservationsContentOld">
  8880. <MappingFragment StoreEntitySet="Grp_CarTouristGuideGroundReservationsContentOld">
  8881. <ScalarProperty Name="Id" ColumnName="Id" />
  8882. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8883. <ScalarProperty Name="CTGGRId" ColumnName="CTGGRId" />
  8884. <ScalarProperty Name="SId" ColumnName="SId" />
  8885. <ScalarProperty Name="Price" ColumnName="Price" />
  8886. <ScalarProperty Name="PriceContent" ColumnName="PriceContent" />
  8887. <ScalarProperty Name="Currency" ColumnName="Currency" />
  8888. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8889. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8890. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8891. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8892. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8893. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8894. <ScalarProperty Name="DatePrice" ColumnName="DatePrice" />
  8895. <ScalarProperty Name="Count" ColumnName="Count" />
  8896. <ScalarProperty Name="Units" ColumnName="Units" />
  8897. </MappingFragment>
  8898. </EntityTypeMapping>
  8899. </EntitySetMapping>
  8900. <EntitySetMapping Name="Grp_CarTouristGuideGroundReservationsOld">
  8901. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CarTouristGuideGroundReservationsOld">
  8902. <MappingFragment StoreEntitySet="Grp_CarTouristGuideGroundReservationsOld">
  8903. <ScalarProperty Name="Id" ColumnName="Id" />
  8904. <ScalarProperty Name="DiId" ColumnName="DiId" />
  8905. <ScalarProperty Name="Area" ColumnName="Area" />
  8906. <ScalarProperty Name="ServiceCompany" ColumnName="ServiceCompany" />
  8907. <ScalarProperty Name="ServiceGuide" ColumnName="ServiceGuide" />
  8908. <ScalarProperty Name="ServiceTel" ColumnName="ServiceTel" />
  8909. <ScalarProperty Name="BusName" ColumnName="BusName" />
  8910. <ScalarProperty Name="BusDescription" ColumnName="BusDescription" />
  8911. <ScalarProperty Name="BusTel" ColumnName="BusTel" />
  8912. <ScalarProperty Name="ServiceStartTime" ColumnName="ServiceStartTime" />
  8913. <ScalarProperty Name="ServiceEndTime" ColumnName="ServiceEndTime" />
  8914. <ScalarProperty Name="ServiceDescription" ColumnName="ServiceDescription" />
  8915. <ScalarProperty Name="ServiceQuotedPrice" ColumnName="ServiceQuotedPrice" />
  8916. <ScalarProperty Name="CId" ColumnName="CId" />
  8917. <ScalarProperty Name="QuotedPriceExplanation" ColumnName="QuotedPriceExplanation" />
  8918. <ScalarProperty Name="OrbitalPrivateTransfer" ColumnName="OrbitalPrivateTransfer" />
  8919. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8920. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8921. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8922. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8923. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8924. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8925. <ScalarProperty Name="SelectCheck" ColumnName="SelectCheck" />
  8926. </MappingFragment>
  8927. </EntityTypeMapping>
  8928. </EntitySetMapping>
  8929. <EntitySetMapping Name="Grp_CheckBoxs">
  8930. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CheckBoxs">
  8931. <MappingFragment StoreEntitySet="Grp_CheckBoxs">
  8932. <ScalarProperty Name="Id" ColumnName="Id" />
  8933. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8934. <ScalarProperty Name="CbType" ColumnName="CbType" />
  8935. <ScalarProperty Name="CbValues" ColumnName="CbValues" />
  8936. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8937. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8938. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8939. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8940. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8941. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8942. </MappingFragment>
  8943. </EntityTypeMapping>
  8944. </EntitySetMapping>
  8945. <EntitySetMapping Name="Grp_CostTypeHotelNumber">
  8946. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CostTypeHotelNumber">
  8947. <MappingFragment StoreEntitySet="Grp_CostTypeHotelNumber">
  8948. <ScalarProperty Name="Id" ColumnName="Id" />
  8949. <ScalarProperty Name="SGR" ColumnName="SGR" />
  8950. <ScalarProperty Name="TBR" ColumnName="TBR" />
  8951. <ScalarProperty Name="JSES" ColumnName="JSES" />
  8952. <ScalarProperty Name="SUITE" ColumnName="SUITE" />
  8953. <ScalarProperty Name="Type" ColumnName="Type" />
  8954. <ScalarProperty Name="Diid" ColumnName="Diid" />
  8955. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  8956. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  8957. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  8958. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  8959. <ScalarProperty Name="Remark" ColumnName="Remark" />
  8960. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  8961. </MappingFragment>
  8962. </EntityTypeMapping>
  8963. </EntitySetMapping>
  8964. <EntitySetMapping Name="Grp_CreditCardPayment">
  8965. <EntityTypeMapping TypeName="oa2023DBModel.Grp_CreditCardPayment">
  8966. <MappingFragment StoreEntitySet="Grp_CreditCardPayment">
  8967. <ScalarProperty Name="Id" ColumnName="Id" />
  8968. <ScalarProperty Name="DIId" ColumnName="DIId" />
  8969. <ScalarProperty Name="CId" ColumnName="CId" />
  8970. <ScalarProperty Name="CTable" ColumnName="CTable" />
  8971. <ScalarProperty Name="PayDId" ColumnName="PayDId" />
  8972. <ScalarProperty Name="ConsumptionPatterns" ColumnName="ConsumptionPatterns" />
  8973. <ScalarProperty Name="ConsumptionDate" ColumnName="ConsumptionDate" />
  8974. <ScalarProperty Name="CTDId" ColumnName="CTDId" />
  8975. <ScalarProperty Name="BankNo" ColumnName="BankNo" />
  8976. <ScalarProperty Name="CardholderName" ColumnName="CardholderName" />
  8977. <ScalarProperty Name="PayMoney" ColumnName="PayMoney" />
  8978. <ScalarProperty Name="PaymentCurrency" ColumnName="PaymentCurrency" />
  8979. <ScalarProperty Name="DayRate" ColumnName="DayRate" />
  8980. <ScalarProperty Name="CompanyBankNo" ColumnName="CompanyBankNo" />
  8981. <ScalarProperty Name="OtherBankName" ColumnName="OtherBankName" />
  8982. <ScalarProperty Name="OtherSideNo" ColumnName="OtherSideNo" />
  8983. <ScalarProperty Name="OtherSideName" ColumnName="OtherSideName" />
  8984. <ScalarProperty Name="MFOperator" ColumnName="MFOperator" />
  8985. <ScalarProperty Name="MFOperatorDate" ColumnName="MFOperatorDate" />
  8986. <ScalarProperty Name="IsAuditDM" ColumnName="IsAuditDM" />
  8987. <ScalarProperty Name="AuditDMOperate" ColumnName="AuditDMOperate" />
  8988. <ScalarProperty Name="AuditDMDate" ColumnName="AuditDMDate" />
  8989. <ScalarProperty Name="IsAuditMF" ColumnName="IsAuditMF" />
  8990. <ScalarProperty Name="AuditMFOperate" ColumnName="AuditMFOperate" />
  8991. <ScalarProperty Name="AuditMFDate" ColumnName="AuditMFDate" />
  8992. <ScalarProperty Name="IsAuditGM" ColumnName="IsAuditGM" />
  8993. <ScalarProperty Name="AuditGMOperate" ColumnName="AuditGMOperate" />
  8994. <ScalarProperty Name="AuditGMDate" ColumnName="AuditGMDate" />
  8995. <ScalarProperty Name="IsPay" ColumnName="IsPay" />
  8996. <ScalarProperty Name="PayPercentage" ColumnName="PayPercentage" />
  8997. <ScalarProperty Name="PayThenMoney" ColumnName="PayThenMoney" />
  8998. <ScalarProperty Name="PayPercentageOld" ColumnName="PayPercentageOld" />
  8999. <ScalarProperty Name="PayThenMoneyOld" ColumnName="PayThenMoneyOld" />
  9000. <ScalarProperty Name="UpdateDate" ColumnName="UpdateDate" />
  9001. <ScalarProperty Name="Payee" ColumnName="Payee" />
  9002. <ScalarProperty Name="RMBPrice" ColumnName="RMBPrice" />
  9003. <ScalarProperty Name="OrbitalPrivateTransfer" ColumnName="OrbitalPrivateTransfer" />
  9004. <ScalarProperty Name="ExceedBudget" ColumnName="ExceedBudget" />
  9005. <ScalarProperty Name="IsMatchCreditCard" ColumnName="IsMatchCreditCard" />
  9006. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9007. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9008. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9009. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9010. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9011. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9012. </MappingFragment>
  9013. </EntityTypeMapping>
  9014. </EntitySetMapping>
  9015. <EntitySetMapping Name="Grp_Customers">
  9016. <EntityTypeMapping TypeName="oa2023DBModel.Grp_Customers">
  9017. <MappingFragment StoreEntitySet="Grp_Customers">
  9018. <ScalarProperty Name="Id" ColumnName="Id" />
  9019. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9020. <ScalarProperty Name="Iid" ColumnName="Iid" />
  9021. <ScalarProperty Name="ClientName" ColumnName="ClientName" />
  9022. <ScalarProperty Name="InsuranceCosts" ColumnName="InsuranceCosts" />
  9023. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9024. <ScalarProperty Name="Attachment" ColumnName="Attachment" />
  9025. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9026. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9027. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9028. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9029. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9030. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9031. </MappingFragment>
  9032. </EntityTypeMapping>
  9033. </EntitySetMapping>
  9034. <EntitySetMapping Name="Grp_DayAndCost">
  9035. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DayAndCost">
  9036. <MappingFragment StoreEntitySet="Grp_DayAndCost">
  9037. <ScalarProperty Name="Id" ColumnName="Id" />
  9038. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9039. <ScalarProperty Name="Type" ColumnName="Type" />
  9040. <ScalarProperty Name="Days" ColumnName="Days" />
  9041. <ScalarProperty Name="NationalTravelFeeId" ColumnName="NationalTravelFeeId" />
  9042. <ScalarProperty Name="Place" ColumnName="Place" />
  9043. <ScalarProperty Name="Cost" ColumnName="Cost" />
  9044. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9045. <ScalarProperty Name="SubTotal" ColumnName="SubTotal" />
  9046. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9047. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9048. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9049. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9050. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9051. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9052. </MappingFragment>
  9053. </EntityTypeMapping>
  9054. </EntitySetMapping>
  9055. <EntitySetMapping Name="Grp_DecreasePayments">
  9056. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DecreasePayments">
  9057. <MappingFragment StoreEntitySet="Grp_DecreasePayments">
  9058. <ScalarProperty Name="IsSelect" ColumnName="IsSelect" />
  9059. <ScalarProperty Name="OTAOrderNo" ColumnName="OTAOrderNo" />
  9060. <ScalarProperty Name="FeeTotal" ColumnName="FeeTotal" />
  9061. <ScalarProperty Name="Quantity" ColumnName="Quantity" />
  9062. <ScalarProperty Name="SupplierAddress" ColumnName="SupplierAddress" />
  9063. <ScalarProperty Name="SupplierEmail" ColumnName="SupplierEmail" />
  9064. <ScalarProperty Name="SupplierSocialAccount" ColumnName="SupplierSocialAccount" />
  9065. <ScalarProperty Name="SupplierContactNumber" ColumnName="SupplierContactNumber" />
  9066. <ScalarProperty Name="SupplierContact" ColumnName="SupplierContact" />
  9067. <ScalarProperty Name="SupplierName" ColumnName="SupplierName" />
  9068. <ScalarProperty Name="SupplierTypeId" ColumnName="SupplierTypeId" />
  9069. <ScalarProperty Name="SupplierArea" ColumnName="SupplierArea" />
  9070. <ScalarProperty Name="Id" ColumnName="Id" />
  9071. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9072. <ScalarProperty Name="PriceName" ColumnName="PriceName" />
  9073. <ScalarProperty Name="Price" ColumnName="Price" />
  9074. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9075. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  9076. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9077. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9078. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9079. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9080. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9081. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9082. </MappingFragment>
  9083. </EntityTypeMapping>
  9084. </EntitySetMapping>
  9085. <EntitySetMapping Name="Grp_DeleClientNeeds">
  9086. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DeleClientNeeds">
  9087. <MappingFragment StoreEntitySet="Grp_DeleClientNeeds">
  9088. <ScalarProperty Name="Id" ColumnName="Id" />
  9089. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9090. <ScalarProperty Name="HotelName" ColumnName="HotelName" />
  9091. <ScalarProperty Name="HotelAddress" ColumnName="HotelAddress" />
  9092. <ScalarProperty Name="HotelStarRank" ColumnName="HotelStarRank" />
  9093. <ScalarProperty Name="HotelNeedRemark" ColumnName="HotelNeedRemark" />
  9094. <ScalarProperty Name="CabinName" ColumnName="CabinName" />
  9095. <ScalarProperty Name="CabinNeedRemark" ColumnName="CabinNeedRemark" />
  9096. <ScalarProperty Name="CarType" ColumnName="CarType" />
  9097. <ScalarProperty Name="CarNeedRemark" ColumnName="CarNeedRemark" />
  9098. <ScalarProperty Name="FoodNeedRemark" ColumnName="FoodNeedRemark" />
  9099. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9100. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9101. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9102. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9103. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9104. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9105. </MappingFragment>
  9106. </EntityTypeMapping>
  9107. </EntitySetMapping>
  9108. <EntitySetMapping Name="Grp_DeleFile">
  9109. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DeleFile">
  9110. <MappingFragment StoreEntitySet="Grp_DeleFile">
  9111. <ScalarProperty Name="Id" ColumnName="Id" />
  9112. <ScalarProperty Name="Diid" ColumnName="Diid" />
  9113. <ScalarProperty Name="Category" ColumnName="Category" />
  9114. <ScalarProperty Name="Kind" ColumnName="Kind" />
  9115. <ScalarProperty Name="FileName" ColumnName="FileName" />
  9116. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  9117. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9118. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9119. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9120. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9121. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9122. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9123. </MappingFragment>
  9124. </EntityTypeMapping>
  9125. </EntitySetMapping>
  9126. <EntitySetMapping Name="Grp_DelegationEnData">
  9127. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DelegationEnData">
  9128. <MappingFragment StoreEntitySet="Grp_DelegationEnData">
  9129. <ScalarProperty Name="Id" ColumnName="Id" />
  9130. <ScalarProperty Name="Area" ColumnName="Area" />
  9131. <ScalarProperty Name="Job" ColumnName="Job" />
  9132. <ScalarProperty Name="JobEn" ColumnName="JobEn" />
  9133. <ScalarProperty Name="DelegationSetting" ColumnName="DelegationSetting" />
  9134. <ScalarProperty Name="DelegationSettingEN" ColumnName="DelegationSettingEN" />
  9135. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9136. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9137. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9138. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9139. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9140. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9141. </MappingFragment>
  9142. </EntityTypeMapping>
  9143. </EntitySetMapping>
  9144. <EntitySetMapping Name="Grp_DelegationInfo">
  9145. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DelegationInfo">
  9146. <MappingFragment StoreEntitySet="Grp_DelegationInfo">
  9147. <ScalarProperty Name="IsBid" ColumnName="IsBid" />
  9148. <ScalarProperty Name="Id" ColumnName="Id" />
  9149. <ScalarProperty Name="SalesQuoteNo" ColumnName="SalesQuoteNo" />
  9150. <ScalarProperty Name="SalesDate" ColumnName="SalesDate" />
  9151. <ScalarProperty Name="ClientName" ColumnName="ClientName" />
  9152. <ScalarProperty Name="ClientUnit" ColumnName="ClientUnit" />
  9153. <ScalarProperty Name="TourCode" ColumnName="TourCode" />
  9154. <ScalarProperty Name="TeamName" ColumnName="TeamName" />
  9155. <ScalarProperty Name="TeamDid" ColumnName="TeamDid" />
  9156. <ScalarProperty Name="VisitDate" ColumnName="VisitDate" />
  9157. <ScalarProperty Name="VisitStartDate" ColumnName="VisitStartDate" />
  9158. <ScalarProperty Name="VisitEndDate" ColumnName="VisitEndDate" />
  9159. <ScalarProperty Name="VisitCountry" ColumnName="VisitCountry" />
  9160. <ScalarProperty Name="VisitPurpose" ColumnName="VisitPurpose" />
  9161. <ScalarProperty Name="VisitDays" ColumnName="VisitDays" />
  9162. <ScalarProperty Name="VisitPNumber" ColumnName="VisitPNumber" />
  9163. <ScalarProperty Name="SpecialNeeds" ColumnName="SpecialNeeds" />
  9164. <ScalarProperty Name="OtherNeeds" ColumnName="OtherNeeds" />
  9165. <ScalarProperty Name="ClientNeeds" ColumnName="ClientNeeds" />
  9166. <ScalarProperty Name="IsState" ColumnName="IsState" />
  9167. <ScalarProperty Name="JietuanOperator" ColumnName="JietuanOperator" />
  9168. <ScalarProperty Name="JietuanTime" ColumnName="JietuanTime" />
  9169. <ScalarProperty Name="GroupsOperator" ColumnName="GroupsOperator" />
  9170. <ScalarProperty Name="GroupsTime" ColumnName="GroupsTime" />
  9171. <ScalarProperty Name="BudgetCost" ColumnName="BudgetCost" />
  9172. <ScalarProperty Name="IsSure" ColumnName="IsSure" />
  9173. <ScalarProperty Name="SureTime" ColumnName="SureTime" />
  9174. <ScalarProperty Name="TellPhone" ColumnName="TellPhone" />
  9175. <ScalarProperty Name="WeChatNo" ColumnName="WeChatNo" />
  9176. <ScalarProperty Name="TeamLevSId" ColumnName="TeamLevSId" />
  9177. <ScalarProperty Name="HotelComplain" ColumnName="HotelComplain" />
  9178. <ScalarProperty Name="OPComplain" ColumnName="OPComplain" />
  9179. <ScalarProperty Name="VisaComplain" ColumnName="VisaComplain" />
  9180. <ScalarProperty Name="OAComplain" ColumnName="OAComplain" />
  9181. <ScalarProperty Name="AirComplain" ColumnName="AirComplain" />
  9182. <ScalarProperty Name="Director" ColumnName="Director" />
  9183. <ScalarProperty Name="TontractTime" ColumnName="TontractTime" />
  9184. <ScalarProperty Name="PaymentMoney" ColumnName="PaymentMoney" />
  9185. <ScalarProperty Name="PayDay" ColumnName="PayDay" />
  9186. <ScalarProperty Name="CGRWSPBMMC" ColumnName="CGRWSPBMMC" />
  9187. <ScalarProperty Name="CGRWSPWH" ColumnName="CGRWSPWH" />
  9188. <ScalarProperty Name="ZZSCBMMC" ColumnName="ZZSCBMMC" />
  9189. <ScalarProperty Name="ZZSCSPWH" ColumnName="ZZSCSPWH" />
  9190. <ScalarProperty Name="OpRoyaltyLv" ColumnName="OpRoyaltyLv" />
  9191. <ScalarProperty Name="OpRoyaltyRemark" ColumnName="OpRoyaltyRemark" />
  9192. <ScalarProperty Name="Officialneeds" ColumnName="Officialneeds" />
  9193. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9194. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9195. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9196. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9197. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9198. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9199. </MappingFragment>
  9200. </EntityTypeMapping>
  9201. </EntitySetMapping>
  9202. <EntitySetMapping Name="Grp_DelegationJoinCustomer">
  9203. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DelegationJoinCustomer">
  9204. <MappingFragment StoreEntitySet="Grp_DelegationJoinCustomer">
  9205. <ScalarProperty Name="Id" ColumnName="Id" />
  9206. <ScalarProperty Name="GrpDCId" ColumnName="GrpDCId" />
  9207. <ScalarProperty Name="CrmDCId" ColumnName="CrmDCId" />
  9208. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9209. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9210. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9211. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9212. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9213. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9214. </MappingFragment>
  9215. </EntityTypeMapping>
  9216. </EntitySetMapping>
  9217. <EntitySetMapping Name="Grp_DeleMeetingNeeds">
  9218. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DeleMeetingNeeds">
  9219. <MappingFragment StoreEntitySet="Grp_DeleMeetingNeeds">
  9220. <ScalarProperty Name="Id" ColumnName="Id" />
  9221. <ScalarProperty Name="DeleClientNeedId" ColumnName="DeleClientNeedId" />
  9222. <ScalarProperty Name="MeetingType" ColumnName="MeetingType" />
  9223. <ScalarProperty Name="MeetingDt" ColumnName="MeetingDt" />
  9224. <ScalarProperty Name="MeethingSeptal" ColumnName="MeethingSeptal" />
  9225. <ScalarProperty Name="Person" ColumnName="Person" />
  9226. <ScalarProperty Name="MeetingPrice" ColumnName="MeetingPrice" />
  9227. <ScalarProperty Name="Contact" ColumnName="Contact" />
  9228. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  9229. <ScalarProperty Name="NeedsChoose" ColumnName="NeedsChoose" />
  9230. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9231. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9232. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9233. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9234. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9235. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9236. </MappingFragment>
  9237. </EntityTypeMapping>
  9238. </EntitySetMapping>
  9239. <EntitySetMapping Name="Grp_EnterExitCost">
  9240. <EntityTypeMapping TypeName="oa2023DBModel.Grp_EnterExitCost">
  9241. <MappingFragment StoreEntitySet="Grp_EnterExitCost">
  9242. <ScalarProperty Name="TwoItemRemark" ColumnName="TwoItemRemark" />
  9243. <ScalarProperty Name="IsConfirm" ColumnName="IsConfirm" />
  9244. <ScalarProperty Name="OtherExpenses_Checked" ColumnName="OtherExpenses_Checked" />
  9245. <ScalarProperty Name="AirTDC_Checked" ColumnName="AirTDC_Checked" />
  9246. <ScalarProperty Name="SumTDC" ColumnName="SumTDC" />
  9247. <ScalarProperty Name="AirTD" ColumnName="AirTD" />
  9248. <ScalarProperty Name="OutsideTDPay" ColumnName="OutsideTDPay" />
  9249. <ScalarProperty Name="OutsideGWPay" ColumnName="OutsideGWPay" />
  9250. <ScalarProperty Name="FirstItemRemark" ColumnName="FirstItemRemark" />
  9251. <ScalarProperty Name="Id" ColumnName="Id" />
  9252. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9253. <ScalarProperty Name="InsidePay" ColumnName="InsidePay" />
  9254. <ScalarProperty Name="Visa" ColumnName="Visa" />
  9255. <ScalarProperty Name="VisaRemark" ColumnName="VisaRemark" />
  9256. <ScalarProperty Name="YiMiao" ColumnName="YiMiao" />
  9257. <ScalarProperty Name="HeSuan" ColumnName="HeSuan" />
  9258. <ScalarProperty Name="Service" ColumnName="Service" />
  9259. <ScalarProperty Name="Ticket" ColumnName="Ticket" />
  9260. <ScalarProperty Name="Safe" ColumnName="Safe" />
  9261. <ScalarProperty Name="OutsideJJPay" ColumnName="OutsideJJPay" />
  9262. <ScalarProperty Name="AirJJ" ColumnName="AirJJ" />
  9263. <ScalarProperty Name="AirGW" ColumnName="AirGW" />
  9264. <ScalarProperty Name="CityTranffic" ColumnName="CityTranffic" />
  9265. <ScalarProperty Name="RateUSD" ColumnName="RateUSD" />
  9266. <ScalarProperty Name="RateJPY" ColumnName="RateJPY" />
  9267. <ScalarProperty Name="RateEUR" ColumnName="RateEUR" />
  9268. <ScalarProperty Name="RateGBP" ColumnName="RateGBP" />
  9269. <ScalarProperty Name="RateHKD" ColumnName="RateHKD" />
  9270. <ScalarProperty Name="CurrencyRemark" ColumnName="CurrencyRemark" />
  9271. <ScalarProperty Name="ChoiceOne" ColumnName="ChoiceOne" />
  9272. <ScalarProperty Name="ChoiceTwo" ColumnName="ChoiceTwo" />
  9273. <ScalarProperty Name="ChoiceThree" ColumnName="ChoiceThree" />
  9274. <ScalarProperty Name="ChoiceFour" ColumnName="ChoiceFour" />
  9275. <ScalarProperty Name="ChoiceFive" ColumnName="ChoiceFive" />
  9276. <ScalarProperty Name="SumJJC" ColumnName="SumJJC" />
  9277. <ScalarProperty Name="SumGWC" ColumnName="SumGWC" />
  9278. <ScalarProperty Name="AirJJC_Checked" ColumnName="AirJJC_Checked" />
  9279. <ScalarProperty Name="AirGWC_Checked" ColumnName="AirGWC_Checked" />
  9280. <ScalarProperty Name="ChoiceSix" ColumnName="ChoiceSix" />
  9281. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9282. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9283. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9284. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9285. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9286. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9287. </MappingFragment>
  9288. </EntityTypeMapping>
  9289. </EntitySetMapping>
  9290. <EntitySetMapping Name="Grp_GroupCost">
  9291. <EntityTypeMapping TypeName="oa2023DBModel.Grp_GroupCost">
  9292. <MappingFragment StoreEntitySet="Grp_GroupCost">
  9293. <ScalarProperty Name="EFR" ColumnName="EFR" />
  9294. <ScalarProperty Name="Id" ColumnName="Id" />
  9295. <ScalarProperty Name="Diid" ColumnName="Diid" />
  9296. <ScalarProperty Name="DAY" ColumnName="DAY" />
  9297. <ScalarProperty Name="Date" ColumnName="Date" />
  9298. <ScalarProperty Name="ITIN" ColumnName="ITIN" />
  9299. <ScalarProperty Name="CarType" ColumnName="CarType" />
  9300. <ScalarProperty Name="CarCost" ColumnName="CarCost" />
  9301. <ScalarProperty Name="CarNumber" ColumnName="CarNumber" />
  9302. <ScalarProperty Name="CarTiming" ColumnName="CarTiming" />
  9303. <ScalarProperty Name="TGS" ColumnName="TGS" />
  9304. <ScalarProperty Name="TGWH" ColumnName="TGWH" />
  9305. <ScalarProperty Name="TGN" ColumnName="TGN" />
  9306. <ScalarProperty Name="TGOF" ColumnName="TGOF" />
  9307. <ScalarProperty Name="TGM" ColumnName="TGM" />
  9308. <ScalarProperty Name="TGA" ColumnName="TGA" />
  9309. <ScalarProperty Name="TGTF" ColumnName="TGTF" />
  9310. <ScalarProperty Name="TGEF" ColumnName="TGEF" />
  9311. <ScalarProperty Name="CFS" ColumnName="CFS" />
  9312. <ScalarProperty Name="CFM" ColumnName="CFM" />
  9313. <ScalarProperty Name="CFOF" ColumnName="CFOF" />
  9314. <ScalarProperty Name="B" ColumnName="B" />
  9315. <ScalarProperty Name="L" ColumnName="L" />
  9316. <ScalarProperty Name="D" ColumnName="D" />
  9317. <ScalarProperty Name="TBR" ColumnName="TBR" />
  9318. <ScalarProperty Name="SGR" ColumnName="SGR" />
  9319. <ScalarProperty Name="JS_ES" ColumnName="JS_ES" />
  9320. <ScalarProperty Name="Suite" ColumnName="Suite" />
  9321. <ScalarProperty Name="ACCON" ColumnName="ACCON" />
  9322. <ScalarProperty Name="TV" ColumnName="TV" />
  9323. <ScalarProperty Name="iL" ColumnName="iL" />
  9324. <ScalarProperty Name="IF" ColumnName="IF" />
  9325. <ScalarProperty Name="EF" ColumnName="EF" />
  9326. <ScalarProperty Name="B_R_F" ColumnName="B_R_F" />
  9327. <ScalarProperty Name="TE" ColumnName="TE" />
  9328. <ScalarProperty Name="TGTips" ColumnName="TGTips" />
  9329. <ScalarProperty Name="DRVTips" ColumnName="DRVTips" />
  9330. <ScalarProperty Name="PC" ColumnName="PC" />
  9331. <ScalarProperty Name="TLF" ColumnName="TLF" />
  9332. <ScalarProperty Name="ECT" ColumnName="ECT" />
  9333. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9334. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9335. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9336. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9337. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9338. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9339. <ScalarProperty Name="gwCount" ColumnName="gwCount" />
  9340. <ScalarProperty Name="fyCount" ColumnName="fyCount" />
  9341. </MappingFragment>
  9342. </EntityTypeMapping>
  9343. </EntitySetMapping>
  9344. <EntitySetMapping Name="Grp_GroupCostParameter">
  9345. <EntityTypeMapping TypeName="oa2023DBModel.Grp_GroupCostParameter">
  9346. <MappingFragment StoreEntitySet="Grp_GroupCostParameter">
  9347. <ScalarProperty Name="TDCRS" ColumnName="TDCRS" />
  9348. <ScalarProperty Name="TDCXS" ColumnName="TDCXS" />
  9349. <ScalarProperty Name="TDCCB" ColumnName="TDCCB" />
  9350. <ScalarProperty Name="Id" ColumnName="Id" />
  9351. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9352. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9353. <ScalarProperty Name="Rate" ColumnName="Rate" />
  9354. <ScalarProperty Name="Tax" ColumnName="Tax" />
  9355. <ScalarProperty Name="FFYS" ColumnName="FFYS" />
  9356. <ScalarProperty Name="HotelXS" ColumnName="HotelXS" />
  9357. <ScalarProperty Name="JJCCB" ColumnName="JJCCB" />
  9358. <ScalarProperty Name="JJCXS" ColumnName="JJCXS" />
  9359. <ScalarProperty Name="JJCRS" ColumnName="JJCRS" />
  9360. <ScalarProperty Name="GWCCB" ColumnName="GWCCB" />
  9361. <ScalarProperty Name="GWCXS" ColumnName="GWCXS" />
  9362. <ScalarProperty Name="GWCRS" ColumnName="GWCRS" />
  9363. <ScalarProperty Name="HCPCB" ColumnName="HCPCB" />
  9364. <ScalarProperty Name="HCPXS" ColumnName="HCPXS" />
  9365. <ScalarProperty Name="HCPRS" ColumnName="HCPRS" />
  9366. <ScalarProperty Name="CPCB" ColumnName="CPCB" />
  9367. <ScalarProperty Name="CPXS" ColumnName="CPXS" />
  9368. <ScalarProperty Name="CPRS" ColumnName="CPRS" />
  9369. <ScalarProperty Name="BXCB" ColumnName="BXCB" />
  9370. <ScalarProperty Name="BXXS" ColumnName="BXXS" />
  9371. <ScalarProperty Name="BXRS" ColumnName="BXRS" />
  9372. <ScalarProperty Name="HSCB" ColumnName="HSCB" />
  9373. <ScalarProperty Name="HSXS" ColumnName="HSXS" />
  9374. <ScalarProperty Name="HSRS" ColumnName="HSRS" />
  9375. <ScalarProperty Name="VisaCB" ColumnName="VisaCB" />
  9376. <ScalarProperty Name="VisaXS" ColumnName="VisaXS" />
  9377. <ScalarProperty Name="VisaRS" ColumnName="VisaRS" />
  9378. <ScalarProperty Name="GWCB" ColumnName="GWCB" />
  9379. <ScalarProperty Name="GWXS" ColumnName="GWXS" />
  9380. <ScalarProperty Name="GWRS" ColumnName="GWRS" />
  9381. <ScalarProperty Name="DJCB" ColumnName="DJCB" />
  9382. <ScalarProperty Name="DJXS" ColumnName="DJXS" />
  9383. <ScalarProperty Name="SGRCB" ColumnName="SGRCB" />
  9384. <ScalarProperty Name="SGRNumber" ColumnName="SGRNumber" />
  9385. <ScalarProperty Name="SGRXS" ColumnName="SGRXS" />
  9386. <ScalarProperty Name="TBRCB" ColumnName="TBRCB" />
  9387. <ScalarProperty Name="TBRNumber" ColumnName="TBRNumber" />
  9388. <ScalarProperty Name="TBRXS" ColumnName="TBRXS" />
  9389. <ScalarProperty Name="JSESCB" ColumnName="JSESCB" />
  9390. <ScalarProperty Name="JSESNumber" ColumnName="JSESNumber" />
  9391. <ScalarProperty Name="JSESXS" ColumnName="JSESXS" />
  9392. <ScalarProperty Name="SUITECB" ColumnName="SUITECB" />
  9393. <ScalarProperty Name="SUITENumber" ColumnName="SUITENumber" />
  9394. <ScalarProperty Name="SUITEXS" ColumnName="SUITEXS" />
  9395. <ScalarProperty Name="LYJCB" ColumnName="LYJCB" />
  9396. <ScalarProperty Name="LYJXS" ColumnName="LYJXS" />
  9397. <ScalarProperty Name="LYJRS" ColumnName="LYJRS" />
  9398. <ScalarProperty Name="IsShare" ColumnName="IsShare" />
  9399. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9400. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9401. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9402. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9403. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9404. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9405. <ScalarProperty Name="CostType" ColumnName="CostType" />
  9406. <ScalarProperty Name="CostTypeStartTime" ColumnName="CostTypeStartTime" />
  9407. <ScalarProperty Name="CostTypeendTime" ColumnName="CostTypeendTime" />
  9408. <ScalarProperty Name="CostTypenumber" ColumnName="CostTypenumber" />
  9409. <ScalarProperty Name="DJRS" ColumnName="DJRS" />
  9410. </MappingFragment>
  9411. </EntityTypeMapping>
  9412. </EntitySetMapping>
  9413. <EntitySetMapping Name="Grp_GroupsTaskAssignment">
  9414. <EntityTypeMapping TypeName="oa2023DBModel.Grp_GroupsTaskAssignment">
  9415. <MappingFragment StoreEntitySet="Grp_GroupsTaskAssignment">
  9416. <ScalarProperty Name="Id" ColumnName="Id" />
  9417. <ScalarProperty Name="DIId" ColumnName="DIId" />
  9418. <ScalarProperty Name="CTId" ColumnName="CTId" />
  9419. <ScalarProperty Name="UId" ColumnName="UId" />
  9420. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  9421. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9422. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9423. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9424. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9425. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9426. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9427. </MappingFragment>
  9428. </EntityTypeMapping>
  9429. </EntitySetMapping>
  9430. <EntitySetMapping Name="Grp_GuidesInfo">
  9431. <EntityTypeMapping TypeName="oa2023DBModel.Grp_GuidesInfo">
  9432. <MappingFragment StoreEntitySet="Grp_GuidesInfo">
  9433. <ScalarProperty Name="Id" ColumnName="Id" />
  9434. <ScalarProperty Name="Country" ColumnName="Country" />
  9435. <ScalarProperty Name="City" ColumnName="City" />
  9436. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  9437. <ScalarProperty Name="When" ColumnName="When" />
  9438. <ScalarProperty Name="Price" ColumnName="Price" />
  9439. <ScalarProperty Name="TranslationPrice" ColumnName="TranslationPrice" />
  9440. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  9441. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9442. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9443. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9444. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9445. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9446. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9447. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9448. </MappingFragment>
  9449. </EntityTypeMapping>
  9450. </EntitySetMapping>
  9451. <EntitySetMapping Name="Grp_HotelReservations">
  9452. <EntityTypeMapping TypeName="oa2023DBModel.Grp_HotelReservations">
  9453. <MappingFragment StoreEntitySet="Grp_HotelReservations">
  9454. <ScalarProperty Name="AreaId" ColumnName="AreaId" />
  9455. <ScalarProperty Name="Id" ColumnName="Id" />
  9456. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9457. <ScalarProperty Name="GTId" ColumnName="GTId" />
  9458. <ScalarProperty Name="CheckNumber" ColumnName="CheckNumber" />
  9459. <ScalarProperty Name="ReservationsWebsite" ColumnName="ReservationsWebsite" />
  9460. <ScalarProperty Name="ReservationsNo" ColumnName="ReservationsNo" />
  9461. <ScalarProperty Name="DetermineNo" ColumnName="DetermineNo" />
  9462. <ScalarProperty Name="City" ColumnName="City" />
  9463. <ScalarProperty Name="HotelName" ColumnName="HotelName" />
  9464. <ScalarProperty Name="HotelAddress" ColumnName="HotelAddress" />
  9465. <ScalarProperty Name="HotelTel" ColumnName="HotelTel" />
  9466. <ScalarProperty Name="HotelFax" ColumnName="HotelFax" />
  9467. <ScalarProperty Name="GuestName" ColumnName="GuestName" />
  9468. <ScalarProperty Name="CheckInDate" ColumnName="CheckInDate" />
  9469. <ScalarProperty Name="CheckOutDate" ColumnName="CheckOutDate" />
  9470. <ScalarProperty Name="Budget" ColumnName="Budget" />
  9471. <ScalarProperty Name="BudgetCurrency" ColumnName="BudgetCurrency" />
  9472. <ScalarProperty Name="SingleRoomCount" ColumnName="SingleRoomCount" />
  9473. <ScalarProperty Name="SingleRoomPrice" ColumnName="SingleRoomPrice" />
  9474. <ScalarProperty Name="DoubleRoomCount" ColumnName="DoubleRoomCount" />
  9475. <ScalarProperty Name="DoubleRoomPrice" ColumnName="DoubleRoomPrice" />
  9476. <ScalarProperty Name="SuiteRoomCount" ColumnName="SuiteRoomCount" />
  9477. <ScalarProperty Name="SuiteRoomPrice" ColumnName="SuiteRoomPrice" />
  9478. <ScalarProperty Name="OtherRoomCount" ColumnName="OtherRoomCount" />
  9479. <ScalarProperty Name="OtherRoomPrice" ColumnName="OtherRoomPrice" />
  9480. <ScalarProperty Name="Commission" ColumnName="Commission" />
  9481. <ScalarProperty Name="CommissionCurrency" ColumnName="CommissionCurrency" />
  9482. <ScalarProperty Name="CommissionMark" ColumnName="CommissionMark" />
  9483. <ScalarProperty Name="RoomExplanation" ColumnName="RoomExplanation" />
  9484. <ScalarProperty Name="Attachment" ColumnName="Attachment" />
  9485. <ScalarProperty Name="CardPrice" ColumnName="CardPrice" />
  9486. <ScalarProperty Name="CardPriceCurrency" ColumnName="CardPriceCurrency" />
  9487. <ScalarProperty Name="IsCardPrice" ColumnName="IsCardPrice" />
  9488. <ScalarProperty Name="BreakfastPrice" ColumnName="BreakfastPrice" />
  9489. <ScalarProperty Name="BreakfastCurrency" ColumnName="BreakfastCurrency" />
  9490. <ScalarProperty Name="Isoppay" ColumnName="Isoppay" />
  9491. <ScalarProperty Name="CboOne" ColumnName="CboOne" />
  9492. <ScalarProperty Name="CboTwo" ColumnName="CboTwo" />
  9493. <ScalarProperty Name="CboThree" ColumnName="CboThree" />
  9494. <ScalarProperty Name="CboFour" ColumnName="CboFour" />
  9495. <ScalarProperty Name="PredictSingleRoom" ColumnName="PredictSingleRoom" />
  9496. <ScalarProperty Name="PredictDoubleRoom" ColumnName="PredictDoubleRoom" />
  9497. <ScalarProperty Name="PredictSuiteRoom" ColumnName="PredictSuiteRoom" />
  9498. <ScalarProperty Name="PredictOtherRoom" ColumnName="PredictOtherRoom" />
  9499. <ScalarProperty Name="GovernmentRent" ColumnName="GovernmentRent" />
  9500. <ScalarProperty Name="GovernmentRentCurrency" ColumnName="GovernmentRentCurrency" />
  9501. <ScalarProperty Name="CityTax" ColumnName="CityTax" />
  9502. <ScalarProperty Name="CityTaxCurrency" ColumnName="CityTaxCurrency" />
  9503. <ScalarProperty Name="CheckType" ColumnName="CheckType" />
  9504. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9505. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9506. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9507. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9508. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9509. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9510. </MappingFragment>
  9511. </EntityTypeMapping>
  9512. </EntitySetMapping>
  9513. <EntitySetMapping Name="Grp_InsuranceCost">
  9514. <EntityTypeMapping TypeName="oa2023DBModel.Grp_InsuranceCost">
  9515. <MappingFragment StoreEntitySet="Grp_InsuranceCost">
  9516. <ScalarProperty Name="Id" ColumnName="Id" />
  9517. <ScalarProperty Name="GName" ColumnName="GName" />
  9518. <ScalarProperty Name="RechargeCost" ColumnName="RechargeCost" />
  9519. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9520. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9521. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9522. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9523. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9524. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9525. </MappingFragment>
  9526. </EntityTypeMapping>
  9527. </EntitySetMapping>
  9528. <EntitySetMapping Name="Grp_InvertedList">
  9529. <EntityTypeMapping TypeName="oa2023DBModel.Grp_InvertedList">
  9530. <MappingFragment StoreEntitySet="Grp_InvertedList">
  9531. <ScalarProperty Name="IsSelectedAirportdDropOff" ColumnName="IsSelectedAirportdDropOff" />
  9532. <ScalarProperty Name="IsSelectedPreTripMeeting" ColumnName="IsSelectedPreTripMeeting" />
  9533. <ScalarProperty Name="IsSelectedHotel" ColumnName="IsSelectedHotel" />
  9534. <ScalarProperty Name="IsSelectedAirTicket" ColumnName="IsSelectedAirTicket" />
  9535. <ScalarProperty Name="IsSelectedIssueVisa" ColumnName="IsSelectedIssueVisa" />
  9536. <ScalarProperty Name="IsSelectedSendVisa" ColumnName="IsSelectedSendVisa" />
  9537. <ScalarProperty Name="IsSelectedVisaInfo" ColumnName="IsSelectedVisaInfo" />
  9538. <ScalarProperty Name="IsSelectedIssueApproval" ColumnName="IsSelectedIssueApproval" />
  9539. <ScalarProperty Name="IsSelectedApprovalData" ColumnName="IsSelectedApprovalData" />
  9540. <ScalarProperty Name="IsSelectedAirportd" ColumnName="IsSelectedAirportd" />
  9541. <ScalarProperty Name="HotelRemark" ColumnName="HotelRemark" />
  9542. <ScalarProperty Name="IsHotel" ColumnName="IsHotel" />
  9543. <ScalarProperty Name="HotelDt" ColumnName="HotelDt" />
  9544. <ScalarProperty Name="AirTicketRemark" ColumnName="AirTicketRemark" />
  9545. <ScalarProperty Name="IsAirTicket" ColumnName="IsAirTicket" />
  9546. <ScalarProperty Name="AirTicketDt" ColumnName="AirTicketDt" />
  9547. <ScalarProperty Name="Id" ColumnName="Id" />
  9548. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9549. <ScalarProperty Name="ApprovalDataDt" ColumnName="ApprovalDataDt" />
  9550. <ScalarProperty Name="IsApprovalData" ColumnName="IsApprovalData" />
  9551. <ScalarProperty Name="ApprovalDataRemark" ColumnName="ApprovalDataRemark" />
  9552. <ScalarProperty Name="ApprovalDt" ColumnName="ApprovalDt" />
  9553. <ScalarProperty Name="ApprovalType" ColumnName="ApprovalType" />
  9554. <ScalarProperty Name="IsApproval" ColumnName="IsApproval" />
  9555. <ScalarProperty Name="ApprovalRemark" ColumnName="ApprovalRemark" />
  9556. <ScalarProperty Name="IssueApprovalDt" ColumnName="IssueApprovalDt" />
  9557. <ScalarProperty Name="IsIssueApproval" ColumnName="IsIssueApproval" />
  9558. <ScalarProperty Name="IssueApprovalRemark" ColumnName="IssueApprovalRemark" />
  9559. <ScalarProperty Name="ApplyPassportDt" ColumnName="ApplyPassportDt" />
  9560. <ScalarProperty Name="IsApplyPassport" ColumnName="IsApplyPassport" />
  9561. <ScalarProperty Name="ApplyPassportRemark" ColumnName="ApplyPassportRemark" />
  9562. <ScalarProperty Name="VisaInformationDt" ColumnName="VisaInformationDt" />
  9563. <ScalarProperty Name="IsVisaInformation" ColumnName="IsVisaInformation" />
  9564. <ScalarProperty Name="VisaInformationRemark" ColumnName="VisaInformationRemark" />
  9565. <ScalarProperty Name="SendVisaDt" ColumnName="SendVisaDt" />
  9566. <ScalarProperty Name="IsSendVisa" ColumnName="IsSendVisa" />
  9567. <ScalarProperty Name="SendVisaRemark" ColumnName="SendVisaRemark" />
  9568. <ScalarProperty Name="IssueVisaDt" ColumnName="IssueVisaDt" />
  9569. <ScalarProperty Name="IsIssueVisa" ColumnName="IsIssueVisa" />
  9570. <ScalarProperty Name="IssueVisaRemark" ColumnName="IssueVisaRemark" />
  9571. <ScalarProperty Name="PreTripMeetingDt" ColumnName="PreTripMeetingDt" />
  9572. <ScalarProperty Name="IsPreTripMeeting" ColumnName="IsPreTripMeeting" />
  9573. <ScalarProperty Name="PreTripMeetingRemark" ColumnName="PreTripMeetingRemark" />
  9574. <ScalarProperty Name="AirportdDropOffDt" ColumnName="AirportdDropOffDt" />
  9575. <ScalarProperty Name="IsAirportdDropOff" ColumnName="IsAirportdDropOff" />
  9576. <ScalarProperty Name="AirportdDropOffRemark" ColumnName="AirportdDropOffRemark" />
  9577. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9578. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9579. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9580. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9581. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9582. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9583. </MappingFragment>
  9584. </EntityTypeMapping>
  9585. </EntitySetMapping>
  9586. <EntitySetMapping Name="Grp_InvertedListVisaCountry">
  9587. <EntityTypeMapping TypeName="oa2023DBModel.Grp_InvertedListVisaCountry">
  9588. <MappingFragment StoreEntitySet="Grp_InvertedListVisaCountry">
  9589. <ScalarProperty Name="Id" ColumnName="Id" />
  9590. <ScalarProperty Name="ILId" ColumnName="ILId" />
  9591. <ScalarProperty Name="Country" ColumnName="Country" />
  9592. <ScalarProperty Name="OfficialTypeId" ColumnName="OfficialTypeId" />
  9593. <ScalarProperty Name="VisaTypeId" ColumnName="VisaTypeId" />
  9594. <ScalarProperty Name="VisaDay" ColumnName="VisaDay" />
  9595. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9596. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9597. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9598. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9599. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9600. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9601. </MappingFragment>
  9602. </EntityTypeMapping>
  9603. </EntitySetMapping>
  9604. <EntitySetMapping Name="Grp_InvitationOfficialActivities">
  9605. <EntityTypeMapping TypeName="oa2023DBModel.Grp_InvitationOfficialActivities">
  9606. <MappingFragment StoreEntitySet="Grp_InvitationOfficialActivities">
  9607. <ScalarProperty Name="DataId" ColumnName="DataId" />
  9608. <ScalarProperty Name="Id" ColumnName="Id" />
  9609. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9610. <ScalarProperty Name="InviterArea" ColumnName="InviterArea" />
  9611. <ScalarProperty Name="Inviter" ColumnName="Inviter" />
  9612. <ScalarProperty Name="InviteTime" ColumnName="InviteTime" />
  9613. <ScalarProperty Name="Attachment" ColumnName="Attachment" />
  9614. <ScalarProperty Name="InviteCost" ColumnName="InviteCost" />
  9615. <ScalarProperty Name="InviteCurrency" ColumnName="InviteCurrency" />
  9616. <ScalarProperty Name="SendCost" ColumnName="SendCost" />
  9617. <ScalarProperty Name="SendCurrency" ColumnName="SendCurrency" />
  9618. <ScalarProperty Name="EventsCost" ColumnName="EventsCost" />
  9619. <ScalarProperty Name="EventsCurrency" ColumnName="EventsCurrency" />
  9620. <ScalarProperty Name="TranslateCost" ColumnName="TranslateCost" />
  9621. <ScalarProperty Name="TranslateCurrency" ColumnName="TranslateCurrency" />
  9622. <ScalarProperty Name="IsGoOfficaiaBussiness" ColumnName="IsGoOfficaiaBussiness" />
  9623. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9624. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9625. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9626. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9627. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9628. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9629. </MappingFragment>
  9630. </EntityTypeMapping>
  9631. </EntitySetMapping>
  9632. <EntitySetMapping Name="Grp_NationalTravelFee">
  9633. <EntityTypeMapping TypeName="oa2023DBModel.Grp_NationalTravelFee">
  9634. <MappingFragment StoreEntitySet="Grp_NationalTravelFee">
  9635. <ScalarProperty Name="Id" ColumnName="Id" />
  9636. <ScalarProperty Name="Continent" ColumnName="Continent" />
  9637. <ScalarProperty Name="Country" ColumnName="Country" />
  9638. <ScalarProperty Name="City" ColumnName="City" />
  9639. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9640. <ScalarProperty Name="RoomCost" ColumnName="RoomCost" />
  9641. <ScalarProperty Name="FoodCost" ColumnName="FoodCost" />
  9642. <ScalarProperty Name="PublicCost" ColumnName="PublicCost" />
  9643. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  9644. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  9645. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9646. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9647. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9648. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9649. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9650. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9651. </MappingFragment>
  9652. </EntityTypeMapping>
  9653. </EntitySetMapping>
  9654. <EntitySetMapping Name="Grp_ScenicSpotInfo">
  9655. <EntityTypeMapping TypeName="oa2023DBModel.Grp_ScenicSpotInfo">
  9656. <MappingFragment StoreEntitySet="Grp_ScenicSpotInfo">
  9657. <ScalarProperty Name="Id" ColumnName="Id" />
  9658. <ScalarProperty Name="Country" ColumnName="Country" />
  9659. <ScalarProperty Name="City" ColumnName="City" />
  9660. <ScalarProperty Name="ScenicSpot" ColumnName="ScenicSpot" />
  9661. <ScalarProperty Name="ScenicSpotDetail" ColumnName="ScenicSpotDetail" />
  9662. <ScalarProperty Name="Price" ColumnName="Price" />
  9663. <ScalarProperty Name="Currency" ColumnName="Currency" />
  9664. <ScalarProperty Name="Rate" ColumnName="Rate" />
  9665. <ScalarProperty Name="Address" ColumnName="Address" />
  9666. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9667. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9668. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9669. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9670. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9671. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9672. </MappingFragment>
  9673. </EntityTypeMapping>
  9674. </EntitySetMapping>
  9675. <EntitySetMapping Name="Grp_Schedule">
  9676. <EntityTypeMapping TypeName="oa2023DBModel.Grp_Schedule">
  9677. <MappingFragment StoreEntitySet="Grp_Schedule">
  9678. <ScalarProperty Name="Id" ColumnName="Id" />
  9679. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9680. <ScalarProperty Name="PrimaryStep" ColumnName="PrimaryStep" />
  9681. <ScalarProperty Name="ExpectBeginDt" ColumnName="ExpectBeginDt" />
  9682. <ScalarProperty Name="ExpectEndDt" ColumnName="ExpectEndDt" />
  9683. <ScalarProperty Name="RealBeginDt" ColumnName="RealBeginDt" />
  9684. <ScalarProperty Name="RealEndDt" ColumnName="RealEndDt" />
  9685. <ScalarProperty Name="Leader" ColumnName="Leader" />
  9686. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9687. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9688. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9689. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9690. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9691. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9692. <ScalarProperty Name="Exception" ColumnName="Exception" />
  9693. </MappingFragment>
  9694. </EntityTypeMapping>
  9695. </EntitySetMapping>
  9696. <EntitySetMapping Name="Grp_ScheduleDetail">
  9697. <EntityTypeMapping TypeName="oa2023DBModel.Grp_ScheduleDetail">
  9698. <MappingFragment StoreEntitySet="Grp_ScheduleDetail">
  9699. <ScalarProperty Name="Id" ColumnName="Id" />
  9700. <ScalarProperty Name="SLevel" ColumnName="SLevel" />
  9701. <ScalarProperty Name="ScheduleId" ColumnName="ScheduleId" />
  9702. <ScalarProperty Name="Step" ColumnName="Step" />
  9703. <ScalarProperty Name="ParentStep" ColumnName="ParentStep" />
  9704. <ScalarProperty Name="StepStatus" ColumnName="StepStatus" />
  9705. <ScalarProperty Name="Duty" ColumnName="Duty" />
  9706. <ScalarProperty Name="JobContent" ColumnName="JobContent" />
  9707. <ScalarProperty Name="ExpectBeginDt" ColumnName="ExpectBeginDt" />
  9708. <ScalarProperty Name="ExpectEndDt" ColumnName="ExpectEndDt" />
  9709. <ScalarProperty Name="RealBeginDt" ColumnName="RealBeginDt" />
  9710. <ScalarProperty Name="RealEndDt" ColumnName="RealEndDt" />
  9711. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9712. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9713. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9714. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9715. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9716. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9717. <ScalarProperty Name="Exception" ColumnName="Exception" />
  9718. </MappingFragment>
  9719. </EntityTypeMapping>
  9720. </EntitySetMapping>
  9721. <EntitySetMapping Name="Grp_SchedulePerson">
  9722. <EntityTypeMapping TypeName="oa2023DBModel.Grp_SchedulePerson">
  9723. <MappingFragment StoreEntitySet="Grp_SchedulePerson">
  9724. <ScalarProperty Name="Id" ColumnName="Id" />
  9725. <ScalarProperty Name="ScheduleId" ColumnName="ScheduleId" />
  9726. <ScalarProperty Name="SysUserId" ColumnName="SysUserId" />
  9727. <ScalarProperty Name="SysUserName" ColumnName="SysUserName" />
  9728. <ScalarProperty Name="JobStr" ColumnName="JobStr" />
  9729. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9730. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9731. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9732. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9733. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9734. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9735. </MappingFragment>
  9736. </EntityTypeMapping>
  9737. </EntitySetMapping>
  9738. <EntitySetMapping Name="Grp_TeamRate">
  9739. <EntityTypeMapping TypeName="oa2023DBModel.Grp_TeamRate">
  9740. <MappingFragment StoreEntitySet="Grp_TeamRate">
  9741. <ScalarProperty Name="ID" ColumnName="ID" />
  9742. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9743. <ScalarProperty Name="CTable" ColumnName="CTable" />
  9744. <ScalarProperty Name="OtherRateCode" ColumnName="OtherRateCode" />
  9745. <ScalarProperty Name="OtherPrice" ColumnName="OtherPrice" />
  9746. <ScalarProperty Name="RateU" ColumnName="RateU" />
  9747. <ScalarProperty Name="RateE" ColumnName="RateE" />
  9748. <ScalarProperty Name="RateJ" ColumnName="RateJ" />
  9749. <ScalarProperty Name="RateH" ColumnName="RateH" />
  9750. <ScalarProperty Name="RateN" ColumnName="RateN" />
  9751. <ScalarProperty Name="RateS" ColumnName="RateS" />
  9752. <ScalarProperty Name="RateA" ColumnName="RateA" />
  9753. <ScalarProperty Name="RateC" ColumnName="RateC" />
  9754. <ScalarProperty Name="RateT" ColumnName="RateT" />
  9755. <ScalarProperty Name="RateBL" ColumnName="RateBL" />
  9756. <ScalarProperty Name="RateHB" ColumnName="RateHB" />
  9757. <ScalarProperty Name="RateFJD" ColumnName="RateFJD" />
  9758. <ScalarProperty Name="RateTL" ColumnName="RateTL" />
  9759. <ScalarProperty Name="RateRP" ColumnName="RateRP" />
  9760. <ScalarProperty Name="RatePeso" ColumnName="RatePeso" />
  9761. <ScalarProperty Name="RateMYR" ColumnName="RateMYR" />
  9762. <ScalarProperty Name="RateCZK" ColumnName="RateCZK" />
  9763. <ScalarProperty Name="RateMXN" ColumnName="RateMXN" />
  9764. <ScalarProperty Name="RateMOP" ColumnName="RateMOP" />
  9765. <ScalarProperty Name="RateARS" ColumnName="RateARS" />
  9766. <ScalarProperty Name="RateHUF" ColumnName="RateHUF" />
  9767. <ScalarProperty Name="RateRUB" ColumnName="RateRUB" />
  9768. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9769. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9770. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9771. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9772. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9773. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9774. </MappingFragment>
  9775. </EntityTypeMapping>
  9776. </EntitySetMapping>
  9777. <EntitySetMapping Name="Grp_TourClientList">
  9778. <EntityTypeMapping TypeName="oa2023DBModel.Grp_TourClientList">
  9779. <MappingFragment StoreEntitySet="Grp_TourClientList">
  9780. <ScalarProperty Name="IsAccompany" ColumnName="IsAccompany" />
  9781. <ScalarProperty Name="Id" ColumnName="Id" />
  9782. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9783. <ScalarProperty Name="ClientId" ColumnName="ClientId" />
  9784. <ScalarProperty Name="ShippingSpaceTypeId" ColumnName="ShippingSpaceTypeId" />
  9785. <ScalarProperty Name="ShippingSpaceSpecialNeeds" ColumnName="ShippingSpaceSpecialNeeds" />
  9786. <ScalarProperty Name="HotelSpecialNeeds" ColumnName="HotelSpecialNeeds" />
  9787. <ScalarProperty Name="MealSpecialNeeds" ColumnName="MealSpecialNeeds" />
  9788. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9789. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9790. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9791. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9792. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9793. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9794. </MappingFragment>
  9795. </EntityTypeMapping>
  9796. </EntitySetMapping>
  9797. <EntitySetMapping Name="Grp_TravelList">
  9798. <EntityTypeMapping TypeName="oa2023DBModel.Grp_TravelList">
  9799. <MappingFragment StoreEntitySet="Grp_TravelList">
  9800. <ScalarProperty Name="Id" ColumnName="Id" />
  9801. <ScalarProperty Name="Diid" ColumnName="Diid" />
  9802. <ScalarProperty Name="Days" ColumnName="Days" />
  9803. <ScalarProperty Name="Date" ColumnName="Date" />
  9804. <ScalarProperty Name="WeekDay" ColumnName="WeekDay" />
  9805. <ScalarProperty Name="Traffic_First" ColumnName="Traffic_First" />
  9806. <ScalarProperty Name="Traffic_Second" ColumnName="Traffic_Second" />
  9807. <ScalarProperty Name="Trip" ColumnName="Trip" />
  9808. <ScalarProperty Name="Diffgroup" ColumnName="Diffgroup" />
  9809. <ScalarProperty Name="Issel" ColumnName="Issel" />
  9810. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9811. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9812. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9813. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9814. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9815. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9816. </MappingFragment>
  9817. </EntityTypeMapping>
  9818. </EntitySetMapping>
  9819. <EntitySetMapping Name="Grp_VisaFeeInfo">
  9820. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaFeeInfo">
  9821. <MappingFragment StoreEntitySet="Grp_VisaFeeInfo">
  9822. <ScalarProperty Name="OBType" ColumnName="OBType" />
  9823. <ScalarProperty Name="Id" ColumnName="Id" />
  9824. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9825. <ScalarProperty Name="IsChecked" ColumnName="IsChecked" />
  9826. <ScalarProperty Name="CountryVisaFeeId" ColumnName="CountryVisaFeeId" />
  9827. <ScalarProperty Name="AgencyFee" ColumnName="AgencyFee" />
  9828. <ScalarProperty Name="OtherFee" ColumnName="OtherFee" />
  9829. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9830. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9831. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9832. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9833. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9834. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9835. </MappingFragment>
  9836. </EntityTypeMapping>
  9837. </EntitySetMapping>
  9838. <EntitySetMapping Name="Grp_VisaProgress">
  9839. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaProgress">
  9840. <MappingFragment StoreEntitySet="Grp_VisaProgress">
  9841. <ScalarProperty Name="Id" ColumnName="Id" />
  9842. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9843. <ScalarProperty Name="Country" ColumnName="Country" />
  9844. <ScalarProperty Name="GetData" ColumnName="GetData" />
  9845. <ScalarProperty Name="GetDataTime" ColumnName="GetDataTime" />
  9846. <ScalarProperty Name="GetPassport" ColumnName="GetPassport" />
  9847. <ScalarProperty Name="GetPassportTime" ColumnName="GetPassportTime" />
  9848. <ScalarProperty Name="FillData" ColumnName="FillData" />
  9849. <ScalarProperty Name="FillDataTime" ColumnName="FillDataTime" />
  9850. <ScalarProperty Name="SendVisa" ColumnName="SendVisa" />
  9851. <ScalarProperty Name="SendVisaTime" ColumnName="SendVisaTime" />
  9852. <ScalarProperty Name="SignOut" ColumnName="SignOut" />
  9853. <ScalarProperty Name="SignOutTime" ColumnName="SignOutTime" />
  9854. <ScalarProperty Name="SendBackPassport" ColumnName="SendBackPassport" />
  9855. <ScalarProperty Name="SendBackPassporTime" ColumnName="SendBackPassporTime" />
  9856. <ScalarProperty Name="Receiver" ColumnName="Receiver" />
  9857. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9858. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9859. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9860. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9861. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9862. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9863. </MappingFragment>
  9864. </EntityTypeMapping>
  9865. </EntitySetMapping>
  9866. <EntitySetMapping Name="Grp_VisaProgressCustomer">
  9867. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaProgressCustomer">
  9868. <MappingFragment StoreEntitySet="Grp_VisaProgressCustomer">
  9869. <ScalarProperty Name="Id" ColumnName="Id" />
  9870. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9871. <ScalarProperty Name="CustomerId" ColumnName="CustomerId" />
  9872. <ScalarProperty Name="LastName" ColumnName="LastName" />
  9873. <ScalarProperty Name="FirstName" ColumnName="FirstName" />
  9874. <ScalarProperty Name="Country" ColumnName="Country" />
  9875. <ScalarProperty Name="WorkStatus" ColumnName="WorkStatus" />
  9876. <ScalarProperty Name="LastOperatorId" ColumnName="LastOperatorId" />
  9877. <ScalarProperty Name="LastOperatorDt" ColumnName="LastOperatorDt" />
  9878. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9879. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9880. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9881. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9882. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9883. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9884. </MappingFragment>
  9885. </EntityTypeMapping>
  9886. </EntitySetMapping>
  9887. <EntitySetMapping Name="Grp_VisaProgressCustomerPicture">
  9888. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaProgressCustomerPicture">
  9889. <MappingFragment StoreEntitySet="Grp_VisaProgressCustomerPicture">
  9890. <ScalarProperty Name="Id" ColumnName="Id" />
  9891. <ScalarProperty Name="VisaProgressCustomerId" ColumnName="VisaProgressCustomerId" />
  9892. <ScalarProperty Name="PicName" ColumnName="PicName" />
  9893. <ScalarProperty Name="PicPath" ColumnName="PicPath" />
  9894. <ScalarProperty Name="PicType" ColumnName="PicType" />
  9895. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9896. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9897. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9898. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9899. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9900. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9901. </MappingFragment>
  9902. </EntityTypeMapping>
  9903. </EntitySetMapping>
  9904. <EntitySetMapping Name="Pm_TaskAllocation">
  9905. <EntityTypeMapping TypeName="oa2023DBModel.Pm_TaskAllocation">
  9906. <MappingFragment StoreEntitySet="Pm_TaskAllocation">
  9907. <ScalarProperty Name="Id" ColumnName="Id" />
  9908. <ScalarProperty Name="DiId" ColumnName="DiId" />
  9909. <ScalarProperty Name="DepId" ColumnName="DepId" />
  9910. <ScalarProperty Name="TaskName" ColumnName="TaskName" />
  9911. <ScalarProperty Name="TaskContent" ColumnName="TaskContent" />
  9912. <ScalarProperty Name="TaskPriority" ColumnName="TaskPriority" />
  9913. <ScalarProperty Name="PredictBeginTime" ColumnName="PredictBeginTime" />
  9914. <ScalarProperty Name="PredictEndTime" ColumnName="PredictEndTime" />
  9915. <ScalarProperty Name="Status" ColumnName="Status" />
  9916. <ScalarProperty Name="IsComplete" ColumnName="IsComplete" />
  9917. <ScalarProperty Name="IsIntoPerformance" ColumnName="IsIntoPerformance" />
  9918. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9919. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9920. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9921. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9922. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9923. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9924. </MappingFragment>
  9925. </EntityTypeMapping>
  9926. </EntitySetMapping>
  9927. <EntitySetMapping Name="Pm_TaskJobRelevancy">
  9928. <EntityTypeMapping TypeName="oa2023DBModel.Pm_TaskJobRelevancy">
  9929. <MappingFragment StoreEntitySet="Pm_TaskJobRelevancy">
  9930. <ScalarProperty Name="Id" ColumnName="Id" />
  9931. <ScalarProperty Name="PrimaryUserId" ColumnName="PrimaryUserId" />
  9932. <ScalarProperty Name="SubUserId" ColumnName="SubUserId" />
  9933. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9934. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9935. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9936. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9937. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9938. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9939. </MappingFragment>
  9940. </EntityTypeMapping>
  9941. </EntitySetMapping>
  9942. <EntitySetMapping Name="Pm_TaskRelevanceUser">
  9943. <EntityTypeMapping TypeName="oa2023DBModel.Pm_TaskRelevanceUser">
  9944. <MappingFragment StoreEntitySet="Pm_TaskRelevanceUser">
  9945. <ScalarProperty Name="Id" ColumnName="Id" />
  9946. <ScalarProperty Name="TAId" ColumnName="TAId" />
  9947. <ScalarProperty Name="UserId" ColumnName="UserId" />
  9948. <ScalarProperty Name="BeginTime" ColumnName="BeginTime" />
  9949. <ScalarProperty Name="OverTime" ColumnName="OverTime" />
  9950. <ScalarProperty Name="TaskStatus" ColumnName="TaskStatus" />
  9951. <ScalarProperty Name="Cause" ColumnName="Cause" />
  9952. <ScalarProperty Name="Score" ColumnName="Score" />
  9953. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9954. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9955. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9956. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9957. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9958. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9959. </MappingFragment>
  9960. </EntityTypeMapping>
  9961. </EntitySetMapping>
  9962. <EntitySetMapping Name="Pm_WageIssueWorkingDay">
  9963. <EntityTypeMapping TypeName="oa2023DBModel.Pm_WageIssueWorkingDay">
  9964. <MappingFragment StoreEntitySet="Pm_WageIssueWorkingDay">
  9965. <ScalarProperty Name="Id" ColumnName="Id" />
  9966. <ScalarProperty Name="YearMonth" ColumnName="YearMonth" />
  9967. <ScalarProperty Name="StartDate" ColumnName="StartDate" />
  9968. <ScalarProperty Name="EndDate" ColumnName="EndDate" />
  9969. <ScalarProperty Name="Workdays" ColumnName="Workdays" />
  9970. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  9971. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  9972. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  9973. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  9974. <ScalarProperty Name="Remark" ColumnName="Remark" />
  9975. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  9976. </MappingFragment>
  9977. </EntityTypeMapping>
  9978. </EntitySetMapping>
  9979. <EntitySetMapping Name="Pm_WageSheet">
  9980. <EntityTypeMapping TypeName="oa2023DBModel.Pm_WageSheet">
  9981. <MappingFragment StoreEntitySet="Pm_WageSheet">
  9982. <ScalarProperty Name="Id" ColumnName="Id" />
  9983. <ScalarProperty Name="UserId" ColumnName="UserId" />
  9984. <ScalarProperty Name="YearMonth" ColumnName="YearMonth" />
  9985. <ScalarProperty Name="StartDate" ColumnName="StartDate" />
  9986. <ScalarProperty Name="EndDate" ColumnName="EndDate" />
  9987. <ScalarProperty Name="WorkDays" ColumnName="WorkDays" />
  9988. <ScalarProperty Name="RegularDays" ColumnName="RegularDays" />
  9989. <ScalarProperty Name="Basic" ColumnName="Basic" />
  9990. <ScalarProperty Name="Floats" ColumnName="Floats" />
  9991. <ScalarProperty Name="PostAllowance" ColumnName="PostAllowance" />
  9992. <ScalarProperty Name="GarmentWashSubsidies" ColumnName="GarmentWashSubsidies" />
  9993. <ScalarProperty Name="CommunicationSubsidies" ColumnName="CommunicationSubsidies" />
  9994. <ScalarProperty Name="TrafficSubsidies" ColumnName="TrafficSubsidies" />
  9995. <ScalarProperty Name="InformationSecurityFee" ColumnName="InformationSecurityFee" />
  9996. <ScalarProperty Name="OtherHandle" ColumnName="OtherHandle" />
  9997. <ScalarProperty Name="OperationBonus" ColumnName="OperationBonus" />
  9998. <ScalarProperty Name="SpecialAllowance" ColumnName="SpecialAllowance" />
  9999. <ScalarProperty Name="OtherSubsidies" ColumnName="OtherSubsidies" />
  10000. <ScalarProperty Name="WithholdingInsurance" ColumnName="WithholdingInsurance" />
  10001. <ScalarProperty Name="Mealsupplement" ColumnName="Mealsupplement" />
  10002. <ScalarProperty Name="ReservedFunds" ColumnName="ReservedFunds" />
  10003. <ScalarProperty Name="GroupCost" ColumnName="GroupCost" />
  10004. <ScalarProperty Name="WithholdingTax" ColumnName="WithholdingTax" />
  10005. <ScalarProperty Name="SickLeave" ColumnName="SickLeave" />
  10006. <ScalarProperty Name="SomethingFalse" ColumnName="SomethingFalse" />
  10007. <ScalarProperty Name="LateTo" ColumnName="LateTo" />
  10008. <ScalarProperty Name="LeaveEarly" ColumnName="LeaveEarly" />
  10009. <ScalarProperty Name="Absenteeism" ColumnName="Absenteeism" />
  10010. <ScalarProperty Name="NotPunch" ColumnName="NotPunch" />
  10011. <ScalarProperty Name="OtherDeductions" ColumnName="OtherDeductions" />
  10012. <ScalarProperty Name="Ex_ItemsRemark" ColumnName="Ex_ItemsRemark" />
  10013. <ScalarProperty Name="Should" ColumnName="Should" />
  10014. <ScalarProperty Name="TotalDeductions" ColumnName="TotalDeductions" />
  10015. <ScalarProperty Name="TotalRealHair" ColumnName="TotalRealHair" />
  10016. <ScalarProperty Name="AfterTax" ColumnName="AfterTax" />
  10017. <ScalarProperty Name="IsLock" ColumnName="IsLock" />
  10018. <ScalarProperty Name="IsSure" ColumnName="IsSure" />
  10019. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  10020. <ScalarProperty Name="LastUpdateDt" ColumnName="LastUpdateDt" />
  10021. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10022. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10023. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10024. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10025. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10026. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10027. </MappingFragment>
  10028. </EntityTypeMapping>
  10029. </EntitySetMapping>
  10030. <EntitySetMapping Name="Res_AirCompany">
  10031. <EntityTypeMapping TypeName="oa2023DBModel.Res_AirCompany">
  10032. <MappingFragment StoreEntitySet="Res_AirCompany">
  10033. <ScalarProperty Name="Id" ColumnName="Id" />
  10034. <ScalarProperty Name="ShortCode" ColumnName="ShortCode" />
  10035. <ScalarProperty Name="CnName" ColumnName="CnName" />
  10036. <ScalarProperty Name="EnName" ColumnName="EnName" />
  10037. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10038. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10039. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10040. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10041. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10042. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10043. </MappingFragment>
  10044. </EntityTypeMapping>
  10045. </EntitySetMapping>
  10046. <EntitySetMapping Name="Res_AirTicketAgent">
  10047. <EntityTypeMapping TypeName="oa2023DBModel.Res_AirTicketAgent">
  10048. <MappingFragment StoreEntitySet="Res_AirTicketAgent">
  10049. <ScalarProperty Name="Id" ColumnName="Id" />
  10050. <ScalarProperty Name="Name" ColumnName="Name" />
  10051. <ScalarProperty Name="Account" ColumnName="Account" />
  10052. <ScalarProperty Name="Bank" ColumnName="Bank" />
  10053. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10054. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10055. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10056. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10057. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10058. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10059. </MappingFragment>
  10060. </EntityTypeMapping>
  10061. </EntitySetMapping>
  10062. <EntitySetMapping Name="Res_AskData">
  10063. <EntityTypeMapping TypeName="oa2023DBModel.Res_AskData">
  10064. <MappingFragment StoreEntitySet="Res_AskData">
  10065. <ScalarProperty Name="Id" ColumnName="Id" />
  10066. <ScalarProperty Name="DeleName" ColumnName="DeleName" />
  10067. <ScalarProperty Name="Country" ColumnName="Country" />
  10068. <ScalarProperty Name="Area" ColumnName="Area" />
  10069. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  10070. <ScalarProperty Name="Field" ColumnName="Field" />
  10071. <ScalarProperty Name="TalkCase" ColumnName="TalkCase" />
  10072. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10073. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10074. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10075. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10076. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10077. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10078. </MappingFragment>
  10079. </EntityTypeMapping>
  10080. </EntitySetMapping>
  10081. <EntitySetMapping Name="Res_CarData">
  10082. <EntityTypeMapping TypeName="oa2023DBModel.Res_CarData">
  10083. <MappingFragment StoreEntitySet="Res_CarData">
  10084. <ScalarProperty Name="LastUpdateTime_" ColumnName="LastUpdateTime " />
  10085. <ScalarProperty Name="LastUpdateUserId_" ColumnName="LastUpdateUserId " />
  10086. <ScalarProperty Name="Id" ColumnName="Id" />
  10087. <ScalarProperty Name="UnitArea" ColumnName="UnitArea" />
  10088. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  10089. <ScalarProperty Name="Address" ColumnName="Address" />
  10090. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10091. <ScalarProperty Name="ContactTel" ColumnName="ContactTel" />
  10092. <ScalarProperty Name="ContactEmail" ColumnName="ContactEmail" />
  10093. <ScalarProperty Name="ContactFax" ColumnName="ContactFax" />
  10094. <ScalarProperty Name="CarDes" ColumnName="CarDes" />
  10095. <ScalarProperty Name="CarPicPaths" ColumnName="CarPicPaths" />
  10096. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  10097. <ScalarProperty Name="Score" ColumnName="Score" />
  10098. <ScalarProperty Name="QualificationScore" ColumnName="QualificationScore" />
  10099. <ScalarProperty Name="CarAgeScore" ColumnName="CarAgeScore" />
  10100. <ScalarProperty Name="CleanImgScore" ColumnName="CleanImgScore" />
  10101. <ScalarProperty Name="SmellScore" ColumnName="SmellScore" />
  10102. <ScalarProperty Name="WaterPaperScore" ColumnName="WaterPaperScore" />
  10103. <ScalarProperty Name="HardwareScore" ColumnName="HardwareScore" />
  10104. <ScalarProperty Name="TimeScore" ColumnName="TimeScore" />
  10105. <ScalarProperty Name="SafetyScore" ColumnName="SafetyScore" />
  10106. <ScalarProperty Name="DrivingAgeScore" ColumnName="DrivingAgeScore" />
  10107. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10108. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10109. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10110. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10111. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10112. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10113. </MappingFragment>
  10114. </EntityTypeMapping>
  10115. </EntitySetMapping>
  10116. <EntitySetMapping Name="Res_CarGuides">
  10117. <EntityTypeMapping TypeName="oa2023DBModel.Res_CarGuides">
  10118. <MappingFragment StoreEntitySet="Res_CarGuides">
  10119. <ScalarProperty Name="Id" ColumnName="Id" />
  10120. <ScalarProperty Name="Country" ColumnName="Country" />
  10121. <ScalarProperty Name="City" ColumnName="City" />
  10122. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  10123. <ScalarProperty Name="CarType" ColumnName="CarType" />
  10124. <ScalarProperty Name="Offer" ColumnName="Offer" />
  10125. <ScalarProperty Name="CGCost" ColumnName="CGCost" />
  10126. <ScalarProperty Name="RuningTime" ColumnName="RuningTime" />
  10127. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  10128. <ScalarProperty Name="CGOvertimeFee" ColumnName="CGOvertimeFee" />
  10129. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10130. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10131. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10132. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10133. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10134. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10135. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10136. </MappingFragment>
  10137. </EntityTypeMapping>
  10138. </EntitySetMapping>
  10139. <EntitySetMapping Name="Res_CarInfo">
  10140. <EntityTypeMapping TypeName="oa2023DBModel.Res_CarInfo">
  10141. <MappingFragment StoreEntitySet="Res_CarInfo">
  10142. <ScalarProperty Name="Id" ColumnName="Id" />
  10143. <ScalarProperty Name="Country" ColumnName="Country" />
  10144. <ScalarProperty Name="City" ColumnName="City" />
  10145. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  10146. <ScalarProperty Name="CarType" ColumnName="CarType" />
  10147. <ScalarProperty Name="RuningTime" ColumnName="RuningTime" />
  10148. <ScalarProperty Name="Price" ColumnName="Price" />
  10149. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  10150. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10151. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10152. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10153. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10154. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10155. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10156. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10157. </MappingFragment>
  10158. </EntityTypeMapping>
  10159. </EntitySetMapping>
  10160. <EntitySetMapping Name="Res_CompanyEnglishComparison">
  10161. <EntityTypeMapping TypeName="oa2023DBModel.Res_CompanyEnglishComparison">
  10162. <MappingFragment StoreEntitySet="Res_CompanyEnglishComparison">
  10163. <ScalarProperty Name="Id" ColumnName="Id" />
  10164. <ScalarProperty Name="zhName" ColumnName="zhName" />
  10165. <ScalarProperty Name="enName" ColumnName="enName" />
  10166. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10167. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10168. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10169. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10170. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10171. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10172. </MappingFragment>
  10173. </EntityTypeMapping>
  10174. </EntitySetMapping>
  10175. <EntitySetMapping Name="Res_CountryFeeCost">
  10176. <EntityTypeMapping TypeName="oa2023DBModel.Res_CountryFeeCost">
  10177. <MappingFragment StoreEntitySet="Res_CountryFeeCost">
  10178. <ScalarProperty Name="PettyBusinessAgencyFee" ColumnName="PettyBusinessAgencyFee" />
  10179. <ScalarProperty Name="GrandBusinessAgencyFee" ColumnName="GrandBusinessAgencyFee" />
  10180. <ScalarProperty Name="Id" ColumnName="Id" />
  10181. <ScalarProperty Name="VisaContinent" ColumnName="VisaContinent" />
  10182. <ScalarProperty Name="VisaCountry" ColumnName="VisaCountry" />
  10183. <ScalarProperty Name="IsVisaExemption" ColumnName="IsVisaExemption" />
  10184. <ScalarProperty Name="IsVisaOnArrival" ColumnName="IsVisaOnArrival" />
  10185. <ScalarProperty Name="IsElectronicSignature" ColumnName="IsElectronicSignature" />
  10186. <ScalarProperty Name="VisaPrice" ColumnName="VisaPrice" />
  10187. <ScalarProperty Name="VisaPriceDesc" ColumnName="VisaPriceDesc" />
  10188. <ScalarProperty Name="VisaType" ColumnName="VisaType" />
  10189. <ScalarProperty Name="VisaTime" ColumnName="VisaTime" />
  10190. <ScalarProperty Name="IsUrgent" ColumnName="IsUrgent" />
  10191. <ScalarProperty Name="UrgentTime" ColumnName="UrgentTime" />
  10192. <ScalarProperty Name="UrgentPrice" ColumnName="UrgentPrice" />
  10193. <ScalarProperty Name="UrgentPriceDesc" ColumnName="UrgentPriceDesc" />
  10194. <ScalarProperty Name="VisaAddress" ColumnName="VisaAddress" />
  10195. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  10196. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10197. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10198. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10199. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10200. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10201. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10202. </MappingFragment>
  10203. </EntityTypeMapping>
  10204. </EntitySetMapping>
  10205. <EntitySetMapping Name="Res_GuidesInfo">
  10206. <EntityTypeMapping TypeName="oa2023DBModel.Res_GuidesInfo">
  10207. <MappingFragment StoreEntitySet="Res_GuidesInfo">
  10208. <ScalarProperty Name="Id" ColumnName="Id" />
  10209. <ScalarProperty Name="Country" ColumnName="Country" />
  10210. <ScalarProperty Name="City" ColumnName="City" />
  10211. <ScalarProperty Name="ServiceType" ColumnName="ServiceType" />
  10212. <ScalarProperty Name="When" ColumnName="When" />
  10213. <ScalarProperty Name="Price" ColumnName="Price" />
  10214. <ScalarProperty Name="TranslationPrice" ColumnName="TranslationPrice" />
  10215. <ScalarProperty Name="OvertimeFee" ColumnName="OvertimeFee" />
  10216. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10217. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10218. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10219. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10220. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10221. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10222. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10223. </MappingFragment>
  10224. </EntityTypeMapping>
  10225. </EntitySetMapping>
  10226. <EntitySetMapping Name="Res_HotelData">
  10227. <EntityTypeMapping TypeName="oa2023DBModel.Res_HotelData">
  10228. <MappingFragment StoreEntitySet="Res_HotelData">
  10229. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10230. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10231. <ScalarProperty Name="Id" ColumnName="Id" />
  10232. <ScalarProperty Name="City" ColumnName="City" />
  10233. <ScalarProperty Name="Name" ColumnName="Name" />
  10234. <ScalarProperty Name="Level" ColumnName="Level" />
  10235. <ScalarProperty Name="Address" ColumnName="Address" />
  10236. <ScalarProperty Name="Tel" ColumnName="Tel" />
  10237. <ScalarProperty Name="Fax" ColumnName="Fax" />
  10238. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10239. <ScalarProperty Name="ContactPhone" ColumnName="ContactPhone" />
  10240. <ScalarProperty Name="OtherInformation" ColumnName="OtherInformation" />
  10241. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10242. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10243. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10244. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10245. </MappingFragment>
  10246. </EntityTypeMapping>
  10247. </EntitySetMapping>
  10248. <EntitySetMapping Name="Res_InvitationOfficialActivityData">
  10249. <EntityTypeMapping TypeName="oa2023DBModel.Res_InvitationOfficialActivityData">
  10250. <MappingFragment StoreEntitySet="Res_InvitationOfficialActivityData">
  10251. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  10252. <ScalarProperty Name="LastUpdateUserId_" ColumnName="LastUpdateUserId " />
  10253. <ScalarProperty Name="Id" ColumnName="Id" />
  10254. <ScalarProperty Name="Country" ColumnName="Country" />
  10255. <ScalarProperty Name="City" ColumnName="City" />
  10256. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  10257. <ScalarProperty Name="UnitWeb" ColumnName="UnitWeb" />
  10258. <ScalarProperty Name="Field" ColumnName="Field" />
  10259. <ScalarProperty Name="Address" ColumnName="Address" />
  10260. <ScalarProperty Name="UnitInfo" ColumnName="UnitInfo" />
  10261. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10262. <ScalarProperty Name="Job" ColumnName="Job" />
  10263. <ScalarProperty Name="Tel" ColumnName="Tel" />
  10264. <ScalarProperty Name="Email" ColumnName="Email" />
  10265. <ScalarProperty Name="WeChat" ColumnName="WeChat" />
  10266. <ScalarProperty Name="FaceBook" ColumnName="FaceBook" />
  10267. <ScalarProperty Name="Ins" ColumnName="Ins" />
  10268. <ScalarProperty Name="Delegation" ColumnName="Delegation" />
  10269. <ScalarProperty Name="FileName" ColumnName="FileName" />
  10270. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  10271. <ScalarProperty Name="SndFileName" ColumnName="SndFileName" />
  10272. <ScalarProperty Name="SndFilePath" ColumnName="SndFilePath" />
  10273. <ScalarProperty Name="Fax" ColumnName="Fax" />
  10274. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  10275. <ScalarProperty Name="Background" ColumnName="Background" />
  10276. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10277. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10278. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10279. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10280. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10281. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10282. </MappingFragment>
  10283. </EntityTypeMapping>
  10284. </EntitySetMapping>
  10285. <EntitySetMapping Name="Res_ItemDetail">
  10286. <EntityTypeMapping TypeName="oa2023DBModel.Res_ItemDetail">
  10287. <MappingFragment StoreEntitySet="Res_ItemDetail">
  10288. <ScalarProperty Name="Id" ColumnName="Id" />
  10289. <ScalarProperty Name="VendorId" ColumnName="VendorId" />
  10290. <ScalarProperty Name="ItemName" ColumnName="ItemName" />
  10291. <ScalarProperty Name="ItemTypeId" ColumnName="ItemTypeId" />
  10292. <ScalarProperty Name="MinRate" ColumnName="MinRate" />
  10293. <ScalarProperty Name="MinDt" ColumnName="MinDt" />
  10294. <ScalarProperty Name="MaxRate" ColumnName="MaxRate" />
  10295. <ScalarProperty Name="MaxDt" ColumnName="MaxDt" />
  10296. <ScalarProperty Name="CurrRate" ColumnName="CurrRate" />
  10297. <ScalarProperty Name="CurrDt" ColumnName="CurrDt" />
  10298. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10299. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10300. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10301. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10302. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10303. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10304. </MappingFragment>
  10305. </EntityTypeMapping>
  10306. </EntitySetMapping>
  10307. <EntitySetMapping Name="Res_ItemType">
  10308. <EntityTypeMapping TypeName="oa2023DBModel.Res_ItemType">
  10309. <MappingFragment StoreEntitySet="Res_ItemType">
  10310. <ScalarProperty Name="Id" ColumnName="Id" />
  10311. <ScalarProperty Name="SdId" ColumnName="SdId" />
  10312. <ScalarProperty Name="TypeName" ColumnName="TypeName" />
  10313. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10314. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10315. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10316. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10317. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10318. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10319. </MappingFragment>
  10320. </EntityTypeMapping>
  10321. </EntitySetMapping>
  10322. <EntitySetMapping Name="Res_ItemVendor">
  10323. <EntityTypeMapping TypeName="oa2023DBModel.Res_ItemVendor">
  10324. <MappingFragment StoreEntitySet="Res_ItemVendor">
  10325. <ScalarProperty Name="Id" ColumnName="Id" />
  10326. <ScalarProperty Name="BusRange" ColumnName="BusRange" />
  10327. <ScalarProperty Name="FullName" ColumnName="FullName" />
  10328. <ScalarProperty Name="ShortName" ColumnName="ShortName" />
  10329. <ScalarProperty Name="Address" ColumnName="Address" />
  10330. <ScalarProperty Name="Linker" ColumnName="Linker" />
  10331. <ScalarProperty Name="Job" ColumnName="Job" />
  10332. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  10333. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10334. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10335. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10336. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10337. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10338. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10339. </MappingFragment>
  10340. </EntityTypeMapping>
  10341. </EntitySetMapping>
  10342. <EntitySetMapping Name="Res_LocalGuideData">
  10343. <EntityTypeMapping TypeName="oa2023DBModel.Res_LocalGuideData">
  10344. <MappingFragment StoreEntitySet="Res_LocalGuideData">
  10345. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  10346. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  10347. <ScalarProperty Name="Id" ColumnName="Id" />
  10348. <ScalarProperty Name="UnitArea" ColumnName="UnitArea" />
  10349. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  10350. <ScalarProperty Name="Address" ColumnName="Address" />
  10351. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10352. <ScalarProperty Name="ContactTel" ColumnName="ContactTel" />
  10353. <ScalarProperty Name="ContactEmail" ColumnName="ContactEmail" />
  10354. <ScalarProperty Name="ContactFax" ColumnName="ContactFax" />
  10355. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  10356. <ScalarProperty Name="Score" ColumnName="Score" />
  10357. <ScalarProperty Name="SuitScore" ColumnName="SuitScore" />
  10358. <ScalarProperty Name="ServeScore" ColumnName="ServeScore" />
  10359. <ScalarProperty Name="TalkProScore" ColumnName="TalkProScore" />
  10360. <ScalarProperty Name="TimeScore" ColumnName="TimeScore" />
  10361. <ScalarProperty Name="FitScore" ColumnName="FitScore" />
  10362. <ScalarProperty Name="StrainScore" ColumnName="StrainScore" />
  10363. <ScalarProperty Name="LocalAndChineseScore" ColumnName="LocalAndChineseScore" />
  10364. <ScalarProperty Name="StaffType" ColumnName="StaffType" />
  10365. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10366. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10367. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10368. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10369. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10370. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10371. </MappingFragment>
  10372. </EntityTypeMapping>
  10373. </EntitySetMapping>
  10374. <EntitySetMapping Name="Res_Memo">
  10375. <EntityTypeMapping TypeName="oa2023DBModel.Res_Memo">
  10376. <MappingFragment StoreEntitySet="Res_Memo">
  10377. <ScalarProperty Name="Id" ColumnName="Id" />
  10378. <ScalarProperty Name="DepartmentId" ColumnName="DepartmentId" />
  10379. <ScalarProperty Name="ReadLevel" ColumnName="ReadLevel" />
  10380. <ScalarProperty Name="Title" ColumnName="Title" />
  10381. <ScalarProperty Name="Abstracts" ColumnName="Abstracts" />
  10382. <ScalarProperty Name="MDFilePath" ColumnName="MDFilePath" />
  10383. <ScalarProperty Name="LastedEditDt" ColumnName="LastedEditDt" />
  10384. <ScalarProperty Name="LastedEditor" ColumnName="LastedEditor" />
  10385. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10386. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10387. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10388. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10389. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10390. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10391. </MappingFragment>
  10392. </EntityTypeMapping>
  10393. </EntitySetMapping>
  10394. <EntitySetMapping Name="Res_OfficialActivities">
  10395. <EntityTypeMapping TypeName="oa2023DBModel.Res_OfficialActivities">
  10396. <MappingFragment StoreEntitySet="Res_OfficialActivities">
  10397. <ScalarProperty Name="DataId" ColumnName="DataId" />
  10398. <ScalarProperty Name="Nature" ColumnName="Nature" />
  10399. <ScalarProperty Name="Website" ColumnName="Website" />
  10400. <ScalarProperty Name="EmailOrWeChat" ColumnName="EmailOrWeChat" />
  10401. <ScalarProperty Name="ScreenshotOfMailUrl" ColumnName="ScreenshotOfMailUrl" />
  10402. <ScalarProperty Name="ConfirmTheInvitation" ColumnName="ConfirmTheInvitation" />
  10403. <ScalarProperty Name="Language" ColumnName="Language" />
  10404. <ScalarProperty Name="DataSource" ColumnName="DataSource" />
  10405. <ScalarProperty Name="ReqSample" ColumnName="ReqSample" />
  10406. <ScalarProperty Name="Field" ColumnName="Field" />
  10407. <ScalarProperty Name="Area" ColumnName="Area" />
  10408. <ScalarProperty Name="Country" ColumnName="Country" />
  10409. <ScalarProperty Name="Id" ColumnName="Id" />
  10410. <ScalarProperty Name="DiId" ColumnName="DiId" />
  10411. <ScalarProperty Name="Type" ColumnName="Type" />
  10412. <ScalarProperty Name="Client" ColumnName="Client" />
  10413. <ScalarProperty Name="Date" ColumnName="Date" />
  10414. <ScalarProperty Name="Time" ColumnName="Time" />
  10415. <ScalarProperty Name="Address" ColumnName="Address" />
  10416. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10417. <ScalarProperty Name="Job" ColumnName="Job" />
  10418. <ScalarProperty Name="Tel" ColumnName="Tel" />
  10419. <ScalarProperty Name="OfficialForm" ColumnName="OfficialForm" />
  10420. <ScalarProperty Name="Setting" ColumnName="Setting" />
  10421. <ScalarProperty Name="Dresscode" ColumnName="Dresscode" />
  10422. <ScalarProperty Name="Attendees" ColumnName="Attendees" />
  10423. <ScalarProperty Name="IsNeedTrans" ColumnName="IsNeedTrans" />
  10424. <ScalarProperty Name="Translators" ColumnName="Translators" />
  10425. <ScalarProperty Name="Trip" ColumnName="Trip" />
  10426. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10427. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10428. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10429. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10430. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10431. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10432. <ScalarProperty Name="IsSubmitApproval" ColumnName="IsSubmitApproval" />
  10433. <ScalarProperty Name="IsPay" ColumnName="IsPay" />
  10434. </MappingFragment>
  10435. </EntityTypeMapping>
  10436. </EntitySetMapping>
  10437. <EntitySetMapping Name="Res_PositionEnglishComparison">
  10438. <EntityTypeMapping TypeName="oa2023DBModel.Res_PositionEnglishComparison">
  10439. <MappingFragment StoreEntitySet="Res_PositionEnglishComparison">
  10440. <ScalarProperty Name="Id" ColumnName="Id" />
  10441. <ScalarProperty Name="zhName" ColumnName="zhName" />
  10442. <ScalarProperty Name="enName" ColumnName="enName" />
  10443. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10444. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10445. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10446. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10447. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10448. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10449. </MappingFragment>
  10450. </EntityTypeMapping>
  10451. </EntitySetMapping>
  10452. <EntitySetMapping Name="Res_ScenicSpotInfo">
  10453. <EntityTypeMapping TypeName="oa2023DBModel.Res_ScenicSpotInfo">
  10454. <MappingFragment StoreEntitySet="Res_ScenicSpotInfo">
  10455. <ScalarProperty Name="Id" ColumnName="Id" />
  10456. <ScalarProperty Name="Country" ColumnName="Country" />
  10457. <ScalarProperty Name="City" ColumnName="City" />
  10458. <ScalarProperty Name="ScenicSpot" ColumnName="ScenicSpot" />
  10459. <ScalarProperty Name="ScenicSpotDetail" ColumnName="ScenicSpotDetail" />
  10460. <ScalarProperty Name="Price" ColumnName="Price" />
  10461. <ScalarProperty Name="Rate" ColumnName="Rate" />
  10462. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10463. <ScalarProperty Name="Address" ColumnName="Address" />
  10464. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10465. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10466. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10467. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10468. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10469. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10470. </MappingFragment>
  10471. </EntityTypeMapping>
  10472. </EntitySetMapping>
  10473. <EntitySetMapping Name="Res_ThreeCode">
  10474. <EntityTypeMapping TypeName="oa2023DBModel.Res_ThreeCode">
  10475. <MappingFragment StoreEntitySet="Res_ThreeCode">
  10476. <ScalarProperty Name="Id" ColumnName="Id" />
  10477. <ScalarProperty Name="Three" ColumnName="Three" />
  10478. <ScalarProperty Name="Four" ColumnName="Four" />
  10479. <ScalarProperty Name="Country" ColumnName="Country" />
  10480. <ScalarProperty Name="City" ColumnName="City" />
  10481. <ScalarProperty Name="AirPort" ColumnName="AirPort" />
  10482. <ScalarProperty Name="AirPort_En" ColumnName="AirPort_En" />
  10483. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10484. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10485. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10486. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10487. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10488. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10489. </MappingFragment>
  10490. </EntityTypeMapping>
  10491. </EntitySetMapping>
  10492. <EntitySetMapping Name="Sys_Calendar">
  10493. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Calendar">
  10494. <MappingFragment StoreEntitySet="Sys_Calendar">
  10495. <ScalarProperty Name="Id" ColumnName="Id" />
  10496. <ScalarProperty Name="Dt" ColumnName="Dt" />
  10497. <ScalarProperty Name="IsWorkDay" ColumnName="IsWorkDay" />
  10498. <ScalarProperty Name="IsHoliDay" ColumnName="IsHoliDay" />
  10499. <ScalarProperty Name="HoliName" ColumnName="HoliName" />
  10500. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10501. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10502. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10503. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10504. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10505. <ScalarProperty Name="Isdel" ColumnName="Isdel" />
  10506. </MappingFragment>
  10507. </EntityTypeMapping>
  10508. </EntitySetMapping>
  10509. <EntitySetMapping Name="Sys_Company">
  10510. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Company">
  10511. <MappingFragment StoreEntitySet="Sys_Company">
  10512. <ScalarProperty Name="Id" ColumnName="Id" />
  10513. <ScalarProperty Name="CompanyCode" ColumnName="CompanyCode" />
  10514. <ScalarProperty Name="CompanyName" ColumnName="CompanyName" />
  10515. <ScalarProperty Name="Address" ColumnName="Address" />
  10516. <ScalarProperty Name="ContactUserId" ColumnName="ContactUserId" />
  10517. <ScalarProperty Name="Tel" ColumnName="Tel" />
  10518. <ScalarProperty Name="ParentCompanyId" ColumnName="ParentCompanyId" />
  10519. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10520. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10521. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10522. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10523. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10524. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10525. </MappingFragment>
  10526. </EntityTypeMapping>
  10527. </EntitySetMapping>
  10528. <EntitySetMapping Name="Sys_Department">
  10529. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Department">
  10530. <MappingFragment StoreEntitySet="Sys_Department">
  10531. <ScalarProperty Name="Id" ColumnName="Id" />
  10532. <ScalarProperty Name="CompanyId" ColumnName="CompanyId" />
  10533. <ScalarProperty Name="DepCode" ColumnName="DepCode" />
  10534. <ScalarProperty Name="DepName" ColumnName="DepName" />
  10535. <ScalarProperty Name="ParentDepId" ColumnName="ParentDepId" />
  10536. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10537. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10538. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10539. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10540. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10541. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10542. </MappingFragment>
  10543. </EntityTypeMapping>
  10544. </EntitySetMapping>
  10545. <EntitySetMapping Name="Sys_JobPost">
  10546. <EntityTypeMapping TypeName="oa2023DBModel.Sys_JobPost">
  10547. <MappingFragment StoreEntitySet="Sys_JobPost">
  10548. <ScalarProperty Name="Id" ColumnName="Id" />
  10549. <ScalarProperty Name="CompanyId" ColumnName="CompanyId" />
  10550. <ScalarProperty Name="DepId" ColumnName="DepId" />
  10551. <ScalarProperty Name="JobName" ColumnName="JobName" />
  10552. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10553. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10554. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10555. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10556. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10557. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10558. </MappingFragment>
  10559. </EntityTypeMapping>
  10560. </EntitySetMapping>
  10561. <EntitySetMapping Name="Sys_JobPostAuthority">
  10562. <EntityTypeMapping TypeName="oa2023DBModel.Sys_JobPostAuthority">
  10563. <MappingFragment StoreEntitySet="Sys_JobPostAuthority">
  10564. <ScalarProperty Name="Id" ColumnName="Id" />
  10565. <ScalarProperty Name="JpId" ColumnName="JpId" />
  10566. <ScalarProperty Name="SmId" ColumnName="SmId" />
  10567. <ScalarProperty Name="FId" ColumnName="FId" />
  10568. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10569. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10570. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10571. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10572. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10573. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10574. </MappingFragment>
  10575. </EntityTypeMapping>
  10576. </EntitySetMapping>
  10577. <EntitySetMapping Name="Sys_Message">
  10578. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Message">
  10579. <MappingFragment StoreEntitySet="Sys_Message">
  10580. <ScalarProperty Name="Id" ColumnName="Id" />
  10581. <ScalarProperty Name="Type" ColumnName="Type" />
  10582. <ScalarProperty Name="Param" ColumnName="Param" />
  10583. <ScalarProperty Name="IssuerId" ColumnName="IssuerId" />
  10584. <ScalarProperty Name="Title" ColumnName="Title" />
  10585. <ScalarProperty Name="Content" ColumnName="Content" />
  10586. <ScalarProperty Name="ReleaseTime" ColumnName="ReleaseTime" />
  10587. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10588. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10589. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10590. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10591. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10592. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10593. <ScalarProperty Name="DiId" ColumnName="DiId" />
  10594. </MappingFragment>
  10595. </EntityTypeMapping>
  10596. </EntitySetMapping>
  10597. <EntitySetMapping Name="Sys_MessageReadAuth">
  10598. <EntityTypeMapping TypeName="oa2023DBModel.Sys_MessageReadAuth">
  10599. <MappingFragment StoreEntitySet="Sys_MessageReadAuth">
  10600. <ScalarProperty Name="Id" ColumnName="Id" />
  10601. <ScalarProperty Name="MsgId" ColumnName="MsgId" />
  10602. <ScalarProperty Name="ReadableUId" ColumnName="ReadableUId" />
  10603. <ScalarProperty Name="IsRead" ColumnName="IsRead" />
  10604. <ScalarProperty Name="ReadTime" ColumnName="ReadTime" />
  10605. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10606. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10607. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10608. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10609. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10610. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10611. </MappingFragment>
  10612. </EntityTypeMapping>
  10613. </EntitySetMapping>
  10614. <EntitySetMapping Name="Sys_PageFunctionPermission">
  10615. <EntityTypeMapping TypeName="oa2023DBModel.Sys_PageFunctionPermission">
  10616. <MappingFragment StoreEntitySet="Sys_PageFunctionPermission">
  10617. <ScalarProperty Name="Id" ColumnName="Id" />
  10618. <ScalarProperty Name="FunctionName" ColumnName="FunctionName" />
  10619. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  10620. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  10621. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10622. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10623. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10624. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10625. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10626. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10627. </MappingFragment>
  10628. </EntityTypeMapping>
  10629. </EntitySetMapping>
  10630. <EntitySetMapping Name="Sys_SetData">
  10631. <EntityTypeMapping TypeName="oa2023DBModel.Sys_SetData">
  10632. <MappingFragment StoreEntitySet="Sys_SetData">
  10633. <ScalarProperty Name="Id" ColumnName="Id" />
  10634. <ScalarProperty Name="Name" ColumnName="Name" />
  10635. <ScalarProperty Name="STid" ColumnName="STid" />
  10636. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10637. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10638. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10639. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10640. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10641. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10642. </MappingFragment>
  10643. </EntityTypeMapping>
  10644. </EntitySetMapping>
  10645. <EntitySetMapping Name="Sys_SetDataType">
  10646. <EntityTypeMapping TypeName="oa2023DBModel.Sys_SetDataType">
  10647. <MappingFragment StoreEntitySet="Sys_SetDataType">
  10648. <ScalarProperty Name="Id" ColumnName="Id" />
  10649. <ScalarProperty Name="Name" ColumnName="Name" />
  10650. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  10651. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10652. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10653. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10654. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10655. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10656. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10657. </MappingFragment>
  10658. </EntityTypeMapping>
  10659. </EntitySetMapping>
  10660. <EntitySetMapping Name="Sys_SystemMenuAndFunction">
  10661. <EntityTypeMapping TypeName="oa2023DBModel.Sys_SystemMenuAndFunction">
  10662. <MappingFragment StoreEntitySet="Sys_SystemMenuAndFunction">
  10663. <ScalarProperty Name="Id" ColumnName="Id" />
  10664. <ScalarProperty Name="SmId" ColumnName="SmId" />
  10665. <ScalarProperty Name="FId" ColumnName="FId" />
  10666. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10667. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10668. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10669. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10670. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10671. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10672. </MappingFragment>
  10673. </EntityTypeMapping>
  10674. </EntitySetMapping>
  10675. <EntitySetMapping Name="Sys_SystemMenuPermission">
  10676. <EntityTypeMapping TypeName="oa2023DBModel.Sys_SystemMenuPermission">
  10677. <MappingFragment StoreEntitySet="Sys_SystemMenuPermission">
  10678. <ScalarProperty Name="Id" ColumnName="Id" />
  10679. <ScalarProperty Name="Name" ColumnName="Name" />
  10680. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  10681. <ScalarProperty Name="Mid" ColumnName="Mid" />
  10682. <ScalarProperty Name="SystemMenuCode" ColumnName="SystemMenuCode" />
  10683. <ScalarProperty Name="webUrl" ColumnName="webUrl" />
  10684. <ScalarProperty Name="AndroidUrl" ColumnName="AndroidUrl" />
  10685. <ScalarProperty Name="icon" ColumnName="icon" />
  10686. <ScalarProperty Name="IosUrl" ColumnName="IosUrl" />
  10687. <ScalarProperty Name="phoneIsEnable" ColumnName="phoneIsEnable" />
  10688. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10689. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10690. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10691. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10692. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10693. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10694. </MappingFragment>
  10695. </EntityTypeMapping>
  10696. </EntitySetMapping>
  10697. <EntitySetMapping Name="Sys_UserAuthority">
  10698. <EntityTypeMapping TypeName="oa2023DBModel.Sys_UserAuthority">
  10699. <MappingFragment StoreEntitySet="Sys_UserAuthority">
  10700. <ScalarProperty Name="Id" ColumnName="Id" />
  10701. <ScalarProperty Name="UId" ColumnName="UId" />
  10702. <ScalarProperty Name="SmId" ColumnName="SmId" />
  10703. <ScalarProperty Name="FId" ColumnName="FId" />
  10704. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10705. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10706. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10707. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10708. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10709. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10710. <ScalarProperty Name="IsTemp" ColumnName="IsTemp" />
  10711. </MappingFragment>
  10712. </EntityTypeMapping>
  10713. </EntitySetMapping>
  10714. <EntitySetMapping Name="Sys_Users">
  10715. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Users">
  10716. <MappingFragment StoreEntitySet="Sys_Users">
  10717. <ScalarProperty Name="QiyeChatUserId" ColumnName="QiyeChatUserId" />
  10718. <ScalarProperty Name="Id" ColumnName="Id" />
  10719. <ScalarProperty Name="CnName" ColumnName="CnName" />
  10720. <ScalarProperty Name="EnName" ColumnName="EnName" />
  10721. <ScalarProperty Name="Number" ColumnName="Number" />
  10722. <ScalarProperty Name="CompanyId" ColumnName="CompanyId" />
  10723. <ScalarProperty Name="DepId" ColumnName="DepId" />
  10724. <ScalarProperty Name="JobPostId" ColumnName="JobPostId" />
  10725. <ScalarProperty Name="Password" ColumnName="Password" />
  10726. <ScalarProperty Name="Sex" ColumnName="Sex" />
  10727. <ScalarProperty Name="Ext" ColumnName="Ext" />
  10728. <ScalarProperty Name="Phone" ColumnName="Phone" />
  10729. <ScalarProperty Name="UrgentPhone" ColumnName="UrgentPhone" />
  10730. <ScalarProperty Name="Email" ColumnName="Email" />
  10731. <ScalarProperty Name="Address" ColumnName="Address" />
  10732. <ScalarProperty Name="Edate" ColumnName="Edate" />
  10733. <ScalarProperty Name="Rdate" ColumnName="Rdate" />
  10734. <ScalarProperty Name="Seniority" ColumnName="Seniority" />
  10735. <ScalarProperty Name="Birthday" ColumnName="Birthday" />
  10736. <ScalarProperty Name="IDCard" ColumnName="IDCard" />
  10737. <ScalarProperty Name="StartWorkDate" ColumnName="StartWorkDate" />
  10738. <ScalarProperty Name="GraduateInstitutions" ColumnName="GraduateInstitutions" />
  10739. <ScalarProperty Name="Professional" ColumnName="Professional" />
  10740. <ScalarProperty Name="Education" ColumnName="Education" />
  10741. <ScalarProperty Name="TheOrAdultEducation" ColumnName="TheOrAdultEducation" />
  10742. <ScalarProperty Name="MaritalStatus" ColumnName="MaritalStatus" />
  10743. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  10744. <ScalarProperty Name="UsePeriod" ColumnName="UsePeriod" />
  10745. <ScalarProperty Name="WorkExperience" ColumnName="WorkExperience" />
  10746. <ScalarProperty Name="Certificate" ColumnName="Certificate" />
  10747. <ScalarProperty Name="HrAudit" ColumnName="HrAudit" />
  10748. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10749. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10750. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10751. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10752. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10753. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10754. </MappingFragment>
  10755. </EntityTypeMapping>
  10756. </EntitySetMapping>
  10757. <EntitySetMapping Name="sysdiagrams">
  10758. <EntityTypeMapping TypeName="oa2023DBModel.sysdiagrams">
  10759. <MappingFragment StoreEntitySet="sysdiagrams">
  10760. <ScalarProperty Name="name" ColumnName="name" />
  10761. <ScalarProperty Name="principal_id" ColumnName="principal_id" />
  10762. <ScalarProperty Name="diagram_id" ColumnName="diagram_id" />
  10763. <ScalarProperty Name="version" ColumnName="version" />
  10764. <ScalarProperty Name="definition" ColumnName="definition" />
  10765. </MappingFragment>
  10766. </EntityTypeMapping>
  10767. </EntitySetMapping>
  10768. <EntitySetMapping Name="Res_OfficialActivities0426">
  10769. <EntityTypeMapping TypeName="oa2023DBModel.Res_OfficialActivities0426">
  10770. <MappingFragment StoreEntitySet="Res_OfficialActivities0426">
  10771. <ScalarProperty Name="Id" ColumnName="Id" />
  10772. <ScalarProperty Name="DiId" ColumnName="DiId" />
  10773. <ScalarProperty Name="Type" ColumnName="Type" />
  10774. <ScalarProperty Name="Client" ColumnName="Client" />
  10775. <ScalarProperty Name="Date" ColumnName="Date" />
  10776. <ScalarProperty Name="Time" ColumnName="Time" />
  10777. <ScalarProperty Name="Address" ColumnName="Address" />
  10778. <ScalarProperty Name="Contact" ColumnName="Contact" />
  10779. <ScalarProperty Name="Job" ColumnName="Job" />
  10780. <ScalarProperty Name="Tel" ColumnName="Tel" />
  10781. <ScalarProperty Name="OfficialForm" ColumnName="OfficialForm" />
  10782. <ScalarProperty Name="Setting" ColumnName="Setting" />
  10783. <ScalarProperty Name="Dresscode" ColumnName="Dresscode" />
  10784. <ScalarProperty Name="Attendees" ColumnName="Attendees" />
  10785. <ScalarProperty Name="IsNeedTrans" ColumnName="IsNeedTrans" />
  10786. <ScalarProperty Name="Translators" ColumnName="Translators" />
  10787. <ScalarProperty Name="language" ColumnName="language" />
  10788. <ScalarProperty Name="Trip" ColumnName="Trip" />
  10789. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10790. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10791. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10792. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10793. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10794. <ScalarProperty Name="Isdel" ColumnName="Isdel" />
  10795. </MappingFragment>
  10796. </EntityTypeMapping>
  10797. </EntitySetMapping>
  10798. <EntitySetMapping Name="Grp_HotelInquiry">
  10799. <EntityTypeMapping TypeName="oa2023DBModel.Grp_HotelInquiry">
  10800. <MappingFragment StoreEntitySet="Grp_HotelInquiry">
  10801. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10802. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10803. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10804. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10805. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10806. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10807. <ScalarProperty Name="OtherCurrency" ColumnName="OtherCurrency" />
  10808. <ScalarProperty Name="OtherQuantity" ColumnName="OtherQuantity" />
  10809. <ScalarProperty Name="OtherPrice" ColumnName="OtherPrice" />
  10810. <ScalarProperty Name="SuiteCurrency" ColumnName="SuiteCurrency" />
  10811. <ScalarProperty Name="SuiteQuantity" ColumnName="SuiteQuantity" />
  10812. <ScalarProperty Name="SuitePrice" ColumnName="SuitePrice" />
  10813. <ScalarProperty Name="DoubleCurrency" ColumnName="DoubleCurrency" />
  10814. <ScalarProperty Name="DoubleQuantity" ColumnName="DoubleQuantity" />
  10815. <ScalarProperty Name="DoublePrice" ColumnName="DoublePrice" />
  10816. <ScalarProperty Name="SingleCurrency" ColumnName="SingleCurrency" />
  10817. <ScalarProperty Name="SingleQuantity" ColumnName="SingleQuantity" />
  10818. <ScalarProperty Name="SinglePrice" ColumnName="SinglePrice" />
  10819. <ScalarProperty Name="CheckOutDate" ColumnName="CheckOutDate" />
  10820. <ScalarProperty Name="CheckInDate" ColumnName="CheckInDate" />
  10821. <ScalarProperty Name="SelectDt" ColumnName="SelectDt" />
  10822. <ScalarProperty Name="Address" ColumnName="Address" />
  10823. <ScalarProperty Name="Name" ColumnName="Name" />
  10824. <ScalarProperty Name="City" ColumnName="City" />
  10825. <ScalarProperty Name="DiId" ColumnName="DiId" />
  10826. <ScalarProperty Name="Id" ColumnName="Id" />
  10827. </MappingFragment>
  10828. </EntityTypeMapping>
  10829. </EntitySetMapping>
  10830. <EntitySetMapping Name="Grp_VisaInfo">
  10831. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaInfo">
  10832. <MappingFragment StoreEntitySet="Grp_VisaInfo">
  10833. <ScalarProperty Name="AgencyFeeType" ColumnName="AgencyFeeType" />
  10834. <ScalarProperty Name="Area" ColumnName="Area" />
  10835. <ScalarProperty Name="visaDescription" ColumnName="visaDescription" />
  10836. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10837. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10838. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10839. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10840. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10841. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10842. <ScalarProperty Name="VisaFreeNumber" ColumnName="VisaFreeNumber" />
  10843. <ScalarProperty Name="VisaNumber" ColumnName="VisaNumber" />
  10844. <ScalarProperty Name="PassengerType" ColumnName="PassengerType" />
  10845. <ScalarProperty Name="IsThird" ColumnName="IsThird" />
  10846. <ScalarProperty Name="VisaCurrency" ColumnName="VisaCurrency" />
  10847. <ScalarProperty Name="VisaPrice" ColumnName="VisaPrice" />
  10848. <ScalarProperty Name="VisaClient" ColumnName="VisaClient" />
  10849. <ScalarProperty Name="DIId" ColumnName="DIId" />
  10850. <ScalarProperty Name="Id" ColumnName="Id" />
  10851. </MappingFragment>
  10852. </EntityTypeMapping>
  10853. </EntitySetMapping>
  10854. <EntitySetMapping Name="Fin_LocalGuideRelevancyOverspend">
  10855. <EntityTypeMapping TypeName="oa2023DBModel.Fin_LocalGuideRelevancyOverspend">
  10856. <MappingFragment StoreEntitySet="Fin_LocalGuideRelevancyOverspend">
  10857. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10858. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10859. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10860. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10861. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10862. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10863. <ScalarProperty Name="OverspendId" ColumnName="OverspendId" />
  10864. <ScalarProperty Name="LocalGuideId" ColumnName="LocalGuideId" />
  10865. <ScalarProperty Name="Id" ColumnName="Id" />
  10866. </MappingFragment>
  10867. </EntityTypeMapping>
  10868. </EntitySetMapping>
  10869. <EntitySetMapping Name="Fin_OverSpendRelevancyCollectionStatement">
  10870. <EntityTypeMapping TypeName="oa2023DBModel.Fin_OverSpendRelevancyCollectionStatement">
  10871. <MappingFragment StoreEntitySet="Fin_OverSpendRelevancyCollectionStatement">
  10872. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10873. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10874. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10875. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10876. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10877. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10878. <ScalarProperty Name="savePrice" ColumnName="savePrice" />
  10879. <ScalarProperty Name="LocalGuideId" ColumnName="LocalGuideId" />
  10880. <ScalarProperty Name="Diid" ColumnName="Diid" />
  10881. <ScalarProperty Name="CollectionStatementId" ColumnName="CollectionStatementId" />
  10882. <ScalarProperty Name="OverSpendId" ColumnName="OverSpendId" />
  10883. <ScalarProperty Name="Id" ColumnName="Id" />
  10884. </MappingFragment>
  10885. </EntityTypeMapping>
  10886. </EntitySetMapping>
  10887. <EntitySetMapping Name="Fin_RoyaltyConfirm">
  10888. <EntityTypeMapping TypeName="oa2023DBModel.Fin_RoyaltyConfirm">
  10889. <MappingFragment StoreEntitySet="Fin_RoyaltyConfirm">
  10890. <ScalarProperty Name="IsSeed" ColumnName="IsSeed" />
  10891. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10892. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10893. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10894. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10895. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10896. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10897. <ScalarProperty Name="UserId" ColumnName="UserId" />
  10898. <ScalarProperty Name="IsConfirm" ColumnName="IsConfirm" />
  10899. <ScalarProperty Name="Temp" ColumnName="Temp" />
  10900. <ScalarProperty Name="VisitDate" ColumnName="VisitDate" />
  10901. <ScalarProperty Name="TeamLvStr" ColumnName="TeamLvStr" />
  10902. <ScalarProperty Name="ChiArr" ColumnName="ChiArr" />
  10903. <ScalarProperty Name="TeamId" ColumnName="TeamId" />
  10904. <ScalarProperty Name="TeamName" ColumnName="TeamName" />
  10905. <ScalarProperty Name="Price" ColumnName="Price" />
  10906. <ScalarProperty Name="Id" ColumnName="Id" />
  10907. </MappingFragment>
  10908. </EntityTypeMapping>
  10909. </EntitySetMapping>
  10910. <EntitySetMapping Name="Fin_RoyaltyForm">
  10911. <EntityTypeMapping TypeName="oa2023DBModel.Fin_RoyaltyForm">
  10912. <MappingFragment StoreEntitySet="Fin_RoyaltyForm">
  10913. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10914. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10915. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10916. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10917. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10918. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10919. <ScalarProperty Name="ConfirmIdArr" ColumnName="ConfirmIdArr" />
  10920. <ScalarProperty Name="DayOverhead" ColumnName="DayOverhead" />
  10921. <ScalarProperty Name="UserId" ColumnName="UserId" />
  10922. <ScalarProperty Name="Id" ColumnName="Id" />
  10923. </MappingFragment>
  10924. </EntityTypeMapping>
  10925. </EntitySetMapping>
  10926. <EntitySetMapping Name="Grp_ApprovalTravel">
  10927. <EntityTypeMapping TypeName="oa2023DBModel.Grp_ApprovalTravel">
  10928. <MappingFragment StoreEntitySet="Grp_ApprovalTravel">
  10929. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10930. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10931. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10932. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10933. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10934. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10935. <ScalarProperty Name="Date" ColumnName="Date" />
  10936. <ScalarProperty Name="Diid" ColumnName="Diid" />
  10937. <ScalarProperty Name="Id" ColumnName="Id" />
  10938. </MappingFragment>
  10939. </EntityTypeMapping>
  10940. </EntitySetMapping>
  10941. <EntitySetMapping Name="Grp_ApprovalTravelDetails">
  10942. <EntityTypeMapping TypeName="oa2023DBModel.Grp_ApprovalTravelDetails">
  10943. <MappingFragment StoreEntitySet="Grp_ApprovalTravelDetails">
  10944. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10945. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10946. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10947. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10948. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10949. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10950. <ScalarProperty Name="Details" ColumnName="Details" />
  10951. <ScalarProperty Name="ParentId" ColumnName="ParentId" />
  10952. <ScalarProperty Name="Time" ColumnName="Time" />
  10953. <ScalarProperty Name="Id" ColumnName="Id" />
  10954. </MappingFragment>
  10955. </EntityTypeMapping>
  10956. </EntitySetMapping>
  10957. <EntitySetMapping Name="Grp_DayAndCostDraft">
  10958. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DayAndCostDraft">
  10959. <MappingFragment StoreEntitySet="Grp_DayAndCostDraft">
  10960. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10961. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10962. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10963. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10964. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10965. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10966. <ScalarProperty Name="SubTotal" ColumnName="SubTotal" />
  10967. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10968. <ScalarProperty Name="Cost" ColumnName="Cost" />
  10969. <ScalarProperty Name="Place" ColumnName="Place" />
  10970. <ScalarProperty Name="NationalTravelFeeId" ColumnName="NationalTravelFeeId" />
  10971. <ScalarProperty Name="Days" ColumnName="Days" />
  10972. <ScalarProperty Name="Type" ColumnName="Type" />
  10973. <ScalarProperty Name="ParentId" ColumnName="ParentId" />
  10974. <ScalarProperty Name="Id" ColumnName="Id" />
  10975. </MappingFragment>
  10976. </EntityTypeMapping>
  10977. </EntitySetMapping>
  10978. <EntitySetMapping Name="Grp_DayOtherPrice">
  10979. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DayOtherPrice">
  10980. <MappingFragment StoreEntitySet="Grp_DayOtherPrice">
  10981. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  10982. <ScalarProperty Name="Remark" ColumnName="Remark" />
  10983. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  10984. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  10985. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  10986. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  10987. <ScalarProperty Name="SubTotal" ColumnName="SubTotal" />
  10988. <ScalarProperty Name="Currency" ColumnName="Currency" />
  10989. <ScalarProperty Name="Cost" ColumnName="Cost" />
  10990. <ScalarProperty Name="Index" ColumnName="Index" />
  10991. <ScalarProperty Name="SetDataId" ColumnName="SetDataId" />
  10992. <ScalarProperty Name="Diid" ColumnName="Diid" />
  10993. <ScalarProperty Name="Id" ColumnName="Id" />
  10994. </MappingFragment>
  10995. </EntityTypeMapping>
  10996. </EntitySetMapping>
  10997. <EntitySetMapping Name="Grp_DayOtherPriceDraft">
  10998. <EntityTypeMapping TypeName="oa2023DBModel.Grp_DayOtherPriceDraft">
  10999. <MappingFragment StoreEntitySet="Grp_DayOtherPriceDraft">
  11000. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11001. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11002. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11003. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11004. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11005. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11006. <ScalarProperty Name="SubTotal" ColumnName="SubTotal" />
  11007. <ScalarProperty Name="Currency" ColumnName="Currency" />
  11008. <ScalarProperty Name="Cost" ColumnName="Cost" />
  11009. <ScalarProperty Name="Index" ColumnName="Index" />
  11010. <ScalarProperty Name="SetDataId" ColumnName="SetDataId" />
  11011. <ScalarProperty Name="ParentId" ColumnName="ParentId" />
  11012. <ScalarProperty Name="Id" ColumnName="Id" />
  11013. </MappingFragment>
  11014. </EntityTypeMapping>
  11015. </EntitySetMapping>
  11016. <EntitySetMapping Name="Grp_EnterExitCostDraft">
  11017. <EntityTypeMapping TypeName="oa2023DBModel.Grp_EnterExitCostDraft">
  11018. <MappingFragment StoreEntitySet="Grp_EnterExitCostDraft">
  11019. <ScalarProperty Name="TwoItemRemark" ColumnName="TwoItemRemark" />
  11020. <ScalarProperty Name="IsConfirm" ColumnName="IsConfirm" />
  11021. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11022. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11023. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11024. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11025. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11026. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11027. <ScalarProperty Name="ChoiceSix" ColumnName="ChoiceSix" />
  11028. <ScalarProperty Name="OtherExpenses_Checked" ColumnName="OtherExpenses_Checked" />
  11029. <ScalarProperty Name="AirTDC_Checked" ColumnName="AirTDC_Checked" />
  11030. <ScalarProperty Name="AirGWC_Checked" ColumnName="AirGWC_Checked" />
  11031. <ScalarProperty Name="AirJJC_Checked" ColumnName="AirJJC_Checked" />
  11032. <ScalarProperty Name="SumTDC" ColumnName="SumTDC" />
  11033. <ScalarProperty Name="SumGWC" ColumnName="SumGWC" />
  11034. <ScalarProperty Name="SumJJC" ColumnName="SumJJC" />
  11035. <ScalarProperty Name="ChoiceFive" ColumnName="ChoiceFive" />
  11036. <ScalarProperty Name="ChoiceFour" ColumnName="ChoiceFour" />
  11037. <ScalarProperty Name="ChoiceThree" ColumnName="ChoiceThree" />
  11038. <ScalarProperty Name="ChoiceTwo" ColumnName="ChoiceTwo" />
  11039. <ScalarProperty Name="ChoiceOne" ColumnName="ChoiceOne" />
  11040. <ScalarProperty Name="CurrencyRemark" ColumnName="CurrencyRemark" />
  11041. <ScalarProperty Name="RateHKD" ColumnName="RateHKD" />
  11042. <ScalarProperty Name="RateGBP" ColumnName="RateGBP" />
  11043. <ScalarProperty Name="RateEUR" ColumnName="RateEUR" />
  11044. <ScalarProperty Name="RateJPY" ColumnName="RateJPY" />
  11045. <ScalarProperty Name="RateUSD" ColumnName="RateUSD" />
  11046. <ScalarProperty Name="CityTranffic" ColumnName="CityTranffic" />
  11047. <ScalarProperty Name="AirTD" ColumnName="AirTD" />
  11048. <ScalarProperty Name="AirGW" ColumnName="AirGW" />
  11049. <ScalarProperty Name="AirJJ" ColumnName="AirJJ" />
  11050. <ScalarProperty Name="OutsideTDPay" ColumnName="OutsideTDPay" />
  11051. <ScalarProperty Name="OutsideGWPay" ColumnName="OutsideGWPay" />
  11052. <ScalarProperty Name="OutsideJJPay" ColumnName="OutsideJJPay" />
  11053. <ScalarProperty Name="FirstItemRemark" ColumnName="FirstItemRemark" />
  11054. <ScalarProperty Name="Safe" ColumnName="Safe" />
  11055. <ScalarProperty Name="Ticket" ColumnName="Ticket" />
  11056. <ScalarProperty Name="Service" ColumnName="Service" />
  11057. <ScalarProperty Name="HeSuan" ColumnName="HeSuan" />
  11058. <ScalarProperty Name="YiMiao" ColumnName="YiMiao" />
  11059. <ScalarProperty Name="VisaRemark" ColumnName="VisaRemark" />
  11060. <ScalarProperty Name="Visa" ColumnName="Visa" />
  11061. <ScalarProperty Name="InsidePay" ColumnName="InsidePay" />
  11062. <ScalarProperty Name="DraftName" ColumnName="DraftName" />
  11063. <ScalarProperty Name="Id" ColumnName="Id" />
  11064. </MappingFragment>
  11065. </EntityTypeMapping>
  11066. </EntitySetMapping>
  11067. <EntitySetMapping Name="Grp_EnterExitCostDraftPermission">
  11068. <EntityTypeMapping TypeName="oa2023DBModel.Grp_EnterExitCostDraftPermission">
  11069. <MappingFragment StoreEntitySet="Grp_EnterExitCostDraftPermission">
  11070. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11071. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11072. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11073. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11074. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11075. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11076. <ScalarProperty Name="Permission" ColumnName="Permission" />
  11077. <ScalarProperty Name="UserId" ColumnName="UserId" />
  11078. <ScalarProperty Name="DraftId" ColumnName="DraftId" />
  11079. <ScalarProperty Name="Id" ColumnName="Id" />
  11080. </MappingFragment>
  11081. </EntityTypeMapping>
  11082. </EntitySetMapping>
  11083. <EntitySetMapping Name="Grp_EnterExitCostPermission">
  11084. <EntityTypeMapping TypeName="oa2023DBModel.Grp_EnterExitCostPermission">
  11085. <MappingFragment StoreEntitySet="Grp_EnterExitCostPermission">
  11086. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11087. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11088. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11089. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11090. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11091. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11092. <ScalarProperty Name="Permission" ColumnName="Permission" />
  11093. <ScalarProperty Name="UserId" ColumnName="UserId" />
  11094. <ScalarProperty Name="GroupId" ColumnName="GroupId" />
  11095. <ScalarProperty Name="Id" ColumnName="Id" />
  11096. </MappingFragment>
  11097. </EntityTypeMapping>
  11098. </EntitySetMapping>
  11099. <EntitySetMapping Name="Grp_GroupModelFile">
  11100. <EntityTypeMapping TypeName="oa2023DBModel.Grp_GroupModelFile">
  11101. <MappingFragment StoreEntitySet="Grp_GroupModelFile">
  11102. <ScalarProperty Name="FileName" ColumnName="FileName" />
  11103. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11104. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11105. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11106. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11107. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11108. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11109. <ScalarProperty Name="Cid" ColumnName="Cid" />
  11110. <ScalarProperty Name="Ctable" ColumnName="Ctable" />
  11111. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  11112. <ScalarProperty Name="Diid" ColumnName="Diid" />
  11113. <ScalarProperty Name="Id" ColumnName="Id" />
  11114. </MappingFragment>
  11115. </EntityTypeMapping>
  11116. </EntitySetMapping>
  11117. <EntitySetMapping Name="Grp_HotelReservationsContent">
  11118. <EntityTypeMapping TypeName="oa2023DBModel.Grp_HotelReservationsContent">
  11119. <MappingFragment StoreEntitySet="Grp_HotelReservationsContent">
  11120. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11121. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11122. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11123. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11124. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11125. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11126. <ScalarProperty Name="OrbitalPrivateTransfer" ColumnName="OrbitalPrivateTransfer" />
  11127. <ScalarProperty Name="Payee" ColumnName="Payee" />
  11128. <ScalarProperty Name="IsPay" ColumnName="IsPay" />
  11129. <ScalarProperty Name="OtherSideName" ColumnName="OtherSideName" />
  11130. <ScalarProperty Name="OtherSideNo" ColumnName="OtherSideNo" />
  11131. <ScalarProperty Name="OtherBankName" ColumnName="OtherBankName" />
  11132. <ScalarProperty Name="CompanyBankNo" ColumnName="CompanyBankNo" />
  11133. <ScalarProperty Name="CardholderName" ColumnName="CardholderName" />
  11134. <ScalarProperty Name="BankNo" ColumnName="BankNo" />
  11135. <ScalarProperty Name="CTDId" ColumnName="CTDId" />
  11136. <ScalarProperty Name="ConsumptionDate" ColumnName="ConsumptionDate" />
  11137. <ScalarProperty Name="ConsumptionPatterns" ColumnName="ConsumptionPatterns" />
  11138. <ScalarProperty Name="PayDId" ColumnName="PayDId" />
  11139. <ScalarProperty Name="IsOppay" ColumnName="IsOppay" />
  11140. <ScalarProperty Name="Rate" ColumnName="Rate" />
  11141. <ScalarProperty Name="Currency" ColumnName="Currency" />
  11142. <ScalarProperty Name="Price" ColumnName="Price" />
  11143. <ScalarProperty Name="PriceType" ColumnName="PriceType" />
  11144. <ScalarProperty Name="HrId" ColumnName="HrId" />
  11145. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11146. <ScalarProperty Name="Id" ColumnName="Id" />
  11147. </MappingFragment>
  11148. </EntityTypeMapping>
  11149. </EntitySetMapping>
  11150. <EntitySetMapping Name="Grp_OfficialDutyLinkTranslator">
  11151. <EntityTypeMapping TypeName="oa2023DBModel.Grp_OfficialDutyLinkTranslator">
  11152. <MappingFragment StoreEntitySet="Grp_OfficialDutyLinkTranslator">
  11153. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11154. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11155. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11156. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11157. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11158. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11159. <ScalarProperty Name="TranslatorId" ColumnName="TranslatorId" />
  11160. <ScalarProperty Name="OfficialDutyId" ColumnName="OfficialDutyId" />
  11161. <ScalarProperty Name="Id" ColumnName="Id" />
  11162. </MappingFragment>
  11163. </EntityTypeMapping>
  11164. </EntitySetMapping>
  11165. <EntitySetMapping Name="Grp_Opinionaire">
  11166. <EntityTypeMapping TypeName="oa2023DBModel.Grp_Opinionaire">
  11167. <MappingFragment StoreEntitySet="Grp_Opinionaire">
  11168. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11169. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11170. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11171. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11172. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11173. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11174. <ScalarProperty Name="SignatureDate" ColumnName="SignatureDate" />
  11175. <ScalarProperty Name="ESFileName" ColumnName="ESFileName" />
  11176. <ScalarProperty Name="TripReason" ColumnName="TripReason" />
  11177. <ScalarProperty Name="Trip" ColumnName="Trip" />
  11178. <ScalarProperty Name="TranslateReason" ColumnName="TranslateReason" />
  11179. <ScalarProperty Name="Translate" ColumnName="Translate" />
  11180. <ScalarProperty Name="TourGuideReason" ColumnName="TourGuideReason" />
  11181. <ScalarProperty Name="TourGuide" ColumnName="TourGuide" />
  11182. <ScalarProperty Name="OfficialActivityReason" ColumnName="OfficialActivityReason" />
  11183. <ScalarProperty Name="OfficialActivity" ColumnName="OfficialActivity" />
  11184. <ScalarProperty Name="RouteReason" ColumnName="RouteReason" />
  11185. <ScalarProperty Name="Route" ColumnName="Route" />
  11186. <ScalarProperty Name="StayReason" ColumnName="StayReason" />
  11187. <ScalarProperty Name="Stay" ColumnName="Stay" />
  11188. <ScalarProperty Name="CateringReason" ColumnName="CateringReason" />
  11189. <ScalarProperty Name="Catering" ColumnName="Catering" />
  11190. <ScalarProperty Name="TourGuideName" ColumnName="TourGuideName" />
  11191. <ScalarProperty Name="CityName" ColumnName="CityName" />
  11192. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11193. <ScalarProperty Name="Id" ColumnName="Id" />
  11194. </MappingFragment>
  11195. </EntityTypeMapping>
  11196. </EntitySetMapping>
  11197. <EntitySetMapping Name="Grp_RestaurantInfo">
  11198. <EntityTypeMapping TypeName="oa2023DBModel.Grp_RestaurantInfo">
  11199. <MappingFragment StoreEntitySet="Grp_RestaurantInfo">
  11200. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11201. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11202. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11203. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11204. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11205. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11206. <ScalarProperty Name="Address" ColumnName="Address" />
  11207. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11208. <ScalarProperty Name="Name" ColumnName="Name" />
  11209. <ScalarProperty Name="Type" ColumnName="Type" />
  11210. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  11211. <ScalarProperty Name="StartTime" ColumnName="StartTime" />
  11212. <ScalarProperty Name="Date" ColumnName="Date" />
  11213. <ScalarProperty Name="GroupId" ColumnName="GroupId" />
  11214. <ScalarProperty Name="Id" ColumnName="Id" />
  11215. </MappingFragment>
  11216. </EntityTypeMapping>
  11217. </EntitySetMapping>
  11218. <EntitySetMapping Name="Grp_VisaCommission">
  11219. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisaCommission">
  11220. <MappingFragment StoreEntitySet="Grp_VisaCommission">
  11221. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11222. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11223. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11224. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11225. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11226. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11227. <ScalarProperty Name="Quantity" ColumnName="Quantity" />
  11228. <ScalarProperty Name="Country" ColumnName="Country" />
  11229. <ScalarProperty Name="UId" ColumnName="UId" />
  11230. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11231. <ScalarProperty Name="Id" ColumnName="Id" />
  11232. </MappingFragment>
  11233. </EntityTypeMapping>
  11234. </EntitySetMapping>
  11235. <EntitySetMapping Name="Grp_VisitingClients">
  11236. <EntityTypeMapping TypeName="oa2023DBModel.Grp_VisitingClients">
  11237. <MappingFragment StoreEntitySet="Grp_VisitingClients">
  11238. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11239. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11240. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11241. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11242. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11243. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11244. <ScalarProperty Name="CustomerContact" ColumnName="CustomerContact" />
  11245. <ScalarProperty Name="CustomerName" ColumnName="CustomerName" />
  11246. <ScalarProperty Name="CustomerJob" ColumnName="CustomerJob" />
  11247. <ScalarProperty Name="CustomerUnit" ColumnName="CustomerUnit" />
  11248. <ScalarProperty Name="EndDt" ColumnName="EndDt" />
  11249. <ScalarProperty Name="BeginDt" ColumnName="BeginDt" />
  11250. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11251. <ScalarProperty Name="Id" ColumnName="Id" />
  11252. </MappingFragment>
  11253. </EntityTypeMapping>
  11254. </EntitySetMapping>
  11255. <EntitySetMapping Name="Per_AssessmentContentSetting">
  11256. <EntityTypeMapping TypeName="oa2023DBModel.Per_AssessmentContentSetting">
  11257. <MappingFragment StoreEntitySet="Per_AssessmentContentSetting">
  11258. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11259. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11260. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11261. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11262. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11263. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11264. <ScalarProperty Name="Fixed" ColumnName="Fixed" />
  11265. <ScalarProperty Name="UserId" ColumnName="UserId" />
  11266. <ScalarProperty Name="JobId" ColumnName="JobId" />
  11267. <ScalarProperty Name="TargetValue" ColumnName="TargetValue" />
  11268. <ScalarProperty Name="AssessmentProportionChi" ColumnName="AssessmentProportionChi" />
  11269. <ScalarProperty Name="AssessmentSettingId" ColumnName="AssessmentSettingId" />
  11270. <ScalarProperty Name="Id" ColumnName="Id" />
  11271. </MappingFragment>
  11272. </EntityTypeMapping>
  11273. </EntitySetMapping>
  11274. <EntitySetMapping Name="Per_AssessmentScore">
  11275. <EntityTypeMapping TypeName="oa2023DBModel.Per_AssessmentScore">
  11276. <MappingFragment StoreEntitySet="Per_AssessmentScore">
  11277. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11278. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11279. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11280. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11281. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11282. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11283. <ScalarProperty Name="Details" ColumnName="Details" />
  11284. <ScalarProperty Name="HigherUpUserId" ColumnName="HigherUpUserId" />
  11285. <ScalarProperty Name="HigherUpConfig" ColumnName="HigherUpConfig" />
  11286. <ScalarProperty Name="ScoreTotal" ColumnName="ScoreTotal" />
  11287. <ScalarProperty Name="Score" ColumnName="Score" />
  11288. <ScalarProperty Name="HigherUpAssessment" ColumnName="HigherUpAssessment" />
  11289. <ScalarProperty Name="SelfAssessment" ColumnName="SelfAssessment" />
  11290. <ScalarProperty Name="Status" ColumnName="Status" />
  11291. <ScalarProperty Name="AssessmentContentSettingId" ColumnName="AssessmentContentSettingId" />
  11292. <ScalarProperty Name="YearMonth" ColumnName="YearMonth" />
  11293. <ScalarProperty Name="Id" ColumnName="Id" />
  11294. </MappingFragment>
  11295. </EntityTypeMapping>
  11296. </EntitySetMapping>
  11297. <EntitySetMapping Name="Per_AssessmentSetting">
  11298. <EntityTypeMapping TypeName="oa2023DBModel.Per_AssessmentSetting">
  11299. <MappingFragment StoreEntitySet="Per_AssessmentSetting">
  11300. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11301. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11302. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11303. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11304. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11305. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11306. <ScalarProperty Name="ParentId" ColumnName="ParentId" />
  11307. <ScalarProperty Name="AssessmentStandard" ColumnName="AssessmentStandard" />
  11308. <ScalarProperty Name="AssessmentProportion" ColumnName="AssessmentProportion" />
  11309. <ScalarProperty Name="Name" ColumnName="Name" />
  11310. <ScalarProperty Name="Id" ColumnName="Id" />
  11311. </MappingFragment>
  11312. </EntityTypeMapping>
  11313. </EntitySetMapping>
  11314. <EntitySetMapping Name="Pm_GoodsInfo">
  11315. <EntityTypeMapping TypeName="oa2023DBModel.Pm_GoodsInfo">
  11316. <MappingFragment StoreEntitySet="Pm_GoodsInfo">
  11317. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11318. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11319. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11320. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11321. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11322. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11323. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  11324. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  11325. <ScalarProperty Name="Unit" ColumnName="Unit" />
  11326. <ScalarProperty Name="StockQuantity" ColumnName="StockQuantity" />
  11327. <ScalarProperty Name="PriceTotal" ColumnName="PriceTotal" />
  11328. <ScalarProperty Name="OQ_Total" ColumnName="OQ_Total" />
  11329. <ScalarProperty Name="SQ_Total" ColumnName="SQ_Total" />
  11330. <ScalarProperty Name="Name" ColumnName="Name" />
  11331. <ScalarProperty Name="Type" ColumnName="Type" />
  11332. <ScalarProperty Name="Id" ColumnName="Id" />
  11333. </MappingFragment>
  11334. </EntityTypeMapping>
  11335. </EntitySetMapping>
  11336. <EntitySetMapping Name="Pm_GoodsReceive">
  11337. <EntityTypeMapping TypeName="oa2023DBModel.Pm_GoodsReceive">
  11338. <MappingFragment StoreEntitySet="Pm_GoodsReceive">
  11339. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11340. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11341. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11342. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11343. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11344. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11345. <ScalarProperty Name="AuditTime" ColumnName="AuditTime" />
  11346. <ScalarProperty Name="AuditUserId" ColumnName="AuditUserId" />
  11347. <ScalarProperty Name="AuditStatus" ColumnName="AuditStatus" />
  11348. <ScalarProperty Name="GoodsStorageInfo" ColumnName="GoodsStorageInfo" />
  11349. <ScalarProperty Name="Reason" ColumnName="Reason" />
  11350. <ScalarProperty Name="Quantity" ColumnName="Quantity" />
  11351. <ScalarProperty Name="GoodsId" ColumnName="GoodsId" />
  11352. <ScalarProperty Name="GroupId" ColumnName="GroupId" />
  11353. <ScalarProperty Name="Id" ColumnName="Id" />
  11354. </MappingFragment>
  11355. </EntityTypeMapping>
  11356. </EntitySetMapping>
  11357. <EntitySetMapping Name="Pm_GoodsStorage">
  11358. <EntityTypeMapping TypeName="oa2023DBModel.Pm_GoodsStorage">
  11359. <MappingFragment StoreEntitySet="Pm_GoodsStorage">
  11360. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11361. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11362. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11363. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11364. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11365. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11366. <ScalarProperty Name="StorageTime" ColumnName="StorageTime" />
  11367. <ScalarProperty Name="StorageUserId" ColumnName="StorageUserId" />
  11368. <ScalarProperty Name="SupplierSource" ColumnName="SupplierSource" />
  11369. <ScalarProperty Name="SupplierAddress" ColumnName="SupplierAddress" />
  11370. <ScalarProperty Name="SupplierTel" ColumnName="SupplierTel" />
  11371. <ScalarProperty Name="SupplierName" ColumnName="SupplierName" />
  11372. <ScalarProperty Name="TotalPrice" ColumnName="TotalPrice" />
  11373. <ScalarProperty Name="UnitPrice" ColumnName="UnitPrice" />
  11374. <ScalarProperty Name="Quantity" ColumnName="Quantity" />
  11375. <ScalarProperty Name="ReceiveQuantity" ColumnName="ReceiveQuantity" />
  11376. <ScalarProperty Name="BatchNo" ColumnName="BatchNo" />
  11377. <ScalarProperty Name="GoodsId" ColumnName="GoodsId" />
  11378. <ScalarProperty Name="Id" ColumnName="Id" />
  11379. </MappingFragment>
  11380. </EntityTypeMapping>
  11381. </EntitySetMapping>
  11382. <EntitySetMapping Name="Res_BasicInsuranceCost">
  11383. <EntityTypeMapping TypeName="oa2023DBModel.Res_BasicInsuranceCost">
  11384. <MappingFragment StoreEntitySet="Res_BasicInsuranceCost">
  11385. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11386. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11387. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11388. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11389. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11390. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11391. <ScalarProperty Name="Cost" ColumnName="Cost" />
  11392. <ScalarProperty Name="CountryName" ColumnName="CountryName" />
  11393. <ScalarProperty Name="IsSchengen" ColumnName="IsSchengen" />
  11394. <ScalarProperty Name="Id" ColumnName="Id" />
  11395. </MappingFragment>
  11396. </EntityTypeMapping>
  11397. </EntitySetMapping>
  11398. <EntitySetMapping Name="Res_MediaSuppliers">
  11399. <EntityTypeMapping TypeName="oa2023DBModel.Res_MediaSuppliers">
  11400. <MappingFragment StoreEntitySet="Res_MediaSuppliers">
  11401. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11402. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11403. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11404. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11405. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11406. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11407. <ScalarProperty Name="WeChat" ColumnName="WeChat" />
  11408. <ScalarProperty Name="Email" ColumnName="Email" />
  11409. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11410. <ScalarProperty Name="Fax" ColumnName="Fax" />
  11411. <ScalarProperty Name="Post" ColumnName="Post" />
  11412. <ScalarProperty Name="Sex" ColumnName="Sex" />
  11413. <ScalarProperty Name="Contact" ColumnName="Contact" />
  11414. <ScalarProperty Name="UnitAddress" ColumnName="UnitAddress" />
  11415. <ScalarProperty Name="UnitAbbreviation" ColumnName="UnitAbbreviation" />
  11416. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  11417. <ScalarProperty Name="City" ColumnName="City" />
  11418. <ScalarProperty Name="Privince" ColumnName="Privince" />
  11419. <ScalarProperty Name="TypeId" ColumnName="TypeId" />
  11420. <ScalarProperty Name="Id" ColumnName="Id" />
  11421. </MappingFragment>
  11422. </EntityTypeMapping>
  11423. </EntitySetMapping>
  11424. <EntitySetMapping Name="Res_TranslatorLibrary">
  11425. <EntityTypeMapping TypeName="oa2023DBModel.Res_TranslatorLibrary">
  11426. <MappingFragment StoreEntitySet="Res_TranslatorLibrary">
  11427. <ScalarProperty Name="LastUpdateTime" ColumnName="LastUpdateTime" />
  11428. <ScalarProperty Name="LastUpdateUserId" ColumnName="LastUpdateUserId" />
  11429. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11430. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11431. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11432. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11433. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11434. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11435. <ScalarProperty Name="Files" ColumnName="Files" />
  11436. <ScalarProperty Name="Currency" ColumnName="Currency" />
  11437. <ScalarProperty Name="Price" ColumnName="Price" />
  11438. <ScalarProperty Name="Language" ColumnName="Language" />
  11439. <ScalarProperty Name="OtherSocialAccounts" ColumnName="OtherSocialAccounts" />
  11440. <ScalarProperty Name="WechatNo" ColumnName="WechatNo" />
  11441. <ScalarProperty Name="Email" ColumnName="Email" />
  11442. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11443. <ScalarProperty Name="Photo" ColumnName="Photo" />
  11444. <ScalarProperty Name="Sex" ColumnName="Sex" />
  11445. <ScalarProperty Name="Name" ColumnName="Name" />
  11446. <ScalarProperty Name="Area" ColumnName="Area" />
  11447. <ScalarProperty Name="Id" ColumnName="Id" />
  11448. </MappingFragment>
  11449. </EntityTypeMapping>
  11450. </EntitySetMapping>
  11451. <EntitySetMapping Name="Sys_Cities">
  11452. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Cities">
  11453. <MappingFragment StoreEntitySet="Sys_Cities">
  11454. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11455. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11456. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11457. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11458. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11459. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11460. <ScalarProperty Name="Level" ColumnName="Level" />
  11461. <ScalarProperty Name="ParentId" ColumnName="ParentId" />
  11462. <ScalarProperty Name="IsCapital" ColumnName="IsCapital" />
  11463. <ScalarProperty Name="ThreeCode" ColumnName="ThreeCode" />
  11464. <ScalarProperty Name="Name_EN" ColumnName="Name_EN" />
  11465. <ScalarProperty Name="Name_CN" ColumnName="Name_CN" />
  11466. <ScalarProperty Name="CountriesId" ColumnName="CountriesId" />
  11467. <ScalarProperty Name="Id" ColumnName="Id" />
  11468. </MappingFragment>
  11469. </EntityTypeMapping>
  11470. </EntitySetMapping>
  11471. <EntitySetMapping Name="Sys_Continent">
  11472. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Continent">
  11473. <MappingFragment StoreEntitySet="Sys_Continent">
  11474. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11475. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11476. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11477. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11478. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11479. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11480. <ScalarProperty Name="Name_EN" ColumnName="Name_EN" />
  11481. <ScalarProperty Name="Name_CN" ColumnName="Name_CN" />
  11482. <ScalarProperty Name="Id" ColumnName="Id" />
  11483. </MappingFragment>
  11484. </EntityTypeMapping>
  11485. </EntitySetMapping>
  11486. <EntitySetMapping Name="Sys_Countries">
  11487. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Countries">
  11488. <MappingFragment StoreEntitySet="Sys_Countries">
  11489. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11490. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11491. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11492. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11493. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11494. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11495. <ScalarProperty Name="Name_EN_Full" ColumnName="Name_EN_Full" />
  11496. <ScalarProperty Name="Name_EN" ColumnName="Name_EN" />
  11497. <ScalarProperty Name="Name_CN_Full" ColumnName="Name_CN_Full" />
  11498. <ScalarProperty Name="Name_CN" ColumnName="Name_CN" />
  11499. <ScalarProperty Name="ThreeCode" ColumnName="ThreeCode" />
  11500. <ScalarProperty Name="ContinentId" ColumnName="ContinentId" />
  11501. <ScalarProperty Name="Id" ColumnName="Id" />
  11502. </MappingFragment>
  11503. </EntityTypeMapping>
  11504. </EntitySetMapping>
  11505. <EntitySetMapping Name="Sys_DeviceToken">
  11506. <EntityTypeMapping TypeName="oa2023DBModel.Sys_DeviceToken">
  11507. <MappingFragment StoreEntitySet="Sys_DeviceToken">
  11508. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11509. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11510. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11511. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11512. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11513. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11514. <ScalarProperty Name="DeviceToken" ColumnName="DeviceToken" />
  11515. <ScalarProperty Name="Number" ColumnName="Number" />
  11516. <ScalarProperty Name="Id" ColumnName="Id" />
  11517. </MappingFragment>
  11518. </EntityTypeMapping>
  11519. </EntitySetMapping>
  11520. <EntitySetMapping Name="Sys_ExchangeRateRecord">
  11521. <EntityTypeMapping TypeName="oa2023DBModel.Sys_ExchangeRateRecord">
  11522. <MappingFragment StoreEntitySet="Sys_ExchangeRateRecord">
  11523. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11524. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11525. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11526. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11527. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11528. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11529. <ScalarProperty Name="RateInfo" ColumnName="RateInfo" />
  11530. <ScalarProperty Name="RateDataSource" ColumnName="RateDataSource" />
  11531. <ScalarProperty Name="RateDateTime" ColumnName="RateDateTime" />
  11532. <ScalarProperty Name="LinkModule" ColumnName="LinkModule" />
  11533. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11534. <ScalarProperty Name="Id" ColumnName="Id" />
  11535. </MappingFragment>
  11536. </EntityTypeMapping>
  11537. </EntitySetMapping>
  11538. <EntitySetMapping Name="Crm_CustomerCert_Data">
  11539. <EntityTypeMapping TypeName="oa2023DBModel.Crm_CustomerCert_Data">
  11540. <MappingFragment StoreEntitySet="Crm_CustomerCert_Data">
  11541. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11542. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11543. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11544. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11545. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11546. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11547. <ScalarProperty Name="IDCardAddress" ColumnName="IDCardAddress" />
  11548. <ScalarProperty Name="ExpiryDt" ColumnName="ExpiryDt" />
  11549. <ScalarProperty Name="IssueDt" ColumnName="IssueDt" />
  11550. <ScalarProperty Name="TargetCountry" ColumnName="TargetCountry" />
  11551. <ScalarProperty Name="Area" ColumnName="Area" />
  11552. <ScalarProperty Name="Country" ColumnName="Country" />
  11553. <ScalarProperty Name="CertNo" ColumnName="CertNo" />
  11554. <ScalarProperty Name="PassportType" ColumnName="PassportType" />
  11555. <ScalarProperty Name="SdId" ColumnName="SdId" />
  11556. <ScalarProperty Name="DcId" ColumnName="DcId" />
  11557. <ScalarProperty Name="Id" ColumnName="Id" />
  11558. </MappingFragment>
  11559. </EntityTypeMapping>
  11560. </EntitySetMapping>
  11561. <EntitySetMapping Name="Crm_CustomerCompany_Data">
  11562. <EntityTypeMapping TypeName="oa2023DBModel.Crm_CustomerCompany_Data">
  11563. <MappingFragment StoreEntitySet="Crm_CustomerCompany_Data">
  11564. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11565. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11566. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11567. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11568. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11569. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11570. <ScalarProperty Name="LastedOpDt" ColumnName="LastedOpDt" />
  11571. <ScalarProperty Name="LastedOpUserId" ColumnName="LastedOpUserId" />
  11572. <ScalarProperty Name="PostCodes" ColumnName="PostCodes" />
  11573. <ScalarProperty Name="Address" ColumnName="Address" />
  11574. <ScalarProperty Name="CompanyFullName" ColumnName="CompanyFullName" />
  11575. <ScalarProperty Name="CompanyAbbreviation" ColumnName="CompanyAbbreviation" />
  11576. <ScalarProperty Name="Id" ColumnName="Id" />
  11577. </MappingFragment>
  11578. </EntityTypeMapping>
  11579. </EntitySetMapping>
  11580. <EntitySetMapping Name="Crm_DeleClient_Data">
  11581. <EntityTypeMapping TypeName="oa2023DBModel.Crm_DeleClient_Data">
  11582. <MappingFragment StoreEntitySet="Crm_DeleClient_Data">
  11583. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11584. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11585. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11586. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11587. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11588. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11589. <ScalarProperty Name="PhD" ColumnName="PhD" />
  11590. <ScalarProperty Name="Papent" ColumnName="Papent" />
  11591. <ScalarProperty Name="Paper" ColumnName="Paper" />
  11592. <ScalarProperty Name="VisitCountry" ColumnName="VisitCountry" />
  11593. <ScalarProperty Name="MateJob" ColumnName="MateJob" />
  11594. <ScalarProperty Name="MateClientAddress" ColumnName="MateClientAddress" />
  11595. <ScalarProperty Name="MateClient" ColumnName="MateClient" />
  11596. <ScalarProperty Name="MateAddress" ColumnName="MateAddress" />
  11597. <ScalarProperty Name="MateBirthCountry" ColumnName="MateBirthCountry" />
  11598. <ScalarProperty Name="MateBirthCity" ColumnName="MateBirthCity" />
  11599. <ScalarProperty Name="MateBirthDay" ColumnName="MateBirthDay" />
  11600. <ScalarProperty Name="MateName" ColumnName="MateName" />
  11601. <ScalarProperty Name="DivorceDate" ColumnName="DivorceDate" />
  11602. <ScalarProperty Name="WeddingDate" ColumnName="WeddingDate" />
  11603. <ScalarProperty Name="Nationality" ColumnName="Nationality" />
  11604. <ScalarProperty Name="Party" ColumnName="Party" />
  11605. <ScalarProperty Name="TableDate" ColumnName="TableDate" />
  11606. <ScalarProperty Name="TableOpTel" ColumnName="TableOpTel" />
  11607. <ScalarProperty Name="TableOpName" ColumnName="TableOpName" />
  11608. <ScalarProperty Name="CostBearers" ColumnName="CostBearers" />
  11609. <ScalarProperty Name="ArmyState" ColumnName="ArmyState" />
  11610. <ScalarProperty Name="IsArmy" ColumnName="IsArmy" />
  11611. <ScalarProperty Name="Social" ColumnName="Social" />
  11612. <ScalarProperty Name="BroIden" ColumnName="BroIden" />
  11613. <ScalarProperty Name="BroUSA" ColumnName="BroUSA" />
  11614. <ScalarProperty Name="ChildIden" ColumnName="ChildIden" />
  11615. <ScalarProperty Name="ChildUSA" ColumnName="ChildUSA" />
  11616. <ScalarProperty Name="ParentIden" ColumnName="ParentIden" />
  11617. <ScalarProperty Name="ParentUSA" ColumnName="ParentUSA" />
  11618. <ScalarProperty Name="WHIden" ColumnName="WHIden" />
  11619. <ScalarProperty Name="WHUSA" ColumnName="WHUSA" />
  11620. <ScalarProperty Name="MateIden" ColumnName="MateIden" />
  11621. <ScalarProperty Name="MateUSA" ColumnName="MateUSA" />
  11622. <ScalarProperty Name="IsUSAVisa" ColumnName="IsUSAVisa" />
  11623. <ScalarProperty Name="LoseCode" ColumnName="LoseCode" />
  11624. <ScalarProperty Name="LoseDate" ColumnName="LoseDate" />
  11625. <ScalarProperty Name="IsLose" ColumnName="IsLose" />
  11626. <ScalarProperty Name="IsRevoke" ColumnName="IsRevoke" />
  11627. <ScalarProperty Name="RejectedVisa" ColumnName="RejectedVisa" />
  11628. <ScalarProperty Name="RejectedPlace" ColumnName="RejectedPlace" />
  11629. <ScalarProperty Name="RejectedDate" ColumnName="RejectedDate" />
  11630. <ScalarProperty Name="IsRejected" ColumnName="IsRejected" />
  11631. <ScalarProperty Name="USAFinger" ColumnName="USAFinger" />
  11632. <ScalarProperty Name="USAVisaCode" ColumnName="USAVisaCode" />
  11633. <ScalarProperty Name="USAVisaCate" ColumnName="USAVisaCate" />
  11634. <ScalarProperty Name="GetUPPlace" ColumnName="GetUPPlace" />
  11635. <ScalarProperty Name="GetUSAVisaDate" ColumnName="GetUSAVisaDate" />
  11636. <ScalarProperty Name="IsUSAVia" ColumnName="IsUSAVia" />
  11637. <ScalarProperty Name="CanDays" ColumnName="CanDays" />
  11638. <ScalarProperty Name="CanDate" ColumnName="CanDate" />
  11639. <ScalarProperty Name="USADays" ColumnName="USADays" />
  11640. <ScalarProperty Name="USADate" ColumnName="USADate" />
  11641. <ScalarProperty Name="IsVisitUC" ColumnName="IsVisitUC" />
  11642. <ScalarProperty Name="FingerDate" ColumnName="FingerDate" />
  11643. <ScalarProperty Name="IsFinger" ColumnName="IsFinger" />
  11644. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  11645. <ScalarProperty Name="StartTime" ColumnName="StartTime" />
  11646. <ScalarProperty Name="IsGetSchengen" ColumnName="IsGetSchengen" />
  11647. <ScalarProperty Name="ClientLeaderJob" ColumnName="ClientLeaderJob" />
  11648. <ScalarProperty Name="ClientLeader" ColumnName="ClientLeader" />
  11649. <ScalarProperty Name="ClientEmail" ColumnName="ClientEmail" />
  11650. <ScalarProperty Name="ClientFax" ColumnName="ClientFax" />
  11651. <ScalarProperty Name="ClientPhone" ColumnName="ClientPhone" />
  11652. <ScalarProperty Name="Wage" ColumnName="Wage" />
  11653. <ScalarProperty Name="WorkDate" ColumnName="WorkDate" />
  11654. <ScalarProperty Name="WorkState" ColumnName="WorkState" />
  11655. <ScalarProperty Name="Job" ColumnName="Job" />
  11656. <ScalarProperty Name="CrmCompanyId" ColumnName="CrmCompanyId" />
  11657. <ScalarProperty Name="PostCodes" ColumnName="PostCodes" />
  11658. <ScalarProperty Name="HighestEducation" ColumnName="HighestEducation" />
  11659. <ScalarProperty Name="Address" ColumnName="Address" />
  11660. <ScalarProperty Name="Email" ColumnName="Email" />
  11661. <ScalarProperty Name="Phone" ColumnName="Phone" />
  11662. <ScalarProperty Name="RoomPref" ColumnName="RoomPref" />
  11663. <ScalarProperty Name="RoomType" ColumnName="RoomType" />
  11664. <ScalarProperty Name="AirRemark" ColumnName="AirRemark" />
  11665. <ScalarProperty Name="SeatPref" ColumnName="SeatPref" />
  11666. <ScalarProperty Name="AirType" ColumnName="AirType" />
  11667. <ScalarProperty Name="BirthDay" ColumnName="BirthDay" />
  11668. <ScalarProperty Name="BirthCity" ColumnName="BirthCity" />
  11669. <ScalarProperty Name="BirthProvince" ColumnName="BirthProvince" />
  11670. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11671. <ScalarProperty Name="Marriage" ColumnName="Marriage" />
  11672. <ScalarProperty Name="Sex" ColumnName="Sex" />
  11673. <ScalarProperty Name="Pinyin" ColumnName="Pinyin" />
  11674. <ScalarProperty Name="OldName" ColumnName="OldName" />
  11675. <ScalarProperty Name="FirstName" ColumnName="FirstName" />
  11676. <ScalarProperty Name="LastName" ColumnName="LastName" />
  11677. <ScalarProperty Name="DiId" ColumnName="DiId" />
  11678. <ScalarProperty Name="Id" ColumnName="Id" />
  11679. </MappingFragment>
  11680. </EntityTypeMapping>
  11681. </EntitySetMapping>
  11682. <EntitySetMapping Name="Crm_NewClientData_Encryption">
  11683. <EntityTypeMapping TypeName="oa2023DBModel.Crm_NewClientData_Encryption">
  11684. <MappingFragment StoreEntitySet="Crm_NewClientData_Encryption">
  11685. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11686. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11687. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11688. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11689. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11690. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11691. <ScalarProperty Name="FinlishedDele" ColumnName="FinlishedDele" />
  11692. <ScalarProperty Name="PreDele" ColumnName="PreDele" />
  11693. <ScalarProperty Name="Category" ColumnName="Category" />
  11694. <ScalarProperty Name="WeChat" ColumnName="WeChat" />
  11695. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  11696. <ScalarProperty Name="Birthday" ColumnName="Birthday" />
  11697. <ScalarProperty Name="Address" ColumnName="Address" />
  11698. <ScalarProperty Name="Location" ColumnName="Location" />
  11699. <ScalarProperty Name="Email" ColumnName="Email" />
  11700. <ScalarProperty Name="Phone" ColumnName="Phone" />
  11701. <ScalarProperty Name="TelePhone" ColumnName="TelePhone" />
  11702. <ScalarProperty Name="Job" ColumnName="Job" />
  11703. <ScalarProperty Name="PassportDate" ColumnName="PassportDate" />
  11704. <ScalarProperty Name="Passport" ColumnName="Passport" />
  11705. <ScalarProperty Name="Gender" ColumnName="Gender" />
  11706. <ScalarProperty Name="Contact" ColumnName="Contact" />
  11707. <ScalarProperty Name="ClientShort" ColumnName="ClientShort" />
  11708. <ScalarProperty Name="Weight" ColumnName="Weight" />
  11709. <ScalarProperty Name="Client" ColumnName="Client" />
  11710. <ScalarProperty Name="Lvlid" ColumnName="Lvlid" />
  11711. <ScalarProperty Name="Number" ColumnName="Number" />
  11712. <ScalarProperty Name="Id" ColumnName="Id" />
  11713. </MappingFragment>
  11714. </EntityTypeMapping>
  11715. </EntitySetMapping>
  11716. <EntitySetMapping Name="Res_InvitationOfficialActivityData_Data">
  11717. <EntityTypeMapping TypeName="oa2023DBModel.Res_InvitationOfficialActivityData_Data">
  11718. <MappingFragment StoreEntitySet="Res_InvitationOfficialActivityData_Data">
  11719. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11720. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11721. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11722. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11723. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11724. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11725. <ScalarProperty Name="Background" ColumnName="Background" />
  11726. <ScalarProperty Name="OtherInfo" ColumnName="OtherInfo" />
  11727. <ScalarProperty Name="Fax" ColumnName="Fax" />
  11728. <ScalarProperty Name="SndFilePath" ColumnName="SndFilePath" />
  11729. <ScalarProperty Name="SndFileName" ColumnName="SndFileName" />
  11730. <ScalarProperty Name="FilePath" ColumnName="FilePath" />
  11731. <ScalarProperty Name="FileName" ColumnName="FileName" />
  11732. <ScalarProperty Name="Delegation" ColumnName="Delegation" />
  11733. <ScalarProperty Name="Ins" ColumnName="Ins" />
  11734. <ScalarProperty Name="FaceBook" ColumnName="FaceBook" />
  11735. <ScalarProperty Name="WeChat" ColumnName="WeChat" />
  11736. <ScalarProperty Name="Email" ColumnName="Email" />
  11737. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11738. <ScalarProperty Name="Job" ColumnName="Job" />
  11739. <ScalarProperty Name="Contact" ColumnName="Contact" />
  11740. <ScalarProperty Name="UnitInfo" ColumnName="UnitInfo" />
  11741. <ScalarProperty Name="Address" ColumnName="Address" />
  11742. <ScalarProperty Name="Field" ColumnName="Field" />
  11743. <ScalarProperty Name="UnitWeb" ColumnName="UnitWeb" />
  11744. <ScalarProperty Name="UnitName" ColumnName="UnitName" />
  11745. <ScalarProperty Name="City" ColumnName="City" />
  11746. <ScalarProperty Name="Country" ColumnName="Country" />
  11747. <ScalarProperty Name="Id" ColumnName="Id" />
  11748. </MappingFragment>
  11749. </EntityTypeMapping>
  11750. </EntitySetMapping>
  11751. <EntitySetMapping Name="Res_TranslatorLibrary_Encryption">
  11752. <EntityTypeMapping TypeName="oa2023DBModel.Res_TranslatorLibrary_Encryption">
  11753. <MappingFragment StoreEntitySet="Res_TranslatorLibrary_Encryption">
  11754. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11755. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11756. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11757. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11758. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11759. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11760. <ScalarProperty Name="Files" ColumnName="Files" />
  11761. <ScalarProperty Name="Currency" ColumnName="Currency" />
  11762. <ScalarProperty Name="Price" ColumnName="Price" />
  11763. <ScalarProperty Name="Language" ColumnName="Language" />
  11764. <ScalarProperty Name="OtherSocialAccounts" ColumnName="OtherSocialAccounts" />
  11765. <ScalarProperty Name="WechatNo" ColumnName="WechatNo" />
  11766. <ScalarProperty Name="Email" ColumnName="Email" />
  11767. <ScalarProperty Name="Tel" ColumnName="Tel" />
  11768. <ScalarProperty Name="Photo" ColumnName="Photo" />
  11769. <ScalarProperty Name="Sex" ColumnName="Sex" />
  11770. <ScalarProperty Name="Name" ColumnName="Name" />
  11771. <ScalarProperty Name="Area" ColumnName="Area" />
  11772. <ScalarProperty Name="Id" ColumnName="Id" />
  11773. </MappingFragment>
  11774. </EntityTypeMapping>
  11775. </EntitySetMapping>
  11776. <EntitySetMapping Name="Sys_Users_Encryption">
  11777. <EntityTypeMapping TypeName="oa2023DBModel.Sys_Users_Encryption">
  11778. <MappingFragment StoreEntitySet="Sys_Users_Encryption">
  11779. <ScalarProperty Name="IsDel" ColumnName="IsDel" />
  11780. <ScalarProperty Name="Remark" ColumnName="Remark" />
  11781. <ScalarProperty Name="DeleteTime" ColumnName="DeleteTime" />
  11782. <ScalarProperty Name="DeleteUserId" ColumnName="DeleteUserId" />
  11783. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  11784. <ScalarProperty Name="CreateUserId" ColumnName="CreateUserId" />
  11785. <ScalarProperty Name="QiyeChatUserId" ColumnName="QiyeChatUserId" />
  11786. <ScalarProperty Name="HrAudit" ColumnName="HrAudit" />
  11787. <ScalarProperty Name="Certificate" ColumnName="Certificate" />
  11788. <ScalarProperty Name="WorkExperience" ColumnName="WorkExperience" />
  11789. <ScalarProperty Name="UsePeriod" ColumnName="UsePeriod" />
  11790. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  11791. <ScalarProperty Name="MaritalStatus" ColumnName="MaritalStatus" />
  11792. <ScalarProperty Name="TheOrAdultEducation" ColumnName="TheOrAdultEducation" />
  11793. <ScalarProperty Name="Education" ColumnName="Education" />
  11794. <ScalarProperty Name="Professional" ColumnName="Professional" />
  11795. <ScalarProperty Name="GraduateInstitutions" ColumnName="GraduateInstitutions" />
  11796. <ScalarProperty Name="StartWorkDate" ColumnName="StartWorkDate" />
  11797. <ScalarProperty Name="IDCard" ColumnName="IDCard" />
  11798. <ScalarProperty Name="Birthday" ColumnName="Birthday" />
  11799. <ScalarProperty Name="Seniority" ColumnName="Seniority" />
  11800. <ScalarProperty Name="Rdate" ColumnName="Rdate" />
  11801. <ScalarProperty Name="Edate" ColumnName="Edate" />
  11802. <ScalarProperty Name="Address" ColumnName="Address" />
  11803. <ScalarProperty Name="Email" ColumnName="Email" />
  11804. <ScalarProperty Name="UrgentPhone" ColumnName="UrgentPhone" />
  11805. <ScalarProperty Name="Phone" ColumnName="Phone" />
  11806. <ScalarProperty Name="Ext" ColumnName="Ext" />
  11807. <ScalarProperty Name="Sex" ColumnName="Sex" />
  11808. <ScalarProperty Name="Password" ColumnName="Password" />
  11809. <ScalarProperty Name="JobPostId" ColumnName="JobPostId" />
  11810. <ScalarProperty Name="DepId" ColumnName="DepId" />
  11811. <ScalarProperty Name="CompanyId" ColumnName="CompanyId" />
  11812. <ScalarProperty Name="Number" ColumnName="Number" />
  11813. <ScalarProperty Name="EnName" ColumnName="EnName" />
  11814. <ScalarProperty Name="CnName" ColumnName="CnName" />
  11815. <ScalarProperty Name="Id" ColumnName="Id" />
  11816. </MappingFragment>
  11817. </EntityTypeMapping>
  11818. </EntitySetMapping>
  11819. </EntityContainerMapping>
  11820. </Mapping>
  11821. </edmx:Mappings>
  11822. </edmx:Runtime>
  11823. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  11824. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  11825. <Connection>
  11826. <DesignerInfoPropertySet>
  11827. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  11828. </DesignerInfoPropertySet>
  11829. </Connection>
  11830. <Options>
  11831. <DesignerInfoPropertySet>
  11832. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  11833. <DesignerProperty Name="EnablePluralization" Value="false" />
  11834. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  11835. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  11836. <DesignerProperty Name="CodeGenerationStrategy" Value="无" />
  11837. </DesignerInfoPropertySet>
  11838. </Options>
  11839. <!-- Diagram content (shape and connector positions) -->
  11840. <Diagrams></Diagrams>
  11841. </Designer>
  11842. </edmx:Edmx>