EMISContext.edmx 544 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <Schema Namespace="EMISContext.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
  8. <EntityContainer Name="EMISContextStoreContainer">
  9. <EntitySet Name="CF_Arrangements" EntityType="EMISContext.Store.CF_Arrangements" store:Type="Tables" Schema="dbo" />
  10. <EntitySet Name="CF_Campus" EntityType="EMISContext.Store.CF_Campus" store:Type="Tables" Schema="dbo" />
  11. <EntitySet Name="CF_CampusProfile" EntityType="EMISContext.Store.CF_CampusProfile" store:Type="Tables" Schema="dbo" />
  12. <EntitySet Name="CF_Classmajor" EntityType="EMISContext.Store.CF_Classmajor" store:Type="Tables" Schema="dbo" />
  13. <EntitySet Name="CF_College" EntityType="EMISContext.Store.CF_College" store:Type="Tables" Schema="dbo" />
  14. <EntitySet Name="CF_CollegeProfile" EntityType="EMISContext.Store.CF_CollegeProfile" store:Type="Tables" Schema="dbo" />
  15. <EntitySet Name="CF_DataCenterCodeTranslate" EntityType="EMISContext.Store.CF_DataCenterCodeTranslate" store:Type="Tables" Schema="dbo" />
  16. <EntitySet Name="CF_Department" EntityType="EMISContext.Store.CF_Department" store:Type="Tables" Schema="dbo" />
  17. <EntitySet Name="CF_DepartmentProfile" EntityType="EMISContext.Store.CF_DepartmentProfile" store:Type="Tables" Schema="dbo" />
  18. <EntitySet Name="CF_Facultymajor" EntityType="EMISContext.Store.CF_Facultymajor" store:Type="Tables" Schema="dbo" />
  19. <EntitySet Name="CF_Grademajor" EntityType="EMISContext.Store.CF_Grademajor" store:Type="Tables" Schema="dbo" />
  20. <EntitySet Name="CF_InSchoolSetting" EntityType="EMISContext.Store.CF_InSchoolSetting" store:Type="Tables" Schema="dbo" />
  21. <EntitySet Name="CF_Parameter" EntityType="EMISContext.Store.CF_Parameter" store:Type="Tables" Schema="dbo" />
  22. <EntitySet Name="CF_Recruitstudents" EntityType="EMISContext.Store.CF_Recruitstudents" store:Type="Tables" Schema="dbo" />
  23. <EntitySet Name="CF_Schoolyear" EntityType="EMISContext.Store.CF_Schoolyear" store:Type="Tables" Schema="dbo" />
  24. <EntitySet Name="CF_SocialClassmajor" EntityType="EMISContext.Store.CF_SocialClassmajor" store:Type="Tables" Schema="dbo" />
  25. <EntitySet Name="CF_Specialty" EntityType="EMISContext.Store.CF_Specialty" store:Type="Tables" Schema="dbo" />
  26. <EntitySet Name="CF_Staff" EntityType="EMISContext.Store.CF_Staff" store:Type="Tables" Schema="dbo" />
  27. <EntitySet Name="CF_StaffManageCampus" EntityType="EMISContext.Store.CF_StaffManageCampus" store:Type="Tables" Schema="dbo" />
  28. <EntitySet Name="CF_StaffManageCollege" EntityType="EMISContext.Store.CF_StaffManageCollege" store:Type="Tables" Schema="dbo" />
  29. <EntitySet Name="CF_StaffManageDepartment" EntityType="EMISContext.Store.CF_StaffManageDepartment" store:Type="Tables" Schema="dbo" />
  30. <EntitySet Name="CF_StaffProfile" EntityType="EMISContext.Store.CF_StaffProfile" store:Type="Tables" Schema="dbo" />
  31. <EntitySet Name="CF_Student" EntityType="EMISContext.Store.CF_Student" store:Type="Tables" Schema="dbo" />
  32. <EntitySet Name="CF_StudentAccount" EntityType="EMISContext.Store.CF_StudentAccount" store:Type="Tables" Schema="dbo" />
  33. <EntitySet Name="CF_StudentContact" EntityType="EMISContext.Store.CF_StudentContact" store:Type="Tables" Schema="dbo" />
  34. <EntitySet Name="CF_StudentProfile" EntityType="EMISContext.Store.CF_StudentProfile" store:Type="Tables" Schema="dbo" />
  35. <EntitySet Name="CF_StudentRole" EntityType="EMISContext.Store.CF_StudentRole" store:Type="Tables" Schema="dbo" />
  36. <EntitySet Name="CF_University" EntityType="EMISContext.Store.CF_University" store:Type="Tables" Schema="dbo" />
  37. <EntitySet Name="CF_UniversityProfile" EntityType="EMISContext.Store.CF_UniversityProfile" store:Type="Tables" Schema="dbo" />
  38. <EntitySet Name="CF_WechatPayList" EntityType="EMISContext.Store.CF_WechatPayList" store:Type="Tables" Schema="dbo" />
  39. <EntitySet Name="CF_WechatSubscribe" EntityType="EMISContext.Store.CF_WechatSubscribe" store:Type="Tables" Schema="dbo" />
  40. <EntitySet Name="EM_CoursesTime" EntityType="EMISContext.Store.EM_CoursesTime" store:Type="Tables" Schema="dbo" />
  41. <EntitySet Name="EM_ExaminationMessage" EntityType="EMISContext.Store.EM_ExaminationMessage" store:Type="Tables" Schema="dbo" />
  42. <EntitySet Name="EM_TrainingClass" EntityType="EMISContext.Store.EM_TrainingClass" store:Type="Tables" Schema="dbo" />
  43. <EntitySet Name="EM_TrainingClass_CF_Student" EntityType="EMISContext.Store.EM_TrainingClass_CF_Student" store:Type="Tables" Schema="dbo" />
  44. <EntitySet Name="ER_CertisfierDistribute" EntityType="EMISContext.Store.ER_CertisfierDistribute" store:Type="Tables" Schema="dbo" />
  45. <EntitySet Name="ER_ExaminationScore" EntityType="EMISContext.Store.ER_ExaminationScore" store:Type="Tables" Schema="dbo" />
  46. <EntitySet Name="ER_LevelSetting" EntityType="EMISContext.Store.ER_LevelSetting" store:Type="Tables" Schema="dbo" />
  47. <EntitySet Name="ER_LevelSettingSubject" EntityType="EMISContext.Store.ER_LevelSettingSubject" store:Type="Tables" Schema="dbo" />
  48. <EntitySet Name="ER_ProjectScore" EntityType="EMISContext.Store.ER_ProjectScore" store:Type="Tables" Schema="dbo" />
  49. <EntitySet Name="ER_Resit" EntityType="EMISContext.Store.ER_Resit" store:Type="Tables" Schema="dbo" />
  50. <EntitySet Name="EX_ExaminationBatch" EntityType="EMISContext.Store.EX_ExaminationBatch" store:Type="Tables" Schema="dbo" />
  51. <EntitySet Name="EX_ExaminationBatchProject" EntityType="EMISContext.Store.EX_ExaminationBatchProject" store:Type="Tables" Schema="dbo" />
  52. <EntitySet Name="EX_ExaminationBatchProjectControl" EntityType="EMISContext.Store.EX_ExaminationBatchProjectControl" store:Type="Tables" Schema="dbo" />
  53. <EntitySet Name="EX_ExaminationBatchProjectPersonControl" EntityType="EMISContext.Store.EX_ExaminationBatchProjectPersonControl" store:Type="Tables" Schema="dbo" />
  54. <EntitySet Name="EX_ExaminationProject" EntityType="EMISContext.Store.EX_ExaminationProject" store:Type="Tables" Schema="dbo" />
  55. <EntitySet Name="EX_ExaminationProjectCollegeControl" EntityType="EMISContext.Store.EX_ExaminationProjectCollegeControl" store:Type="Tables" Schema="dbo" />
  56. <EntitySet Name="EX_ExaminationProjectCountLimit" EntityType="EMISContext.Store.EX_ExaminationProjectCountLimit" store:Type="Tables" Schema="dbo" />
  57. <EntitySet Name="EX_ExaminationProjectFee" EntityType="EMISContext.Store.EX_ExaminationProjectFee" store:Type="Tables" Schema="dbo" />
  58. <EntitySet Name="EX_ExaminationProjectFeeType" EntityType="EMISContext.Store.EX_ExaminationProjectFeeType" store:Type="Tables" Schema="dbo" />
  59. <EntitySet Name="EX_ExaminationProjectSubject" EntityType="EMISContext.Store.EX_ExaminationProjectSubject" store:Type="Tables" Schema="dbo" />
  60. <EntitySet Name="EX_ExaminationRegistration" EntityType="EMISContext.Store.EX_ExaminationRegistration" store:Type="Tables" Schema="dbo" />
  61. <EntitySet Name="EX_ExaminationRegistrationConfirm" EntityType="EMISContext.Store.EX_ExaminationRegistrationConfirm" store:Type="Tables" Schema="dbo" />
  62. <EntitySet Name="EX_ExaminationType" EntityType="EMISContext.Store.EX_ExaminationType" store:Type="Tables" Schema="dbo" />
  63. <EntitySet Name="EX_InvalidReceipt" EntityType="EMISContext.Store.EX_InvalidReceipt" store:Type="Tables" Schema="dbo" />
  64. <EntitySet Name="EX_Receipt" EntityType="EMISContext.Store.EX_Receipt" store:Type="Tables" Schema="dbo" />
  65. <EntitySet Name="Sys_Announcement" EntityType="EMISContext.Store.Sys_Announcement" store:Type="Tables" Schema="dbo" />
  66. <EntitySet Name="Sys_Announcement_Sys_Role" EntityType="EMISContext.Store.Sys_Announcement_Sys_Role" store:Type="Tables" Schema="dbo" />
  67. <EntitySet Name="Sys_Announcement_Sys_User" EntityType="EMISContext.Store.Sys_Announcement_Sys_User" store:Type="Tables" Schema="dbo" />
  68. <EntitySet Name="Sys_AnnouncementType" EntityType="EMISContext.Store.Sys_AnnouncementType" store:Type="Tables" Schema="dbo" />
  69. <EntitySet Name="Sys_BatchModify" EntityType="EMISContext.Store.Sys_BatchModify" store:Type="Tables" Schema="dbo" />
  70. <EntitySet Name="Sys_BatchModifyEvents" EntityType="EMISContext.Store.Sys_BatchModifyEvents" store:Type="Tables" Schema="dbo" />
  71. <EntitySet Name="Sys_BatchModifyExpand" EntityType="EMISContext.Store.Sys_BatchModifyExpand" store:Type="Tables" Schema="dbo" />
  72. <EntitySet Name="Sys_ConfiguretermsExpand" EntityType="EMISContext.Store.Sys_ConfiguretermsExpand" store:Type="Tables" Schema="dbo" />
  73. <EntitySet Name="Sys_ConfiguretermsInfo" EntityType="EMISContext.Store.Sys_ConfiguretermsInfo" store:Type="Tables" Schema="dbo" />
  74. <EntitySet Name="Sys_ContextMenu" EntityType="EMISContext.Store.Sys_ContextMenu" store:Type="Tables" Schema="dbo" />
  75. <EntitySet Name="Sys_ControlItem" EntityType="EMISContext.Store.Sys_ControlItem" store:Type="Tables" Schema="dbo" />
  76. <EntitySet Name="Sys_ControlItemDetail" EntityType="EMISContext.Store.Sys_ControlItemDetail" store:Type="Tables" Schema="dbo" />
  77. <EntitySet Name="Sys_Dictionary" EntityType="EMISContext.Store.Sys_Dictionary" store:Type="Tables" Schema="dbo" />
  78. <EntitySet Name="Sys_DictionaryItem" EntityType="EMISContext.Store.Sys_DictionaryItem" store:Type="Tables" Schema="dbo" />
  79. <EntitySet Name="Sys_FunctionCode" EntityType="EMISContext.Store.Sys_FunctionCode" store:Type="Tables" Schema="dbo" />
  80. <EntitySet Name="Sys_LoginHistory" EntityType="EMISContext.Store.Sys_LoginHistory" store:Type="Tables" Schema="dbo" />
  81. <EntitySet Name="Sys_MailVerifyCode" EntityType="EMISContext.Store.Sys_MailVerifyCode" store:Type="Tables" Schema="dbo" />
  82. <EntitySet Name="Sys_Menu" EntityType="EMISContext.Store.Sys_Menu" store:Type="Tables" Schema="dbo" />
  83. <EntitySet Name="Sys_Role" EntityType="EMISContext.Store.Sys_Role" store:Type="Tables" Schema="dbo" />
  84. <EntitySet Name="Sys_Role_Sys_FunctionCode" EntityType="EMISContext.Store.Sys_Role_Sys_FunctionCode" store:Type="Tables" Schema="dbo" />
  85. <EntitySet Name="Sys_RoleDataRange" EntityType="EMISContext.Store.Sys_RoleDataRange" store:Type="Tables" Schema="dbo" />
  86. <EntitySet Name="Sys_ScheduleJob" EntityType="EMISContext.Store.Sys_ScheduleJob" store:Type="Tables" Schema="dbo" />
  87. <EntitySet Name="Sys_ScheduleLog" EntityType="EMISContext.Store.Sys_ScheduleLog" store:Type="Tables" Schema="dbo" />
  88. <EntitySet Name="Sys_Scheduling" EntityType="EMISContext.Store.Sys_Scheduling" store:Type="Tables" Schema="dbo" />
  89. <EntitySet Name="Sys_SerialNumber" EntityType="EMISContext.Store.Sys_SerialNumber" store:Type="Tables" Schema="dbo" />
  90. <EntitySet Name="Sys_ShareRecord" EntityType="EMISContext.Store.Sys_ShareRecord" store:Type="Tables" Schema="dbo" />
  91. <EntitySet Name="Sys_User" EntityType="EMISContext.Store.Sys_User" store:Type="Tables" Schema="dbo" />
  92. <EntitySet Name="Sys_User_Sys_Role" EntityType="EMISContext.Store.Sys_User_Sys_Role" store:Type="Tables" Schema="dbo" />
  93. <EntitySet Name="Sys_UserScore" EntityType="EMISContext.Store.Sys_UserScore" store:Type="Tables" Schema="dbo" />
  94. <EntitySet Name="TestOperate" EntityType="EMISContext.Store.TestOperate" store:Type="Tables" Schema="dbo" />
  95. <AssociationSet Name="FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME" Association="EMISContext.Store.FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME">
  96. <End Role="EM_CoursesTime" EntitySet="EM_CoursesTime" />
  97. <End Role="CF_Arrangements" EntitySet="CF_Arrangements" />
  98. </AssociationSet>
  99. <AssociationSet Name="FK_CF_CAMPU_REFERENCE_CF_CAMPU" Association="EMISContext.Store.FK_CF_CAMPU_REFERENCE_CF_CAMPU">
  100. <End Role="CF_Campus" EntitySet="CF_Campus" />
  101. <End Role="CF_CampusProfile" EntitySet="CF_CampusProfile" />
  102. </AssociationSet>
  103. <AssociationSet Name="FK_CF_Campus_REFERENCE_CF_UNIVERSITY" Association="EMISContext.Store.FK_CF_Campus_REFERENCE_CF_UNIVERSITY">
  104. <End Role="CF_University" EntitySet="CF_University" />
  105. <End Role="CF_Campus" EntitySet="CF_Campus" />
  106. </AssociationSet>
  107. <AssociationSet Name="FK_CF_CLASS_REFERENCE_CF_GRADE" Association="EMISContext.Store.FK_CF_CLASS_REFERENCE_CF_GRADE">
  108. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  109. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  110. </AssociationSet>
  111. <AssociationSet Name="FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT" Association="EMISContext.Store.FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT">
  112. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  113. <End Role="CF_Student" EntitySet="CF_Student" />
  114. </AssociationSet>
  115. <AssociationSet Name="FK_CF_COLLE_REFERENCE_CF_COLLE" Association="EMISContext.Store.FK_CF_COLLE_REFERENCE_CF_COLLE">
  116. <End Role="CF_College" EntitySet="CF_College" />
  117. <End Role="CF_CollegeProfile" EntitySet="CF_CollegeProfile" />
  118. </AssociationSet>
  119. <AssociationSet Name="FK_CF_COLLEGE_REFERENCE_CF_Campus" Association="EMISContext.Store.FK_CF_COLLEGE_REFERENCE_CF_Campus">
  120. <End Role="CF_Campus" EntitySet="CF_Campus" />
  121. <End Role="CF_College" EntitySet="CF_College" />
  122. </AssociationSet>
  123. <AssociationSet Name="FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary" Association="EMISContext.Store.FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary">
  124. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  125. <End Role="CF_DataCenterCodeTranslate" EntitySet="CF_DataCenterCodeTranslate" />
  126. </AssociationSet>
  127. <AssociationSet Name="FK_CF_DEPAR_REFERENCE_CF_DEPAR" Association="EMISContext.Store.FK_CF_DEPAR_REFERENCE_CF_DEPAR">
  128. <End Role="CF_Department" EntitySet="CF_Department" />
  129. <End Role="CF_DepartmentProfile" EntitySet="CF_DepartmentProfile" />
  130. </AssociationSet>
  131. <AssociationSet Name="FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE" Association="EMISContext.Store.FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE">
  132. <End Role="CF_College" EntitySet="CF_College" />
  133. <End Role="CF_Department" EntitySet="CF_Department" />
  134. </AssociationSet>
  135. <AssociationSet Name="FK_CF_FACUL_REFERENCE_CF_COLLE" Association="EMISContext.Store.FK_CF_FACUL_REFERENCE_CF_COLLE">
  136. <End Role="CF_College" EntitySet="CF_College" />
  137. <End Role="CF_Facultymajor" EntitySet="CF_Facultymajor" />
  138. </AssociationSet>
  139. <AssociationSet Name="FK_CF_GRADE_REFERENCE_CF_FACUL" Association="EMISContext.Store.FK_CF_GRADE_REFERENCE_CF_FACUL">
  140. <End Role="CF_Facultymajor" EntitySet="CF_Facultymajor" />
  141. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  142. </AssociationSet>
  143. <AssociationSet Name="FK_CF_Grademajor_CF_Schoolyear" Association="EMISContext.Store.FK_CF_Grademajor_CF_Schoolyear">
  144. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  145. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  146. </AssociationSet>
  147. <AssociationSet Name="FK_CF_Recruitstudents_REFERENCE_CF_STUDENT" Association="EMISContext.Store.FK_CF_Recruitstudents_REFERENCE_CF_STUDENT">
  148. <End Role="CF_Student" EntitySet="CF_Student" />
  149. <End Role="CF_Recruitstudents" EntitySet="CF_Recruitstudents" />
  150. </AssociationSet>
  151. <AssociationSet Name="FK_CF_SOCIA_REFERENCE_CF_CLASS" Association="EMISContext.Store.FK_CF_SOCIA_REFERENCE_CF_CLASS">
  152. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  153. <End Role="CF_SocialClassmajor" EntitySet="CF_SocialClassmajor" />
  154. </AssociationSet>
  155. <AssociationSet Name="FK_CF_Staff_CF_College" Association="EMISContext.Store.FK_CF_Staff_CF_College">
  156. <End Role="CF_College" EntitySet="CF_College" />
  157. <End Role="CF_Staff" EntitySet="CF_Staff" />
  158. </AssociationSet>
  159. <AssociationSet Name="FK_CF_STAFF_REFERENCE_CF_STAFF" Association="EMISContext.Store.FK_CF_STAFF_REFERENCE_CF_STAFF">
  160. <End Role="CF_Staff" EntitySet="CF_Staff" />
  161. <End Role="CF_StaffProfile" EntitySet="CF_StaffProfile" />
  162. </AssociationSet>
  163. <AssociationSet Name="FK_CF_STAFF_REFERENCE_Department" Association="EMISContext.Store.FK_CF_STAFF_REFERENCE_Department">
  164. <End Role="CF_Department" EntitySet="CF_Department" />
  165. <End Role="CF_Staff" EntitySet="CF_Staff" />
  166. </AssociationSet>
  167. <AssociationSet Name="FK_CF_Staff_Sys_User" Association="EMISContext.Store.FK_CF_Staff_Sys_User">
  168. <End Role="Sys_User" EntitySet="Sys_User" />
  169. <End Role="CF_Staff" EntitySet="CF_Staff" />
  170. </AssociationSet>
  171. <AssociationSet Name="FK_CF_StaffManageCampus_REFERENCE_CF_Campus" Association="EMISContext.Store.FK_CF_StaffManageCampus_REFERENCE_CF_Campus">
  172. <End Role="CF_Campus" EntitySet="CF_Campus" />
  173. <End Role="CF_StaffManageCampus" EntitySet="CF_StaffManageCampus" />
  174. </AssociationSet>
  175. <AssociationSet Name="FK_CF_StaffManageCampus_REFERENCE_CF_STAFF" Association="EMISContext.Store.FK_CF_StaffManageCampus_REFERENCE_CF_STAFF">
  176. <End Role="CF_Staff" EntitySet="CF_Staff" />
  177. <End Role="CF_StaffManageCampus" EntitySet="CF_StaffManageCampus" />
  178. </AssociationSet>
  179. <AssociationSet Name="FK_CF_StaffManageCollege_REFERENCE_CF_College" Association="EMISContext.Store.FK_CF_StaffManageCollege_REFERENCE_CF_College">
  180. <End Role="CF_College" EntitySet="CF_College" />
  181. <End Role="CF_StaffManageCollege" EntitySet="CF_StaffManageCollege" />
  182. </AssociationSet>
  183. <AssociationSet Name="FK_CF_StaffManageCollege_REFERENCE_CF_STAFF" Association="EMISContext.Store.FK_CF_StaffManageCollege_REFERENCE_CF_STAFF">
  184. <End Role="CF_Staff" EntitySet="CF_Staff" />
  185. <End Role="CF_StaffManageCollege" EntitySet="CF_StaffManageCollege" />
  186. </AssociationSet>
  187. <AssociationSet Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Department" Association="EMISContext.Store.FK_CF_StaffManageDepartment_REFERENCE_CF_Department">
  188. <End Role="CF_Department" EntitySet="CF_Department" />
  189. <End Role="CF_StaffManageDepartment" EntitySet="CF_StaffManageDepartment" />
  190. </AssociationSet>
  191. <AssociationSet Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Staff" Association="EMISContext.Store.FK_CF_StaffManageDepartment_REFERENCE_CF_Staff">
  192. <End Role="CF_Staff" EntitySet="CF_Staff" />
  193. <End Role="CF_StaffManageDepartment" EntitySet="CF_StaffManageDepartment" />
  194. </AssociationSet>
  195. <AssociationSet Name="FK_CF_STUDE_REFERENCE_CF_SCHOO" Association="EMISContext.Store.FK_CF_STUDE_REFERENCE_CF_SCHOO">
  196. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  197. <End Role="CF_Recruitstudents" EntitySet="CF_Recruitstudents" />
  198. </AssociationSet>
  199. <AssociationSet Name="FK_CF_STUDENT_REFERENCE_SYS_USER" Association="EMISContext.Store.FK_CF_STUDENT_REFERENCE_SYS_USER">
  200. <End Role="Sys_User" EntitySet="Sys_User" />
  201. <End Role="CF_Student" EntitySet="CF_Student" />
  202. </AssociationSet>
  203. <AssociationSet Name="FK_CF_StudentAccount_REFERENCE_CF_STUDENT" Association="EMISContext.Store.FK_CF_StudentAccount_REFERENCE_CF_STUDENT">
  204. <End Role="CF_Student" EntitySet="CF_Student" />
  205. <End Role="CF_StudentAccount" EntitySet="CF_StudentAccount" />
  206. </AssociationSet>
  207. <AssociationSet Name="FK_CF_StudentContact_REFERENCE_CF_STUDENT" Association="EMISContext.Store.FK_CF_StudentContact_REFERENCE_CF_STUDENT">
  208. <End Role="CF_Student" EntitySet="CF_Student" />
  209. <End Role="CF_StudentContact" EntitySet="CF_StudentContact" />
  210. </AssociationSet>
  211. <AssociationSet Name="FK_CF_StudentProfile_REFERENCE_CF_STUDENT" Association="EMISContext.Store.FK_CF_StudentProfile_REFERENCE_CF_STUDENT">
  212. <End Role="CF_Student" EntitySet="CF_Student" />
  213. <End Role="CF_StudentProfile" EntitySet="CF_StudentProfile" />
  214. </AssociationSet>
  215. <AssociationSet Name="FK_CF_StudentRole_REFERENCE_SYS_ROLE" Association="EMISContext.Store.FK_CF_StudentRole_REFERENCE_SYS_ROLE">
  216. <End Role="Sys_Role" EntitySet="Sys_Role" />
  217. <End Role="CF_StudentRole" EntitySet="CF_StudentRole" />
  218. </AssociationSet>
  219. <AssociationSet Name="FK_CF_UNIVE_REFERENCE_CF_UNIVE" Association="EMISContext.Store.FK_CF_UNIVE_REFERENCE_CF_UNIVE">
  220. <End Role="CF_University" EntitySet="CF_University" />
  221. <End Role="CF_UniversityProfile" EntitySet="CF_UniversityProfile" />
  222. </AssociationSet>
  223. <AssociationSet Name="FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration" Association="EMISContext.Store.FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration">
  224. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  225. <End Role="CF_WechatPayList" EntitySet="CF_WechatPayList" />
  226. </AssociationSet>
  227. <AssociationSet Name="FK_CF_WechatSubscribe_Reference_43_CF_Student" Association="EMISContext.Store.FK_CF_WechatSubscribe_Reference_43_CF_Student">
  228. <End Role="CF_Student" EntitySet="CF_Student" />
  229. <End Role="CF_WechatSubscribe" EntitySet="CF_WechatSubscribe" />
  230. </AssociationSet>
  231. <AssociationSet Name="FK_EM_EXAMI_REFERENCE_EX_EXAMI" Association="EMISContext.Store.FK_EM_EXAMI_REFERENCE_EX_EXAMI">
  232. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  233. <End Role="EM_ExaminationMessage" EntitySet="EM_ExaminationMessage" />
  234. </AssociationSet>
  235. <AssociationSet Name="FK_EM_TrainingClass_CF_Student_Reference_57_EM_TrainingClass" Association="EMISContext.Store.FK_EM_TrainingClass_CF_Student_Reference_57_EM_TrainingClass">
  236. <End Role="EM_TrainingClass" EntitySet="EM_TrainingClass" />
  237. <End Role="EM_TrainingClass_CF_Student" EntitySet="EM_TrainingClass_CF_Student" />
  238. </AssociationSet>
  239. <AssociationSet Name="FK_EM_TrainingClass_CF_Student_Reference_58_CF_Student" Association="EMISContext.Store.FK_EM_TrainingClass_CF_Student_Reference_58_CF_Student">
  240. <End Role="CF_Student" EntitySet="CF_Student" />
  241. <End Role="EM_TrainingClass_CF_Student" EntitySet="EM_TrainingClass_CF_Student" />
  242. </AssociationSet>
  243. <AssociationSet Name="FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject" Association="EMISContext.Store.FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject">
  244. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  245. <End Role="EM_TrainingClass" EntitySet="EM_TrainingClass" />
  246. </AssociationSet>
  247. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject" Association="EMISContext.Store.FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject">
  248. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  249. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  250. </AssociationSet>
  251. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_42_CF_Student" Association="EMISContext.Store.FK_ER_CertisfierDistribute_Reference_42_CF_Student">
  252. <End Role="CF_Student" EntitySet="CF_Student" />
  253. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  254. </AssociationSet>
  255. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear" Association="EMISContext.Store.FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear">
  256. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  257. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  258. </AssociationSet>
  259. <AssociationSet Name="FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject" Association="EMISContext.Store.FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject">
  260. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  261. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  262. </AssociationSet>
  263. <AssociationSet Name="FK_ER_ExaminationScore_Reference_35_CF_Student" Association="EMISContext.Store.FK_ER_ExaminationScore_Reference_35_CF_Student">
  264. <End Role="CF_Student" EntitySet="CF_Student" />
  265. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  266. </AssociationSet>
  267. <AssociationSet Name="FK_ER_LevelSetting_Reference_33_EX_ExaminationProject" Association="EMISContext.Store.FK_ER_LevelSetting_Reference_33_EX_ExaminationProject">
  268. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  269. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  270. </AssociationSet>
  271. <AssociationSet Name="FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting" Association="EMISContext.Store.FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting">
  272. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  273. <End Role="ER_LevelSettingSubject" EntitySet="ER_LevelSettingSubject" />
  274. </AssociationSet>
  275. <AssociationSet Name="FK_ER_ProjectScore_Reference_37_EX_ExaminationProject" Association="EMISContext.Store.FK_ER_ProjectScore_Reference_37_EX_ExaminationProject">
  276. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  277. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  278. </AssociationSet>
  279. <AssociationSet Name="FK_ER_ProjectScore_Reference_38_CF_Student" Association="EMISContext.Store.FK_ER_ProjectScore_Reference_38_CF_Student">
  280. <End Role="CF_Student" EntitySet="CF_Student" />
  281. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  282. </AssociationSet>
  283. <AssociationSet Name="FK_ER_ProjectScore_Reference_39_ER_LevelSetting" Association="EMISContext.Store.FK_ER_ProjectScore_Reference_39_ER_LevelSetting">
  284. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  285. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  286. </AssociationSet>
  287. <AssociationSet Name="FK_ER_ProjectScore_Reference_51_CF_Schoolyear" Association="EMISContext.Store.FK_ER_ProjectScore_Reference_51_CF_Schoolyear">
  288. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  289. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  290. </AssociationSet>
  291. <AssociationSet Name="FK_ER_Resit_Reference_40_ER_ExaminationScore" Association="EMISContext.Store.FK_ER_Resit_Reference_40_ER_ExaminationScore">
  292. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  293. <End Role="ER_Resit" EntitySet="ER_Resit" />
  294. </AssociationSet>
  295. <AssociationSet Name="FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear" Association="EMISContext.Store.FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear">
  296. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  297. <End Role="EX_ExaminationBatch" EntitySet="EX_ExaminationBatch" />
  298. </AssociationSet>
  299. <AssociationSet Name="FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch" Association="EMISContext.Store.FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch">
  300. <End Role="EX_ExaminationBatch" EntitySet="EX_ExaminationBatch" />
  301. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  302. </AssociationSet>
  303. <AssociationSet Name="FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject" Association="EMISContext.Store.FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject">
  304. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  305. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  306. </AssociationSet>
  307. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject">
  308. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  309. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  310. </AssociationSet>
  311. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee">
  312. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  313. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  314. </AssociationSet>
  315. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College">
  316. <End Role="CF_College" EntitySet="CF_College" />
  317. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  318. </AssociationSet>
  319. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject">
  320. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  321. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  322. </AssociationSet>
  323. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee">
  324. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  325. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  326. </AssociationSet>
  327. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student" Association="EMISContext.Store.FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student">
  328. <End Role="CF_Student" EntitySet="CF_Student" />
  329. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  330. </AssociationSet>
  331. <AssociationSet Name="FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject" Association="EMISContext.Store.FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject">
  332. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  333. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  334. </AssociationSet>
  335. <AssociationSet Name="FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee" Association="EMISContext.Store.FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee">
  336. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  337. <End Role="EX_ExaminationProjectFeeType" EntitySet="EX_ExaminationProjectFeeType" />
  338. </AssociationSet>
  339. <AssociationSet Name="FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject" Association="EMISContext.Store.FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject">
  340. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  341. <End Role="EX_ExaminationProjectSubject" EntitySet="EX_ExaminationProjectSubject" />
  342. </AssociationSet>
  343. <AssociationSet Name="FK_EX_ExaminationRegistration_CF_Student" Association="EMISContext.Store.FK_EX_ExaminationRegistration_CF_Student">
  344. <End Role="CF_Student" EntitySet="CF_Student" />
  345. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  346. </AssociationSet>
  347. <AssociationSet Name="FK_EX_ExaminationRegistration_EX_ExaminationBatchProject" Association="EMISContext.Store.FK_EX_ExaminationRegistration_EX_ExaminationBatchProject">
  348. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  349. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  350. </AssociationSet>
  351. <AssociationSet Name="FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm" Association="EMISContext.Store.FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm">
  352. <End Role="EX_ExaminationRegistrationConfirm" EntitySet="EX_ExaminationRegistrationConfirm" />
  353. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  354. </AssociationSet>
  355. <AssociationSet Name="FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType" Association="EMISContext.Store.FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType">
  356. <End Role="EX_ExaminationProjectFeeType" EntitySet="EX_ExaminationProjectFeeType" />
  357. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  358. </AssociationSet>
  359. <AssociationSet Name="FK_EX_ExaminationRegistrationConfirm_Sys_User" Association="EMISContext.Store.FK_EX_ExaminationRegistrationConfirm_Sys_User">
  360. <End Role="Sys_User" EntitySet="Sys_User" />
  361. <End Role="EX_ExaminationRegistrationConfirm" EntitySet="EX_ExaminationRegistrationConfirm" />
  362. </AssociationSet>
  363. <AssociationSet Name="FK_EX_ExaminationSubject_Reference_EX_ExaminationType" Association="EMISContext.Store.FK_EX_ExaminationSubject_Reference_EX_ExaminationType">
  364. <End Role="EX_ExaminationType" EntitySet="EX_ExaminationType" />
  365. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  366. </AssociationSet>
  367. <AssociationSet Name="FK_EX_Receipt_REFERENCE_SYS_USER" Association="EMISContext.Store.FK_EX_Receipt_REFERENCE_SYS_USER">
  368. <End Role="Sys_User" EntitySet="Sys_User" />
  369. <End Role="EX_Receipt" EntitySet="EX_Receipt" />
  370. </AssociationSet>
  371. <AssociationSet Name="FK_SYS_ANNO_REFERENCE_SYS_ANNO" Association="EMISContext.Store.FK_SYS_ANNO_REFERENCE_SYS_ANNO">
  372. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  373. <End Role="Sys_Announcement_Sys_User" EntitySet="Sys_Announcement_Sys_User" />
  374. </AssociationSet>
  375. <AssociationSet Name="FK_SYS_ANNO_REFERENCE_SYS_USER" Association="EMISContext.Store.FK_SYS_ANNO_REFERENCE_SYS_USER">
  376. <End Role="Sys_User" EntitySet="Sys_User" />
  377. <End Role="Sys_Announcement_Sys_User" EntitySet="Sys_Announcement_Sys_User" />
  378. </AssociationSet>
  379. <AssociationSet Name="FK_Sys_Announcement_REFERENCE_Sys_Announcement_Sys_Role" Association="EMISContext.Store.FK_Sys_Announcement_REFERENCE_Sys_Announcement_Sys_Role">
  380. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  381. <End Role="Sys_Announcement_Sys_Role" EntitySet="Sys_Announcement_Sys_Role" />
  382. </AssociationSet>
  383. <AssociationSet Name="FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType" Association="EMISContext.Store.FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType">
  384. <End Role="Sys_AnnouncementType" EntitySet="Sys_AnnouncementType" />
  385. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  386. </AssociationSet>
  387. <AssociationSet Name="FK_Sys_Announcement_Sys_Role_REFERENCE_SYS_ROLE" Association="EMISContext.Store.FK_Sys_Announcement_Sys_Role_REFERENCE_SYS_ROLE">
  388. <End Role="Sys_Role" EntitySet="Sys_Role" />
  389. <End Role="Sys_Announcement_Sys_Role" EntitySet="Sys_Announcement_Sys_Role" />
  390. </AssociationSet>
  391. <AssociationSet Name="FK_SYS_BATC_REFERENCE_SYS_BATC" Association="EMISContext.Store.FK_SYS_BATC_REFERENCE_SYS_BATC">
  392. <End Role="Sys_BatchModify" EntitySet="Sys_BatchModify" />
  393. <End Role="Sys_BatchModifyExpand" EntitySet="Sys_BatchModifyExpand" />
  394. </AssociationSet>
  395. <AssociationSet Name="FK_SYS_BATC_REFERENCE_SYS_DICT" Association="EMISContext.Store.FK_SYS_BATC_REFERENCE_SYS_DICT">
  396. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  397. <End Role="Sys_BatchModify" EntitySet="Sys_BatchModify" />
  398. </AssociationSet>
  399. <AssociationSet Name="FK_SYS_Configureterms" Association="EMISContext.Store.FK_SYS_Configureterms">
  400. <End Role="Sys_ConfiguretermsInfo" EntitySet="Sys_ConfiguretermsInfo" />
  401. <End Role="Sys_ConfiguretermsExpand" EntitySet="Sys_ConfiguretermsExpand" />
  402. </AssociationSet>
  403. <AssociationSet Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION" Association="EMISContext.Store.FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION">
  404. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  405. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  406. </AssociationSet>
  407. <AssociationSet Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU" Association="EMISContext.Store.FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU">
  408. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  409. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  410. </AssociationSet>
  411. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_ContextMenu" Association="EMISContext.Store.FK_Sys_ControlItemDetail_Sys_ContextMenu">
  412. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  413. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  414. </AssociationSet>
  415. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_ControlItem" Association="EMISContext.Store.FK_Sys_ControlItemDetail_Sys_ControlItem">
  416. <End Role="Sys_ControlItem" EntitySet="Sys_ControlItem" />
  417. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  418. </AssociationSet>
  419. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_Menu" Association="EMISContext.Store.FK_Sys_ControlItemDetail_Sys_Menu">
  420. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  421. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  422. </AssociationSet>
  423. <AssociationSet Name="FK_Sys_DictionaryItem_Sys_Dictionary" Association="EMISContext.Store.FK_Sys_DictionaryItem_Sys_Dictionary">
  424. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  425. <End Role="Sys_DictionaryItem" EntitySet="Sys_DictionaryItem" />
  426. </AssociationSet>
  427. <AssociationSet Name="FK_Sys_MailVerifyCode_REFERENCE_SYS_USER" Association="EMISContext.Store.FK_Sys_MailVerifyCode_REFERENCE_SYS_USER">
  428. <End Role="Sys_User" EntitySet="Sys_User" />
  429. <End Role="Sys_MailVerifyCode" EntitySet="Sys_MailVerifyCode" />
  430. </AssociationSet>
  431. <AssociationSet Name="FK_SYS_MENU_REFERENCE_SYS_FUNC" Association="EMISContext.Store.FK_SYS_MENU_REFERENCE_SYS_FUNC">
  432. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  433. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  434. </AssociationSet>
  435. <AssociationSet Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_FUNCTION" Association="EMISContext.Store.FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_FUNCTION">
  436. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  437. <End Role="Sys_Role_Sys_FunctionCode" EntitySet="Sys_Role_Sys_FunctionCode" />
  438. </AssociationSet>
  439. <AssociationSet Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE" Association="EMISContext.Store.FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE">
  440. <End Role="Sys_Role" EntitySet="Sys_Role" />
  441. <End Role="Sys_Role_Sys_FunctionCode" EntitySet="Sys_Role_Sys_FunctionCode" />
  442. </AssociationSet>
  443. <AssociationSet Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU" Association="EMISContext.Store.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU">
  444. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  445. <End Role="Sys_RoleDataRange" EntitySet="Sys_RoleDataRange" />
  446. </AssociationSet>
  447. <AssociationSet Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE" Association="EMISContext.Store.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE">
  448. <End Role="Sys_Role" EntitySet="Sys_Role" />
  449. <End Role="Sys_RoleDataRange" EntitySet="Sys_RoleDataRange" />
  450. </AssociationSet>
  451. <AssociationSet Name="FK_Sys_ScheduleJob_Sys_Scheduling" Association="EMISContext.Store.FK_Sys_ScheduleJob_Sys_Scheduling">
  452. <End Role="Sys_ScheduleJob" EntitySet="Sys_ScheduleJob" />
  453. <End Role="Sys_Scheduling" EntitySet="Sys_Scheduling" />
  454. </AssociationSet>
  455. <AssociationSet Name="FK_Sys_Scheduling_Sys_ScheduleLog" Association="EMISContext.Store.FK_Sys_Scheduling_Sys_ScheduleLog">
  456. <End Role="Sys_Scheduling" EntitySet="Sys_Scheduling" />
  457. <End Role="Sys_ScheduleLog" EntitySet="Sys_ScheduleLog" />
  458. </AssociationSet>
  459. <AssociationSet Name="FK_Sys_User_Sys_Role_REFERENCE_SYS_ROLE" Association="EMISContext.Store.FK_Sys_User_Sys_Role_REFERENCE_SYS_ROLE">
  460. <End Role="Sys_Role" EntitySet="Sys_Role" />
  461. <End Role="Sys_User_Sys_Role" EntitySet="Sys_User_Sys_Role" />
  462. </AssociationSet>
  463. <AssociationSet Name="FK_Sys_User_Sys_Role_REFERENCE_SYS_USER" Association="EMISContext.Store.FK_Sys_User_Sys_Role_REFERENCE_SYS_USER">
  464. <End Role="Sys_User" EntitySet="Sys_User" />
  465. <End Role="Sys_User_Sys_Role" EntitySet="Sys_User_Sys_Role" />
  466. </AssociationSet>
  467. <AssociationSet Name="FK_TestOperate_Sys_User" Association="EMISContext.Store.FK_TestOperate_Sys_User">
  468. <End Role="Sys_User" EntitySet="Sys_User" />
  469. <End Role="TestOperate" EntitySet="TestOperate" />
  470. </AssociationSet>
  471. </EntityContainer>
  472. <EntityType Name="CF_Arrangements">
  473. <Key>
  474. <PropertyRef Name="ArrangementsID" />
  475. </Key>
  476. <Property Name="ArrangementsID" Type="uniqueidentifier" Nullable="false" />
  477. <Property Name="CoursesTimeID" Type="uniqueidentifier" />
  478. <Property Name="Weekday" Type="int" />
  479. <Property Name="IsOnWork" Type="bit" />
  480. <Property Name="RecordStatus" Type="int" />
  481. <Property Name="CreateTime" Type="datetime" />
  482. <Property Name="CreateUserID" Type="uniqueidentifier" />
  483. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  484. <Property Name="ModifyTime" Type="datetime" />
  485. </EntityType>
  486. <EntityType Name="CF_Campus">
  487. <Key>
  488. <PropertyRef Name="CampusID" />
  489. </Key>
  490. <Property Name="CampusID" Type="uniqueidentifier" Nullable="false" />
  491. <Property Name="UniversityID" Type="uniqueidentifier" />
  492. <Property Name="No" Type="varchar" MaxLength="20" />
  493. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  494. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  495. <Property Name="EnglishName" Type="nvarchar" MaxLength="50" />
  496. <Property Name="Remark" Type="nvarchar(max)" />
  497. <Property Name="RecordStatus" Type="int" />
  498. <Property Name="CreateUserID" Type="uniqueidentifier" />
  499. <Property Name="CreateTime" Type="datetime" />
  500. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  501. <Property Name="ModifyTime" Type="datetime" />
  502. </EntityType>
  503. <EntityType Name="CF_CampusProfile">
  504. <Key>
  505. <PropertyRef Name="CampusID" />
  506. </Key>
  507. <Property Name="CampusID" Type="uniqueidentifier" Nullable="false" />
  508. <Property Name="Generalsuper" Type="uniqueidentifier" />
  509. <Property Name="Recruitstudents" Type="uniqueidentifier" />
  510. <Property Name="Placesuper" Type="uniqueidentifier" />
  511. <Property Name="Teachingsuper" Type="uniqueidentifier" />
  512. <Property Name="Studentcharge" Type="uniqueidentifier" />
  513. <Property Name="ZIPCode" Type="nvarchar" MaxLength="20" />
  514. <Property Name="Officephone" Type="nvarchar" MaxLength="20" />
  515. <Property Name="FAX" Type="nvarchar" MaxLength="20" />
  516. <Property Name="Email" Type="nvarchar" MaxLength="20" />
  517. <Property Name="Evolution" Type="nvarchar" MaxLength="50" />
  518. <Property Name="RecordStatus" Type="int" />
  519. <Property Name="CreateUserID" Type="uniqueidentifier" />
  520. <Property Name="CreateTime" Type="datetime" />
  521. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  522. <Property Name="ModifyTime" Type="datetime" />
  523. </EntityType>
  524. <EntityType Name="CF_Classmajor">
  525. <Key>
  526. <PropertyRef Name="ClassmajorID" />
  527. </Key>
  528. <Property Name="ClassmajorID" Type="uniqueidentifier" Nullable="false" />
  529. <Property Name="GrademajorID" Type="uniqueidentifier" />
  530. <Property Name="No" Type="varchar" Nullable="false" MaxLength="50" />
  531. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  532. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  533. <Property Name="EnglishName" Type="nvarchar" MaxLength="100" />
  534. <Property Name="ClassNum" Type="int" />
  535. <Property Name="UserID" Type="uniqueidentifier" />
  536. <Property Name="AssistantUserID" Type="uniqueidentifier" />
  537. <Property Name="Fixedclassroom" Type="nvarchar" MaxLength="50" />
  538. <Property Name="Remark" Type="nvarchar(max)" />
  539. <Property Name="RecordStatus" Type="int" />
  540. <Property Name="CreateUserID" Type="uniqueidentifier" />
  541. <Property Name="CreateTime" Type="datetime" />
  542. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  543. <Property Name="ModifyTime" Type="datetime" />
  544. </EntityType>
  545. <EntityType Name="CF_College">
  546. <Key>
  547. <PropertyRef Name="CollegeID" />
  548. </Key>
  549. <Property Name="CollegeID" Type="uniqueidentifier" Nullable="false" />
  550. <Property Name="CampusID" Type="uniqueidentifier" />
  551. <Property Name="No" Type="varchar" MaxLength="20" />
  552. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  553. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  554. <Property Name="EnglishName" Type="varchar" MaxLength="100" />
  555. <Property Name="Remark" Type="nvarchar(max)" />
  556. <Property Name="RecordStatus" Type="int" />
  557. <Property Name="CreateUserID" Type="uniqueidentifier" />
  558. <Property Name="CreateTime" Type="datetime" />
  559. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  560. <Property Name="ModifyTime" Type="datetime" />
  561. </EntityType>
  562. <EntityType Name="CF_CollegeProfile">
  563. <Key>
  564. <PropertyRef Name="CollegeID" />
  565. </Key>
  566. <Property Name="CollegeID" Type="uniqueidentifier" Nullable="false" />
  567. <Property Name="PoliticalManager" Type="uniqueidentifier" />
  568. <Property Name="AdministrativeManager" Type="uniqueidentifier" />
  569. <Property Name="UnitCategoryID" Type="int" />
  570. <Property Name="CollegeTypeID" Type="int" />
  571. <Property Name="CollegeCategoryID" Type="int" />
  572. <Property Name="RunByCategoryID" Type="int" />
  573. <Property Name="FoundDate" Type="datetime" />
  574. <Property Name="Officephone" Type="nvarchar" MaxLength="20" />
  575. <Property Name="RecordStatus" Type="int" />
  576. <Property Name="CreateUserID" Type="uniqueidentifier" />
  577. <Property Name="CreateTime" Type="datetime" />
  578. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  579. <Property Name="ModifyTime" Type="datetime" />
  580. </EntityType>
  581. <EntityType Name="CF_DataCenterCodeTranslate">
  582. <Key>
  583. <PropertyRef Name="CodeType" />
  584. <PropertyRef Name="Code" />
  585. </Key>
  586. <Property Name="CodeType" Type="varchar" Nullable="false" MaxLength="50" />
  587. <Property Name="Code" Type="varchar" Nullable="false" MaxLength="10" />
  588. <Property Name="DictionaryCode" Type="nvarchar" MaxLength="50" />
  589. <Property Name="Value" Type="int" />
  590. </EntityType>
  591. <EntityType Name="CF_Department">
  592. <Key>
  593. <PropertyRef Name="DepartmentID" />
  594. </Key>
  595. <Property Name="DepartmentID" Type="uniqueidentifier" Nullable="false" />
  596. <Property Name="CollegeID" Type="uniqueidentifier" />
  597. <Property Name="No" Type="varchar" MaxLength="20" />
  598. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  599. <Property Name="SimpleName" Type="nvarchar" MaxLength="20" />
  600. <Property Name="EnglishName" Type="varchar" MaxLength="200" />
  601. <Property Name="HierarchyID" Type="varchar" MaxLength="500" />
  602. <Property Name="Remark" Type="nvarchar(max)" />
  603. <Property Name="RecordStatus" Type="int" />
  604. <Property Name="CreateUserID" Type="uniqueidentifier" />
  605. <Property Name="CreateTime" Type="datetime" />
  606. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  607. <Property Name="ModifyTime" Type="datetime" />
  608. </EntityType>
  609. <EntityType Name="CF_DepartmentProfile">
  610. <Key>
  611. <PropertyRef Name="DepartmentID" />
  612. </Key>
  613. <Property Name="DepartmentID" Type="uniqueidentifier" Nullable="false" />
  614. <Property Name="DirectorID" Type="uniqueidentifier" />
  615. <Property Name="DeputyDirectorID" Type="uniqueidentifier" />
  616. <Property Name="FoundDate" Type="datetime" />
  617. <Property Name="RecordStatus" Type="int" />
  618. <Property Name="CreateUserID" Type="uniqueidentifier" />
  619. <Property Name="CreateTime" Type="datetime" />
  620. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  621. <Property Name="ModifyTime" Type="datetime" />
  622. </EntityType>
  623. <EntityType Name="CF_Facultymajor">
  624. <Key>
  625. <PropertyRef Name="FacultymajorID" />
  626. </Key>
  627. <Property Name="FacultymajorID" Type="uniqueidentifier" Nullable="false" />
  628. <Property Name="CollegeID" Type="uniqueidentifier" />
  629. <Property Name="Code" Type="varchar" Nullable="false" MaxLength="50" />
  630. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  631. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  632. <Property Name="EnglishName" Type="nvarchar" MaxLength="100" />
  633. <Property Name="StandardID" Type="int" />
  634. <Property Name="EducationID" Type="int" />
  635. <Property Name="LearningformID" Type="int" />
  636. <Property Name="LearnSystem" Type="decimal" Scale="2" />
  637. <Property Name="ScienceclassID" Type="int" />
  638. <Property Name="LearningstyleID" Type="int" />
  639. <Property Name="LearnPositionID" Type="int" />
  640. <Property Name="TeacherIdentification" Type="nvarchar" MaxLength="50" />
  641. <Property Name="SetTime" Type="datetime" />
  642. <Property Name="Remark" Type="nvarchar(max)" />
  643. <Property Name="RecordStatus" Type="int" />
  644. <Property Name="CreateUserID" Type="uniqueidentifier" />
  645. <Property Name="CreateTime" Type="datetime" />
  646. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  647. <Property Name="ModifyTime" Type="datetime" />
  648. </EntityType>
  649. <EntityType Name="CF_Grademajor">
  650. <Key>
  651. <PropertyRef Name="GrademajorID" />
  652. </Key>
  653. <Property Name="GrademajorID" Type="uniqueidentifier" Nullable="false" />
  654. <Property Name="FacultymajorID" Type="uniqueidentifier" />
  655. <Property Name="Code" Type="varchar" Nullable="false" MaxLength="50" />
  656. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  657. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  658. <Property Name="SchoolyearID" Type="int" />
  659. <Property Name="SchoolcodeID" Type="int" />
  660. <Property Name="GraduatingSemesterID" Type="uniqueidentifier" />
  661. <Property Name="Professional" Type="varchar" MaxLength="100" />
  662. <Property Name="SchoolAreaID" Type="int" />
  663. <Property Name="Remark" Type="nvarchar(max)" />
  664. <Property Name="RecordStatus" Type="int" />
  665. <Property Name="CreateUserID" Type="uniqueidentifier" />
  666. <Property Name="CreateTime" Type="datetime" />
  667. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  668. <Property Name="ModifyTime" Type="datetime" />
  669. </EntityType>
  670. <EntityType Name="CF_InSchoolSetting">
  671. <Key>
  672. <PropertyRef Name="InSchoolSettingID" />
  673. </Key>
  674. <Property Name="InSchoolSettingID" Type="uniqueidentifier" Nullable="false" />
  675. <Property Name="InSchoolStatusID" Type="int" />
  676. <Property Name="IsSelected" Type="bit" />
  677. <Property Name="RecordStatus" Type="int" />
  678. <Property Name="CreateTime" Type="datetime" />
  679. <Property Name="CreateUserID" Type="uniqueidentifier" />
  680. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  681. <Property Name="ModifyTime" Type="datetime" />
  682. </EntityType>
  683. <EntityType Name="CF_Parameter">
  684. <Key>
  685. <PropertyRef Name="ParameterID" />
  686. </Key>
  687. <Property Name="ParameterID" Type="uniqueidentifier" Nullable="false" />
  688. <Property Name="ParameterTypeID" Type="int" />
  689. <Property Name="Value" Type="varchar(max)" />
  690. <Property Name="RecordStatus" Type="int" />
  691. <Property Name="CreateTime" Type="datetime" />
  692. <Property Name="CreateUserID" Type="uniqueidentifier" />
  693. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  694. <Property Name="ModifyTime" Type="datetime" />
  695. </EntityType>
  696. <EntityType Name="CF_Recruitstudents">
  697. <Key>
  698. <PropertyRef Name="UserID" />
  699. </Key>
  700. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  701. <Property Name="ExamineeNum" Type="varchar" MaxLength="50" />
  702. <Property Name="AdmissionTicketNo" Type="varchar" MaxLength="50" />
  703. <Property Name="ExamineeType" Type="int" />
  704. <Property Name="EntranceWay" Type="int" />
  705. <Property Name="EnteringSchoolYearID" Type="uniqueidentifier" />
  706. <Property Name="EntranceDate" Type="datetime" />
  707. <Property Name="PlaceBirth" Type="varchar" MaxLength="100" />
  708. <Property Name="Features" Type="int" />
  709. <Property Name="Score" Type="decimal" Scale="2" />
  710. <Property Name="Territorial" Type="int" />
  711. <Property Name="Area" Type="varchar" MaxLength="200" />
  712. <Property Name="RecordStatus" Type="int" />
  713. <Property Name="CreateTime" Type="datetime" />
  714. <Property Name="CreateUserID" Type="uniqueidentifier" />
  715. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  716. <Property Name="ModifyTime" Type="datetime" />
  717. </EntityType>
  718. <EntityType Name="CF_Schoolyear">
  719. <Key>
  720. <PropertyRef Name="SchoolyearID" />
  721. </Key>
  722. <Property Name="SchoolyearID" Type="uniqueidentifier" Nullable="false" />
  723. <Property Name="Code" Type="nvarchar" MaxLength="50" />
  724. <Property Name="Years" Type="int" Nullable="false" />
  725. <Property Name="SchoolcodeID" Type="int" Nullable="false" />
  726. <Property Name="WeeksNum" Type="int" Nullable="false" />
  727. <Property Name="FirstWeek" Type="datetime" Nullable="false" />
  728. <Property Name="IsCurrent" Type="bit" Nullable="false" />
  729. <Property Name="WeekDays" Type="int" Nullable="false" />
  730. <Property Name="RecordStatus" Type="int" />
  731. <Property Name="CreateTime" Type="datetime" />
  732. <Property Name="CreateUserID" Type="uniqueidentifier" />
  733. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  734. <Property Name="ModifyTime" Type="datetime" />
  735. <Property Name="Value" Type="int" />
  736. </EntityType>
  737. <EntityType Name="CF_SocialClassmajor">
  738. <Key>
  739. <PropertyRef Name="ClassmajorID" />
  740. </Key>
  741. <Property Name="ClassmajorID" Type="uniqueidentifier" Nullable="false" />
  742. <Property Name="SchoolAreaID" Type="int" />
  743. </EntityType>
  744. <EntityType Name="CF_Specialty">
  745. <Key>
  746. <PropertyRef Name="SpecialtyID" />
  747. </Key>
  748. <Property Name="SpecialtyID" Type="uniqueidentifier" Nullable="false" />
  749. <Property Name="StandardID" Type="int" />
  750. <Property Name="EducationID" Type="int" />
  751. <Property Name="LearningformID" Type="int" />
  752. <Property Name="LearnSystem" Type="decimal" Scale="2" />
  753. <Property Name="ScienceclassID" Type="int" />
  754. <Property Name="PropertyID" Type="int" />
  755. <Property Name="StandardTitle" Type="int" />
  756. <Property Name="StandardLevel" Type="int" />
  757. <Property Name="Remark" Type="nvarchar(max)" />
  758. <Property Name="RecordStatus" Type="int" />
  759. <Property Name="CreateUserID" Type="uniqueidentifier" />
  760. <Property Name="CreateTime" Type="datetime" />
  761. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  762. <Property Name="ModifyTime" Type="datetime" />
  763. </EntityType>
  764. <EntityType Name="CF_Staff">
  765. <Key>
  766. <PropertyRef Name="UserID" />
  767. </Key>
  768. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  769. <Property Name="CollegeID" Type="uniqueidentifier" />
  770. <Property Name="DepartmentID" Type="uniqueidentifier" />
  771. <Property Name="StaffCode" Type="varchar" Nullable="false" MaxLength="50" />
  772. <Property Name="BirthDate" Type="datetime" />
  773. <Property Name="Sex" Type="int" />
  774. <Property Name="TeacherType" Type="int" />
  775. <Property Name="IncumbencyState" Type="int" />
  776. <Property Name="CertificatesType" Type="int" />
  777. <Property Name="CertificatesNum" Type="varchar" MaxLength="50" />
  778. <Property Name="Situation" Type="int" />
  779. <Property Name="LiteracyLevels" Type="int" />
  780. <Property Name="DegreeState" Type="int" />
  781. <Property Name="LearnPosition" Type="int" />
  782. <Property Name="Title" Type="int" />
  783. <Property Name="WorkDate" Type="datetime" />
  784. <Property Name="ComeSchoolDate" Type="datetime" />
  785. <Property Name="TeachingDate" Type="datetime" />
  786. <Property Name="PhotoUrl" Type="varchar" MaxLength="200" />
  787. <Property Name="Profile" Type="varchar" MaxLength="500" />
  788. <Property Name="Remarks" Type="nvarchar(max)" />
  789. <Property Name="PaymentLevelID" Type="int" />
  790. <Property Name="IsDualTeacher" Type="bit" />
  791. <Property Name="RecordStatus" Type="int" />
  792. <Property Name="CreateTime" Type="datetime" />
  793. <Property Name="CreateUserID" Type="uniqueidentifier" />
  794. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  795. <Property Name="ModifyTime" Type="datetime" />
  796. </EntityType>
  797. <EntityType Name="CF_StaffManageCampus">
  798. <Key>
  799. <PropertyRef Name="StaffManageCampusID" />
  800. </Key>
  801. <Property Name="StaffManageCampusID" Type="uniqueidentifier" Nullable="false" />
  802. <Property Name="UserID" Type="uniqueidentifier" />
  803. <Property Name="CampusID" Type="uniqueidentifier" />
  804. <Property Name="RecordStatus" Type="int" />
  805. <Property Name="CreateTime" Type="datetime" />
  806. <Property Name="CreateUserID" Type="uniqueidentifier" />
  807. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  808. <Property Name="ModifyTime" Type="datetime" />
  809. </EntityType>
  810. <EntityType Name="CF_StaffManageCollege">
  811. <Key>
  812. <PropertyRef Name="StaffManageCollegeID" />
  813. </Key>
  814. <Property Name="StaffManageCollegeID" Type="uniqueidentifier" Nullable="false" />
  815. <Property Name="UserID" Type="uniqueidentifier" />
  816. <Property Name="CollegeID" Type="uniqueidentifier" />
  817. <Property Name="RecordStatus" Type="int" />
  818. <Property Name="CreateTime" Type="datetime" />
  819. <Property Name="CreateUserID" Type="uniqueidentifier" />
  820. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  821. <Property Name="ModifyTime" Type="datetime" />
  822. </EntityType>
  823. <EntityType Name="CF_StaffManageDepartment">
  824. <Key>
  825. <PropertyRef Name="StaffManageDepartmentID" />
  826. </Key>
  827. <Property Name="StaffManageDepartmentID" Type="uniqueidentifier" Nullable="false" />
  828. <Property Name="UserID" Type="uniqueidentifier" />
  829. <Property Name="DepartmentID" Type="uniqueidentifier" />
  830. <Property Name="RecordStatus" Type="int" />
  831. <Property Name="CreateTime" Type="datetime" />
  832. <Property Name="CreateUserID" Type="uniqueidentifier" />
  833. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  834. <Property Name="ModifyTime" Type="datetime" />
  835. </EntityType>
  836. <EntityType Name="CF_StaffProfile">
  837. <Key>
  838. <PropertyRef Name="UserID" />
  839. </Key>
  840. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  841. <Property Name="UsedName" Type="varchar" MaxLength="20" />
  842. <Property Name="Nation" Type="int" />
  843. <Property Name="Place" Type="nvarchar" MaxLength="20" />
  844. <Property Name="EducationCode" Type="int" />
  845. <Property Name="Telephone" Type="nvarchar" MaxLength="50" />
  846. <Property Name="OfficeTelephone" Type="nvarchar" MaxLength="50" />
  847. <Property Name="Mobile" Type="nvarchar" MaxLength="50" />
  848. <Property Name="Email" Type="nvarchar" MaxLength="50" />
  849. <Property Name="QQ" Type="varchar" MaxLength="20" />
  850. <Property Name="Nationality" Type="varchar" MaxLength="20" />
  851. <Property Name="HealthState" Type="int" />
  852. <Property Name="HousePhone" Type="varchar" MaxLength="20" />
  853. <Property Name="Address" Type="varchar" MaxLength="50" />
  854. <Property Name="Postcode" Type="varchar" MaxLength="10" />
  855. <Property Name="HomeAddress" Type="varchar" MaxLength="50" />
  856. <Property Name="NowAddress" Type="varchar" MaxLength="50" />
  857. <Property Name="Residence" Type="varchar" MaxLength="50" />
  858. <Property Name="Speciality" Type="varchar" MaxLength="500" />
  859. <Property Name="WeChatNum" Type="varchar" MaxLength="50" />
  860. <Property Name="Religion" Type="int" />
  861. <Property Name="Account" Type="varchar" MaxLength="50" />
  862. </EntityType>
  863. <EntityType Name="CF_Student">
  864. <Key>
  865. <PropertyRef Name="UserID" />
  866. </Key>
  867. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  868. <Property Name="ClassmajorID" Type="uniqueidentifier" />
  869. <Property Name="Sex" Type="int" />
  870. <Property Name="CertificatesType" Type="int" />
  871. <Property Name="IDNumber" Type="varchar" MaxLength="20" />
  872. <Property Name="StudentType" Type="int" />
  873. <Property Name="InSchoolStatusID" Type="int" />
  874. <Property Name="StudentStatus" Type="int" />
  875. <Property Name="CultureModel" Type="int" />
  876. <Property Name="IsProofread" Type="bit" />
  877. <Property Name="IsDreamProject" Type="bit" />
  878. <Property Name="StudentCardNo" Type="varchar" MaxLength="50" />
  879. <Property Name="PlanningGraduateDate" Type="datetime" />
  880. <Property Name="GraduateDate" Type="datetime" />
  881. <Property Name="GraduateCardNo" Type="varchar" MaxLength="50" />
  882. <Property Name="ReplaceGraduateNo" Type="varchar" MaxLength="50" />
  883. <Property Name="DegreeStatus" Type="bit" />
  884. <Property Name="PhotoUrl" Type="varchar" MaxLength="500" />
  885. <Property Name="Career" Type="nvarchar(max)" />
  886. <Property Name="RecordStatus" Type="int" />
  887. <Property Name="CreateUserID" Type="uniqueidentifier" />
  888. <Property Name="CreateTime" Type="datetime" />
  889. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  890. <Property Name="ModifyTime" Type="datetime" />
  891. </EntityType>
  892. <EntityType Name="CF_StudentAccount">
  893. <Key>
  894. <PropertyRef Name="UserID" />
  895. </Key>
  896. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  897. <Property Name="CardNo" Type="varchar" MaxLength="50" />
  898. <Property Name="BankName" Type="nvarchar" MaxLength="50" />
  899. <Property Name="RecordStatus" Type="int" />
  900. <Property Name="CreateTime" Type="datetime" />
  901. <Property Name="CreateUserID" Type="uniqueidentifier" />
  902. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  903. <Property Name="ModifyTime" Type="datetime" />
  904. </EntityType>
  905. <EntityType Name="CF_StudentContact">
  906. <Key>
  907. <PropertyRef Name="UserID" />
  908. </Key>
  909. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  910. <Property Name="Email" Type="varchar" MaxLength="100" />
  911. <Property Name="QQ" Type="varchar" MaxLength="40" />
  912. <Property Name="Mobile" Type="varchar" MaxLength="50" />
  913. <Property Name="Telephone" Type="varchar" MaxLength="50" />
  914. <Property Name="MicroMsgNo" Type="varchar" MaxLength="20" />
  915. <Property Name="Zipcode" Type="varchar" MaxLength="20" />
  916. <Property Name="Address" Type="nvarchar(max)" />
  917. <Property Name="WorkUnit" Type="nvarchar" MaxLength="200" />
  918. <Property Name="HomeAddress" Type="nvarchar(max)" />
  919. <Property Name="Recipient" Type="nvarchar" MaxLength="20" />
  920. <Property Name="Dormitory" Type="nvarchar" MaxLength="100" />
  921. <Property Name="RecordStatus" Type="int" />
  922. <Property Name="CreateTime" Type="datetime" />
  923. <Property Name="CreateUserID" Type="uniqueidentifier" />
  924. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  925. <Property Name="ModifyTime" Type="datetime" />
  926. </EntityType>
  927. <EntityType Name="CF_StudentProfile">
  928. <Key>
  929. <PropertyRef Name="UserID" />
  930. </Key>
  931. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  932. <Property Name="UsedName" Type="nvarchar" MaxLength="200" />
  933. <Property Name="DirectorName" Type="nvarchar" MaxLength="200" />
  934. <Property Name="BirthDate" Type="datetime" />
  935. <Property Name="Country" Type="nvarchar" MaxLength="500" />
  936. <Property Name="Politics" Type="int" />
  937. <Property Name="LiteracyLevels" Type="int" />
  938. <Property Name="Nation" Type="int" />
  939. <Property Name="Place" Type="varchar" MaxLength="200" />
  940. <Property Name="Healthy" Type="int" />
  941. <Property Name="BloodGroup" Type="int" />
  942. <Property Name="BornPlace" Type="nvarchar" MaxLength="50" />
  943. <Property Name="Specialty" Type="varchar" MaxLength="200" />
  944. <Property Name="Height" Type="varchar" MaxLength="200" />
  945. <Property Name="Weight" Type="varchar" MaxLength="200" />
  946. <Property Name="Remarks" Type="varchar(max)" />
  947. <Property Name="GraduationPictureUrl" Type="varchar" MaxLength="500" />
  948. <Property Name="RecordStatus" Type="int" />
  949. <Property Name="CreateTime" Type="datetime" />
  950. <Property Name="CreateUserID" Type="uniqueidentifier" />
  951. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  952. <Property Name="ModifyTime" Type="datetime" />
  953. </EntityType>
  954. <EntityType Name="CF_StudentRole">
  955. <Key>
  956. <PropertyRef Name="RoleID" />
  957. </Key>
  958. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  959. <Property Name="StudentType" Type="int" />
  960. <Property Name="RecordStatus" Type="int" />
  961. <Property Name="CreateTime" Type="datetime" />
  962. <Property Name="CreateUserID" Type="uniqueidentifier" />
  963. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  964. <Property Name="ModifyTime" Type="datetime" />
  965. </EntityType>
  966. <EntityType Name="CF_University">
  967. <Key>
  968. <PropertyRef Name="UniversityID" />
  969. </Key>
  970. <Property Name="UniversityID" Type="uniqueidentifier" Nullable="false" />
  971. <Property Name="Code" Type="varchar" MaxLength="20" />
  972. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  973. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  974. <Property Name="EnglishName" Type="nvarchar" MaxLength="200" />
  975. <Property Name="Remark" Type="nvarchar(max)" />
  976. <Property Name="RecordStatus" Type="int" />
  977. <Property Name="CreateUserID" Type="uniqueidentifier" />
  978. <Property Name="CreateTime" Type="datetime" />
  979. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  980. <Property Name="ModifyTime" Type="datetime" />
  981. </EntityType>
  982. <EntityType Name="CF_UniversityProfile">
  983. <Key>
  984. <PropertyRef Name="UniversityID" />
  985. </Key>
  986. <Property Name="UniversityID" Type="uniqueidentifier" Nullable="false" />
  987. <Property Name="ProvinceID" Type="int" />
  988. <Property Name="CityID" Type="int" />
  989. <Property Name="DistrictID" Type="int" />
  990. <Property Name="PropertyID" Type="int" />
  991. <Property Name="SchoolTypeID" Type="int" />
  992. <Property Name="ManagerID" Type="int" />
  993. <Property Name="FounderTypeID" Type="int" />
  994. <Property Name="SchoolLevelID" Type="int" />
  995. <Property Name="HeadMasterName" Type="nvarchar" MaxLength="20" />
  996. <Property Name="PartyManageID" Type="uniqueidentifier" />
  997. <Property Name="LegalPersonName" Type="nvarchar" MaxLength="50" />
  998. <Property Name="BuildDate" Type="datetime" />
  999. <Property Name="AnniversaryDate" Type="datetime" />
  1000. <Property Name="SchoolBasis" Type="nvarchar" MaxLength="100" />
  1001. <Property Name="SchoolMotto" Type="nvarchar" MaxLength="100" />
  1002. <Property Name="SubjectCount" Type="int" />
  1003. <Property Name="Is211University" Type="bit" />
  1004. <Property Name="IsKeyUniversity" Type="bit" />
  1005. <Property Name="IsAdultCollege" Type="bit" />
  1006. <Property Name="IsPostCollege" Type="bit" />
  1007. <Property Name="IsNetCollege" Type="bit" />
  1008. <Property Name="Telephone" Type="varchar" MaxLength="20" />
  1009. <Property Name="ZIPCode" Type="varchar" MaxLength="10" />
  1010. <Property Name="Email" Type="varchar" MaxLength="50" />
  1011. <Property Name="FAX" Type="varchar" MaxLength="20" />
  1012. <Property Name="PublicNum" Type="nvarchar" MaxLength="50" />
  1013. <Property Name="HomePage" Type="varchar" MaxLength="500" />
  1014. <Property Name="Address" Type="nvarchar" MaxLength="500" />
  1015. <Property Name="EnglishAddress" Type="nvarchar" MaxLength="500" />
  1016. <Property Name="HistoryEvolution" Type="nvarchar(max)" />
  1017. <Property Name="RecordStatus" Type="int" />
  1018. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1019. <Property Name="CreateTime" Type="datetime" />
  1020. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1021. <Property Name="ModifyTime" Type="datetime" />
  1022. </EntityType>
  1023. <EntityType Name="CF_WechatPayList">
  1024. <Key>
  1025. <PropertyRef Name="WechatPayListID" />
  1026. </Key>
  1027. <Property Name="WechatPayListID" Type="uniqueidentifier" Nullable="false" />
  1028. <Property Name="ExaminationRegistrationID" Type="uniqueidentifier" />
  1029. <Property Name="OrderID" Type="varchar" MaxLength="50" />
  1030. <Property Name="WechatOrderID" Type="varchar" MaxLength="50" />
  1031. <Property Name="Total" Type="decimal" Scale="2" />
  1032. <Property Name="RefundOrderID" Type="varchar" MaxLength="50" />
  1033. <Property Name="RefundTotal" Type="decimal" Scale="2" />
  1034. <Property Name="RecordStatus" Type="int" />
  1035. <Property Name="CreateTime" Type="datetime" />
  1036. <Property Name="PayForm" Type="nvarchar(max)" />
  1037. <Property Name="PayUrl" Type="nvarchar(max)" />
  1038. </EntityType>
  1039. <EntityType Name="CF_WechatSubscribe">
  1040. <Key>
  1041. <PropertyRef Name="WechatSubscribeID" />
  1042. </Key>
  1043. <Property Name="WechatSubscribeID" Type="uniqueidentifier" Nullable="false" />
  1044. <Property Name="UserID" Type="uniqueidentifier" />
  1045. <Property Name="OpenID" Type="varchar" MaxLength="50" />
  1046. </EntityType>
  1047. <EntityType Name="EM_CoursesTime">
  1048. <Key>
  1049. <PropertyRef Name="CoursesTimeID" />
  1050. </Key>
  1051. <Property Name="CoursesTimeID" Type="uniqueidentifier" Nullable="false" />
  1052. <Property Name="StartTimes" Type="int" Nullable="false" />
  1053. <Property Name="EndTimes" Type="int" Nullable="false" />
  1054. <Property Name="TimesSegment" Type="int" Nullable="false" />
  1055. <Property Name="StartHour" Type="int" Nullable="false" />
  1056. <Property Name="StartMinutes" Type="int" Nullable="false" />
  1057. <Property Name="EndHour" Type="int" Nullable="false" />
  1058. <Property Name="EndMinutes" Type="int" Nullable="false" />
  1059. <Property Name="RecordStatus" Type="int" />
  1060. <Property Name="CreateTime" Type="datetime" />
  1061. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1062. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1063. <Property Name="ModifyTime" Type="datetime" />
  1064. </EntityType>
  1065. <EntityType Name="EM_ExaminationMessage">
  1066. <Key>
  1067. <PropertyRef Name="ExaminationRegistrationID" />
  1068. </Key>
  1069. <Property Name="ExaminationRegistrationID" Type="uniqueidentifier" Nullable="false" />
  1070. <Property Name="ExaminationTime" Type="datetime" />
  1071. <Property Name="Remark" Type="nvarchar(max)" />
  1072. <Property Name="RecordStatus" Type="int" />
  1073. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1074. <Property Name="CreateTime" Type="datetime" />
  1075. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1076. <Property Name="ModifyTime" Type="datetime" />
  1077. </EntityType>
  1078. <EntityType Name="EM_TrainingClass">
  1079. <Key>
  1080. <PropertyRef Name="TrainingClassID" />
  1081. </Key>
  1082. <Property Name="TrainingClassID" Type="uniqueidentifier" Nullable="false" />
  1083. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" />
  1084. <Property Name="SchoolAreaID" Type="int" />
  1085. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  1086. <Property Name="RecordStatus" Type="int" />
  1087. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1088. <Property Name="CreateTime" Type="datetime" />
  1089. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1090. <Property Name="ModifyTime" Type="datetime" />
  1091. </EntityType>
  1092. <EntityType Name="EM_TrainingClass_CF_Student">
  1093. <Key>
  1094. <PropertyRef Name="TrainingClassID" />
  1095. <PropertyRef Name="UserID" />
  1096. </Key>
  1097. <Property Name="TrainingClassID" Type="uniqueidentifier" Nullable="false" />
  1098. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1099. </EntityType>
  1100. <EntityType Name="ER_CertisfierDistribute">
  1101. <Key>
  1102. <PropertyRef Name="CertisfierDistributeID" />
  1103. </Key>
  1104. <Property Name="CertisfierDistributeID" Type="uniqueidentifier" Nullable="false" />
  1105. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1106. <Property Name="UserID" Type="uniqueidentifier" />
  1107. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1108. <Property Name="DistributeTypeID" Type="int" />
  1109. <Property Name="No" Type="varchar" MaxLength="50" />
  1110. <Property Name="Distributer" Type="nvarchar" MaxLength="50" />
  1111. <Property Name="DistributeTime" Type="datetime" />
  1112. <Property Name="ContactPerson" Type="nvarchar" MaxLength="50" />
  1113. <Property Name="ContactNo" Type="varchar" MaxLength="50" />
  1114. <Property Name="ContactIDNo" Type="varchar" MaxLength="50" />
  1115. <Property Name="Address" Type="nvarchar(max)" />
  1116. <Property Name="DeliveryNoteNo" Type="varchar" MaxLength="50" />
  1117. <Property Name="SaveNo" Type="nvarchar" MaxLength="50" />
  1118. <Property Name="RecordStatus" Type="int" />
  1119. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1120. <Property Name="CreateTime" Type="datetime" />
  1121. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1122. <Property Name="ModifyTime" Type="datetime" />
  1123. </EntityType>
  1124. <EntityType Name="ER_ExaminationScore">
  1125. <Key>
  1126. <PropertyRef Name="ExaminationScoreID" />
  1127. </Key>
  1128. <Property Name="ExaminationScoreID" Type="uniqueidentifier" Nullable="false" />
  1129. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" />
  1130. <Property Name="UserID" Type="uniqueidentifier" />
  1131. <Property Name="ExaminationSubjectID" Type="int" />
  1132. <Property Name="IsResit" Type="bit" />
  1133. <Property Name="Score" Type="decimal" Scale="2" />
  1134. <Property Name="Expire" Type="date" />
  1135. <Property Name="Remark" Type="nvarchar(max)" />
  1136. <Property Name="RecordStatus" Type="int" />
  1137. <Property Name="CreateTime" Type="datetime" />
  1138. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1139. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1140. <Property Name="ModifyTime" Type="datetime" />
  1141. </EntityType>
  1142. <EntityType Name="ER_LevelSetting">
  1143. <Key>
  1144. <PropertyRef Name="LevelSettingID" />
  1145. </Key>
  1146. <Property Name="LevelSettingID" Type="uniqueidentifier" Nullable="false" />
  1147. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1148. <Property Name="LevelName" Type="varchar" MaxLength="50" />
  1149. <Property Name="IsPassed" Type="bit" />
  1150. <Property Name="IsPassLine" Type="bit" />
  1151. <Property Name="RecordStatus" Type="int" />
  1152. <Property Name="CreateTime" Type="datetime" />
  1153. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1154. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1155. <Property Name="ModifyTime" Type="datetime" />
  1156. </EntityType>
  1157. <EntityType Name="ER_LevelSettingSubject">
  1158. <Key>
  1159. <PropertyRef Name="LevelSettingSubjectID" />
  1160. </Key>
  1161. <Property Name="LevelSettingSubjectID" Type="uniqueidentifier" Nullable="false" />
  1162. <Property Name="LevelSettingID" Type="uniqueidentifier" />
  1163. <Property Name="ExaminationSubjectID" Type="int" />
  1164. <Property Name="PassScore" Type="decimal" Scale="2" />
  1165. <Property Name="RecordStatus" Type="int" />
  1166. <Property Name="CreateTime" Type="datetime" />
  1167. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1168. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1169. <Property Name="ModifyTime" Type="datetime" />
  1170. </EntityType>
  1171. <EntityType Name="ER_ProjectScore">
  1172. <Key>
  1173. <PropertyRef Name="ProjectScoreID" />
  1174. </Key>
  1175. <Property Name="ProjectScoreID" Type="uniqueidentifier" Nullable="false" />
  1176. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1177. <Property Name="UserID" Type="uniqueidentifier" />
  1178. <Property Name="LevelSettingID" Type="uniqueidentifier" />
  1179. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1180. <Property Name="RecordStatus" Type="int" />
  1181. <Property Name="CreateTime" Type="datetime" />
  1182. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1183. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1184. <Property Name="ModifyTime" Type="datetime" />
  1185. </EntityType>
  1186. <EntityType Name="ER_Resit">
  1187. <Key>
  1188. <PropertyRef Name="ResitID" />
  1189. </Key>
  1190. <Property Name="ResitID" Type="uniqueidentifier" Nullable="false" />
  1191. <Property Name="ExaminationScoreID" Type="uniqueidentifier" />
  1192. <Property Name="RecordStatus" Type="int" />
  1193. <Property Name="CreateTime" Type="datetime" />
  1194. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1195. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1196. <Property Name="ModifyTime" Type="datetime" />
  1197. </EntityType>
  1198. <EntityType Name="EX_ExaminationBatch">
  1199. <Key>
  1200. <PropertyRef Name="ExaminationBatchID" />
  1201. </Key>
  1202. <Property Name="ExaminationBatchID" Type="uniqueidentifier" Nullable="false" />
  1203. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1204. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1205. <Property Name="StartDate" Type="date" />
  1206. <Property Name="EndDate" Type="date" />
  1207. <Property Name="Remark" Type="nvarchar(max)" />
  1208. <Property Name="RecordStatus" Type="int" />
  1209. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1210. <Property Name="CreateTime" Type="datetime" />
  1211. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1212. <Property Name="ModifyTime" Type="datetime" />
  1213. </EntityType>
  1214. <EntityType Name="EX_ExaminationBatchProject">
  1215. <Key>
  1216. <PropertyRef Name="ExaminationBatchProjectID" />
  1217. </Key>
  1218. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" Nullable="false" />
  1219. <Property Name="ExaminationBatchID" Type="uniqueidentifier" />
  1220. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1221. <Property Name="StartDate" Type="date" />
  1222. <Property Name="EndDate" Type="date" />
  1223. <Property Name="SimulateTime" Type="nvarchar" MaxLength="50" />
  1224. <Property Name="Training" Type="nvarchar(max)" />
  1225. <Property Name="TakeCourseTime" Type="nvarchar" MaxLength="50" />
  1226. <Property Name="Remark" Type="nvarchar(max)" />
  1227. <Property Name="MaxRegistCount" Type="int" />
  1228. <Property Name="RecordStatus" Type="int" />
  1229. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1230. <Property Name="CreateTime" Type="datetime" />
  1231. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1232. <Property Name="ModifyTime" Type="datetime" />
  1233. </EntityType>
  1234. <EntityType Name="EX_ExaminationBatchProjectControl">
  1235. <Key>
  1236. <PropertyRef Name="ExaminationBatchProjectControlID" />
  1237. </Key>
  1238. <Property Name="ExaminationBatchProjectControlID" Type="uniqueidentifier" Nullable="false" />
  1239. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" />
  1240. <Property Name="ExaminationProjectFeeID" Type="uniqueidentifier" />
  1241. <Property Name="IsOnlinePay" Type="bit" />
  1242. <Property Name="SchoolyearID" Type="int" />
  1243. <Property Name="CollegeID" Type="uniqueidentifier" />
  1244. <Property Name="StandardID" Type="int" />
  1245. <Property Name="RecordStatus" Type="int" />
  1246. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1247. <Property Name="CreateTime" Type="datetime" />
  1248. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1249. <Property Name="ModifyTime" Type="datetime" />
  1250. </EntityType>
  1251. <EntityType Name="EX_ExaminationBatchProjectPersonControl">
  1252. <Key>
  1253. <PropertyRef Name="ExaminationBatchProjectPersonControlID" />
  1254. </Key>
  1255. <Property Name="ExaminationBatchProjectPersonControlID" Type="uniqueidentifier" Nullable="false" />
  1256. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" />
  1257. <Property Name="ExaminationProjectFeeID" Type="uniqueidentifier" />
  1258. <Property Name="UserID" Type="uniqueidentifier" />
  1259. <Property Name="IsOnlinePay" Type="bit" />
  1260. <Property Name="StartDate" Type="date" />
  1261. <Property Name="EndDate" Type="date" />
  1262. <Property Name="RecordStatus" Type="int" />
  1263. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1264. <Property Name="CreateTime" Type="datetime" />
  1265. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1266. <Property Name="ModifyTime" Type="datetime" />
  1267. </EntityType>
  1268. <EntityType Name="EX_ExaminationProject">
  1269. <Key>
  1270. <PropertyRef Name="ExaminationProjectID" />
  1271. </Key>
  1272. <Property Name="ExaminationProjectID" Type="uniqueidentifier" Nullable="false" />
  1273. <Property Name="ExaminationTypeID" Type="uniqueidentifier" />
  1274. <Property Name="ExaminationLevelID" Type="int" />
  1275. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1276. <Property Name="PreposeProjectID" Type="uniqueidentifier" />
  1277. <Property Name="IssuedByID" Type="int" />
  1278. <Property Name="Remark" Type="nvarchar(max)" />
  1279. <Property Name="RecordStatus" Type="int" />
  1280. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1281. <Property Name="CreateTime" Type="datetime" />
  1282. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1283. <Property Name="ModifyTime" Type="datetime" />
  1284. </EntityType>
  1285. <EntityType Name="EX_ExaminationProjectCollegeControl">
  1286. <Key>
  1287. <PropertyRef Name="ExaminationProjectCollegeControlID" />
  1288. </Key>
  1289. <Property Name="ExaminationProjectCollegeControlID" Type="uniqueidentifier" Nullable="false" />
  1290. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1291. <Property Name="StandardID" Type="int" />
  1292. <Property Name="RecordStatus" Type="int" />
  1293. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1294. <Property Name="CreateTime" Type="datetime" />
  1295. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1296. <Property Name="ModifyTime" Type="datetime" />
  1297. </EntityType>
  1298. <EntityType Name="EX_ExaminationProjectCountLimit">
  1299. <Key>
  1300. <PropertyRef Name="ExaminationSubjectCountLimitID" />
  1301. </Key>
  1302. <Property Name="ExaminationSubjectCountLimitID" Type="uniqueidentifier" Nullable="false" />
  1303. <Property Name="ExaminationTypeID" Type="uniqueidentifier" />
  1304. <Property Name="StandardID" Type="int" />
  1305. <Property Name="SchoolyearNumID" Type="int" />
  1306. <Property Name="SubjectCountLimit" Type="int" />
  1307. <Property Name="RecordStatus" Type="int" />
  1308. <Property Name="CreateTime" Type="datetime" />
  1309. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1310. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1311. <Property Name="ModifyTime" Type="datetime" />
  1312. </EntityType>
  1313. <EntityType Name="EX_ExaminationProjectFee">
  1314. <Key>
  1315. <PropertyRef Name="ExaminationProjectFeeID" />
  1316. </Key>
  1317. <Property Name="ExaminationProjectFeeID" Type="uniqueidentifier" Nullable="false" />
  1318. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1319. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1320. <Property Name="RecordStatus" Type="int" />
  1321. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1322. <Property Name="CreateTime" Type="datetime" />
  1323. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1324. <Property Name="ModifyTime" Type="datetime" />
  1325. </EntityType>
  1326. <EntityType Name="EX_ExaminationProjectFeeType">
  1327. <Key>
  1328. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  1329. </Key>
  1330. <Property Name="ExaminationProjectFeeTypeID" Type="uniqueidentifier" Nullable="false" />
  1331. <Property Name="ExaminationProjectFeeID" Type="uniqueidentifier" />
  1332. <Property Name="FeeTypeID" Type="int" />
  1333. <Property Name="Fee" Type="decimal" Scale="1" />
  1334. <Property Name="IsRequiredForNew" Type="bit" />
  1335. <Property Name="IsResit" Type="bit" />
  1336. <Property Name="IsTrainingFee" Type="bit" />
  1337. <Property Name="IsMaterial" Type="bit" />
  1338. <Property Name="RecordStatus" Type="int" />
  1339. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1340. <Property Name="CreateTime" Type="datetime" />
  1341. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1342. <Property Name="ModifyTime" Type="datetime" />
  1343. </EntityType>
  1344. <EntityType Name="EX_ExaminationProjectSubject">
  1345. <Key>
  1346. <PropertyRef Name="ExaminationProjectSubjectID" />
  1347. </Key>
  1348. <Property Name="ExaminationProjectSubjectID" Type="uniqueidentifier" Nullable="false" />
  1349. <Property Name="ExaminationProjectID" Type="uniqueidentifier" />
  1350. <Property Name="ExaminationSubjectID" Type="int" />
  1351. <Property Name="ResitCount" Type="int" />
  1352. <Property Name="RecordStatus" Type="int" />
  1353. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1354. <Property Name="CreateTime" Type="datetime" />
  1355. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1356. <Property Name="ModifyTime" Type="datetime" />
  1357. </EntityType>
  1358. <EntityType Name="EX_ExaminationRegistration">
  1359. <Key>
  1360. <PropertyRef Name="ExaminationRegistrationID" />
  1361. </Key>
  1362. <Property Name="ExaminationRegistrationID" Type="uniqueidentifier" Nullable="false" />
  1363. <Property Name="ExaminationProjectFeeTypeID" Type="uniqueidentifier" />
  1364. <Property Name="ExaminationRegistrationConfirmID" Type="uniqueidentifier" />
  1365. <Property Name="ExaminationBatchProjectID" Type="uniqueidentifier" />
  1366. <Property Name="UserID" Type="uniqueidentifier" />
  1367. <Property Name="Fee" Type="decimal" Scale="1" />
  1368. <Property Name="BankName" Type="nvarchar" MaxLength="50" />
  1369. <Property Name="CardNo" Type="varchar" MaxLength="50" />
  1370. <Property Name="Remark" Type="nvarchar(max)" />
  1371. <Property Name="PayTime" Type="datetime" />
  1372. <Property Name="RefundReason" Type="nvarchar(max)" />
  1373. <Property Name="RefundUserID" Type="uniqueidentifier" />
  1374. <Property Name="RefundTime" Type="datetime" />
  1375. <Property Name="RefundConfirmUserID" Type="uniqueidentifier" />
  1376. <Property Name="RefundConfirmTime" Type="datetime" />
  1377. <Property Name="RecordStatus" Type="int" />
  1378. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1379. <Property Name="CreateTime" Type="datetime" />
  1380. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1381. <Property Name="ModifyTime" Type="datetime" />
  1382. </EntityType>
  1383. <EntityType Name="EX_ExaminationRegistrationConfirm">
  1384. <Key>
  1385. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  1386. </Key>
  1387. <Property Name="ExaminationRegistrationConfirmID" Type="uniqueidentifier" Nullable="false" />
  1388. <Property Name="No" Type="varchar" MaxLength="50" />
  1389. <Property Name="ReceiptNo" Type="varchar" MaxLength="50" />
  1390. <Property Name="Receiver" Type="uniqueidentifier" />
  1391. <Property Name="BarcodeUrl" Type="nvarchar" MaxLength="1000" />
  1392. <Property Name="RecordStatus" Type="int" />
  1393. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1394. <Property Name="CreateTime" Type="datetime" />
  1395. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1396. <Property Name="ModifyTime" Type="datetime" />
  1397. </EntityType>
  1398. <EntityType Name="EX_ExaminationType">
  1399. <Key>
  1400. <PropertyRef Name="ExaminationTypeID" />
  1401. </Key>
  1402. <Property Name="ExaminationTypeID" Type="uniqueidentifier" Nullable="false" />
  1403. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1404. <Property Name="IsTimesLimit" Type="bit" />
  1405. <Property Name="RecordStatus" Type="int" />
  1406. <Property Name="CreateTime" Type="datetime" />
  1407. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1408. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1409. <Property Name="ModifyTime" Type="datetime" />
  1410. </EntityType>
  1411. <EntityType Name="EX_InvalidReceipt">
  1412. <Key>
  1413. <PropertyRef Name="InvalidReceiptID" />
  1414. </Key>
  1415. <Property Name="InvalidReceiptID" Type="uniqueidentifier" Nullable="false" />
  1416. <Property Name="ReceiptNo" Type="varchar" MaxLength="50" />
  1417. <Property Name="RecordStatus" Type="int" />
  1418. <Property Name="CreateTime" Type="datetime" />
  1419. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1420. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1421. <Property Name="ModifyTime" Type="datetime" />
  1422. </EntityType>
  1423. <EntityType Name="EX_Receipt">
  1424. <Key>
  1425. <PropertyRef Name="ReceiptID" />
  1426. </Key>
  1427. <Property Name="ReceiptID" Type="uniqueidentifier" Nullable="false" />
  1428. <Property Name="UserID" Type="uniqueidentifier" />
  1429. <Property Name="ReceiptStartNo" Type="varchar" MaxLength="50" />
  1430. <Property Name="ReceiptEndNo" Type="varchar" MaxLength="50" />
  1431. <Property Name="CurrentReceipNo" Type="varchar" MaxLength="50" />
  1432. <Property Name="RecordStatus" Type="int" />
  1433. <Property Name="CreateTime" Type="datetime" />
  1434. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1435. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1436. <Property Name="ModifyTime" Type="datetime" />
  1437. </EntityType>
  1438. <EntityType Name="Sys_Announcement">
  1439. <Key>
  1440. <PropertyRef Name="AnnouncementID" />
  1441. </Key>
  1442. <Property Name="AnnouncementID" Type="uniqueidentifier" Nullable="false" />
  1443. <Property Name="AnnouncementTypeID" Type="uniqueidentifier" />
  1444. <Property Name="Title" Type="nvarchar" MaxLength="100" />
  1445. <Property Name="Content" Type="nvarchar(max)" />
  1446. <Property Name="StartTime" Type="datetime" />
  1447. <Property Name="EndTime" Type="datetime" />
  1448. <Property Name="IsTop" Type="bit" />
  1449. <Property Name="RecordStatus" Type="int" />
  1450. <Property Name="CreateTime" Type="datetime" />
  1451. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1452. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1453. <Property Name="ModifyTime" Type="datetime" />
  1454. </EntityType>
  1455. <EntityType Name="Sys_Announcement_Sys_Role">
  1456. <Key>
  1457. <PropertyRef Name="AnnouncementID" />
  1458. <PropertyRef Name="RoleID" />
  1459. </Key>
  1460. <Property Name="AnnouncementID" Type="uniqueidentifier" Nullable="false" />
  1461. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1462. </EntityType>
  1463. <EntityType Name="Sys_Announcement_Sys_User">
  1464. <Key>
  1465. <PropertyRef Name="AnnouncementID" />
  1466. <PropertyRef Name="UserID" />
  1467. </Key>
  1468. <Property Name="AnnouncementID" Type="uniqueidentifier" Nullable="false" />
  1469. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1470. </EntityType>
  1471. <EntityType Name="Sys_AnnouncementType">
  1472. <Key>
  1473. <PropertyRef Name="AnnouncementTypeID" />
  1474. </Key>
  1475. <Property Name="AnnouncementTypeID" Type="uniqueidentifier" Nullable="false" />
  1476. <Property Name="No" Type="varchar" MaxLength="20" />
  1477. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1478. <Property Name="Description" Type="nvarchar(max)" />
  1479. <Property Name="RecordStatus" Type="int" />
  1480. <Property Name="CreateTime" Type="datetime" />
  1481. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1482. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1483. <Property Name="ModifyTime" Type="datetime" />
  1484. </EntityType>
  1485. <EntityType Name="Sys_BatchModify">
  1486. <Key>
  1487. <PropertyRef Name="BatchModifyID" />
  1488. </Key>
  1489. <Property Name="BatchModifyID" Type="uniqueidentifier" Nullable="false" />
  1490. <Property Name="Name" Type="varchar" MaxLength="50" />
  1491. <Property Name="Value" Type="varchar" MaxLength="50" />
  1492. <Property Name="ControlType" Type="varchar" MaxLength="50" />
  1493. <Property Name="ControlTextFiled" Type="varchar" MaxLength="50" />
  1494. <Property Name="ControlValueFiled" Type="varchar" MaxLength="50" />
  1495. <Property Name="PostUrl" Type="varchar" MaxLength="100" />
  1496. <Property Name="DictionaryCode" Type="nvarchar" MaxLength="50" />
  1497. <Property Name="ReturnUrl" Type="varchar" MaxLength="50" />
  1498. <Property Name="listControl" Type="varchar" MaxLength="50" />
  1499. <Property Name="MUNClass" Type="varchar" MaxLength="50" />
  1500. <Property Name="MNUID" Type="varchar" MaxLength="50" />
  1501. <Property Name="OrderNo" Type="int" />
  1502. <Property Name="RecordStatus" Type="int" />
  1503. <Property Name="CreateTime" Type="datetime" />
  1504. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1505. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1506. <Property Name="ModifyTime" Type="datetime" />
  1507. </EntityType>
  1508. <EntityType Name="Sys_BatchModifyEvents">
  1509. <Key>
  1510. <PropertyRef Name="BatchModifyEventsID" />
  1511. </Key>
  1512. <Property Name="BatchModifyEventsID" Type="uniqueidentifier" Nullable="false" />
  1513. <Property Name="MNUID" Type="varchar" MaxLength="50" />
  1514. <Property Name="MUNClass" Type="varchar" MaxLength="50" />
  1515. <Property Name="ColumnName" Type="varchar" MaxLength="50" />
  1516. <Property Name="OnBefore" Type="varchar" MaxLength="500" />
  1517. <Property Name="OnAfter" Type="varchar" MaxLength="500" />
  1518. <Property Name="CreateTime" Type="datetime" />
  1519. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1520. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1521. <Property Name="ModifyTime" Type="datetime" />
  1522. </EntityType>
  1523. <EntityType Name="Sys_BatchModifyExpand">
  1524. <Key>
  1525. <PropertyRef Name="ID" />
  1526. </Key>
  1527. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1528. <Property Name="BatchModifyID" Type="uniqueidentifier" />
  1529. <Property Name="ColumnName" Type="varchar" MaxLength="50" />
  1530. <Property Name="ColumnValue" Type="varchar" MaxLength="50" />
  1531. <Property Name="RecordStatus" Type="int" />
  1532. <Property Name="CreateTime" Type="datetime" />
  1533. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1534. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1535. <Property Name="ModifyTime" Type="datetime" />
  1536. </EntityType>
  1537. <EntityType Name="Sys_ConfiguretermsExpand">
  1538. <Key>
  1539. <PropertyRef Name="ID" />
  1540. </Key>
  1541. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1542. <Property Name="ConfiguretermsInfoID" Type="uniqueidentifier" />
  1543. <Property Name="ColumnName" Type="varchar" MaxLength="50" />
  1544. <Property Name="ColumnValue" Type="varchar" MaxLength="50" />
  1545. <Property Name="RecordStatus" Type="int" />
  1546. <Property Name="CreateTime" Type="datetime" />
  1547. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1548. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1549. <Property Name="ModifyTime" Type="datetime" />
  1550. </EntityType>
  1551. <EntityType Name="Sys_ConfiguretermsInfo">
  1552. <Key>
  1553. <PropertyRef Name="ID" />
  1554. </Key>
  1555. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1556. <Property Name="Name" Type="varchar" MaxLength="200" />
  1557. <Property Name="Value" Type="varchar" MaxLength="50" />
  1558. <Property Name="ControlType" Type="varchar" MaxLength="50" />
  1559. <Property Name="ControlTextFiled" Type="varchar" MaxLength="50" />
  1560. <Property Name="ControlValueFiled" Type="varchar" MaxLength="50" />
  1561. <Property Name="PostUrl" Type="varchar" MaxLength="50" />
  1562. <Property Name="DictionaryCode" Type="varchar" MaxLength="50" />
  1563. <Property Name="ReturnUrl" Type="varchar" MaxLength="50" />
  1564. <Property Name="listControl" Type="varchar" MaxLength="50" />
  1565. <Property Name="MUNClass" Type="varchar" MaxLength="50" />
  1566. <Property Name="MNUID" Type="varchar" MaxLength="50" />
  1567. <Property Name="OrderNo" Type="int" />
  1568. <Property Name="RecordStatus" Type="int" />
  1569. <Property Name="CreateTime" Type="datetime" />
  1570. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1571. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1572. <Property Name="ModifyTime" Type="datetime" />
  1573. </EntityType>
  1574. <EntityType Name="Sys_ContextMenu">
  1575. <Key>
  1576. <PropertyRef Name="ContextMnuNo" />
  1577. </Key>
  1578. <Property Name="ContextMnuNo" Type="nvarchar" Nullable="false" MaxLength="30" />
  1579. <Property Name="FormClass" Type="varchar" MaxLength="50" />
  1580. <Property Name="Title" Type="nvarchar" MaxLength="50" />
  1581. <Property Name="IsNeedPrivilege" Type="bit" Nullable="false" />
  1582. <Property Name="IconName" Type="nvarchar" MaxLength="50" />
  1583. <Property Name="Scripts" Type="varchar" MaxLength="500" />
  1584. <Property Name="SeqNo" Type="int" />
  1585. <Property Name="FunctionCode" Type="nvarchar" MaxLength="50" />
  1586. <Property Name="MenuNo" Type="nvarchar" MaxLength="30" />
  1587. <Property Name="RecordStatus" Type="int" />
  1588. </EntityType>
  1589. <EntityType Name="Sys_ControlItem">
  1590. <Key>
  1591. <PropertyRef Name="ControlItemCode" />
  1592. </Key>
  1593. <Property Name="ControlItemCode" Type="varchar" Nullable="false" MaxLength="30" />
  1594. <Property Name="ControlItemTypeID" Type="int" />
  1595. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1596. <Property Name="ClassName" Type="varchar" MaxLength="500" />
  1597. <Property Name="Message" Type="nvarchar" MaxLength="50" />
  1598. <Property Name="IsLoginControl" Type="bit" />
  1599. <Property Name="IsEnable" Type="bit" />
  1600. </EntityType>
  1601. <EntityType Name="Sys_ControlItemDetail">
  1602. <Key>
  1603. <PropertyRef Name="ControlItemDetailID" />
  1604. </Key>
  1605. <Property Name="ControlItemDetailID" Type="uniqueidentifier" Nullable="false" />
  1606. <Property Name="ControlItemCode" Type="varchar" Nullable="false" MaxLength="30" />
  1607. <Property Name="MenuNo" Type="nvarchar" MaxLength="30" />
  1608. <Property Name="ContextMnuNo" Type="nvarchar" MaxLength="30" />
  1609. </EntityType>
  1610. <EntityType Name="Sys_Dictionary">
  1611. <Key>
  1612. <PropertyRef Name="DictionaryCode" />
  1613. </Key>
  1614. <Property Name="DictionaryCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1615. <Property Name="Name" Type="nvarchar" MaxLength="500" />
  1616. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1617. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1618. <Property Name="IsEditable" Type="bit" />
  1619. </EntityType>
  1620. <EntityType Name="Sys_DictionaryItem">
  1621. <Key>
  1622. <PropertyRef Name="DictionaryItemID" />
  1623. </Key>
  1624. <Property Name="DictionaryItemID" Type="uniqueidentifier" Nullable="false" />
  1625. <Property Name="Code" Type="nvarchar" Nullable="false" MaxLength="50" />
  1626. <Property Name="DictionaryCode" Type="nvarchar" MaxLength="50" />
  1627. <Property Name="Value" Type="int" />
  1628. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  1629. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1630. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1631. <Property Name="IsEditable" Type="bit" />
  1632. </EntityType>
  1633. <EntityType Name="Sys_FunctionCode">
  1634. <Key>
  1635. <PropertyRef Name="FunctionCode" />
  1636. </Key>
  1637. <Property Name="FunctionCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1638. <Property Name="FunctionName" Type="nvarchar" MaxLength="50" />
  1639. <Property Name="ParentFunctionCode" Type="nvarchar" MaxLength="50" />
  1640. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1641. </EntityType>
  1642. <EntityType Name="Sys_LoginHistory">
  1643. <Key>
  1644. <PropertyRef Name="LoginHistoryID" />
  1645. </Key>
  1646. <Property Name="LoginHistoryID" Type="uniqueidentifier" Nullable="false" />
  1647. <Property Name="LoginID" Type="nvarchar" MaxLength="50" />
  1648. <Property Name="Count" Type="int" />
  1649. <Property Name="LoginFailTime" Type="datetime" />
  1650. </EntityType>
  1651. <EntityType Name="Sys_MailVerifyCode">
  1652. <Key>
  1653. <PropertyRef Name="UserID" />
  1654. </Key>
  1655. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1656. <Property Name="VerifyCode" Type="varchar" MaxLength="50" />
  1657. <Property Name="RecordStatus" Type="int" />
  1658. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1659. <Property Name="CreateTime" Type="datetime" />
  1660. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1661. <Property Name="ModifyTime" Type="datetime" />
  1662. </EntityType>
  1663. <EntityType Name="Sys_Menu">
  1664. <Key>
  1665. <PropertyRef Name="MenuNo" />
  1666. </Key>
  1667. <Property Name="MenuNo" Type="nvarchar" Nullable="false" MaxLength="30" />
  1668. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1669. <Property Name="MenuName" Type="nvarchar" Nullable="false" MaxLength="60" />
  1670. <Property Name="Icon" Type="nvarchar" MaxLength="50" />
  1671. <Property Name="Url" Type="varchar" MaxLength="500" />
  1672. <Property Name="ParentMenuNo" Type="nvarchar" MaxLength="30" />
  1673. <Property Name="Description" Type="nvarchar" MaxLength="500" />
  1674. <Property Name="IsTopMenu" Type="bit" Nullable="false" />
  1675. <Property Name="IsVisible" Type="bit" Nullable="false" />
  1676. <Property Name="IsLeaf" Type="bit" />
  1677. <Property Name="FunctionCode" Type="nvarchar" MaxLength="50" />
  1678. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1679. </EntityType>
  1680. <EntityType Name="Sys_Role">
  1681. <Key>
  1682. <PropertyRef Name="RoleID" />
  1683. </Key>
  1684. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1685. <Property Name="TypeID" Type="int" />
  1686. <Property Name="RoleName" Type="nvarchar" Nullable="false" MaxLength="100" />
  1687. <Property Name="Description" Type="nvarchar" MaxLength="500" />
  1688. <Property Name="IsSystemRole" Type="bit" Nullable="false" />
  1689. <Property Name="SystemRoleType" Type="int" />
  1690. <Property Name="DefaultDataRange" Type="int" />
  1691. <Property Name="RecordStatus" Type="int" />
  1692. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1693. <Property Name="CreateTime" Type="datetime" />
  1694. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1695. <Property Name="ModifyTime" Type="datetime" />
  1696. <Property Name="OrderNo" Type="int" />
  1697. </EntityType>
  1698. <EntityType Name="Sys_Role_Sys_FunctionCode">
  1699. <Key>
  1700. <PropertyRef Name="RoleID" />
  1701. <PropertyRef Name="FunctionCode" />
  1702. </Key>
  1703. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1704. <Property Name="FunctionCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1705. </EntityType>
  1706. <EntityType Name="Sys_RoleDataRange">
  1707. <Key>
  1708. <PropertyRef Name="RoleDataRangeID" />
  1709. </Key>
  1710. <Property Name="RoleDataRangeID" Type="uniqueidentifier" Nullable="false" />
  1711. <Property Name="RoleID" Type="uniqueidentifier" />
  1712. <Property Name="MenuNo" Type="nvarchar" MaxLength="30" />
  1713. <Property Name="DataRangeID" Type="int" Nullable="false" />
  1714. <Property Name="RecordStatus" Type="int" />
  1715. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1716. <Property Name="CreateTime" Type="datetime" />
  1717. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1718. <Property Name="ModifyTime" Type="datetime" />
  1719. </EntityType>
  1720. <EntityType Name="Sys_ScheduleJob">
  1721. <Key>
  1722. <PropertyRef Name="jobid" />
  1723. </Key>
  1724. <Property Name="jobid" Type="varchar" Nullable="false" MaxLength="100" />
  1725. <Property Name="jobname" Type="nvarchar" Nullable="false" MaxLength="100" />
  1726. <Property Name="assemname" Type="varchar" Nullable="false" MaxLength="200" />
  1727. <Property Name="classname" Type="varchar" Nullable="false" MaxLength="200" />
  1728. <Property Name="jobdesc" Type="nvarchar" Nullable="false" MaxLength="500" />
  1729. <Property Name="autolog" Type="bit" Nullable="false" />
  1730. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1731. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1732. <Property Name="CreateTime" Type="datetime" />
  1733. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1734. <Property Name="ModifyTime" Type="datetime" />
  1735. </EntityType>
  1736. <EntityType Name="Sys_ScheduleLog">
  1737. <Key>
  1738. <PropertyRef Name="scheduleLogID" />
  1739. </Key>
  1740. <Property Name="scheduleLogID" Type="uniqueidentifier" Nullable="false" />
  1741. <Property Name="scid" Type="uniqueidentifier" />
  1742. <Property Name="timeBegin" Type="datetime" Nullable="false" />
  1743. <Property Name="timeEnd" Type="datetime" Nullable="false" />
  1744. <Property Name="successful" Type="bit" Nullable="false" />
  1745. <Property Name="useSeconds" Type="int" Nullable="false" />
  1746. <Property Name="Desc" Type="nvarchar" MaxLength="1000" />
  1747. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1748. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1749. <Property Name="CreateTime" Type="datetime" />
  1750. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1751. <Property Name="ModifyTime" Type="datetime" />
  1752. </EntityType>
  1753. <EntityType Name="Sys_Scheduling">
  1754. <Key>
  1755. <PropertyRef Name="scid" />
  1756. </Key>
  1757. <Property Name="scid" Type="uniqueidentifier" Nullable="false" />
  1758. <Property Name="jobid" Type="varchar" MaxLength="100" />
  1759. <Property Name="datebegin" Type="char" Nullable="false" MaxLength="8" />
  1760. <Property Name="dateend" Type="char" Nullable="false" MaxLength="8" />
  1761. <Property Name="timefrom" Type="char" Nullable="false" MaxLength="10" />
  1762. <Property Name="timeto" Type="char" Nullable="false" MaxLength="10" />
  1763. <Property Name="looptype" Type="char" Nullable="false" MaxLength="1" />
  1764. <Property Name="loopnumb" Type="int" Nullable="false" />
  1765. <Property Name="scmode" Type="char" Nullable="false" MaxLength="1" />
  1766. <Property Name="scinterval" Type="int" Nullable="false" />
  1767. <Property Name="notes" Type="nvarchar" Nullable="false" MaxLength="500" />
  1768. <Property Name="status" Type="char" Nullable="false" MaxLength="1" />
  1769. <Property Name="lastrun" Type="datetime" />
  1770. <Property Name="totalloopnumb" Type="int" />
  1771. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1772. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1773. <Property Name="CreateTime" Type="datetime" />
  1774. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1775. <Property Name="ModifyTime" Type="datetime" />
  1776. </EntityType>
  1777. <EntityType Name="Sys_SerialNumber">
  1778. <Key>
  1779. <PropertyRef Name="ID" />
  1780. </Key>
  1781. <Property Name="ID" Type="varchar" Nullable="false" MaxLength="50" />
  1782. <Property Name="Number" Type="int" Nullable="false" />
  1783. <Property Name="ResetTime" Type="datetime" Nullable="false" />
  1784. </EntityType>
  1785. <EntityType Name="Sys_ShareRecord">
  1786. <Key>
  1787. <PropertyRef Name="ShareRecordID" />
  1788. </Key>
  1789. <Property Name="ShareRecordID" Type="uniqueidentifier" Nullable="false" />
  1790. <Property Name="DateTime" Type="datetime" />
  1791. <Property Name="AnnouncementID" Type="uniqueidentifier" />
  1792. <Property Name="UserID" Type="uniqueidentifier" />
  1793. <Property Name="OpenID" Type="nvarchar" MaxLength="50" />
  1794. <Property Name="RecordStatus" Type="int" />
  1795. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1796. <Property Name="CreateTime" Type="datetime" />
  1797. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1798. <Property Name="ModifyTime" Type="datetime" />
  1799. </EntityType>
  1800. <EntityType Name="Sys_User">
  1801. <Key>
  1802. <PropertyRef Name="UserID" />
  1803. </Key>
  1804. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1805. <Property Name="LoginID" Type="varchar" MaxLength="50" />
  1806. <Property Name="Password" Type="varchar" MaxLength="50" />
  1807. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1808. <Property Name="RecordStatus" Type="int" />
  1809. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1810. <Property Name="CreateTime" Type="datetime" />
  1811. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1812. <Property Name="ModifyTime" Type="datetime" />
  1813. </EntityType>
  1814. <EntityType Name="Sys_User_Sys_Role">
  1815. <Key>
  1816. <PropertyRef Name="UserID" />
  1817. <PropertyRef Name="RoleID" />
  1818. </Key>
  1819. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1820. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1821. </EntityType>
  1822. <EntityType Name="Sys_UserScore">
  1823. <Key>
  1824. <PropertyRef Name="UserID" />
  1825. </Key>
  1826. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1827. <Property Name="Score" Type="int" />
  1828. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1829. <Property Name="CreateTime" Type="datetime" />
  1830. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1831. <Property Name="ModifyTime" Type="datetime" />
  1832. </EntityType>
  1833. <EntityType Name="TestOperate">
  1834. <Key>
  1835. <PropertyRef Name="OperateID" />
  1836. </Key>
  1837. <Property Name="OperateID" Type="uniqueidentifier" Nullable="false" />
  1838. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1839. <Property Name="StartTime" Type="datetime" />
  1840. <Property Name="EndTime" Type="datetime" />
  1841. <Property Name="CreateTime" Type="datetime" />
  1842. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1843. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1844. <Property Name="ModifyTime" Type="datetime" />
  1845. </EntityType>
  1846. <Association Name="FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME">
  1847. <End Role="EM_CoursesTime" Type="EMISContext.Store.EM_CoursesTime" Multiplicity="0..1" />
  1848. <End Role="CF_Arrangements" Type="EMISContext.Store.CF_Arrangements" Multiplicity="*" />
  1849. <ReferentialConstraint>
  1850. <Principal Role="EM_CoursesTime">
  1851. <PropertyRef Name="CoursesTimeID" />
  1852. </Principal>
  1853. <Dependent Role="CF_Arrangements">
  1854. <PropertyRef Name="CoursesTimeID" />
  1855. </Dependent>
  1856. </ReferentialConstraint>
  1857. </Association>
  1858. <Association Name="FK_CF_CAMPU_REFERENCE_CF_CAMPU">
  1859. <End Role="CF_Campus" Type="EMISContext.Store.CF_Campus" Multiplicity="1">
  1860. <OnDelete Action="Cascade" />
  1861. </End>
  1862. <End Role="CF_CampusProfile" Type="EMISContext.Store.CF_CampusProfile" Multiplicity="0..1" />
  1863. <ReferentialConstraint>
  1864. <Principal Role="CF_Campus">
  1865. <PropertyRef Name="CampusID" />
  1866. </Principal>
  1867. <Dependent Role="CF_CampusProfile">
  1868. <PropertyRef Name="CampusID" />
  1869. </Dependent>
  1870. </ReferentialConstraint>
  1871. </Association>
  1872. <Association Name="FK_CF_Campus_REFERENCE_CF_UNIVERSITY">
  1873. <End Role="CF_University" Type="EMISContext.Store.CF_University" Multiplicity="0..1" />
  1874. <End Role="CF_Campus" Type="EMISContext.Store.CF_Campus" Multiplicity="*" />
  1875. <ReferentialConstraint>
  1876. <Principal Role="CF_University">
  1877. <PropertyRef Name="UniversityID" />
  1878. </Principal>
  1879. <Dependent Role="CF_Campus">
  1880. <PropertyRef Name="UniversityID" />
  1881. </Dependent>
  1882. </ReferentialConstraint>
  1883. </Association>
  1884. <Association Name="FK_CF_CLASS_REFERENCE_CF_GRADE">
  1885. <End Role="CF_Grademajor" Type="EMISContext.Store.CF_Grademajor" Multiplicity="0..1" />
  1886. <End Role="CF_Classmajor" Type="EMISContext.Store.CF_Classmajor" Multiplicity="*" />
  1887. <ReferentialConstraint>
  1888. <Principal Role="CF_Grademajor">
  1889. <PropertyRef Name="GrademajorID" />
  1890. </Principal>
  1891. <Dependent Role="CF_Classmajor">
  1892. <PropertyRef Name="GrademajorID" />
  1893. </Dependent>
  1894. </ReferentialConstraint>
  1895. </Association>
  1896. <Association Name="FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT">
  1897. <End Role="CF_Classmajor" Type="EMISContext.Store.CF_Classmajor" Multiplicity="0..1" />
  1898. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="*" />
  1899. <ReferentialConstraint>
  1900. <Principal Role="CF_Classmajor">
  1901. <PropertyRef Name="ClassmajorID" />
  1902. </Principal>
  1903. <Dependent Role="CF_Student">
  1904. <PropertyRef Name="ClassmajorID" />
  1905. </Dependent>
  1906. </ReferentialConstraint>
  1907. </Association>
  1908. <Association Name="FK_CF_COLLE_REFERENCE_CF_COLLE">
  1909. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="1">
  1910. <OnDelete Action="Cascade" />
  1911. </End>
  1912. <End Role="CF_CollegeProfile" Type="EMISContext.Store.CF_CollegeProfile" Multiplicity="0..1" />
  1913. <ReferentialConstraint>
  1914. <Principal Role="CF_College">
  1915. <PropertyRef Name="CollegeID" />
  1916. </Principal>
  1917. <Dependent Role="CF_CollegeProfile">
  1918. <PropertyRef Name="CollegeID" />
  1919. </Dependent>
  1920. </ReferentialConstraint>
  1921. </Association>
  1922. <Association Name="FK_CF_COLLEGE_REFERENCE_CF_Campus">
  1923. <End Role="CF_Campus" Type="EMISContext.Store.CF_Campus" Multiplicity="0..1" />
  1924. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="*" />
  1925. <ReferentialConstraint>
  1926. <Principal Role="CF_Campus">
  1927. <PropertyRef Name="CampusID" />
  1928. </Principal>
  1929. <Dependent Role="CF_College">
  1930. <PropertyRef Name="CampusID" />
  1931. </Dependent>
  1932. </ReferentialConstraint>
  1933. </Association>
  1934. <Association Name="FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary">
  1935. <End Role="Sys_Dictionary" Type="EMISContext.Store.Sys_Dictionary" Multiplicity="0..1" />
  1936. <End Role="CF_DataCenterCodeTranslate" Type="EMISContext.Store.CF_DataCenterCodeTranslate" Multiplicity="*" />
  1937. <ReferentialConstraint>
  1938. <Principal Role="Sys_Dictionary">
  1939. <PropertyRef Name="DictionaryCode" />
  1940. </Principal>
  1941. <Dependent Role="CF_DataCenterCodeTranslate">
  1942. <PropertyRef Name="DictionaryCode" />
  1943. </Dependent>
  1944. </ReferentialConstraint>
  1945. </Association>
  1946. <Association Name="FK_CF_DEPAR_REFERENCE_CF_DEPAR">
  1947. <End Role="CF_Department" Type="EMISContext.Store.CF_Department" Multiplicity="1">
  1948. <OnDelete Action="Cascade" />
  1949. </End>
  1950. <End Role="CF_DepartmentProfile" Type="EMISContext.Store.CF_DepartmentProfile" Multiplicity="0..1" />
  1951. <ReferentialConstraint>
  1952. <Principal Role="CF_Department">
  1953. <PropertyRef Name="DepartmentID" />
  1954. </Principal>
  1955. <Dependent Role="CF_DepartmentProfile">
  1956. <PropertyRef Name="DepartmentID" />
  1957. </Dependent>
  1958. </ReferentialConstraint>
  1959. </Association>
  1960. <Association Name="FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE">
  1961. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="0..1" />
  1962. <End Role="CF_Department" Type="EMISContext.Store.CF_Department" Multiplicity="*" />
  1963. <ReferentialConstraint>
  1964. <Principal Role="CF_College">
  1965. <PropertyRef Name="CollegeID" />
  1966. </Principal>
  1967. <Dependent Role="CF_Department">
  1968. <PropertyRef Name="CollegeID" />
  1969. </Dependent>
  1970. </ReferentialConstraint>
  1971. </Association>
  1972. <Association Name="FK_CF_FACUL_REFERENCE_CF_COLLE">
  1973. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="0..1" />
  1974. <End Role="CF_Facultymajor" Type="EMISContext.Store.CF_Facultymajor" Multiplicity="*" />
  1975. <ReferentialConstraint>
  1976. <Principal Role="CF_College">
  1977. <PropertyRef Name="CollegeID" />
  1978. </Principal>
  1979. <Dependent Role="CF_Facultymajor">
  1980. <PropertyRef Name="CollegeID" />
  1981. </Dependent>
  1982. </ReferentialConstraint>
  1983. </Association>
  1984. <Association Name="FK_CF_GRADE_REFERENCE_CF_FACUL">
  1985. <End Role="CF_Facultymajor" Type="EMISContext.Store.CF_Facultymajor" Multiplicity="0..1" />
  1986. <End Role="CF_Grademajor" Type="EMISContext.Store.CF_Grademajor" Multiplicity="*" />
  1987. <ReferentialConstraint>
  1988. <Principal Role="CF_Facultymajor">
  1989. <PropertyRef Name="FacultymajorID" />
  1990. </Principal>
  1991. <Dependent Role="CF_Grademajor">
  1992. <PropertyRef Name="FacultymajorID" />
  1993. </Dependent>
  1994. </ReferentialConstraint>
  1995. </Association>
  1996. <Association Name="FK_CF_Grademajor_CF_Schoolyear">
  1997. <End Role="CF_Schoolyear" Type="EMISContext.Store.CF_Schoolyear" Multiplicity="0..1" />
  1998. <End Role="CF_Grademajor" Type="EMISContext.Store.CF_Grademajor" Multiplicity="*" />
  1999. <ReferentialConstraint>
  2000. <Principal Role="CF_Schoolyear">
  2001. <PropertyRef Name="SchoolyearID" />
  2002. </Principal>
  2003. <Dependent Role="CF_Grademajor">
  2004. <PropertyRef Name="GraduatingSemesterID" />
  2005. </Dependent>
  2006. </ReferentialConstraint>
  2007. </Association>
  2008. <Association Name="FK_CF_Recruitstudents_REFERENCE_CF_STUDENT">
  2009. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="1">
  2010. <OnDelete Action="Cascade" />
  2011. </End>
  2012. <End Role="CF_Recruitstudents" Type="EMISContext.Store.CF_Recruitstudents" Multiplicity="0..1" />
  2013. <ReferentialConstraint>
  2014. <Principal Role="CF_Student">
  2015. <PropertyRef Name="UserID" />
  2016. </Principal>
  2017. <Dependent Role="CF_Recruitstudents">
  2018. <PropertyRef Name="UserID" />
  2019. </Dependent>
  2020. </ReferentialConstraint>
  2021. </Association>
  2022. <Association Name="FK_CF_SOCIA_REFERENCE_CF_CLASS">
  2023. <End Role="CF_Classmajor" Type="EMISContext.Store.CF_Classmajor" Multiplicity="1" />
  2024. <End Role="CF_SocialClassmajor" Type="EMISContext.Store.CF_SocialClassmajor" Multiplicity="0..1" />
  2025. <ReferentialConstraint>
  2026. <Principal Role="CF_Classmajor">
  2027. <PropertyRef Name="ClassmajorID" />
  2028. </Principal>
  2029. <Dependent Role="CF_SocialClassmajor">
  2030. <PropertyRef Name="ClassmajorID" />
  2031. </Dependent>
  2032. </ReferentialConstraint>
  2033. </Association>
  2034. <Association Name="FK_CF_Staff_CF_College">
  2035. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="0..1" />
  2036. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="*" />
  2037. <ReferentialConstraint>
  2038. <Principal Role="CF_College">
  2039. <PropertyRef Name="CollegeID" />
  2040. </Principal>
  2041. <Dependent Role="CF_Staff">
  2042. <PropertyRef Name="CollegeID" />
  2043. </Dependent>
  2044. </ReferentialConstraint>
  2045. </Association>
  2046. <Association Name="FK_CF_STAFF_REFERENCE_CF_STAFF">
  2047. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="1">
  2048. <OnDelete Action="Cascade" />
  2049. </End>
  2050. <End Role="CF_StaffProfile" Type="EMISContext.Store.CF_StaffProfile" Multiplicity="0..1" />
  2051. <ReferentialConstraint>
  2052. <Principal Role="CF_Staff">
  2053. <PropertyRef Name="UserID" />
  2054. </Principal>
  2055. <Dependent Role="CF_StaffProfile">
  2056. <PropertyRef Name="UserID" />
  2057. </Dependent>
  2058. </ReferentialConstraint>
  2059. </Association>
  2060. <Association Name="FK_CF_STAFF_REFERENCE_Department">
  2061. <End Role="CF_Department" Type="EMISContext.Store.CF_Department" Multiplicity="0..1" />
  2062. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="*" />
  2063. <ReferentialConstraint>
  2064. <Principal Role="CF_Department">
  2065. <PropertyRef Name="DepartmentID" />
  2066. </Principal>
  2067. <Dependent Role="CF_Staff">
  2068. <PropertyRef Name="DepartmentID" />
  2069. </Dependent>
  2070. </ReferentialConstraint>
  2071. </Association>
  2072. <Association Name="FK_CF_Staff_Sys_User">
  2073. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1">
  2074. <OnDelete Action="Cascade" />
  2075. </End>
  2076. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="0..1" />
  2077. <ReferentialConstraint>
  2078. <Principal Role="Sys_User">
  2079. <PropertyRef Name="UserID" />
  2080. </Principal>
  2081. <Dependent Role="CF_Staff">
  2082. <PropertyRef Name="UserID" />
  2083. </Dependent>
  2084. </ReferentialConstraint>
  2085. </Association>
  2086. <Association Name="FK_CF_StaffManageCampus_REFERENCE_CF_Campus">
  2087. <End Role="CF_Campus" Type="EMISContext.Store.CF_Campus" Multiplicity="0..1" />
  2088. <End Role="CF_StaffManageCampus" Type="EMISContext.Store.CF_StaffManageCampus" Multiplicity="*" />
  2089. <ReferentialConstraint>
  2090. <Principal Role="CF_Campus">
  2091. <PropertyRef Name="CampusID" />
  2092. </Principal>
  2093. <Dependent Role="CF_StaffManageCampus">
  2094. <PropertyRef Name="CampusID" />
  2095. </Dependent>
  2096. </ReferentialConstraint>
  2097. </Association>
  2098. <Association Name="FK_CF_StaffManageCampus_REFERENCE_CF_STAFF">
  2099. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="0..1">
  2100. <OnDelete Action="Cascade" />
  2101. </End>
  2102. <End Role="CF_StaffManageCampus" Type="EMISContext.Store.CF_StaffManageCampus" Multiplicity="*" />
  2103. <ReferentialConstraint>
  2104. <Principal Role="CF_Staff">
  2105. <PropertyRef Name="UserID" />
  2106. </Principal>
  2107. <Dependent Role="CF_StaffManageCampus">
  2108. <PropertyRef Name="UserID" />
  2109. </Dependent>
  2110. </ReferentialConstraint>
  2111. </Association>
  2112. <Association Name="FK_CF_StaffManageCollege_REFERENCE_CF_College">
  2113. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="0..1" />
  2114. <End Role="CF_StaffManageCollege" Type="EMISContext.Store.CF_StaffManageCollege" Multiplicity="*" />
  2115. <ReferentialConstraint>
  2116. <Principal Role="CF_College">
  2117. <PropertyRef Name="CollegeID" />
  2118. </Principal>
  2119. <Dependent Role="CF_StaffManageCollege">
  2120. <PropertyRef Name="CollegeID" />
  2121. </Dependent>
  2122. </ReferentialConstraint>
  2123. </Association>
  2124. <Association Name="FK_CF_StaffManageCollege_REFERENCE_CF_STAFF">
  2125. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="0..1">
  2126. <OnDelete Action="Cascade" />
  2127. </End>
  2128. <End Role="CF_StaffManageCollege" Type="EMISContext.Store.CF_StaffManageCollege" Multiplicity="*" />
  2129. <ReferentialConstraint>
  2130. <Principal Role="CF_Staff">
  2131. <PropertyRef Name="UserID" />
  2132. </Principal>
  2133. <Dependent Role="CF_StaffManageCollege">
  2134. <PropertyRef Name="UserID" />
  2135. </Dependent>
  2136. </ReferentialConstraint>
  2137. </Association>
  2138. <Association Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Department">
  2139. <End Role="CF_Department" Type="EMISContext.Store.CF_Department" Multiplicity="0..1" />
  2140. <End Role="CF_StaffManageDepartment" Type="EMISContext.Store.CF_StaffManageDepartment" Multiplicity="*" />
  2141. <ReferentialConstraint>
  2142. <Principal Role="CF_Department">
  2143. <PropertyRef Name="DepartmentID" />
  2144. </Principal>
  2145. <Dependent Role="CF_StaffManageDepartment">
  2146. <PropertyRef Name="DepartmentID" />
  2147. </Dependent>
  2148. </ReferentialConstraint>
  2149. </Association>
  2150. <Association Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Staff">
  2151. <End Role="CF_Staff" Type="EMISContext.Store.CF_Staff" Multiplicity="0..1" />
  2152. <End Role="CF_StaffManageDepartment" Type="EMISContext.Store.CF_StaffManageDepartment" Multiplicity="*" />
  2153. <ReferentialConstraint>
  2154. <Principal Role="CF_Staff">
  2155. <PropertyRef Name="UserID" />
  2156. </Principal>
  2157. <Dependent Role="CF_StaffManageDepartment">
  2158. <PropertyRef Name="UserID" />
  2159. </Dependent>
  2160. </ReferentialConstraint>
  2161. </Association>
  2162. <Association Name="FK_CF_STUDE_REFERENCE_CF_SCHOO">
  2163. <End Role="CF_Schoolyear" Type="EMISContext.Store.CF_Schoolyear" Multiplicity="0..1" />
  2164. <End Role="CF_Recruitstudents" Type="EMISContext.Store.CF_Recruitstudents" Multiplicity="*" />
  2165. <ReferentialConstraint>
  2166. <Principal Role="CF_Schoolyear">
  2167. <PropertyRef Name="SchoolyearID" />
  2168. </Principal>
  2169. <Dependent Role="CF_Recruitstudents">
  2170. <PropertyRef Name="EnteringSchoolYearID" />
  2171. </Dependent>
  2172. </ReferentialConstraint>
  2173. </Association>
  2174. <Association Name="FK_CF_STUDENT_REFERENCE_SYS_USER">
  2175. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1">
  2176. <OnDelete Action="Cascade" />
  2177. </End>
  2178. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2179. <ReferentialConstraint>
  2180. <Principal Role="Sys_User">
  2181. <PropertyRef Name="UserID" />
  2182. </Principal>
  2183. <Dependent Role="CF_Student">
  2184. <PropertyRef Name="UserID" />
  2185. </Dependent>
  2186. </ReferentialConstraint>
  2187. </Association>
  2188. <Association Name="FK_CF_StudentAccount_REFERENCE_CF_STUDENT">
  2189. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="1">
  2190. <OnDelete Action="Cascade" />
  2191. </End>
  2192. <End Role="CF_StudentAccount" Type="EMISContext.Store.CF_StudentAccount" Multiplicity="0..1" />
  2193. <ReferentialConstraint>
  2194. <Principal Role="CF_Student">
  2195. <PropertyRef Name="UserID" />
  2196. </Principal>
  2197. <Dependent Role="CF_StudentAccount">
  2198. <PropertyRef Name="UserID" />
  2199. </Dependent>
  2200. </ReferentialConstraint>
  2201. </Association>
  2202. <Association Name="FK_CF_StudentContact_REFERENCE_CF_STUDENT">
  2203. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="1">
  2204. <OnDelete Action="Cascade" />
  2205. </End>
  2206. <End Role="CF_StudentContact" Type="EMISContext.Store.CF_StudentContact" Multiplicity="0..1" />
  2207. <ReferentialConstraint>
  2208. <Principal Role="CF_Student">
  2209. <PropertyRef Name="UserID" />
  2210. </Principal>
  2211. <Dependent Role="CF_StudentContact">
  2212. <PropertyRef Name="UserID" />
  2213. </Dependent>
  2214. </ReferentialConstraint>
  2215. </Association>
  2216. <Association Name="FK_CF_StudentProfile_REFERENCE_CF_STUDENT">
  2217. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="1">
  2218. <OnDelete Action="Cascade" />
  2219. </End>
  2220. <End Role="CF_StudentProfile" Type="EMISContext.Store.CF_StudentProfile" Multiplicity="0..1" />
  2221. <ReferentialConstraint>
  2222. <Principal Role="CF_Student">
  2223. <PropertyRef Name="UserID" />
  2224. </Principal>
  2225. <Dependent Role="CF_StudentProfile">
  2226. <PropertyRef Name="UserID" />
  2227. </Dependent>
  2228. </ReferentialConstraint>
  2229. </Association>
  2230. <Association Name="FK_CF_StudentRole_REFERENCE_SYS_ROLE">
  2231. <End Role="Sys_Role" Type="EMISContext.Store.Sys_Role" Multiplicity="1">
  2232. <OnDelete Action="Cascade" />
  2233. </End>
  2234. <End Role="CF_StudentRole" Type="EMISContext.Store.CF_StudentRole" Multiplicity="0..1" />
  2235. <ReferentialConstraint>
  2236. <Principal Role="Sys_Role">
  2237. <PropertyRef Name="RoleID" />
  2238. </Principal>
  2239. <Dependent Role="CF_StudentRole">
  2240. <PropertyRef Name="RoleID" />
  2241. </Dependent>
  2242. </ReferentialConstraint>
  2243. </Association>
  2244. <Association Name="FK_CF_UNIVE_REFERENCE_CF_UNIVE">
  2245. <End Role="CF_University" Type="EMISContext.Store.CF_University" Multiplicity="1">
  2246. <OnDelete Action="Cascade" />
  2247. </End>
  2248. <End Role="CF_UniversityProfile" Type="EMISContext.Store.CF_UniversityProfile" Multiplicity="0..1" />
  2249. <ReferentialConstraint>
  2250. <Principal Role="CF_University">
  2251. <PropertyRef Name="UniversityID" />
  2252. </Principal>
  2253. <Dependent Role="CF_UniversityProfile">
  2254. <PropertyRef Name="UniversityID" />
  2255. </Dependent>
  2256. </ReferentialConstraint>
  2257. </Association>
  2258. <Association Name="FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration">
  2259. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="0..1" />
  2260. <End Role="CF_WechatPayList" Type="EMISContext.Store.CF_WechatPayList" Multiplicity="*" />
  2261. <ReferentialConstraint>
  2262. <Principal Role="EX_ExaminationRegistration">
  2263. <PropertyRef Name="ExaminationRegistrationID" />
  2264. </Principal>
  2265. <Dependent Role="CF_WechatPayList">
  2266. <PropertyRef Name="ExaminationRegistrationID" />
  2267. </Dependent>
  2268. </ReferentialConstraint>
  2269. </Association>
  2270. <Association Name="FK_CF_WechatSubscribe_Reference_43_CF_Student">
  2271. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2272. <End Role="CF_WechatSubscribe" Type="EMISContext.Store.CF_WechatSubscribe" Multiplicity="*" />
  2273. <ReferentialConstraint>
  2274. <Principal Role="CF_Student">
  2275. <PropertyRef Name="UserID" />
  2276. </Principal>
  2277. <Dependent Role="CF_WechatSubscribe">
  2278. <PropertyRef Name="UserID" />
  2279. </Dependent>
  2280. </ReferentialConstraint>
  2281. </Association>
  2282. <Association Name="FK_EM_EXAMI_REFERENCE_EX_EXAMI">
  2283. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="1" />
  2284. <End Role="EM_ExaminationMessage" Type="EMISContext.Store.EM_ExaminationMessage" Multiplicity="0..1" />
  2285. <ReferentialConstraint>
  2286. <Principal Role="EX_ExaminationRegistration">
  2287. <PropertyRef Name="ExaminationRegistrationID" />
  2288. </Principal>
  2289. <Dependent Role="EM_ExaminationMessage">
  2290. <PropertyRef Name="ExaminationRegistrationID" />
  2291. </Dependent>
  2292. </ReferentialConstraint>
  2293. </Association>
  2294. <Association Name="FK_EM_TrainingClass_CF_Student_Reference_57_EM_TrainingClass">
  2295. <End Role="EM_TrainingClass" Type="EMISContext.Store.EM_TrainingClass" Multiplicity="1" />
  2296. <End Role="EM_TrainingClass_CF_Student" Type="EMISContext.Store.EM_TrainingClass_CF_Student" Multiplicity="*" />
  2297. <ReferentialConstraint>
  2298. <Principal Role="EM_TrainingClass">
  2299. <PropertyRef Name="TrainingClassID" />
  2300. </Principal>
  2301. <Dependent Role="EM_TrainingClass_CF_Student">
  2302. <PropertyRef Name="TrainingClassID" />
  2303. </Dependent>
  2304. </ReferentialConstraint>
  2305. </Association>
  2306. <Association Name="FK_EM_TrainingClass_CF_Student_Reference_58_CF_Student">
  2307. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="1" />
  2308. <End Role="EM_TrainingClass_CF_Student" Type="EMISContext.Store.EM_TrainingClass_CF_Student" Multiplicity="*" />
  2309. <ReferentialConstraint>
  2310. <Principal Role="CF_Student">
  2311. <PropertyRef Name="UserID" />
  2312. </Principal>
  2313. <Dependent Role="EM_TrainingClass_CF_Student">
  2314. <PropertyRef Name="UserID" />
  2315. </Dependent>
  2316. </ReferentialConstraint>
  2317. </Association>
  2318. <Association Name="FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject">
  2319. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="0..1" />
  2320. <End Role="EM_TrainingClass" Type="EMISContext.Store.EM_TrainingClass" Multiplicity="*" />
  2321. <ReferentialConstraint>
  2322. <Principal Role="EX_ExaminationBatchProject">
  2323. <PropertyRef Name="ExaminationBatchProjectID" />
  2324. </Principal>
  2325. <Dependent Role="EM_TrainingClass">
  2326. <PropertyRef Name="ExaminationBatchProjectID" />
  2327. </Dependent>
  2328. </ReferentialConstraint>
  2329. </Association>
  2330. <Association Name="FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject">
  2331. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2332. <End Role="ER_CertisfierDistribute" Type="EMISContext.Store.ER_CertisfierDistribute" Multiplicity="*" />
  2333. <ReferentialConstraint>
  2334. <Principal Role="EX_ExaminationProject">
  2335. <PropertyRef Name="ExaminationProjectID" />
  2336. </Principal>
  2337. <Dependent Role="ER_CertisfierDistribute">
  2338. <PropertyRef Name="ExaminationProjectID" />
  2339. </Dependent>
  2340. </ReferentialConstraint>
  2341. </Association>
  2342. <Association Name="FK_ER_CertisfierDistribute_Reference_42_CF_Student">
  2343. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2344. <End Role="ER_CertisfierDistribute" Type="EMISContext.Store.ER_CertisfierDistribute" Multiplicity="*" />
  2345. <ReferentialConstraint>
  2346. <Principal Role="CF_Student">
  2347. <PropertyRef Name="UserID" />
  2348. </Principal>
  2349. <Dependent Role="ER_CertisfierDistribute">
  2350. <PropertyRef Name="UserID" />
  2351. </Dependent>
  2352. </ReferentialConstraint>
  2353. </Association>
  2354. <Association Name="FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear">
  2355. <End Role="CF_Schoolyear" Type="EMISContext.Store.CF_Schoolyear" Multiplicity="0..1" />
  2356. <End Role="ER_CertisfierDistribute" Type="EMISContext.Store.ER_CertisfierDistribute" Multiplicity="*" />
  2357. <ReferentialConstraint>
  2358. <Principal Role="CF_Schoolyear">
  2359. <PropertyRef Name="SchoolyearID" />
  2360. </Principal>
  2361. <Dependent Role="ER_CertisfierDistribute">
  2362. <PropertyRef Name="SchoolyearID" />
  2363. </Dependent>
  2364. </ReferentialConstraint>
  2365. </Association>
  2366. <Association Name="FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject">
  2367. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="0..1" />
  2368. <End Role="ER_ExaminationScore" Type="EMISContext.Store.ER_ExaminationScore" Multiplicity="*" />
  2369. <ReferentialConstraint>
  2370. <Principal Role="EX_ExaminationBatchProject">
  2371. <PropertyRef Name="ExaminationBatchProjectID" />
  2372. </Principal>
  2373. <Dependent Role="ER_ExaminationScore">
  2374. <PropertyRef Name="ExaminationBatchProjectID" />
  2375. </Dependent>
  2376. </ReferentialConstraint>
  2377. </Association>
  2378. <Association Name="FK_ER_ExaminationScore_Reference_35_CF_Student">
  2379. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2380. <End Role="ER_ExaminationScore" Type="EMISContext.Store.ER_ExaminationScore" Multiplicity="*" />
  2381. <ReferentialConstraint>
  2382. <Principal Role="CF_Student">
  2383. <PropertyRef Name="UserID" />
  2384. </Principal>
  2385. <Dependent Role="ER_ExaminationScore">
  2386. <PropertyRef Name="UserID" />
  2387. </Dependent>
  2388. </ReferentialConstraint>
  2389. </Association>
  2390. <Association Name="FK_ER_LevelSetting_Reference_33_EX_ExaminationProject">
  2391. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2392. <End Role="ER_LevelSetting" Type="EMISContext.Store.ER_LevelSetting" Multiplicity="*" />
  2393. <ReferentialConstraint>
  2394. <Principal Role="EX_ExaminationProject">
  2395. <PropertyRef Name="ExaminationProjectID" />
  2396. </Principal>
  2397. <Dependent Role="ER_LevelSetting">
  2398. <PropertyRef Name="ExaminationProjectID" />
  2399. </Dependent>
  2400. </ReferentialConstraint>
  2401. </Association>
  2402. <Association Name="FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting">
  2403. <End Role="ER_LevelSetting" Type="EMISContext.Store.ER_LevelSetting" Multiplicity="0..1" />
  2404. <End Role="ER_LevelSettingSubject" Type="EMISContext.Store.ER_LevelSettingSubject" Multiplicity="*" />
  2405. <ReferentialConstraint>
  2406. <Principal Role="ER_LevelSetting">
  2407. <PropertyRef Name="LevelSettingID" />
  2408. </Principal>
  2409. <Dependent Role="ER_LevelSettingSubject">
  2410. <PropertyRef Name="LevelSettingID" />
  2411. </Dependent>
  2412. </ReferentialConstraint>
  2413. </Association>
  2414. <Association Name="FK_ER_ProjectScore_Reference_37_EX_ExaminationProject">
  2415. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2416. <End Role="ER_ProjectScore" Type="EMISContext.Store.ER_ProjectScore" Multiplicity="*" />
  2417. <ReferentialConstraint>
  2418. <Principal Role="EX_ExaminationProject">
  2419. <PropertyRef Name="ExaminationProjectID" />
  2420. </Principal>
  2421. <Dependent Role="ER_ProjectScore">
  2422. <PropertyRef Name="ExaminationProjectID" />
  2423. </Dependent>
  2424. </ReferentialConstraint>
  2425. </Association>
  2426. <Association Name="FK_ER_ProjectScore_Reference_38_CF_Student">
  2427. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2428. <End Role="ER_ProjectScore" Type="EMISContext.Store.ER_ProjectScore" Multiplicity="*" />
  2429. <ReferentialConstraint>
  2430. <Principal Role="CF_Student">
  2431. <PropertyRef Name="UserID" />
  2432. </Principal>
  2433. <Dependent Role="ER_ProjectScore">
  2434. <PropertyRef Name="UserID" />
  2435. </Dependent>
  2436. </ReferentialConstraint>
  2437. </Association>
  2438. <Association Name="FK_ER_ProjectScore_Reference_39_ER_LevelSetting">
  2439. <End Role="ER_LevelSetting" Type="EMISContext.Store.ER_LevelSetting" Multiplicity="0..1" />
  2440. <End Role="ER_ProjectScore" Type="EMISContext.Store.ER_ProjectScore" Multiplicity="*" />
  2441. <ReferentialConstraint>
  2442. <Principal Role="ER_LevelSetting">
  2443. <PropertyRef Name="LevelSettingID" />
  2444. </Principal>
  2445. <Dependent Role="ER_ProjectScore">
  2446. <PropertyRef Name="LevelSettingID" />
  2447. </Dependent>
  2448. </ReferentialConstraint>
  2449. </Association>
  2450. <Association Name="FK_ER_ProjectScore_Reference_51_CF_Schoolyear">
  2451. <End Role="CF_Schoolyear" Type="EMISContext.Store.CF_Schoolyear" Multiplicity="0..1" />
  2452. <End Role="ER_ProjectScore" Type="EMISContext.Store.ER_ProjectScore" Multiplicity="*" />
  2453. <ReferentialConstraint>
  2454. <Principal Role="CF_Schoolyear">
  2455. <PropertyRef Name="SchoolyearID" />
  2456. </Principal>
  2457. <Dependent Role="ER_ProjectScore">
  2458. <PropertyRef Name="SchoolyearID" />
  2459. </Dependent>
  2460. </ReferentialConstraint>
  2461. </Association>
  2462. <Association Name="FK_ER_Resit_Reference_40_ER_ExaminationScore">
  2463. <End Role="ER_ExaminationScore" Type="EMISContext.Store.ER_ExaminationScore" Multiplicity="0..1" />
  2464. <End Role="ER_Resit" Type="EMISContext.Store.ER_Resit" Multiplicity="*" />
  2465. <ReferentialConstraint>
  2466. <Principal Role="ER_ExaminationScore">
  2467. <PropertyRef Name="ExaminationScoreID" />
  2468. </Principal>
  2469. <Dependent Role="ER_Resit">
  2470. <PropertyRef Name="ExaminationScoreID" />
  2471. </Dependent>
  2472. </ReferentialConstraint>
  2473. </Association>
  2474. <Association Name="FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear">
  2475. <End Role="CF_Schoolyear" Type="EMISContext.Store.CF_Schoolyear" Multiplicity="0..1" />
  2476. <End Role="EX_ExaminationBatch" Type="EMISContext.Store.EX_ExaminationBatch" Multiplicity="*" />
  2477. <ReferentialConstraint>
  2478. <Principal Role="CF_Schoolyear">
  2479. <PropertyRef Name="SchoolyearID" />
  2480. </Principal>
  2481. <Dependent Role="EX_ExaminationBatch">
  2482. <PropertyRef Name="SchoolyearID" />
  2483. </Dependent>
  2484. </ReferentialConstraint>
  2485. </Association>
  2486. <Association Name="FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch">
  2487. <End Role="EX_ExaminationBatch" Type="EMISContext.Store.EX_ExaminationBatch" Multiplicity="0..1" />
  2488. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="*" />
  2489. <ReferentialConstraint>
  2490. <Principal Role="EX_ExaminationBatch">
  2491. <PropertyRef Name="ExaminationBatchID" />
  2492. </Principal>
  2493. <Dependent Role="EX_ExaminationBatchProject">
  2494. <PropertyRef Name="ExaminationBatchID" />
  2495. </Dependent>
  2496. </ReferentialConstraint>
  2497. </Association>
  2498. <Association Name="FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject">
  2499. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2500. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="*" />
  2501. <ReferentialConstraint>
  2502. <Principal Role="EX_ExaminationProject">
  2503. <PropertyRef Name="ExaminationProjectID" />
  2504. </Principal>
  2505. <Dependent Role="EX_ExaminationBatchProject">
  2506. <PropertyRef Name="ExaminationProjectID" />
  2507. </Dependent>
  2508. </ReferentialConstraint>
  2509. </Association>
  2510. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject">
  2511. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="0..1" />
  2512. <End Role="EX_ExaminationBatchProjectControl" Type="EMISContext.Store.EX_ExaminationBatchProjectControl" Multiplicity="*" />
  2513. <ReferentialConstraint>
  2514. <Principal Role="EX_ExaminationBatchProject">
  2515. <PropertyRef Name="ExaminationBatchProjectID" />
  2516. </Principal>
  2517. <Dependent Role="EX_ExaminationBatchProjectControl">
  2518. <PropertyRef Name="ExaminationBatchProjectID" />
  2519. </Dependent>
  2520. </ReferentialConstraint>
  2521. </Association>
  2522. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee">
  2523. <End Role="EX_ExaminationProjectFee" Type="EMISContext.Store.EX_ExaminationProjectFee" Multiplicity="0..1" />
  2524. <End Role="EX_ExaminationBatchProjectControl" Type="EMISContext.Store.EX_ExaminationBatchProjectControl" Multiplicity="*" />
  2525. <ReferentialConstraint>
  2526. <Principal Role="EX_ExaminationProjectFee">
  2527. <PropertyRef Name="ExaminationProjectFeeID" />
  2528. </Principal>
  2529. <Dependent Role="EX_ExaminationBatchProjectControl">
  2530. <PropertyRef Name="ExaminationProjectFeeID" />
  2531. </Dependent>
  2532. </ReferentialConstraint>
  2533. </Association>
  2534. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College">
  2535. <End Role="CF_College" Type="EMISContext.Store.CF_College" Multiplicity="0..1" />
  2536. <End Role="EX_ExaminationBatchProjectControl" Type="EMISContext.Store.EX_ExaminationBatchProjectControl" Multiplicity="*" />
  2537. <ReferentialConstraint>
  2538. <Principal Role="CF_College">
  2539. <PropertyRef Name="CollegeID" />
  2540. </Principal>
  2541. <Dependent Role="EX_ExaminationBatchProjectControl">
  2542. <PropertyRef Name="CollegeID" />
  2543. </Dependent>
  2544. </ReferentialConstraint>
  2545. </Association>
  2546. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject">
  2547. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="0..1" />
  2548. <End Role="EX_ExaminationBatchProjectPersonControl" Type="EMISContext.Store.EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  2549. <ReferentialConstraint>
  2550. <Principal Role="EX_ExaminationBatchProject">
  2551. <PropertyRef Name="ExaminationBatchProjectID" />
  2552. </Principal>
  2553. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  2554. <PropertyRef Name="ExaminationBatchProjectID" />
  2555. </Dependent>
  2556. </ReferentialConstraint>
  2557. </Association>
  2558. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee">
  2559. <End Role="EX_ExaminationProjectFee" Type="EMISContext.Store.EX_ExaminationProjectFee" Multiplicity="0..1" />
  2560. <End Role="EX_ExaminationBatchProjectPersonControl" Type="EMISContext.Store.EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  2561. <ReferentialConstraint>
  2562. <Principal Role="EX_ExaminationProjectFee">
  2563. <PropertyRef Name="ExaminationProjectFeeID" />
  2564. </Principal>
  2565. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  2566. <PropertyRef Name="ExaminationProjectFeeID" />
  2567. </Dependent>
  2568. </ReferentialConstraint>
  2569. </Association>
  2570. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student">
  2571. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2572. <End Role="EX_ExaminationBatchProjectPersonControl" Type="EMISContext.Store.EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  2573. <ReferentialConstraint>
  2574. <Principal Role="CF_Student">
  2575. <PropertyRef Name="UserID" />
  2576. </Principal>
  2577. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  2578. <PropertyRef Name="UserID" />
  2579. </Dependent>
  2580. </ReferentialConstraint>
  2581. </Association>
  2582. <Association Name="FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject">
  2583. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2584. <End Role="EX_ExaminationProjectFee" Type="EMISContext.Store.EX_ExaminationProjectFee" Multiplicity="*" />
  2585. <ReferentialConstraint>
  2586. <Principal Role="EX_ExaminationProject">
  2587. <PropertyRef Name="ExaminationProjectID" />
  2588. </Principal>
  2589. <Dependent Role="EX_ExaminationProjectFee">
  2590. <PropertyRef Name="ExaminationProjectID" />
  2591. </Dependent>
  2592. </ReferentialConstraint>
  2593. </Association>
  2594. <Association Name="FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee">
  2595. <End Role="EX_ExaminationProjectFee" Type="EMISContext.Store.EX_ExaminationProjectFee" Multiplicity="0..1" />
  2596. <End Role="EX_ExaminationProjectFeeType" Type="EMISContext.Store.EX_ExaminationProjectFeeType" Multiplicity="*" />
  2597. <ReferentialConstraint>
  2598. <Principal Role="EX_ExaminationProjectFee">
  2599. <PropertyRef Name="ExaminationProjectFeeID" />
  2600. </Principal>
  2601. <Dependent Role="EX_ExaminationProjectFeeType">
  2602. <PropertyRef Name="ExaminationProjectFeeID" />
  2603. </Dependent>
  2604. </ReferentialConstraint>
  2605. </Association>
  2606. <Association Name="FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject">
  2607. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="0..1" />
  2608. <End Role="EX_ExaminationProjectSubject" Type="EMISContext.Store.EX_ExaminationProjectSubject" Multiplicity="*" />
  2609. <ReferentialConstraint>
  2610. <Principal Role="EX_ExaminationProject">
  2611. <PropertyRef Name="ExaminationProjectID" />
  2612. </Principal>
  2613. <Dependent Role="EX_ExaminationProjectSubject">
  2614. <PropertyRef Name="ExaminationProjectID" />
  2615. </Dependent>
  2616. </ReferentialConstraint>
  2617. </Association>
  2618. <Association Name="FK_EX_ExaminationRegistration_CF_Student">
  2619. <End Role="CF_Student" Type="EMISContext.Store.CF_Student" Multiplicity="0..1" />
  2620. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="*" />
  2621. <ReferentialConstraint>
  2622. <Principal Role="CF_Student">
  2623. <PropertyRef Name="UserID" />
  2624. </Principal>
  2625. <Dependent Role="EX_ExaminationRegistration">
  2626. <PropertyRef Name="UserID" />
  2627. </Dependent>
  2628. </ReferentialConstraint>
  2629. </Association>
  2630. <Association Name="FK_EX_ExaminationRegistration_EX_ExaminationBatchProject">
  2631. <End Role="EX_ExaminationBatchProject" Type="EMISContext.Store.EX_ExaminationBatchProject" Multiplicity="0..1" />
  2632. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="*" />
  2633. <ReferentialConstraint>
  2634. <Principal Role="EX_ExaminationBatchProject">
  2635. <PropertyRef Name="ExaminationBatchProjectID" />
  2636. </Principal>
  2637. <Dependent Role="EX_ExaminationRegistration">
  2638. <PropertyRef Name="ExaminationBatchProjectID" />
  2639. </Dependent>
  2640. </ReferentialConstraint>
  2641. </Association>
  2642. <Association Name="FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm">
  2643. <End Role="EX_ExaminationRegistrationConfirm" Type="EMISContext.Store.EX_ExaminationRegistrationConfirm" Multiplicity="0..1" />
  2644. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="*" />
  2645. <ReferentialConstraint>
  2646. <Principal Role="EX_ExaminationRegistrationConfirm">
  2647. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  2648. </Principal>
  2649. <Dependent Role="EX_ExaminationRegistration">
  2650. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  2651. </Dependent>
  2652. </ReferentialConstraint>
  2653. </Association>
  2654. <Association Name="FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType">
  2655. <End Role="EX_ExaminationProjectFeeType" Type="EMISContext.Store.EX_ExaminationProjectFeeType" Multiplicity="0..1" />
  2656. <End Role="EX_ExaminationRegistration" Type="EMISContext.Store.EX_ExaminationRegistration" Multiplicity="*" />
  2657. <ReferentialConstraint>
  2658. <Principal Role="EX_ExaminationProjectFeeType">
  2659. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  2660. </Principal>
  2661. <Dependent Role="EX_ExaminationRegistration">
  2662. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  2663. </Dependent>
  2664. </ReferentialConstraint>
  2665. </Association>
  2666. <Association Name="FK_EX_ExaminationRegistrationConfirm_Sys_User">
  2667. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="0..1" />
  2668. <End Role="EX_ExaminationRegistrationConfirm" Type="EMISContext.Store.EX_ExaminationRegistrationConfirm" Multiplicity="*" />
  2669. <ReferentialConstraint>
  2670. <Principal Role="Sys_User">
  2671. <PropertyRef Name="UserID" />
  2672. </Principal>
  2673. <Dependent Role="EX_ExaminationRegistrationConfirm">
  2674. <PropertyRef Name="Receiver" />
  2675. </Dependent>
  2676. </ReferentialConstraint>
  2677. </Association>
  2678. <Association Name="FK_EX_ExaminationSubject_Reference_EX_ExaminationType">
  2679. <End Role="EX_ExaminationType" Type="EMISContext.Store.EX_ExaminationType" Multiplicity="0..1" />
  2680. <End Role="EX_ExaminationProject" Type="EMISContext.Store.EX_ExaminationProject" Multiplicity="*" />
  2681. <ReferentialConstraint>
  2682. <Principal Role="EX_ExaminationType">
  2683. <PropertyRef Name="ExaminationTypeID" />
  2684. </Principal>
  2685. <Dependent Role="EX_ExaminationProject">
  2686. <PropertyRef Name="ExaminationTypeID" />
  2687. </Dependent>
  2688. </ReferentialConstraint>
  2689. </Association>
  2690. <Association Name="FK_EX_Receipt_REFERENCE_SYS_USER">
  2691. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="0..1" />
  2692. <End Role="EX_Receipt" Type="EMISContext.Store.EX_Receipt" Multiplicity="*" />
  2693. <ReferentialConstraint>
  2694. <Principal Role="Sys_User">
  2695. <PropertyRef Name="UserID" />
  2696. </Principal>
  2697. <Dependent Role="EX_Receipt">
  2698. <PropertyRef Name="UserID" />
  2699. </Dependent>
  2700. </ReferentialConstraint>
  2701. </Association>
  2702. <Association Name="FK_SYS_ANNO_REFERENCE_SYS_ANNO">
  2703. <End Role="Sys_Announcement" Type="EMISContext.Store.Sys_Announcement" Multiplicity="1" />
  2704. <End Role="Sys_Announcement_Sys_User" Type="EMISContext.Store.Sys_Announcement_Sys_User" Multiplicity="*" />
  2705. <ReferentialConstraint>
  2706. <Principal Role="Sys_Announcement">
  2707. <PropertyRef Name="AnnouncementID" />
  2708. </Principal>
  2709. <Dependent Role="Sys_Announcement_Sys_User">
  2710. <PropertyRef Name="AnnouncementID" />
  2711. </Dependent>
  2712. </ReferentialConstraint>
  2713. </Association>
  2714. <Association Name="FK_SYS_ANNO_REFERENCE_SYS_USER">
  2715. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1" />
  2716. <End Role="Sys_Announcement_Sys_User" Type="EMISContext.Store.Sys_Announcement_Sys_User" Multiplicity="*" />
  2717. <ReferentialConstraint>
  2718. <Principal Role="Sys_User">
  2719. <PropertyRef Name="UserID" />
  2720. </Principal>
  2721. <Dependent Role="Sys_Announcement_Sys_User">
  2722. <PropertyRef Name="UserID" />
  2723. </Dependent>
  2724. </ReferentialConstraint>
  2725. </Association>
  2726. <Association Name="FK_Sys_Announcement_REFERENCE_Sys_Announcement_Sys_Role">
  2727. <End Role="Sys_Announcement" Type="EMISContext.Store.Sys_Announcement" Multiplicity="1">
  2728. <OnDelete Action="Cascade" />
  2729. </End>
  2730. <End Role="Sys_Announcement_Sys_Role" Type="EMISContext.Store.Sys_Announcement_Sys_Role" Multiplicity="*" />
  2731. <ReferentialConstraint>
  2732. <Principal Role="Sys_Announcement">
  2733. <PropertyRef Name="AnnouncementID" />
  2734. </Principal>
  2735. <Dependent Role="Sys_Announcement_Sys_Role">
  2736. <PropertyRef Name="AnnouncementID" />
  2737. </Dependent>
  2738. </ReferentialConstraint>
  2739. </Association>
  2740. <Association Name="FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType">
  2741. <End Role="Sys_AnnouncementType" Type="EMISContext.Store.Sys_AnnouncementType" Multiplicity="0..1" />
  2742. <End Role="Sys_Announcement" Type="EMISContext.Store.Sys_Announcement" Multiplicity="*" />
  2743. <ReferentialConstraint>
  2744. <Principal Role="Sys_AnnouncementType">
  2745. <PropertyRef Name="AnnouncementTypeID" />
  2746. </Principal>
  2747. <Dependent Role="Sys_Announcement">
  2748. <PropertyRef Name="AnnouncementTypeID" />
  2749. </Dependent>
  2750. </ReferentialConstraint>
  2751. </Association>
  2752. <Association Name="FK_Sys_Announcement_Sys_Role_REFERENCE_SYS_ROLE">
  2753. <End Role="Sys_Role" Type="EMISContext.Store.Sys_Role" Multiplicity="1">
  2754. <OnDelete Action="Cascade" />
  2755. </End>
  2756. <End Role="Sys_Announcement_Sys_Role" Type="EMISContext.Store.Sys_Announcement_Sys_Role" Multiplicity="*" />
  2757. <ReferentialConstraint>
  2758. <Principal Role="Sys_Role">
  2759. <PropertyRef Name="RoleID" />
  2760. </Principal>
  2761. <Dependent Role="Sys_Announcement_Sys_Role">
  2762. <PropertyRef Name="RoleID" />
  2763. </Dependent>
  2764. </ReferentialConstraint>
  2765. </Association>
  2766. <Association Name="FK_SYS_BATC_REFERENCE_SYS_BATC">
  2767. <End Role="Sys_BatchModify" Type="EMISContext.Store.Sys_BatchModify" Multiplicity="0..1" />
  2768. <End Role="Sys_BatchModifyExpand" Type="EMISContext.Store.Sys_BatchModifyExpand" Multiplicity="*" />
  2769. <ReferentialConstraint>
  2770. <Principal Role="Sys_BatchModify">
  2771. <PropertyRef Name="BatchModifyID" />
  2772. </Principal>
  2773. <Dependent Role="Sys_BatchModifyExpand">
  2774. <PropertyRef Name="BatchModifyID" />
  2775. </Dependent>
  2776. </ReferentialConstraint>
  2777. </Association>
  2778. <Association Name="FK_SYS_BATC_REFERENCE_SYS_DICT">
  2779. <End Role="Sys_Dictionary" Type="EMISContext.Store.Sys_Dictionary" Multiplicity="0..1" />
  2780. <End Role="Sys_BatchModify" Type="EMISContext.Store.Sys_BatchModify" Multiplicity="*" />
  2781. <ReferentialConstraint>
  2782. <Principal Role="Sys_Dictionary">
  2783. <PropertyRef Name="DictionaryCode" />
  2784. </Principal>
  2785. <Dependent Role="Sys_BatchModify">
  2786. <PropertyRef Name="DictionaryCode" />
  2787. </Dependent>
  2788. </ReferentialConstraint>
  2789. </Association>
  2790. <Association Name="FK_SYS_Configureterms">
  2791. <End Role="Sys_ConfiguretermsInfo" Type="EMISContext.Store.Sys_ConfiguretermsInfo" Multiplicity="0..1" />
  2792. <End Role="Sys_ConfiguretermsExpand" Type="EMISContext.Store.Sys_ConfiguretermsExpand" Multiplicity="*" />
  2793. <ReferentialConstraint>
  2794. <Principal Role="Sys_ConfiguretermsInfo">
  2795. <PropertyRef Name="ID" />
  2796. </Principal>
  2797. <Dependent Role="Sys_ConfiguretermsExpand">
  2798. <PropertyRef Name="ConfiguretermsInfoID" />
  2799. </Dependent>
  2800. </ReferentialConstraint>
  2801. </Association>
  2802. <Association Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION">
  2803. <End Role="Sys_FunctionCode" Type="EMISContext.Store.Sys_FunctionCode" Multiplicity="0..1" />
  2804. <End Role="Sys_ContextMenu" Type="EMISContext.Store.Sys_ContextMenu" Multiplicity="*" />
  2805. <ReferentialConstraint>
  2806. <Principal Role="Sys_FunctionCode">
  2807. <PropertyRef Name="FunctionCode" />
  2808. </Principal>
  2809. <Dependent Role="Sys_ContextMenu">
  2810. <PropertyRef Name="FunctionCode" />
  2811. </Dependent>
  2812. </ReferentialConstraint>
  2813. </Association>
  2814. <Association Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU">
  2815. <End Role="Sys_Menu" Type="EMISContext.Store.Sys_Menu" Multiplicity="0..1" />
  2816. <End Role="Sys_ContextMenu" Type="EMISContext.Store.Sys_ContextMenu" Multiplicity="*" />
  2817. <ReferentialConstraint>
  2818. <Principal Role="Sys_Menu">
  2819. <PropertyRef Name="MenuNo" />
  2820. </Principal>
  2821. <Dependent Role="Sys_ContextMenu">
  2822. <PropertyRef Name="MenuNo" />
  2823. </Dependent>
  2824. </ReferentialConstraint>
  2825. </Association>
  2826. <Association Name="FK_Sys_ControlItemDetail_Sys_ContextMenu">
  2827. <End Role="Sys_ContextMenu" Type="EMISContext.Store.Sys_ContextMenu" Multiplicity="0..1" />
  2828. <End Role="Sys_ControlItemDetail" Type="EMISContext.Store.Sys_ControlItemDetail" Multiplicity="*" />
  2829. <ReferentialConstraint>
  2830. <Principal Role="Sys_ContextMenu">
  2831. <PropertyRef Name="ContextMnuNo" />
  2832. </Principal>
  2833. <Dependent Role="Sys_ControlItemDetail">
  2834. <PropertyRef Name="ContextMnuNo" />
  2835. </Dependent>
  2836. </ReferentialConstraint>
  2837. </Association>
  2838. <Association Name="FK_Sys_ControlItemDetail_Sys_ControlItem">
  2839. <End Role="Sys_ControlItem" Type="EMISContext.Store.Sys_ControlItem" Multiplicity="1" />
  2840. <End Role="Sys_ControlItemDetail" Type="EMISContext.Store.Sys_ControlItemDetail" Multiplicity="*" />
  2841. <ReferentialConstraint>
  2842. <Principal Role="Sys_ControlItem">
  2843. <PropertyRef Name="ControlItemCode" />
  2844. </Principal>
  2845. <Dependent Role="Sys_ControlItemDetail">
  2846. <PropertyRef Name="ControlItemCode" />
  2847. </Dependent>
  2848. </ReferentialConstraint>
  2849. </Association>
  2850. <Association Name="FK_Sys_ControlItemDetail_Sys_Menu">
  2851. <End Role="Sys_Menu" Type="EMISContext.Store.Sys_Menu" Multiplicity="0..1" />
  2852. <End Role="Sys_ControlItemDetail" Type="EMISContext.Store.Sys_ControlItemDetail" Multiplicity="*" />
  2853. <ReferentialConstraint>
  2854. <Principal Role="Sys_Menu">
  2855. <PropertyRef Name="MenuNo" />
  2856. </Principal>
  2857. <Dependent Role="Sys_ControlItemDetail">
  2858. <PropertyRef Name="MenuNo" />
  2859. </Dependent>
  2860. </ReferentialConstraint>
  2861. </Association>
  2862. <Association Name="FK_Sys_DictionaryItem_Sys_Dictionary">
  2863. <End Role="Sys_Dictionary" Type="EMISContext.Store.Sys_Dictionary" Multiplicity="0..1" />
  2864. <End Role="Sys_DictionaryItem" Type="EMISContext.Store.Sys_DictionaryItem" Multiplicity="*" />
  2865. <ReferentialConstraint>
  2866. <Principal Role="Sys_Dictionary">
  2867. <PropertyRef Name="DictionaryCode" />
  2868. </Principal>
  2869. <Dependent Role="Sys_DictionaryItem">
  2870. <PropertyRef Name="DictionaryCode" />
  2871. </Dependent>
  2872. </ReferentialConstraint>
  2873. </Association>
  2874. <Association Name="FK_Sys_MailVerifyCode_REFERENCE_SYS_USER">
  2875. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1" />
  2876. <End Role="Sys_MailVerifyCode" Type="EMISContext.Store.Sys_MailVerifyCode" Multiplicity="0..1" />
  2877. <ReferentialConstraint>
  2878. <Principal Role="Sys_User">
  2879. <PropertyRef Name="UserID" />
  2880. </Principal>
  2881. <Dependent Role="Sys_MailVerifyCode">
  2882. <PropertyRef Name="UserID" />
  2883. </Dependent>
  2884. </ReferentialConstraint>
  2885. </Association>
  2886. <Association Name="FK_SYS_MENU_REFERENCE_SYS_FUNC">
  2887. <End Role="Sys_FunctionCode" Type="EMISContext.Store.Sys_FunctionCode" Multiplicity="0..1" />
  2888. <End Role="Sys_Menu" Type="EMISContext.Store.Sys_Menu" Multiplicity="*" />
  2889. <ReferentialConstraint>
  2890. <Principal Role="Sys_FunctionCode">
  2891. <PropertyRef Name="FunctionCode" />
  2892. </Principal>
  2893. <Dependent Role="Sys_Menu">
  2894. <PropertyRef Name="FunctionCode" />
  2895. </Dependent>
  2896. </ReferentialConstraint>
  2897. </Association>
  2898. <Association Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_FUNCTION">
  2899. <End Role="Sys_FunctionCode" Type="EMISContext.Store.Sys_FunctionCode" Multiplicity="1">
  2900. <OnDelete Action="Cascade" />
  2901. </End>
  2902. <End Role="Sys_Role_Sys_FunctionCode" Type="EMISContext.Store.Sys_Role_Sys_FunctionCode" Multiplicity="*" />
  2903. <ReferentialConstraint>
  2904. <Principal Role="Sys_FunctionCode">
  2905. <PropertyRef Name="FunctionCode" />
  2906. </Principal>
  2907. <Dependent Role="Sys_Role_Sys_FunctionCode">
  2908. <PropertyRef Name="FunctionCode" />
  2909. </Dependent>
  2910. </ReferentialConstraint>
  2911. </Association>
  2912. <Association Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE">
  2913. <End Role="Sys_Role" Type="EMISContext.Store.Sys_Role" Multiplicity="1">
  2914. <OnDelete Action="Cascade" />
  2915. </End>
  2916. <End Role="Sys_Role_Sys_FunctionCode" Type="EMISContext.Store.Sys_Role_Sys_FunctionCode" Multiplicity="*" />
  2917. <ReferentialConstraint>
  2918. <Principal Role="Sys_Role">
  2919. <PropertyRef Name="RoleID" />
  2920. </Principal>
  2921. <Dependent Role="Sys_Role_Sys_FunctionCode">
  2922. <PropertyRef Name="RoleID" />
  2923. </Dependent>
  2924. </ReferentialConstraint>
  2925. </Association>
  2926. <Association Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU">
  2927. <End Role="Sys_Menu" Type="EMISContext.Store.Sys_Menu" Multiplicity="0..1" />
  2928. <End Role="Sys_RoleDataRange" Type="EMISContext.Store.Sys_RoleDataRange" Multiplicity="*" />
  2929. <ReferentialConstraint>
  2930. <Principal Role="Sys_Menu">
  2931. <PropertyRef Name="MenuNo" />
  2932. </Principal>
  2933. <Dependent Role="Sys_RoleDataRange">
  2934. <PropertyRef Name="MenuNo" />
  2935. </Dependent>
  2936. </ReferentialConstraint>
  2937. </Association>
  2938. <Association Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE">
  2939. <End Role="Sys_Role" Type="EMISContext.Store.Sys_Role" Multiplicity="0..1">
  2940. <OnDelete Action="Cascade" />
  2941. </End>
  2942. <End Role="Sys_RoleDataRange" Type="EMISContext.Store.Sys_RoleDataRange" Multiplicity="*" />
  2943. <ReferentialConstraint>
  2944. <Principal Role="Sys_Role">
  2945. <PropertyRef Name="RoleID" />
  2946. </Principal>
  2947. <Dependent Role="Sys_RoleDataRange">
  2948. <PropertyRef Name="RoleID" />
  2949. </Dependent>
  2950. </ReferentialConstraint>
  2951. </Association>
  2952. <Association Name="FK_Sys_ScheduleJob_Sys_Scheduling">
  2953. <End Role="Sys_ScheduleJob" Type="EMISContext.Store.Sys_ScheduleJob" Multiplicity="0..1" />
  2954. <End Role="Sys_Scheduling" Type="EMISContext.Store.Sys_Scheduling" Multiplicity="*" />
  2955. <ReferentialConstraint>
  2956. <Principal Role="Sys_ScheduleJob">
  2957. <PropertyRef Name="jobid" />
  2958. </Principal>
  2959. <Dependent Role="Sys_Scheduling">
  2960. <PropertyRef Name="jobid" />
  2961. </Dependent>
  2962. </ReferentialConstraint>
  2963. </Association>
  2964. <Association Name="FK_Sys_Scheduling_Sys_ScheduleLog">
  2965. <End Role="Sys_Scheduling" Type="EMISContext.Store.Sys_Scheduling" Multiplicity="0..1" />
  2966. <End Role="Sys_ScheduleLog" Type="EMISContext.Store.Sys_ScheduleLog" Multiplicity="*" />
  2967. <ReferentialConstraint>
  2968. <Principal Role="Sys_Scheduling">
  2969. <PropertyRef Name="scid" />
  2970. </Principal>
  2971. <Dependent Role="Sys_ScheduleLog">
  2972. <PropertyRef Name="scid" />
  2973. </Dependent>
  2974. </ReferentialConstraint>
  2975. </Association>
  2976. <Association Name="FK_Sys_User_Sys_Role_REFERENCE_SYS_ROLE">
  2977. <End Role="Sys_Role" Type="EMISContext.Store.Sys_Role" Multiplicity="1">
  2978. <OnDelete Action="Cascade" />
  2979. </End>
  2980. <End Role="Sys_User_Sys_Role" Type="EMISContext.Store.Sys_User_Sys_Role" Multiplicity="*" />
  2981. <ReferentialConstraint>
  2982. <Principal Role="Sys_Role">
  2983. <PropertyRef Name="RoleID" />
  2984. </Principal>
  2985. <Dependent Role="Sys_User_Sys_Role">
  2986. <PropertyRef Name="RoleID" />
  2987. </Dependent>
  2988. </ReferentialConstraint>
  2989. </Association>
  2990. <Association Name="FK_Sys_User_Sys_Role_REFERENCE_SYS_USER">
  2991. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1" />
  2992. <End Role="Sys_User_Sys_Role" Type="EMISContext.Store.Sys_User_Sys_Role" Multiplicity="*" />
  2993. <ReferentialConstraint>
  2994. <Principal Role="Sys_User">
  2995. <PropertyRef Name="UserID" />
  2996. </Principal>
  2997. <Dependent Role="Sys_User_Sys_Role">
  2998. <PropertyRef Name="UserID" />
  2999. </Dependent>
  3000. </ReferentialConstraint>
  3001. </Association>
  3002. <Association Name="FK_TestOperate_Sys_User">
  3003. <End Role="Sys_User" Type="EMISContext.Store.Sys_User" Multiplicity="1" />
  3004. <End Role="TestOperate" Type="EMISContext.Store.TestOperate" Multiplicity="*" />
  3005. <ReferentialConstraint>
  3006. <Principal Role="Sys_User">
  3007. <PropertyRef Name="UserID" />
  3008. </Principal>
  3009. <Dependent Role="TestOperate">
  3010. <PropertyRef Name="UserID" />
  3011. </Dependent>
  3012. </ReferentialConstraint>
  3013. </Association>
  3014. <!--生成过程中发现错误:
  3015. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.guangzhou”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3016. <EntityType Name="guangzhou">
  3017. <Property Name="学年学期" Type="nvarchar" MaxLength="255" />
  3018. <Property Name="考试批次" Type="nvarchar" MaxLength="255" />
  3019. <Property Name="考试项目" Type="nvarchar" MaxLength="255" />
  3020. <Property Name="姓名" Type="nvarchar" MaxLength="255" />
  3021. <Property Name="证件号码" Type="nvarchar" MaxLength="255" />
  3022. <Property Name="上机" Type="float" />
  3023. <Property Name="有效日期" Type="nvarchar" MaxLength="255" />
  3024. <Property Name="备注" Type="nvarchar" MaxLength="255" />
  3025. </EntityType>
  3026. 生成过程中发现错误:
  3027. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.LY_XXBZ_JWXT_BJXX_VIEW”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3028. <EntityType Name="LY_XXBZ_JWXT_BJXX_VIEW">
  3029. <Property Name="BJDM" Type="nvarchar" MaxLength="255" />
  3030. <Property Name="BJMC" Type="nvarchar" MaxLength="255" />
  3031. <Property Name="USER_YXID" Type="nvarchar" MaxLength="255" />
  3032. <Property Name="ZYMC" Type="nvarchar" MaxLength="255" />
  3033. <Property Name="USER_ZYDM" Type="nvarchar" MaxLength="255" />
  3034. <Property Name="XQ_DM" Type="nvarchar" MaxLength="255" />
  3035. <Property Name="XZ" Type="nvarchar" MaxLength="255" />
  3036. <Property Name="BJRS" Type="decimal" Scale="2" />
  3037. <Property Name="NJ" Type="nvarchar" MaxLength="255" />
  3038. <Property Name="USER_DM" Type="nvarchar" MaxLength="255" />
  3039. <Property Name="XQ_MC" Type="nvarchar" MaxLength="255" />
  3040. <Property Name="YXMC" Type="nvarchar" MaxLength="255" />
  3041. <Property Name="TIMESTAMPS" Type="datetime" />
  3042. </EntityType>
  3043. 生成过程中发现错误:
  3044. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.LY_XXBZ_JWXT_XSJBXX_VIEW”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3045. <EntityType Name="LY_XXBZ_JWXT_XSJBXX_VIEW">
  3046. <Property Name="SYSF" Type="nvarchar" MaxLength="255" />
  3047. <Property Name="ZYID" Type="nvarchar" MaxLength="255" />
  3048. <Property Name="BJMC" Type="nvarchar" MaxLength="255" />
  3049. <Property Name="ZYDM_USER" Type="nvarchar" MaxLength="255" />
  3050. <Property Name="YXID" Type="nvarchar" MaxLength="255" />
  3051. <Property Name="SCHAREA" Type="nvarchar" MaxLength="255" />
  3052. <Property Name="XMPY" Type="nvarchar" MaxLength="255" />
  3053. <Property Name="CYM" Type="nvarchar" MaxLength="255" />
  3054. <Property Name="MZ" Type="nvarchar" MaxLength="255" />
  3055. <Property Name="JG" Type="nvarchar" MaxLength="255" />
  3056. <Property Name="LXDZ" Type="nvarchar" MaxLength="255" />
  3057. <Property Name="LXDH" Type="nvarchar" MaxLength="255" />
  3058. <Property Name="EMAIL" Type="nvarchar" MaxLength="255" />
  3059. <Property Name="ZZMM" Type="nvarchar" MaxLength="255" />
  3060. <Property Name="RXCJ" Type="nvarchar" MaxLength="255" />
  3061. <Property Name="GATQ_M" Type="nvarchar" MaxLength="255" />
  3062. <Property Name="JKZK" Type="nvarchar" MaxLength="255" />
  3063. <Property Name="YXMC" Type="nvarchar" MaxLength="255" />
  3064. <Property Name="PYCCMC" Type="nvarchar" MaxLength="255" />
  3065. <Property Name="XZ" Type="nvarchar" MaxLength="255" />
  3066. <Property Name="YXDM_USER" Type="nvarchar" MaxLength="255" />
  3067. <Property Name="CSRQ" Type="nvarchar" MaxLength="255" />
  3068. <Property Name="SFZH" Type="nvarchar" MaxLength="255" />
  3069. <Property Name="LXR" Type="nvarchar" MaxLength="255" />
  3070. <Property Name="RXRQ" Type="nvarchar" MaxLength="255" />
  3071. <Property Name="SYDQ" Type="nvarchar" MaxLength="255" />
  3072. <Property Name="BXXS" Type="nvarchar" MaxLength="255" />
  3073. <Property Name="BZ" Type="nvarchar" MaxLength="255" />
  3074. <Property Name="XH" Type="nvarchar" MaxLength="255" />
  3075. <Property Name="XM" Type="nvarchar" MaxLength="255" />
  3076. <Property Name="XB" Type="nvarchar" MaxLength="255" />
  3077. <Property Name="GKKSH" Type="nvarchar" MaxLength="255" />
  3078. <Property Name="ZKZH" Type="nvarchar" MaxLength="255" />
  3079. <Property Name="NJ" Type="nvarchar" MaxLength="255" />
  3080. <Property Name="SFZX" Type="nvarchar" MaxLength="255" />
  3081. <Property Name="BJDM_USER" Type="nvarchar" MaxLength="255" />
  3082. <Property Name="RXNJ" Type="nvarchar" MaxLength="255" />
  3083. <Property Name="USER_XH" Type="nvarchar" MaxLength="255" />
  3084. <Property Name="BJID" Type="nvarchar" MaxLength="255" />
  3085. <Property Name="YZBM" Type="nvarchar" MaxLength="255" />
  3086. <Property Name="MOBILE" Type="nvarchar" MaxLength="255" />
  3087. <Property Name="ZYMC" Type="nvarchar" MaxLength="255" />
  3088. <Property Name="TIMESTAMPS" Type="datetime" />
  3089. </EntityType>
  3090. 生成过程中发现错误:
  3091. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.LY_XXBZ_JWXT_YXXX_VIEW”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3092. <EntityType Name="LY_XXBZ_JWXT_YXXX_VIEW">
  3093. <Property Name="DM" Type="nvarchar" MaxLength="255" />
  3094. <Property Name="YWMC" Type="nvarchar" MaxLength="255" />
  3095. <Property Name="USER_DM" Type="nvarchar" MaxLength="255" />
  3096. <Property Name="ZWMC" Type="nvarchar" MaxLength="255" />
  3097. <Property Name="MENG_FLAG" Type="nvarchar" MaxLength="255" />
  3098. <Property Name="TIMESTAMPS" Type="datetime" />
  3099. </EntityType>
  3100. 生成过程中发现错误:
  3101. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.LY_XXBZ_JWXT_ZYXX_VIEW”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3102. <EntityType Name="LY_XXBZ_JWXT_ZYXX_VIEW">
  3103. <Property Name="PYCC" Type="nvarchar" MaxLength="255" />
  3104. <Property Name="SYXW" Type="nvarchar" MaxLength="255" />
  3105. <Property Name="USER_DM" Type="nvarchar" MaxLength="255" />
  3106. <Property Name="ZWMC" Type="nvarchar" MaxLength="255" />
  3107. <Property Name="SSYXB_MC" Type="nvarchar" MaxLength="255" />
  3108. <Property Name="SSXK" Type="nvarchar" MaxLength="255" />
  3109. <Property Name="SSYXB_USERDM" Type="nvarchar" MaxLength="255" />
  3110. <Property Name="DM" Type="nvarchar" MaxLength="255" />
  3111. <Property Name="GBZYDM" Type="nvarchar" MaxLength="255" />
  3112. <Property Name="SSXKDL" Type="nvarchar" MaxLength="255" />
  3113. <Property Name="XZ" Type="nvarchar" MaxLength="255" />
  3114. <Property Name="YWMC" Type="nvarchar" MaxLength="255" />
  3115. <Property Name="SZNF" Type="nvarchar" MaxLength="255" />
  3116. <Property Name="TIMESTAMPS" Type="datetime" />
  3117. </EntityType>
  3118. 生成过程中发现错误:
  3119. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.qingyuan”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3120. <EntityType Name="qingyuan">
  3121. <Property Name="学年学期" Type="nvarchar" MaxLength="255" />
  3122. <Property Name="考试批次" Type="nvarchar" MaxLength="255" />
  3123. <Property Name="考试项目" Type="nvarchar" MaxLength="255" />
  3124. <Property Name="姓名" Type="nvarchar" MaxLength="255" />
  3125. <Property Name="证件号码" Type="nvarchar" MaxLength="255" />
  3126. <Property Name="上机" Type="float" />
  3127. <Property Name="有效日期" Type="nvarchar" MaxLength="255" />
  3128. <Property Name="备注" Type="nvarchar" MaxLength="255" />
  3129. </EntityType>
  3130. 生成过程中发现错误:
  3131. 警告 6013: 表/视图“LIOT.Exam20210331001.dbo.WeChar20201110”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  3132. <EntityType Name="WeChar20201110">
  3133. <Property Name="交易时间" Type="datetime" />
  3134. <Property Name="微信支付单号" Type="nvarchar" MaxLength="255" />
  3135. <Property Name="商户订单号" Type="nvarchar" MaxLength="255" />
  3136. <Property Name="交易场景" Type="nvarchar" MaxLength="255" />
  3137. <Property Name="交易状态" Type="nvarchar" MaxLength="255" />
  3138. <Property Name="交易金额(元)" Type="float" />
  3139. </EntityType>-->
  3140. </Schema></edmx:StorageModels>
  3141. <!-- CSDL content -->
  3142. <edmx:ConceptualModels>
  3143. <Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" xmlns:cg="http://schemas.microsoft.com/ado/2006/04/codegeneration" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" Namespace="EMIS.Entities.DTO" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
  3144. <EntityContainer Name="EMISNewContext" annotation:LazyLoadingEnabled="true">
  3145. <EntitySet Name="CF_Arrangements" EntityType="EMIS.Entities.DTO.CF_Arrangements" />
  3146. <EntitySet Name="CF_Campus" EntityType="EMIS.Entities.DTO.CF_Campus" />
  3147. <EntitySet Name="CF_CampusProfile" EntityType="EMIS.Entities.DTO.CF_CampusProfile" />
  3148. <EntitySet Name="CF_Classmajor" EntityType="EMIS.Entities.DTO.CF_Classmajor" />
  3149. <EntitySet Name="CF_College" EntityType="EMIS.Entities.DTO.CF_College" />
  3150. <EntitySet Name="CF_CollegeProfile" EntityType="EMIS.Entities.DTO.CF_CollegeProfile" />
  3151. <EntitySet Name="CF_DataCenterCodeTranslate" EntityType="EMIS.Entities.DTO.CF_DataCenterCodeTranslate" />
  3152. <EntitySet Name="CF_Department" EntityType="EMIS.Entities.DTO.CF_Department" />
  3153. <EntitySet Name="CF_DepartmentProfile" EntityType="EMIS.Entities.DTO.CF_DepartmentProfile" />
  3154. <EntitySet Name="CF_Facultymajor" EntityType="EMIS.Entities.DTO.CF_Facultymajor" />
  3155. <EntitySet Name="CF_Grademajor" EntityType="EMIS.Entities.DTO.CF_Grademajor" />
  3156. <EntitySet Name="CF_InSchoolSetting" EntityType="EMIS.Entities.DTO.CF_InSchoolSetting" />
  3157. <EntitySet Name="CF_Parameter" EntityType="EMIS.Entities.DTO.CF_Parameter" />
  3158. <EntitySet Name="CF_Recruitstudents" EntityType="EMIS.Entities.DTO.CF_Recruitstudents" />
  3159. <EntitySet Name="CF_Schoolyear" EntityType="EMIS.Entities.DTO.CF_Schoolyear" />
  3160. <EntitySet Name="CF_SocialClassmajor" EntityType="EMIS.Entities.DTO.CF_SocialClassmajor" />
  3161. <EntitySet Name="CF_Specialty" EntityType="EMIS.Entities.DTO.CF_Specialty" />
  3162. <EntitySet Name="CF_Staff" EntityType="EMIS.Entities.DTO.CF_Staff" />
  3163. <EntitySet Name="CF_StaffManageCampus" EntityType="EMIS.Entities.DTO.CF_StaffManageCampus" />
  3164. <EntitySet Name="CF_StaffManageCollege" EntityType="EMIS.Entities.DTO.CF_StaffManageCollege" />
  3165. <EntitySet Name="CF_StaffManageDepartment" EntityType="EMIS.Entities.DTO.CF_StaffManageDepartment" />
  3166. <EntitySet Name="CF_StaffProfile" EntityType="EMIS.Entities.DTO.CF_StaffProfile" />
  3167. <EntitySet Name="CF_Student" EntityType="EMIS.Entities.DTO.CF_Student" />
  3168. <EntitySet Name="CF_StudentAccount" EntityType="EMIS.Entities.DTO.CF_StudentAccount" />
  3169. <EntitySet Name="CF_StudentContact" EntityType="EMIS.Entities.DTO.CF_StudentContact" />
  3170. <EntitySet Name="CF_StudentProfile" EntityType="EMIS.Entities.DTO.CF_StudentProfile" />
  3171. <EntitySet Name="CF_StudentRole" EntityType="EMIS.Entities.DTO.CF_StudentRole" />
  3172. <EntitySet Name="CF_University" EntityType="EMIS.Entities.DTO.CF_University" />
  3173. <EntitySet Name="CF_UniversityProfile" EntityType="EMIS.Entities.DTO.CF_UniversityProfile" />
  3174. <EntitySet Name="CF_WechatPayList" EntityType="EMIS.Entities.DTO.CF_WechatPayList" />
  3175. <EntitySet Name="CF_WechatSubscribe" EntityType="EMIS.Entities.DTO.CF_WechatSubscribe" />
  3176. <EntitySet Name="EM_CoursesTime" EntityType="EMIS.Entities.DTO.EM_CoursesTime" />
  3177. <EntitySet Name="EM_ExaminationMessage" EntityType="EMIS.Entities.DTO.EM_ExaminationMessage" />
  3178. <EntitySet Name="EM_TrainingClass" EntityType="EMIS.Entities.DTO.EM_TrainingClass" />
  3179. <EntitySet Name="ER_CertisfierDistribute" EntityType="EMIS.Entities.DTO.ER_CertisfierDistribute" />
  3180. <EntitySet Name="ER_ExaminationScore" EntityType="EMIS.Entities.DTO.ER_ExaminationScore" />
  3181. <EntitySet Name="ER_LevelSetting" EntityType="EMIS.Entities.DTO.ER_LevelSetting" />
  3182. <EntitySet Name="ER_LevelSettingSubject" EntityType="EMIS.Entities.DTO.ER_LevelSettingSubject" />
  3183. <EntitySet Name="ER_ProjectScore" EntityType="EMIS.Entities.DTO.ER_ProjectScore" />
  3184. <EntitySet Name="ER_Resit" EntityType="EMIS.Entities.DTO.ER_Resit" />
  3185. <EntitySet Name="EX_ExaminationBatch" EntityType="EMIS.Entities.DTO.EX_ExaminationBatch" />
  3186. <EntitySet Name="EX_ExaminationBatchProject" EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProject" />
  3187. <EntitySet Name="EX_ExaminationBatchProjectControl" EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl" />
  3188. <EntitySet Name="EX_ExaminationBatchProjectPersonControl" EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl" />
  3189. <EntitySet Name="EX_ExaminationProject" EntityType="EMIS.Entities.DTO.EX_ExaminationProject" />
  3190. <EntitySet Name="EX_ExaminationProjectCollegeControl" EntityType="EMIS.Entities.DTO.EX_ExaminationProjectCollegeControl" />
  3191. <EntitySet Name="EX_ExaminationProjectCountLimit" EntityType="EMIS.Entities.DTO.EX_ExaminationProjectCountLimit" />
  3192. <EntitySet Name="EX_ExaminationProjectFee" EntityType="EMIS.Entities.DTO.EX_ExaminationProjectFee" />
  3193. <EntitySet Name="EX_ExaminationProjectFeeType" EntityType="EMIS.Entities.DTO.EX_ExaminationProjectFeeType" />
  3194. <EntitySet Name="EX_ExaminationProjectSubject" EntityType="EMIS.Entities.DTO.EX_ExaminationProjectSubject" />
  3195. <EntitySet Name="EX_ExaminationRegistration" EntityType="EMIS.Entities.DTO.EX_ExaminationRegistration" />
  3196. <EntitySet Name="EX_ExaminationRegistrationConfirm" EntityType="EMIS.Entities.DTO.EX_ExaminationRegistrationConfirm" />
  3197. <EntitySet Name="EX_ExaminationType" EntityType="EMIS.Entities.DTO.EX_ExaminationType" />
  3198. <EntitySet Name="EX_InvalidReceipt" EntityType="EMIS.Entities.DTO.EX_InvalidReceipt" />
  3199. <EntitySet Name="EX_Receipt" EntityType="EMIS.Entities.DTO.EX_Receipt" />
  3200. <EntitySet Name="Sys_Announcement" EntityType="EMIS.Entities.DTO.Sys_Announcement" />
  3201. <EntitySet Name="Sys_AnnouncementType" EntityType="EMIS.Entities.DTO.Sys_AnnouncementType" />
  3202. <EntitySet Name="Sys_BatchModify" EntityType="EMIS.Entities.DTO.Sys_BatchModify" />
  3203. <EntitySet Name="Sys_BatchModifyEvents" EntityType="EMIS.Entities.DTO.Sys_BatchModifyEvents" />
  3204. <EntitySet Name="Sys_BatchModifyExpand" EntityType="EMIS.Entities.DTO.Sys_BatchModifyExpand" />
  3205. <EntitySet Name="Sys_ConfiguretermsExpand" EntityType="EMIS.Entities.DTO.Sys_ConfiguretermsExpand" />
  3206. <EntitySet Name="Sys_ConfiguretermsInfo" EntityType="EMIS.Entities.DTO.Sys_ConfiguretermsInfo" />
  3207. <EntitySet Name="Sys_ContextMenu" EntityType="EMIS.Entities.DTO.Sys_ContextMenu" />
  3208. <EntitySet Name="Sys_ControlItem" EntityType="EMIS.Entities.DTO.Sys_ControlItem" />
  3209. <EntitySet Name="Sys_ControlItemDetail" EntityType="EMIS.Entities.DTO.Sys_ControlItemDetail" />
  3210. <EntitySet Name="Sys_Dictionary" EntityType="EMIS.Entities.DTO.Sys_Dictionary" />
  3211. <EntitySet Name="Sys_DictionaryItem" EntityType="EMIS.Entities.DTO.Sys_DictionaryItem" />
  3212. <EntitySet Name="Sys_FunctionCode" EntityType="EMIS.Entities.DTO.Sys_FunctionCode" />
  3213. <EntitySet Name="Sys_LoginHistory" EntityType="EMIS.Entities.DTO.Sys_LoginHistory" />
  3214. <EntitySet Name="Sys_MailVerifyCode" EntityType="EMIS.Entities.DTO.Sys_MailVerifyCode" />
  3215. <EntitySet Name="Sys_Menu" EntityType="EMIS.Entities.DTO.Sys_Menu" />
  3216. <EntitySet Name="Sys_Role" EntityType="EMIS.Entities.DTO.Sys_Role" />
  3217. <EntitySet Name="Sys_RoleDataRange" EntityType="EMIS.Entities.DTO.Sys_RoleDataRange" />
  3218. <EntitySet Name="Sys_ScheduleJob" EntityType="EMIS.Entities.DTO.Sys_ScheduleJob" />
  3219. <EntitySet Name="Sys_ScheduleLog" EntityType="EMIS.Entities.DTO.Sys_ScheduleLog" />
  3220. <EntitySet Name="Sys_Scheduling" EntityType="EMIS.Entities.DTO.Sys_Scheduling" />
  3221. <EntitySet Name="Sys_SerialNumber" EntityType="EMIS.Entities.DTO.Sys_SerialNumber" />
  3222. <EntitySet Name="Sys_ShareRecord" EntityType="EMIS.Entities.DTO.Sys_ShareRecord" />
  3223. <EntitySet Name="Sys_User" EntityType="EMIS.Entities.DTO.Sys_User" />
  3224. <EntitySet Name="Sys_UserScore" EntityType="EMIS.Entities.DTO.Sys_UserScore" />
  3225. <EntitySet Name="TestOperate" EntityType="EMIS.Entities.DTO.TestOperate" />
  3226. <AssociationSet Name="FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME" Association="EMIS.Entities.DTO.FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME">
  3227. <End Role="EM_CoursesTime" EntitySet="EM_CoursesTime" />
  3228. <End Role="CF_Arrangements" EntitySet="CF_Arrangements" />
  3229. </AssociationSet>
  3230. <AssociationSet Name="FK_CF_CAMPU_REFERENCE_CF_CAMPU" Association="EMIS.Entities.DTO.FK_CF_CAMPU_REFERENCE_CF_CAMPU">
  3231. <End Role="CF_Campus" EntitySet="CF_Campus" />
  3232. <End Role="CF_CampusProfile" EntitySet="CF_CampusProfile" />
  3233. </AssociationSet>
  3234. <AssociationSet Name="FK_CF_Campus_REFERENCE_CF_UNIVERSITY" Association="EMIS.Entities.DTO.FK_CF_Campus_REFERENCE_CF_UNIVERSITY">
  3235. <End Role="CF_University" EntitySet="CF_University" />
  3236. <End Role="CF_Campus" EntitySet="CF_Campus" />
  3237. </AssociationSet>
  3238. <AssociationSet Name="FK_CF_COLLEGE_REFERENCE_CF_Campus" Association="EMIS.Entities.DTO.FK_CF_COLLEGE_REFERENCE_CF_Campus">
  3239. <End Role="CF_Campus" EntitySet="CF_Campus" />
  3240. <End Role="CF_College" EntitySet="CF_College" />
  3241. </AssociationSet>
  3242. <AssociationSet Name="FK_CF_StaffManageCampus_REFERENCE_CF_Campus" Association="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_Campus">
  3243. <End Role="CF_Campus" EntitySet="CF_Campus" />
  3244. <End Role="CF_StaffManageCampus" EntitySet="CF_StaffManageCampus" />
  3245. </AssociationSet>
  3246. <AssociationSet Name="FK_CF_CLASS_REFERENCE_CF_GRADE" Association="EMIS.Entities.DTO.FK_CF_CLASS_REFERENCE_CF_GRADE">
  3247. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  3248. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  3249. </AssociationSet>
  3250. <AssociationSet Name="FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT" Association="EMIS.Entities.DTO.FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT">
  3251. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  3252. <End Role="CF_Student" EntitySet="CF_Student" />
  3253. </AssociationSet>
  3254. <AssociationSet Name="FK_CF_SOCIA_REFERENCE_CF_CLASS" Association="EMIS.Entities.DTO.FK_CF_SOCIA_REFERENCE_CF_CLASS">
  3255. <End Role="CF_Classmajor" EntitySet="CF_Classmajor" />
  3256. <End Role="CF_SocialClassmajor" EntitySet="CF_SocialClassmajor" />
  3257. </AssociationSet>
  3258. <AssociationSet Name="FK_CF_COLLE_REFERENCE_CF_COLLE" Association="EMIS.Entities.DTO.FK_CF_COLLE_REFERENCE_CF_COLLE">
  3259. <End Role="CF_College" EntitySet="CF_College" />
  3260. <End Role="CF_CollegeProfile" EntitySet="CF_CollegeProfile" />
  3261. </AssociationSet>
  3262. <AssociationSet Name="FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE" Association="EMIS.Entities.DTO.FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE">
  3263. <End Role="CF_College" EntitySet="CF_College" />
  3264. <End Role="CF_Department" EntitySet="CF_Department" />
  3265. </AssociationSet>
  3266. <AssociationSet Name="FK_CF_FACUL_REFERENCE_CF_COLLE" Association="EMIS.Entities.DTO.FK_CF_FACUL_REFERENCE_CF_COLLE">
  3267. <End Role="CF_College" EntitySet="CF_College" />
  3268. <End Role="CF_Facultymajor" EntitySet="CF_Facultymajor" />
  3269. </AssociationSet>
  3270. <AssociationSet Name="FK_CF_Staff_CF_College" Association="EMIS.Entities.DTO.FK_CF_Staff_CF_College">
  3271. <End Role="CF_College" EntitySet="CF_College" />
  3272. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3273. </AssociationSet>
  3274. <AssociationSet Name="FK_CF_StaffManageCollege_REFERENCE_CF_College" Association="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_College">
  3275. <End Role="CF_College" EntitySet="CF_College" />
  3276. <End Role="CF_StaffManageCollege" EntitySet="CF_StaffManageCollege" />
  3277. </AssociationSet>
  3278. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College">
  3279. <End Role="CF_College" EntitySet="CF_College" />
  3280. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  3281. </AssociationSet>
  3282. <AssociationSet Name="FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary" Association="EMIS.Entities.DTO.FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary">
  3283. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  3284. <End Role="CF_DataCenterCodeTranslate" EntitySet="CF_DataCenterCodeTranslate" />
  3285. </AssociationSet>
  3286. <AssociationSet Name="FK_CF_DEPAR_REFERENCE_CF_DEPAR" Association="EMIS.Entities.DTO.FK_CF_DEPAR_REFERENCE_CF_DEPAR">
  3287. <End Role="CF_Department" EntitySet="CF_Department" />
  3288. <End Role="CF_DepartmentProfile" EntitySet="CF_DepartmentProfile" />
  3289. </AssociationSet>
  3290. <AssociationSet Name="FK_CF_STAFF_REFERENCE_Department" Association="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_Department">
  3291. <End Role="CF_Department" EntitySet="CF_Department" />
  3292. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3293. </AssociationSet>
  3294. <AssociationSet Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Department" Association="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Department">
  3295. <End Role="CF_Department" EntitySet="CF_Department" />
  3296. <End Role="CF_StaffManageDepartment" EntitySet="CF_StaffManageDepartment" />
  3297. </AssociationSet>
  3298. <AssociationSet Name="FK_CF_GRADE_REFERENCE_CF_FACUL" Association="EMIS.Entities.DTO.FK_CF_GRADE_REFERENCE_CF_FACUL">
  3299. <End Role="CF_Facultymajor" EntitySet="CF_Facultymajor" />
  3300. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  3301. </AssociationSet>
  3302. <AssociationSet Name="FK_CF_Grademajor_CF_Schoolyear" Association="EMIS.Entities.DTO.FK_CF_Grademajor_CF_Schoolyear">
  3303. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  3304. <End Role="CF_Grademajor" EntitySet="CF_Grademajor" />
  3305. </AssociationSet>
  3306. <AssociationSet Name="FK_CF_Recruitstudents_REFERENCE_CF_STUDENT" Association="EMIS.Entities.DTO.FK_CF_Recruitstudents_REFERENCE_CF_STUDENT">
  3307. <End Role="CF_Student" EntitySet="CF_Student" />
  3308. <End Role="CF_Recruitstudents" EntitySet="CF_Recruitstudents" />
  3309. </AssociationSet>
  3310. <AssociationSet Name="FK_CF_STUDE_REFERENCE_CF_SCHOO" Association="EMIS.Entities.DTO.FK_CF_STUDE_REFERENCE_CF_SCHOO">
  3311. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  3312. <End Role="CF_Recruitstudents" EntitySet="CF_Recruitstudents" />
  3313. </AssociationSet>
  3314. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear" Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear">
  3315. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  3316. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  3317. </AssociationSet>
  3318. <AssociationSet Name="FK_ER_ProjectScore_Reference_51_CF_Schoolyear" Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_51_CF_Schoolyear">
  3319. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  3320. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  3321. </AssociationSet>
  3322. <AssociationSet Name="FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear">
  3323. <End Role="CF_Schoolyear" EntitySet="CF_Schoolyear" />
  3324. <End Role="EX_ExaminationBatch" EntitySet="EX_ExaminationBatch" />
  3325. </AssociationSet>
  3326. <AssociationSet Name="FK_CF_STAFF_REFERENCE_CF_STAFF" Association="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_CF_STAFF">
  3327. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3328. <End Role="CF_StaffProfile" EntitySet="CF_StaffProfile" />
  3329. </AssociationSet>
  3330. <AssociationSet Name="FK_CF_Staff_Sys_User" Association="EMIS.Entities.DTO.FK_CF_Staff_Sys_User">
  3331. <End Role="Sys_User" EntitySet="Sys_User" />
  3332. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3333. </AssociationSet>
  3334. <AssociationSet Name="FK_CF_StaffManageCampus_REFERENCE_CF_STAFF" Association="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_STAFF">
  3335. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3336. <End Role="CF_StaffManageCampus" EntitySet="CF_StaffManageCampus" />
  3337. </AssociationSet>
  3338. <AssociationSet Name="FK_CF_StaffManageCollege_REFERENCE_CF_STAFF" Association="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_STAFF">
  3339. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3340. <End Role="CF_StaffManageCollege" EntitySet="CF_StaffManageCollege" />
  3341. </AssociationSet>
  3342. <AssociationSet Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Staff" Association="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Staff">
  3343. <End Role="CF_Staff" EntitySet="CF_Staff" />
  3344. <End Role="CF_StaffManageDepartment" EntitySet="CF_StaffManageDepartment" />
  3345. </AssociationSet>
  3346. <AssociationSet Name="FK_CF_STUDENT_REFERENCE_SYS_USER" Association="EMIS.Entities.DTO.FK_CF_STUDENT_REFERENCE_SYS_USER">
  3347. <End Role="Sys_User" EntitySet="Sys_User" />
  3348. <End Role="CF_Student" EntitySet="CF_Student" />
  3349. </AssociationSet>
  3350. <AssociationSet Name="FK_CF_StudentAccount_REFERENCE_CF_STUDENT" Association="EMIS.Entities.DTO.FK_CF_StudentAccount_REFERENCE_CF_STUDENT">
  3351. <End Role="CF_Student" EntitySet="CF_Student" />
  3352. <End Role="CF_StudentAccount" EntitySet="CF_StudentAccount" />
  3353. </AssociationSet>
  3354. <AssociationSet Name="FK_CF_StudentContact_REFERENCE_CF_STUDENT" Association="EMIS.Entities.DTO.FK_CF_StudentContact_REFERENCE_CF_STUDENT">
  3355. <End Role="CF_Student" EntitySet="CF_Student" />
  3356. <End Role="CF_StudentContact" EntitySet="CF_StudentContact" />
  3357. </AssociationSet>
  3358. <AssociationSet Name="FK_CF_StudentProfile_REFERENCE_CF_STUDENT" Association="EMIS.Entities.DTO.FK_CF_StudentProfile_REFERENCE_CF_STUDENT">
  3359. <End Role="CF_Student" EntitySet="CF_Student" />
  3360. <End Role="CF_StudentProfile" EntitySet="CF_StudentProfile" />
  3361. </AssociationSet>
  3362. <AssociationSet Name="FK_CF_WechatSubscribe_Reference_43_CF_Student" Association="EMIS.Entities.DTO.FK_CF_WechatSubscribe_Reference_43_CF_Student">
  3363. <End Role="CF_Student" EntitySet="CF_Student" />
  3364. <End Role="CF_WechatSubscribe" EntitySet="CF_WechatSubscribe" />
  3365. </AssociationSet>
  3366. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_42_CF_Student" Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_42_CF_Student">
  3367. <End Role="CF_Student" EntitySet="CF_Student" />
  3368. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  3369. </AssociationSet>
  3370. <AssociationSet Name="FK_ER_ExaminationScore_Reference_35_CF_Student" Association="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_35_CF_Student">
  3371. <End Role="CF_Student" EntitySet="CF_Student" />
  3372. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  3373. </AssociationSet>
  3374. <AssociationSet Name="FK_ER_ProjectScore_Reference_38_CF_Student" Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_38_CF_Student">
  3375. <End Role="CF_Student" EntitySet="CF_Student" />
  3376. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  3377. </AssociationSet>
  3378. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student">
  3379. <End Role="CF_Student" EntitySet="CF_Student" />
  3380. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  3381. </AssociationSet>
  3382. <AssociationSet Name="FK_EX_ExaminationRegistration_CF_Student" Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_CF_Student">
  3383. <End Role="CF_Student" EntitySet="CF_Student" />
  3384. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3385. </AssociationSet>
  3386. <AssociationSet Name="FK_CF_StudentRole_REFERENCE_SYS_ROLE" Association="EMIS.Entities.DTO.FK_CF_StudentRole_REFERENCE_SYS_ROLE">
  3387. <End Role="Sys_Role" EntitySet="Sys_Role" />
  3388. <End Role="CF_StudentRole" EntitySet="CF_StudentRole" />
  3389. </AssociationSet>
  3390. <AssociationSet Name="FK_CF_UNIVE_REFERENCE_CF_UNIVE" Association="EMIS.Entities.DTO.FK_CF_UNIVE_REFERENCE_CF_UNIVE">
  3391. <End Role="CF_University" EntitySet="CF_University" />
  3392. <End Role="CF_UniversityProfile" EntitySet="CF_UniversityProfile" />
  3393. </AssociationSet>
  3394. <AssociationSet Name="FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration" Association="EMIS.Entities.DTO.FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration">
  3395. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3396. <End Role="CF_WechatPayList" EntitySet="CF_WechatPayList" />
  3397. </AssociationSet>
  3398. <AssociationSet Name="FK_EM_EXAMI_REFERENCE_EX_EXAMI" Association="EMIS.Entities.DTO.FK_EM_EXAMI_REFERENCE_EX_EXAMI">
  3399. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3400. <End Role="EM_ExaminationMessage" EntitySet="EM_ExaminationMessage" />
  3401. </AssociationSet>
  3402. <AssociationSet Name="FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject" Association="EMIS.Entities.DTO.FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject">
  3403. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3404. <End Role="EM_TrainingClass" EntitySet="EM_TrainingClass" />
  3405. </AssociationSet>
  3406. <AssociationSet Name="FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject">
  3407. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3408. <End Role="ER_CertisfierDistribute" EntitySet="ER_CertisfierDistribute" />
  3409. </AssociationSet>
  3410. <AssociationSet Name="FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject" Association="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject">
  3411. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3412. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  3413. </AssociationSet>
  3414. <AssociationSet Name="FK_ER_Resit_Reference_40_ER_ExaminationScore" Association="EMIS.Entities.DTO.FK_ER_Resit_Reference_40_ER_ExaminationScore">
  3415. <End Role="ER_ExaminationScore" EntitySet="ER_ExaminationScore" />
  3416. <End Role="ER_Resit" EntitySet="ER_Resit" />
  3417. </AssociationSet>
  3418. <AssociationSet Name="FK_ER_LevelSetting_Reference_33_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_ER_LevelSetting_Reference_33_EX_ExaminationProject">
  3419. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3420. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  3421. </AssociationSet>
  3422. <AssociationSet Name="FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting" Association="EMIS.Entities.DTO.FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting">
  3423. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  3424. <End Role="ER_LevelSettingSubject" EntitySet="ER_LevelSettingSubject" />
  3425. </AssociationSet>
  3426. <AssociationSet Name="FK_ER_ProjectScore_Reference_39_ER_LevelSetting" Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_39_ER_LevelSetting">
  3427. <End Role="ER_LevelSetting" EntitySet="ER_LevelSetting" />
  3428. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  3429. </AssociationSet>
  3430. <AssociationSet Name="FK_ER_ProjectScore_Reference_37_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_37_EX_ExaminationProject">
  3431. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3432. <End Role="ER_ProjectScore" EntitySet="ER_ProjectScore" />
  3433. </AssociationSet>
  3434. <AssociationSet Name="FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch">
  3435. <End Role="EX_ExaminationBatch" EntitySet="EX_ExaminationBatch" />
  3436. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3437. </AssociationSet>
  3438. <AssociationSet Name="FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject">
  3439. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3440. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3441. </AssociationSet>
  3442. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject">
  3443. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3444. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  3445. </AssociationSet>
  3446. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject">
  3447. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3448. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  3449. </AssociationSet>
  3450. <AssociationSet Name="FK_EX_ExaminationRegistration_EX_ExaminationBatchProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationBatchProject">
  3451. <End Role="EX_ExaminationBatchProject" EntitySet="EX_ExaminationBatchProject" />
  3452. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3453. </AssociationSet>
  3454. <AssociationSet Name="FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee">
  3455. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  3456. <End Role="EX_ExaminationBatchProjectControl" EntitySet="EX_ExaminationBatchProjectControl" />
  3457. </AssociationSet>
  3458. <AssociationSet Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee" Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee">
  3459. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  3460. <End Role="EX_ExaminationBatchProjectPersonControl" EntitySet="EX_ExaminationBatchProjectPersonControl" />
  3461. </AssociationSet>
  3462. <AssociationSet Name="FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject">
  3463. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3464. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  3465. </AssociationSet>
  3466. <AssociationSet Name="FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject" Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject">
  3467. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3468. <End Role="EX_ExaminationProjectSubject" EntitySet="EX_ExaminationProjectSubject" />
  3469. </AssociationSet>
  3470. <AssociationSet Name="FK_EX_ExaminationSubject_Reference_EX_ExaminationType" Association="EMIS.Entities.DTO.FK_EX_ExaminationSubject_Reference_EX_ExaminationType">
  3471. <End Role="EX_ExaminationType" EntitySet="EX_ExaminationType" />
  3472. <End Role="EX_ExaminationProject" EntitySet="EX_ExaminationProject" />
  3473. </AssociationSet>
  3474. <AssociationSet Name="FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee" Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee">
  3475. <End Role="EX_ExaminationProjectFee" EntitySet="EX_ExaminationProjectFee" />
  3476. <End Role="EX_ExaminationProjectFeeType" EntitySet="EX_ExaminationProjectFeeType" />
  3477. </AssociationSet>
  3478. <AssociationSet Name="FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType" Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType">
  3479. <End Role="EX_ExaminationProjectFeeType" EntitySet="EX_ExaminationProjectFeeType" />
  3480. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3481. </AssociationSet>
  3482. <AssociationSet Name="FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm" Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm">
  3483. <End Role="EX_ExaminationRegistrationConfirm" EntitySet="EX_ExaminationRegistrationConfirm" />
  3484. <End Role="EX_ExaminationRegistration" EntitySet="EX_ExaminationRegistration" />
  3485. </AssociationSet>
  3486. <AssociationSet Name="FK_EX_ExaminationRegistrationConfirm_Sys_User" Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistrationConfirm_Sys_User">
  3487. <End Role="Sys_User" EntitySet="Sys_User" />
  3488. <End Role="EX_ExaminationRegistrationConfirm" EntitySet="EX_ExaminationRegistrationConfirm" />
  3489. </AssociationSet>
  3490. <AssociationSet Name="FK_EX_Receipt_REFERENCE_SYS_USER" Association="EMIS.Entities.DTO.FK_EX_Receipt_REFERENCE_SYS_USER">
  3491. <End Role="Sys_User" EntitySet="Sys_User" />
  3492. <End Role="EX_Receipt" EntitySet="EX_Receipt" />
  3493. </AssociationSet>
  3494. <AssociationSet Name="FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType" Association="EMIS.Entities.DTO.FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType">
  3495. <End Role="Sys_AnnouncementType" EntitySet="Sys_AnnouncementType" />
  3496. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  3497. </AssociationSet>
  3498. <AssociationSet Name="FK_SYS_BATC_REFERENCE_SYS_BATC" Association="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_BATC">
  3499. <End Role="Sys_BatchModify" EntitySet="Sys_BatchModify" />
  3500. <End Role="Sys_BatchModifyExpand" EntitySet="Sys_BatchModifyExpand" />
  3501. </AssociationSet>
  3502. <AssociationSet Name="FK_SYS_BATC_REFERENCE_SYS_DICT" Association="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_DICT">
  3503. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  3504. <End Role="Sys_BatchModify" EntitySet="Sys_BatchModify" />
  3505. </AssociationSet>
  3506. <AssociationSet Name="FK_SYS_Configureterms" Association="EMIS.Entities.DTO.FK_SYS_Configureterms">
  3507. <End Role="Sys_ConfiguretermsInfo" EntitySet="Sys_ConfiguretermsInfo" />
  3508. <End Role="Sys_ConfiguretermsExpand" EntitySet="Sys_ConfiguretermsExpand" />
  3509. </AssociationSet>
  3510. <AssociationSet Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION" Association="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION">
  3511. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  3512. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  3513. </AssociationSet>
  3514. <AssociationSet Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU" Association="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU">
  3515. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  3516. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  3517. </AssociationSet>
  3518. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_ContextMenu" Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ContextMenu">
  3519. <End Role="Sys_ContextMenu" EntitySet="Sys_ContextMenu" />
  3520. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  3521. </AssociationSet>
  3522. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_ControlItem" Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ControlItem">
  3523. <End Role="Sys_ControlItem" EntitySet="Sys_ControlItem" />
  3524. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  3525. </AssociationSet>
  3526. <AssociationSet Name="FK_Sys_ControlItemDetail_Sys_Menu" Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_Menu">
  3527. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  3528. <End Role="Sys_ControlItemDetail" EntitySet="Sys_ControlItemDetail" />
  3529. </AssociationSet>
  3530. <AssociationSet Name="FK_Sys_DictionaryItem_Sys_Dictionary" Association="EMIS.Entities.DTO.FK_Sys_DictionaryItem_Sys_Dictionary">
  3531. <End Role="Sys_Dictionary" EntitySet="Sys_Dictionary" />
  3532. <End Role="Sys_DictionaryItem" EntitySet="Sys_DictionaryItem" />
  3533. </AssociationSet>
  3534. <AssociationSet Name="FK_SYS_MENU_REFERENCE_SYS_FUNC" Association="EMIS.Entities.DTO.FK_SYS_MENU_REFERENCE_SYS_FUNC">
  3535. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  3536. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  3537. </AssociationSet>
  3538. <AssociationSet Name="FK_Sys_MailVerifyCode_REFERENCE_SYS_USER" Association="EMIS.Entities.DTO.FK_Sys_MailVerifyCode_REFERENCE_SYS_USER">
  3539. <End Role="Sys_User" EntitySet="Sys_User" />
  3540. <End Role="Sys_MailVerifyCode" EntitySet="Sys_MailVerifyCode" />
  3541. </AssociationSet>
  3542. <AssociationSet Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU" Association="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU">
  3543. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  3544. <End Role="Sys_RoleDataRange" EntitySet="Sys_RoleDataRange" />
  3545. </AssociationSet>
  3546. <AssociationSet Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE" Association="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE">
  3547. <End Role="Sys_Role" EntitySet="Sys_Role" />
  3548. <End Role="Sys_RoleDataRange" EntitySet="Sys_RoleDataRange" />
  3549. </AssociationSet>
  3550. <AssociationSet Name="FK_Sys_ScheduleJob_Sys_Scheduling" Association="EMIS.Entities.DTO.FK_Sys_ScheduleJob_Sys_Scheduling">
  3551. <End Role="Sys_ScheduleJob" EntitySet="Sys_ScheduleJob" />
  3552. <End Role="Sys_Scheduling" EntitySet="Sys_Scheduling" />
  3553. </AssociationSet>
  3554. <AssociationSet Name="FK_Sys_Scheduling_Sys_ScheduleLog" Association="EMIS.Entities.DTO.FK_Sys_Scheduling_Sys_ScheduleLog">
  3555. <End Role="Sys_Scheduling" EntitySet="Sys_Scheduling" />
  3556. <End Role="Sys_ScheduleLog" EntitySet="Sys_ScheduleLog" />
  3557. </AssociationSet>
  3558. <AssociationSet Name="FK_TestOperate_Sys_User" Association="EMIS.Entities.DTO.FK_TestOperate_Sys_User">
  3559. <End Role="Sys_User" EntitySet="Sys_User" />
  3560. <End Role="TestOperate" EntitySet="TestOperate" />
  3561. </AssociationSet>
  3562. <AssociationSet Name="EM_TrainingClass_CF_Student" Association="EMIS.Entities.DTO.EM_TrainingClass_CF_Student">
  3563. <End Role="EM_TrainingClass" EntitySet="EM_TrainingClass" />
  3564. <End Role="CF_Student" EntitySet="CF_Student" />
  3565. </AssociationSet>
  3566. <AssociationSet Name="Sys_Announcement_Sys_Role" Association="EMIS.Entities.DTO.Sys_Announcement_Sys_Role">
  3567. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  3568. <End Role="Sys_Role" EntitySet="Sys_Role" />
  3569. </AssociationSet>
  3570. <AssociationSet Name="Sys_Announcement_Sys_User" Association="EMIS.Entities.DTO.Sys_Announcement_Sys_User">
  3571. <End Role="Sys_Announcement" EntitySet="Sys_Announcement" />
  3572. <End Role="Sys_User" EntitySet="Sys_User" />
  3573. </AssociationSet>
  3574. <AssociationSet Name="Sys_Role_Sys_FunctionCode" Association="EMIS.Entities.DTO.Sys_Role_Sys_FunctionCode">
  3575. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  3576. <End Role="Sys_Role" EntitySet="Sys_Role" />
  3577. </AssociationSet>
  3578. <AssociationSet Name="Sys_User_Sys_Role" Association="EMIS.Entities.DTO.Sys_User_Sys_Role">
  3579. <End Role="Sys_Role" EntitySet="Sys_Role" />
  3580. <End Role="Sys_User" EntitySet="Sys_User" />
  3581. </AssociationSet>
  3582. </EntityContainer>
  3583. <EntityType Name="CF_Arrangements">
  3584. <Key>
  3585. <PropertyRef Name="ArrangementsID" />
  3586. </Key>
  3587. <Property Type="Guid" Name="ArrangementsID" Nullable="false" />
  3588. <Property Type="Guid" Name="CoursesTimeID" />
  3589. <Property Type="Int32" Name="Weekday" />
  3590. <Property Type="Boolean" Name="IsOnWork" />
  3591. <Property Type="Int32" Name="RecordStatus" />
  3592. <Property Type="DateTime" Name="CreateTime" />
  3593. <Property Type="Guid" Name="CreateUserID" />
  3594. <Property Type="Guid" Name="ModifyUserID" />
  3595. <Property Type="DateTime" Name="ModifyTime" />
  3596. <NavigationProperty Name="EM_CoursesTime" Relationship="EMIS.Entities.DTO.FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME" FromRole="CF_Arrangements" ToRole="EM_CoursesTime" />
  3597. </EntityType>
  3598. <EntityType Name="CF_Campus">
  3599. <Key>
  3600. <PropertyRef Name="CampusID" />
  3601. </Key>
  3602. <Property Type="Guid" Name="CampusID" Nullable="false" />
  3603. <Property Type="Guid" Name="UniversityID" />
  3604. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  3605. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  3606. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  3607. <Property Type="String" Name="EnglishName" MaxLength="50" FixedLength="false" Unicode="true" />
  3608. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3609. <Property Type="Int32" Name="RecordStatus" />
  3610. <Property Type="Guid" Name="CreateUserID" />
  3611. <Property Type="DateTime" Name="CreateTime" />
  3612. <Property Type="Guid" Name="ModifyUserID" />
  3613. <Property Type="DateTime" Name="ModifyTime" />
  3614. <NavigationProperty Name="CF_CampusProfile" Relationship="EMIS.Entities.DTO.FK_CF_CAMPU_REFERENCE_CF_CAMPU" FromRole="CF_Campus" ToRole="CF_CampusProfile" />
  3615. <NavigationProperty Name="CF_University" Relationship="EMIS.Entities.DTO.FK_CF_Campus_REFERENCE_CF_UNIVERSITY" FromRole="CF_Campus" ToRole="CF_University" />
  3616. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_COLLEGE_REFERENCE_CF_Campus" FromRole="CF_Campus" ToRole="CF_College" />
  3617. <NavigationProperty Name="CF_StaffManageCampus" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_Campus" FromRole="CF_Campus" ToRole="CF_StaffManageCampus" />
  3618. </EntityType>
  3619. <EntityType Name="CF_CampusProfile">
  3620. <Key>
  3621. <PropertyRef Name="CampusID" />
  3622. </Key>
  3623. <Property Type="Guid" Name="CampusID" Nullable="false" />
  3624. <Property Type="Guid" Name="Generalsuper" />
  3625. <Property Type="Guid" Name="Recruitstudents" />
  3626. <Property Type="Guid" Name="Placesuper" />
  3627. <Property Type="Guid" Name="Teachingsuper" />
  3628. <Property Type="Guid" Name="Studentcharge" />
  3629. <Property Type="String" Name="ZIPCode" MaxLength="20" FixedLength="false" Unicode="true" />
  3630. <Property Type="String" Name="Officephone" MaxLength="20" FixedLength="false" Unicode="true" />
  3631. <Property Type="String" Name="FAX" MaxLength="20" FixedLength="false" Unicode="true" />
  3632. <Property Type="String" Name="Email" MaxLength="20" FixedLength="false" Unicode="true" />
  3633. <Property Type="String" Name="Evolution" MaxLength="50" FixedLength="false" Unicode="true" />
  3634. <Property Type="Int32" Name="RecordStatus" />
  3635. <Property Type="Guid" Name="CreateUserID" />
  3636. <Property Type="DateTime" Name="CreateTime" />
  3637. <Property Type="Guid" Name="ModifyUserID" />
  3638. <Property Type="DateTime" Name="ModifyTime" />
  3639. <NavigationProperty Name="CF_Campus" Relationship="EMIS.Entities.DTO.FK_CF_CAMPU_REFERENCE_CF_CAMPU" FromRole="CF_CampusProfile" ToRole="CF_Campus" />
  3640. </EntityType>
  3641. <EntityType Name="CF_Classmajor">
  3642. <Key>
  3643. <PropertyRef Name="ClassmajorID" />
  3644. </Key>
  3645. <Property Type="Guid" Name="ClassmajorID" Nullable="false" />
  3646. <Property Type="Guid" Name="GrademajorID" />
  3647. <Property Type="String" Name="No" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3648. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  3649. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  3650. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="true" />
  3651. <Property Type="Int32" Name="ClassNum" />
  3652. <Property Type="Guid" Name="UserID" />
  3653. <Property Type="Guid" Name="AssistantUserID" />
  3654. <Property Type="String" Name="Fixedclassroom" MaxLength="50" FixedLength="false" Unicode="true" />
  3655. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3656. <Property Type="Int32" Name="RecordStatus" />
  3657. <Property Type="Guid" Name="CreateUserID" />
  3658. <Property Type="DateTime" Name="CreateTime" />
  3659. <Property Type="Guid" Name="ModifyUserID" />
  3660. <Property Type="DateTime" Name="ModifyTime" />
  3661. <NavigationProperty Name="CF_Grademajor" Relationship="EMIS.Entities.DTO.FK_CF_CLASS_REFERENCE_CF_GRADE" FromRole="CF_Classmajor" ToRole="CF_Grademajor" />
  3662. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT" FromRole="CF_Classmajor" ToRole="CF_Student" />
  3663. <NavigationProperty Name="CF_SocialClassmajor" Relationship="EMIS.Entities.DTO.FK_CF_SOCIA_REFERENCE_CF_CLASS" FromRole="CF_Classmajor" ToRole="CF_SocialClassmajor" />
  3664. </EntityType>
  3665. <EntityType Name="CF_College">
  3666. <Key>
  3667. <PropertyRef Name="CollegeID" />
  3668. </Key>
  3669. <Property Type="Guid" Name="CollegeID" Nullable="false" />
  3670. <Property Type="Guid" Name="CampusID" />
  3671. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  3672. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  3673. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  3674. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="false" />
  3675. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3676. <Property Type="Int32" Name="RecordStatus" />
  3677. <Property Type="Guid" Name="CreateUserID" />
  3678. <Property Type="DateTime" Name="CreateTime" />
  3679. <Property Type="Guid" Name="ModifyUserID" />
  3680. <Property Type="DateTime" Name="ModifyTime" />
  3681. <NavigationProperty Name="CF_Campus" Relationship="EMIS.Entities.DTO.FK_CF_COLLEGE_REFERENCE_CF_Campus" FromRole="CF_College" ToRole="CF_Campus" />
  3682. <NavigationProperty Name="CF_CollegeProfile" Relationship="EMIS.Entities.DTO.FK_CF_COLLE_REFERENCE_CF_COLLE" FromRole="CF_College" ToRole="CF_CollegeProfile" />
  3683. <NavigationProperty Name="CF_Department" Relationship="EMIS.Entities.DTO.FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE" FromRole="CF_College" ToRole="CF_Department" />
  3684. <NavigationProperty Name="CF_Facultymajor" Relationship="EMIS.Entities.DTO.FK_CF_FACUL_REFERENCE_CF_COLLE" FromRole="CF_College" ToRole="CF_Facultymajor" />
  3685. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_Staff_CF_College" FromRole="CF_College" ToRole="CF_Staff" />
  3686. <NavigationProperty Name="CF_StaffManageCollege" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_College" FromRole="CF_College" ToRole="CF_StaffManageCollege" />
  3687. <NavigationProperty Name="EX_ExaminationBatchProjectControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College" FromRole="CF_College" ToRole="EX_ExaminationBatchProjectControl" />
  3688. </EntityType>
  3689. <EntityType Name="CF_CollegeProfile">
  3690. <Key>
  3691. <PropertyRef Name="CollegeID" />
  3692. </Key>
  3693. <Property Type="Guid" Name="CollegeID" Nullable="false" />
  3694. <Property Type="Guid" Name="PoliticalManager" />
  3695. <Property Type="Guid" Name="AdministrativeManager" />
  3696. <Property Type="Int32" Name="UnitCategoryID" />
  3697. <Property Type="Int32" Name="CollegeTypeID" />
  3698. <Property Type="Int32" Name="CollegeCategoryID" />
  3699. <Property Type="Int32" Name="RunByCategoryID" />
  3700. <Property Type="DateTime" Name="FoundDate" />
  3701. <Property Type="String" Name="Officephone" MaxLength="20" FixedLength="false" Unicode="true" />
  3702. <Property Type="Int32" Name="RecordStatus" />
  3703. <Property Type="Guid" Name="CreateUserID" />
  3704. <Property Type="DateTime" Name="CreateTime" />
  3705. <Property Type="Guid" Name="ModifyUserID" />
  3706. <Property Type="DateTime" Name="ModifyTime" />
  3707. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_COLLE_REFERENCE_CF_COLLE" FromRole="CF_CollegeProfile" ToRole="CF_College" />
  3708. </EntityType>
  3709. <EntityType Name="CF_DataCenterCodeTranslate">
  3710. <Key>
  3711. <PropertyRef Name="CodeType" />
  3712. <PropertyRef Name="Code" />
  3713. </Key>
  3714. <Property Type="String" Name="CodeType" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3715. <Property Type="String" Name="Code" Nullable="false" MaxLength="10" FixedLength="false" Unicode="false" />
  3716. <Property Type="String" Name="DictionaryCode" MaxLength="50" FixedLength="false" Unicode="true" />
  3717. <Property Type="Int32" Name="Value" />
  3718. <NavigationProperty Name="Sys_Dictionary" Relationship="EMIS.Entities.DTO.FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary" FromRole="CF_DataCenterCodeTranslate" ToRole="Sys_Dictionary" />
  3719. </EntityType>
  3720. <EntityType Name="CF_Department">
  3721. <Key>
  3722. <PropertyRef Name="DepartmentID" />
  3723. </Key>
  3724. <Property Type="Guid" Name="DepartmentID" Nullable="false" />
  3725. <Property Type="Guid" Name="CollegeID" />
  3726. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  3727. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  3728. <Property Type="String" Name="SimpleName" MaxLength="20" FixedLength="false" Unicode="true" />
  3729. <Property Type="String" Name="EnglishName" MaxLength="200" FixedLength="false" Unicode="false" />
  3730. <Property Type="String" Name="HierarchyID" MaxLength="500" FixedLength="false" Unicode="false" />
  3731. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3732. <Property Type="Int32" Name="RecordStatus" />
  3733. <Property Type="Guid" Name="CreateUserID" />
  3734. <Property Type="DateTime" Name="CreateTime" />
  3735. <Property Type="Guid" Name="ModifyUserID" />
  3736. <Property Type="DateTime" Name="ModifyTime" />
  3737. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE" FromRole="CF_Department" ToRole="CF_College" />
  3738. <NavigationProperty Name="CF_DepartmentProfile" Relationship="EMIS.Entities.DTO.FK_CF_DEPAR_REFERENCE_CF_DEPAR" FromRole="CF_Department" ToRole="CF_DepartmentProfile" />
  3739. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_Department" FromRole="CF_Department" ToRole="CF_Staff" />
  3740. <NavigationProperty Name="CF_StaffManageDepartment" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Department" FromRole="CF_Department" ToRole="CF_StaffManageDepartment" />
  3741. </EntityType>
  3742. <EntityType Name="CF_DepartmentProfile">
  3743. <Key>
  3744. <PropertyRef Name="DepartmentID" />
  3745. </Key>
  3746. <Property Type="Guid" Name="DepartmentID" Nullable="false" />
  3747. <Property Type="Guid" Name="DirectorID" />
  3748. <Property Type="Guid" Name="DeputyDirectorID" />
  3749. <Property Type="DateTime" Name="FoundDate" />
  3750. <Property Type="Int32" Name="RecordStatus" />
  3751. <Property Type="Guid" Name="CreateUserID" />
  3752. <Property Type="DateTime" Name="CreateTime" />
  3753. <Property Type="Guid" Name="ModifyUserID" />
  3754. <Property Type="DateTime" Name="ModifyTime" />
  3755. <NavigationProperty Name="CF_Department" Relationship="EMIS.Entities.DTO.FK_CF_DEPAR_REFERENCE_CF_DEPAR" FromRole="CF_DepartmentProfile" ToRole="CF_Department" />
  3756. </EntityType>
  3757. <EntityType Name="CF_Facultymajor">
  3758. <Key>
  3759. <PropertyRef Name="FacultymajorID" />
  3760. </Key>
  3761. <Property Type="Guid" Name="FacultymajorID" Nullable="false" />
  3762. <Property Type="Guid" Name="CollegeID" />
  3763. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3764. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  3765. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  3766. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="true" />
  3767. <Property Type="Int32" Name="StandardID" />
  3768. <Property Type="Int32" Name="EducationID" />
  3769. <Property Type="Int32" Name="LearningformID" />
  3770. <Property Type="Decimal" Name="LearnSystem" Precision="18" Scale="2" />
  3771. <Property Type="Int32" Name="ScienceclassID" />
  3772. <Property Type="Int32" Name="LearningstyleID" />
  3773. <Property Type="Int32" Name="LearnPositionID" />
  3774. <Property Type="String" Name="TeacherIdentification" MaxLength="50" FixedLength="false" Unicode="true" />
  3775. <Property Type="DateTime" Name="SetTime" />
  3776. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3777. <Property Type="Int32" Name="RecordStatus" />
  3778. <Property Type="Guid" Name="CreateUserID" />
  3779. <Property Type="DateTime" Name="CreateTime" />
  3780. <Property Type="Guid" Name="ModifyUserID" />
  3781. <Property Type="DateTime" Name="ModifyTime" />
  3782. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_FACUL_REFERENCE_CF_COLLE" FromRole="CF_Facultymajor" ToRole="CF_College" />
  3783. <NavigationProperty Name="CF_Grademajor" Relationship="EMIS.Entities.DTO.FK_CF_GRADE_REFERENCE_CF_FACUL" FromRole="CF_Facultymajor" ToRole="CF_Grademajor" />
  3784. </EntityType>
  3785. <EntityType Name="CF_Grademajor">
  3786. <Key>
  3787. <PropertyRef Name="GrademajorID" />
  3788. </Key>
  3789. <Property Type="Guid" Name="GrademajorID" Nullable="false" />
  3790. <Property Type="Guid" Name="FacultymajorID" />
  3791. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3792. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  3793. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  3794. <Property Type="Int32" Name="SchoolyearID" />
  3795. <Property Type="Int32" Name="SchoolcodeID" />
  3796. <Property Type="Guid" Name="GraduatingSemesterID" />
  3797. <Property Type="String" Name="Professional" MaxLength="100" FixedLength="false" Unicode="false" />
  3798. <Property Type="Int32" Name="SchoolAreaID" />
  3799. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3800. <Property Type="Int32" Name="RecordStatus" />
  3801. <Property Type="Guid" Name="CreateUserID" />
  3802. <Property Type="DateTime" Name="CreateTime" />
  3803. <Property Type="Guid" Name="ModifyUserID" />
  3804. <Property Type="DateTime" Name="ModifyTime" />
  3805. <NavigationProperty Name="CF_Classmajor" Relationship="EMIS.Entities.DTO.FK_CF_CLASS_REFERENCE_CF_GRADE" FromRole="CF_Grademajor" ToRole="CF_Classmajor" />
  3806. <NavigationProperty Name="CF_Facultymajor" Relationship="EMIS.Entities.DTO.FK_CF_GRADE_REFERENCE_CF_FACUL" FromRole="CF_Grademajor" ToRole="CF_Facultymajor" />
  3807. <NavigationProperty Name="CF_Schoolyear" Relationship="EMIS.Entities.DTO.FK_CF_Grademajor_CF_Schoolyear" FromRole="CF_Grademajor" ToRole="CF_Schoolyear" />
  3808. </EntityType>
  3809. <EntityType Name="CF_InSchoolSetting">
  3810. <Key>
  3811. <PropertyRef Name="InSchoolSettingID" />
  3812. </Key>
  3813. <Property Type="Guid" Name="InSchoolSettingID" Nullable="false" />
  3814. <Property Type="Int32" Name="InSchoolStatusID" />
  3815. <Property Type="Boolean" Name="IsSelected" />
  3816. <Property Type="Int32" Name="RecordStatus" />
  3817. <Property Type="DateTime" Name="CreateTime" />
  3818. <Property Type="Guid" Name="CreateUserID" />
  3819. <Property Type="Guid" Name="ModifyUserID" />
  3820. <Property Type="DateTime" Name="ModifyTime" />
  3821. </EntityType>
  3822. <EntityType Name="CF_Parameter">
  3823. <Key>
  3824. <PropertyRef Name="ParameterID" />
  3825. </Key>
  3826. <Property Type="Guid" Name="ParameterID" Nullable="false" />
  3827. <Property Type="Int32" Name="ParameterTypeID" />
  3828. <Property Type="String" Name="Value" MaxLength="Max" FixedLength="false" Unicode="false" />
  3829. <Property Type="Int32" Name="RecordStatus" />
  3830. <Property Type="DateTime" Name="CreateTime" />
  3831. <Property Type="Guid" Name="CreateUserID" />
  3832. <Property Type="Guid" Name="ModifyUserID" />
  3833. <Property Type="DateTime" Name="ModifyTime" />
  3834. </EntityType>
  3835. <EntityType Name="CF_Recruitstudents">
  3836. <Key>
  3837. <PropertyRef Name="UserID" />
  3838. </Key>
  3839. <Property Type="Guid" Name="UserID" Nullable="false" />
  3840. <Property Type="String" Name="ExamineeNum" MaxLength="50" FixedLength="false" Unicode="false" />
  3841. <Property Type="String" Name="AdmissionTicketNo" MaxLength="50" FixedLength="false" Unicode="false" />
  3842. <Property Type="Int32" Name="ExamineeType" />
  3843. <Property Type="Int32" Name="EntranceWay" />
  3844. <Property Type="Guid" Name="EnteringSchoolYearID" />
  3845. <Property Type="DateTime" Name="EntranceDate" />
  3846. <Property Type="String" Name="PlaceBirth" MaxLength="100" FixedLength="false" Unicode="false" />
  3847. <Property Type="Int32" Name="Features" />
  3848. <Property Type="Decimal" Name="Score" Precision="18" Scale="2" />
  3849. <Property Type="Int32" Name="Territorial" />
  3850. <Property Type="String" Name="Area" MaxLength="200" FixedLength="false" Unicode="false" />
  3851. <Property Type="Int32" Name="RecordStatus" />
  3852. <Property Type="DateTime" Name="CreateTime" />
  3853. <Property Type="Guid" Name="CreateUserID" />
  3854. <Property Type="Guid" Name="ModifyUserID" />
  3855. <Property Type="DateTime" Name="ModifyTime" />
  3856. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_Recruitstudents_REFERENCE_CF_STUDENT" FromRole="CF_Recruitstudents" ToRole="CF_Student" />
  3857. <NavigationProperty Name="CF_Schoolyear" Relationship="EMIS.Entities.DTO.FK_CF_STUDE_REFERENCE_CF_SCHOO" FromRole="CF_Recruitstudents" ToRole="CF_Schoolyear" />
  3858. </EntityType>
  3859. <EntityType Name="CF_Schoolyear">
  3860. <Key>
  3861. <PropertyRef Name="SchoolyearID" />
  3862. </Key>
  3863. <Property Type="Guid" Name="SchoolyearID" Nullable="false" />
  3864. <Property Type="String" Name="Code" MaxLength="50" FixedLength="false" Unicode="true" />
  3865. <Property Type="Int32" Name="Years" Nullable="false" />
  3866. <Property Type="Int32" Name="SchoolcodeID" Nullable="false" />
  3867. <Property Type="Int32" Name="WeeksNum" Nullable="false" />
  3868. <Property Type="DateTime" Name="FirstWeek" Nullable="false" />
  3869. <Property Type="Boolean" Name="IsCurrent" Nullable="false" />
  3870. <Property Type="Int32" Name="WeekDays" Nullable="false" />
  3871. <Property Type="Int32" Name="RecordStatus" />
  3872. <Property Type="DateTime" Name="CreateTime" />
  3873. <Property Type="Guid" Name="CreateUserID" />
  3874. <Property Type="Guid" Name="ModifyUserID" />
  3875. <Property Type="DateTime" Name="ModifyTime" />
  3876. <Property Type="Int32" Name="Value" />
  3877. <NavigationProperty Name="CF_Grademajor" Relationship="EMIS.Entities.DTO.FK_CF_Grademajor_CF_Schoolyear" FromRole="CF_Schoolyear" ToRole="CF_Grademajor" />
  3878. <NavigationProperty Name="CF_Recruitstudents" Relationship="EMIS.Entities.DTO.FK_CF_STUDE_REFERENCE_CF_SCHOO" FromRole="CF_Schoolyear" ToRole="CF_Recruitstudents" />
  3879. <NavigationProperty Name="ER_CertisfierDistribute" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear" FromRole="CF_Schoolyear" ToRole="ER_CertisfierDistribute" />
  3880. <NavigationProperty Name="ER_ProjectScore" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_51_CF_Schoolyear" FromRole="CF_Schoolyear" ToRole="ER_ProjectScore" />
  3881. <NavigationProperty Name="EX_ExaminationBatch" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear" FromRole="CF_Schoolyear" ToRole="EX_ExaminationBatch" />
  3882. </EntityType>
  3883. <EntityType Name="CF_SocialClassmajor">
  3884. <Key>
  3885. <PropertyRef Name="ClassmajorID" />
  3886. </Key>
  3887. <Property Type="Guid" Name="ClassmajorID" Nullable="false" />
  3888. <Property Type="Int32" Name="SchoolAreaID" />
  3889. <NavigationProperty Name="CF_Classmajor" Relationship="EMIS.Entities.DTO.FK_CF_SOCIA_REFERENCE_CF_CLASS" FromRole="CF_SocialClassmajor" ToRole="CF_Classmajor" />
  3890. </EntityType>
  3891. <EntityType Name="CF_Specialty">
  3892. <Key>
  3893. <PropertyRef Name="SpecialtyID" />
  3894. </Key>
  3895. <Property Type="Guid" Name="SpecialtyID" Nullable="false" />
  3896. <Property Type="Int32" Name="StandardID" />
  3897. <Property Type="Int32" Name="EducationID" />
  3898. <Property Type="Int32" Name="LearningformID" />
  3899. <Property Type="Decimal" Name="LearnSystem" Precision="18" Scale="2" />
  3900. <Property Type="Int32" Name="ScienceclassID" />
  3901. <Property Type="Int32" Name="PropertyID" />
  3902. <Property Type="Int32" Name="StandardTitle" />
  3903. <Property Type="Int32" Name="StandardLevel" />
  3904. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3905. <Property Type="Int32" Name="RecordStatus" />
  3906. <Property Type="Guid" Name="CreateUserID" />
  3907. <Property Type="DateTime" Name="CreateTime" />
  3908. <Property Type="Guid" Name="ModifyUserID" />
  3909. <Property Type="DateTime" Name="ModifyTime" />
  3910. </EntityType>
  3911. <EntityType Name="CF_Staff">
  3912. <Key>
  3913. <PropertyRef Name="UserID" />
  3914. </Key>
  3915. <Property Type="Guid" Name="UserID" Nullable="false" />
  3916. <Property Type="Guid" Name="CollegeID" />
  3917. <Property Type="Guid" Name="DepartmentID" />
  3918. <Property Type="String" Name="StaffCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3919. <Property Type="DateTime" Name="BirthDate" />
  3920. <Property Type="Int32" Name="Sex" />
  3921. <Property Type="Int32" Name="TeacherType" />
  3922. <Property Type="Int32" Name="IncumbencyState" />
  3923. <Property Type="Int32" Name="CertificatesType" />
  3924. <Property Type="String" Name="CertificatesNum" MaxLength="50" FixedLength="false" Unicode="false" />
  3925. <Property Type="Int32" Name="Situation" />
  3926. <Property Type="Int32" Name="LiteracyLevels" />
  3927. <Property Type="Int32" Name="DegreeState" />
  3928. <Property Type="Int32" Name="LearnPosition" />
  3929. <Property Type="Int32" Name="Title" />
  3930. <Property Type="DateTime" Name="WorkDate" />
  3931. <Property Type="DateTime" Name="ComeSchoolDate" />
  3932. <Property Type="DateTime" Name="TeachingDate" />
  3933. <Property Type="String" Name="PhotoUrl" MaxLength="200" FixedLength="false" Unicode="false" />
  3934. <Property Type="String" Name="Profile" MaxLength="500" FixedLength="false" Unicode="false" />
  3935. <Property Type="String" Name="Remarks" MaxLength="Max" FixedLength="false" Unicode="true" />
  3936. <Property Type="Int32" Name="PaymentLevelID" />
  3937. <Property Type="Boolean" Name="IsDualTeacher" />
  3938. <Property Type="Int32" Name="RecordStatus" />
  3939. <Property Type="DateTime" Name="CreateTime" />
  3940. <Property Type="Guid" Name="CreateUserID" />
  3941. <Property Type="Guid" Name="ModifyUserID" />
  3942. <Property Type="DateTime" Name="ModifyTime" />
  3943. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_Staff_CF_College" FromRole="CF_Staff" ToRole="CF_College" />
  3944. <NavigationProperty Name="CF_Department" Relationship="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_Department" FromRole="CF_Staff" ToRole="CF_Department" />
  3945. <NavigationProperty Name="CF_StaffProfile" Relationship="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_CF_STAFF" FromRole="CF_Staff" ToRole="CF_StaffProfile" />
  3946. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_CF_Staff_Sys_User" FromRole="CF_Staff" ToRole="Sys_User" />
  3947. <NavigationProperty Name="CF_StaffManageCampus" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_STAFF" FromRole="CF_Staff" ToRole="CF_StaffManageCampus" />
  3948. <NavigationProperty Name="CF_StaffManageCollege" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_STAFF" FromRole="CF_Staff" ToRole="CF_StaffManageCollege" />
  3949. <NavigationProperty Name="CF_StaffManageDepartment" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Staff" FromRole="CF_Staff" ToRole="CF_StaffManageDepartment" />
  3950. </EntityType>
  3951. <EntityType Name="CF_StaffManageCampus">
  3952. <Key>
  3953. <PropertyRef Name="StaffManageCampusID" />
  3954. </Key>
  3955. <Property Type="Guid" Name="StaffManageCampusID" Nullable="false" />
  3956. <Property Type="Guid" Name="UserID" />
  3957. <Property Type="Guid" Name="CampusID" />
  3958. <Property Type="Int32" Name="RecordStatus" />
  3959. <Property Type="DateTime" Name="CreateTime" />
  3960. <Property Type="Guid" Name="CreateUserID" />
  3961. <Property Type="Guid" Name="ModifyUserID" />
  3962. <Property Type="DateTime" Name="ModifyTime" />
  3963. <NavigationProperty Name="CF_Campus" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_Campus" FromRole="CF_StaffManageCampus" ToRole="CF_Campus" />
  3964. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_STAFF" FromRole="CF_StaffManageCampus" ToRole="CF_Staff" />
  3965. </EntityType>
  3966. <EntityType Name="CF_StaffManageCollege">
  3967. <Key>
  3968. <PropertyRef Name="StaffManageCollegeID" />
  3969. </Key>
  3970. <Property Type="Guid" Name="StaffManageCollegeID" Nullable="false" />
  3971. <Property Type="Guid" Name="UserID" />
  3972. <Property Type="Guid" Name="CollegeID" />
  3973. <Property Type="Int32" Name="RecordStatus" />
  3974. <Property Type="DateTime" Name="CreateTime" />
  3975. <Property Type="Guid" Name="CreateUserID" />
  3976. <Property Type="Guid" Name="ModifyUserID" />
  3977. <Property Type="DateTime" Name="ModifyTime" />
  3978. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_College" FromRole="CF_StaffManageCollege" ToRole="CF_College" />
  3979. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_STAFF" FromRole="CF_StaffManageCollege" ToRole="CF_Staff" />
  3980. </EntityType>
  3981. <EntityType Name="CF_StaffManageDepartment">
  3982. <Key>
  3983. <PropertyRef Name="StaffManageDepartmentID" />
  3984. </Key>
  3985. <Property Type="Guid" Name="StaffManageDepartmentID" Nullable="false" />
  3986. <Property Type="Guid" Name="UserID" />
  3987. <Property Type="Guid" Name="DepartmentID" />
  3988. <Property Type="Int32" Name="RecordStatus" />
  3989. <Property Type="DateTime" Name="CreateTime" />
  3990. <Property Type="Guid" Name="CreateUserID" />
  3991. <Property Type="Guid" Name="ModifyUserID" />
  3992. <Property Type="DateTime" Name="ModifyTime" />
  3993. <NavigationProperty Name="CF_Department" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Department" FromRole="CF_StaffManageDepartment" ToRole="CF_Department" />
  3994. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Staff" FromRole="CF_StaffManageDepartment" ToRole="CF_Staff" />
  3995. </EntityType>
  3996. <EntityType Name="CF_StaffProfile">
  3997. <Key>
  3998. <PropertyRef Name="UserID" />
  3999. </Key>
  4000. <Property Type="Guid" Name="UserID" Nullable="false" />
  4001. <Property Type="String" Name="UsedName" MaxLength="20" FixedLength="false" Unicode="false" />
  4002. <Property Type="Int32" Name="Nation" />
  4003. <Property Type="String" Name="Place" MaxLength="20" FixedLength="false" Unicode="true" />
  4004. <Property Type="Int32" Name="EducationCode" />
  4005. <Property Type="String" Name="Telephone" MaxLength="50" FixedLength="false" Unicode="true" />
  4006. <Property Type="String" Name="OfficeTelephone" MaxLength="50" FixedLength="false" Unicode="true" />
  4007. <Property Type="String" Name="Mobile" MaxLength="50" FixedLength="false" Unicode="true" />
  4008. <Property Type="String" Name="Email" MaxLength="50" FixedLength="false" Unicode="true" />
  4009. <Property Type="String" Name="QQ" MaxLength="20" FixedLength="false" Unicode="false" />
  4010. <Property Type="String" Name="Nationality" MaxLength="20" FixedLength="false" Unicode="false" />
  4011. <Property Type="Int32" Name="HealthState" />
  4012. <Property Type="String" Name="HousePhone" MaxLength="20" FixedLength="false" Unicode="false" />
  4013. <Property Type="String" Name="Address" MaxLength="50" FixedLength="false" Unicode="false" />
  4014. <Property Type="String" Name="Postcode" MaxLength="10" FixedLength="false" Unicode="false" />
  4015. <Property Type="String" Name="HomeAddress" MaxLength="50" FixedLength="false" Unicode="false" />
  4016. <Property Type="String" Name="NowAddress" MaxLength="50" FixedLength="false" Unicode="false" />
  4017. <Property Type="String" Name="Residence" MaxLength="50" FixedLength="false" Unicode="false" />
  4018. <Property Type="String" Name="Speciality" MaxLength="500" FixedLength="false" Unicode="false" />
  4019. <Property Type="String" Name="WeChatNum" MaxLength="50" FixedLength="false" Unicode="false" />
  4020. <Property Type="Int32" Name="Religion" />
  4021. <Property Type="String" Name="Account" MaxLength="50" FixedLength="false" Unicode="false" />
  4022. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_CF_STAFF" FromRole="CF_StaffProfile" ToRole="CF_Staff" />
  4023. </EntityType>
  4024. <EntityType Name="CF_Student">
  4025. <Key>
  4026. <PropertyRef Name="UserID" />
  4027. </Key>
  4028. <Property Type="Guid" Name="UserID" Nullable="false" />
  4029. <Property Type="Guid" Name="ClassmajorID" />
  4030. <Property Type="Int32" Name="Sex" />
  4031. <Property Type="Int32" Name="CertificatesType" />
  4032. <Property Type="String" Name="IDNumber" MaxLength="20" FixedLength="false" Unicode="false" />
  4033. <Property Type="Int32" Name="StudentType" />
  4034. <Property Type="Int32" Name="InSchoolStatusID" />
  4035. <Property Type="Int32" Name="StudentStatus" />
  4036. <Property Type="Int32" Name="CultureModel" />
  4037. <Property Type="Boolean" Name="IsProofread" />
  4038. <Property Type="Boolean" Name="IsDreamProject" />
  4039. <Property Type="String" Name="StudentCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4040. <Property Type="DateTime" Name="PlanningGraduateDate" />
  4041. <Property Type="DateTime" Name="GraduateDate" />
  4042. <Property Type="String" Name="GraduateCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4043. <Property Type="String" Name="ReplaceGraduateNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4044. <Property Type="Boolean" Name="DegreeStatus" />
  4045. <Property Type="String" Name="PhotoUrl" MaxLength="500" FixedLength="false" Unicode="false" />
  4046. <Property Type="String" Name="Career" MaxLength="Max" FixedLength="false" Unicode="true" />
  4047. <Property Type="Int32" Name="RecordStatus" />
  4048. <Property Type="Guid" Name="CreateUserID" />
  4049. <Property Type="DateTime" Name="CreateTime" />
  4050. <Property Type="Guid" Name="ModifyUserID" />
  4051. <Property Type="DateTime" Name="ModifyTime" />
  4052. <NavigationProperty Name="CF_Classmajor" Relationship="EMIS.Entities.DTO.FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT" FromRole="CF_Student" ToRole="CF_Classmajor" />
  4053. <NavigationProperty Name="CF_Recruitstudents" Relationship="EMIS.Entities.DTO.FK_CF_Recruitstudents_REFERENCE_CF_STUDENT" FromRole="CF_Student" ToRole="CF_Recruitstudents" />
  4054. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_CF_STUDENT_REFERENCE_SYS_USER" FromRole="CF_Student" ToRole="Sys_User" />
  4055. <NavigationProperty Name="CF_StudentAccount" Relationship="EMIS.Entities.DTO.FK_CF_StudentAccount_REFERENCE_CF_STUDENT" FromRole="CF_Student" ToRole="CF_StudentAccount" />
  4056. <NavigationProperty Name="CF_StudentContact" Relationship="EMIS.Entities.DTO.FK_CF_StudentContact_REFERENCE_CF_STUDENT" FromRole="CF_Student" ToRole="CF_StudentContact" />
  4057. <NavigationProperty Name="CF_StudentProfile" Relationship="EMIS.Entities.DTO.FK_CF_StudentProfile_REFERENCE_CF_STUDENT" FromRole="CF_Student" ToRole="CF_StudentProfile" />
  4058. <NavigationProperty Name="CF_WechatSubscribe" Relationship="EMIS.Entities.DTO.FK_CF_WechatSubscribe_Reference_43_CF_Student" FromRole="CF_Student" ToRole="CF_WechatSubscribe" />
  4059. <NavigationProperty Name="ER_CertisfierDistribute" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_42_CF_Student" FromRole="CF_Student" ToRole="ER_CertisfierDistribute" />
  4060. <NavigationProperty Name="ER_ExaminationScore" Relationship="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_35_CF_Student" FromRole="CF_Student" ToRole="ER_ExaminationScore" />
  4061. <NavigationProperty Name="ER_ProjectScore" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_38_CF_Student" FromRole="CF_Student" ToRole="ER_ProjectScore" />
  4062. <NavigationProperty Name="EX_ExaminationBatchProjectPersonControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student" FromRole="CF_Student" ToRole="EX_ExaminationBatchProjectPersonControl" />
  4063. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_CF_Student" FromRole="CF_Student" ToRole="EX_ExaminationRegistration" />
  4064. <NavigationProperty Name="EM_TrainingClass" Relationship="EMIS.Entities.DTO.EM_TrainingClass_CF_Student" FromRole="CF_Student" ToRole="EM_TrainingClass" />
  4065. </EntityType>
  4066. <EntityType Name="CF_StudentAccount">
  4067. <Key>
  4068. <PropertyRef Name="UserID" />
  4069. </Key>
  4070. <Property Type="Guid" Name="UserID" Nullable="false" />
  4071. <Property Type="String" Name="CardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4072. <Property Type="String" Name="BankName" MaxLength="50" FixedLength="false" Unicode="true" />
  4073. <Property Type="Int32" Name="RecordStatus" />
  4074. <Property Type="DateTime" Name="CreateTime" />
  4075. <Property Type="Guid" Name="CreateUserID" />
  4076. <Property Type="Guid" Name="ModifyUserID" />
  4077. <Property Type="DateTime" Name="ModifyTime" />
  4078. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_StudentAccount_REFERENCE_CF_STUDENT" FromRole="CF_StudentAccount" ToRole="CF_Student" />
  4079. </EntityType>
  4080. <EntityType Name="CF_StudentContact">
  4081. <Key>
  4082. <PropertyRef Name="UserID" />
  4083. </Key>
  4084. <Property Type="Guid" Name="UserID" Nullable="false" />
  4085. <Property Type="String" Name="Email" MaxLength="100" FixedLength="false" Unicode="false" />
  4086. <Property Type="String" Name="QQ" MaxLength="40" FixedLength="false" Unicode="false" />
  4087. <Property Type="String" Name="Mobile" MaxLength="50" FixedLength="false" Unicode="false" />
  4088. <Property Type="String" Name="Telephone" MaxLength="50" FixedLength="false" Unicode="false" />
  4089. <Property Type="String" Name="MicroMsgNo" MaxLength="20" FixedLength="false" Unicode="false" />
  4090. <Property Type="String" Name="Zipcode" MaxLength="20" FixedLength="false" Unicode="false" />
  4091. <Property Type="String" Name="Address" MaxLength="Max" FixedLength="false" Unicode="true" />
  4092. <Property Type="String" Name="WorkUnit" MaxLength="200" FixedLength="false" Unicode="true" />
  4093. <Property Type="String" Name="HomeAddress" MaxLength="Max" FixedLength="false" Unicode="true" />
  4094. <Property Type="String" Name="Recipient" MaxLength="20" FixedLength="false" Unicode="true" />
  4095. <Property Type="String" Name="Dormitory" MaxLength="100" FixedLength="false" Unicode="true" />
  4096. <Property Type="Int32" Name="RecordStatus" />
  4097. <Property Type="DateTime" Name="CreateTime" />
  4098. <Property Type="Guid" Name="CreateUserID" />
  4099. <Property Type="Guid" Name="ModifyUserID" />
  4100. <Property Type="DateTime" Name="ModifyTime" />
  4101. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_StudentContact_REFERENCE_CF_STUDENT" FromRole="CF_StudentContact" ToRole="CF_Student" />
  4102. </EntityType>
  4103. <EntityType Name="CF_StudentProfile">
  4104. <Key>
  4105. <PropertyRef Name="UserID" />
  4106. </Key>
  4107. <Property Type="Guid" Name="UserID" Nullable="false" />
  4108. <Property Type="String" Name="UsedName" MaxLength="200" FixedLength="false" Unicode="true" />
  4109. <Property Type="String" Name="DirectorName" MaxLength="200" FixedLength="false" Unicode="true" />
  4110. <Property Type="DateTime" Name="BirthDate" />
  4111. <Property Type="String" Name="Country" MaxLength="500" FixedLength="false" Unicode="true" />
  4112. <Property Type="Int32" Name="Politics" />
  4113. <Property Type="Int32" Name="LiteracyLevels" />
  4114. <Property Type="Int32" Name="Nation" />
  4115. <Property Type="String" Name="Place" MaxLength="200" FixedLength="false" Unicode="false" />
  4116. <Property Type="Int32" Name="Healthy" />
  4117. <Property Type="Int32" Name="BloodGroup" />
  4118. <Property Type="String" Name="BornPlace" MaxLength="50" FixedLength="false" Unicode="true" />
  4119. <Property Type="String" Name="Specialty" MaxLength="200" FixedLength="false" Unicode="false" />
  4120. <Property Type="String" Name="Height" MaxLength="200" FixedLength="false" Unicode="false" />
  4121. <Property Type="String" Name="Weight" MaxLength="200" FixedLength="false" Unicode="false" />
  4122. <Property Type="String" Name="Remarks" MaxLength="Max" FixedLength="false" Unicode="false" />
  4123. <Property Type="String" Name="GraduationPictureUrl" MaxLength="500" FixedLength="false" Unicode="false" />
  4124. <Property Type="Int32" Name="RecordStatus" />
  4125. <Property Type="DateTime" Name="CreateTime" />
  4126. <Property Type="Guid" Name="CreateUserID" />
  4127. <Property Type="Guid" Name="ModifyUserID" />
  4128. <Property Type="DateTime" Name="ModifyTime" />
  4129. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_StudentProfile_REFERENCE_CF_STUDENT" FromRole="CF_StudentProfile" ToRole="CF_Student" />
  4130. </EntityType>
  4131. <EntityType Name="CF_StudentRole">
  4132. <Key>
  4133. <PropertyRef Name="RoleID" />
  4134. </Key>
  4135. <Property Type="Guid" Name="RoleID" Nullable="false" />
  4136. <Property Type="Int32" Name="StudentType" />
  4137. <Property Type="Int32" Name="RecordStatus" />
  4138. <Property Type="DateTime" Name="CreateTime" />
  4139. <Property Type="Guid" Name="CreateUserID" />
  4140. <Property Type="Guid" Name="ModifyUserID" />
  4141. <Property Type="DateTime" Name="ModifyTime" />
  4142. <NavigationProperty Name="Sys_Role" Relationship="EMIS.Entities.DTO.FK_CF_StudentRole_REFERENCE_SYS_ROLE" FromRole="CF_StudentRole" ToRole="Sys_Role" />
  4143. </EntityType>
  4144. <EntityType Name="CF_University">
  4145. <Key>
  4146. <PropertyRef Name="UniversityID" />
  4147. </Key>
  4148. <Property Type="Guid" Name="UniversityID" Nullable="false" />
  4149. <Property Type="String" Name="Code" MaxLength="20" FixedLength="false" Unicode="false" />
  4150. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  4151. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  4152. <Property Type="String" Name="EnglishName" MaxLength="200" FixedLength="false" Unicode="true" />
  4153. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4154. <Property Type="Int32" Name="RecordStatus" />
  4155. <Property Type="Guid" Name="CreateUserID" />
  4156. <Property Type="DateTime" Name="CreateTime" />
  4157. <Property Type="Guid" Name="ModifyUserID" />
  4158. <Property Type="DateTime" Name="ModifyTime" />
  4159. <NavigationProperty Name="CF_Campus" Relationship="EMIS.Entities.DTO.FK_CF_Campus_REFERENCE_CF_UNIVERSITY" FromRole="CF_University" ToRole="CF_Campus" />
  4160. <NavigationProperty Name="CF_UniversityProfile" Relationship="EMIS.Entities.DTO.FK_CF_UNIVE_REFERENCE_CF_UNIVE" FromRole="CF_University" ToRole="CF_UniversityProfile" />
  4161. </EntityType>
  4162. <EntityType Name="CF_UniversityProfile">
  4163. <Key>
  4164. <PropertyRef Name="UniversityID" />
  4165. </Key>
  4166. <Property Type="Guid" Name="UniversityID" Nullable="false" />
  4167. <Property Type="Int32" Name="ProvinceID" />
  4168. <Property Type="Int32" Name="CityID" />
  4169. <Property Type="Int32" Name="DistrictID" />
  4170. <Property Type="Int32" Name="PropertyID" />
  4171. <Property Type="Int32" Name="SchoolTypeID" />
  4172. <Property Type="Int32" Name="ManagerID" />
  4173. <Property Type="Int32" Name="FounderTypeID" />
  4174. <Property Type="Int32" Name="SchoolLevelID" />
  4175. <Property Type="String" Name="HeadMasterName" MaxLength="20" FixedLength="false" Unicode="true" />
  4176. <Property Type="Guid" Name="PartyManageID" />
  4177. <Property Type="String" Name="LegalPersonName" MaxLength="50" FixedLength="false" Unicode="true" />
  4178. <Property Type="DateTime" Name="BuildDate" />
  4179. <Property Type="DateTime" Name="AnniversaryDate" />
  4180. <Property Type="String" Name="SchoolBasis" MaxLength="100" FixedLength="false" Unicode="true" />
  4181. <Property Type="String" Name="SchoolMotto" MaxLength="100" FixedLength="false" Unicode="true" />
  4182. <Property Type="Int32" Name="SubjectCount" />
  4183. <Property Type="Boolean" Name="Is211University" />
  4184. <Property Type="Boolean" Name="IsKeyUniversity" />
  4185. <Property Type="Boolean" Name="IsAdultCollege" />
  4186. <Property Type="Boolean" Name="IsPostCollege" />
  4187. <Property Type="Boolean" Name="IsNetCollege" />
  4188. <Property Type="String" Name="Telephone" MaxLength="20" FixedLength="false" Unicode="false" />
  4189. <Property Type="String" Name="ZIPCode" MaxLength="10" FixedLength="false" Unicode="false" />
  4190. <Property Type="String" Name="Email" MaxLength="50" FixedLength="false" Unicode="false" />
  4191. <Property Type="String" Name="FAX" MaxLength="20" FixedLength="false" Unicode="false" />
  4192. <Property Type="String" Name="PublicNum" MaxLength="50" FixedLength="false" Unicode="true" />
  4193. <Property Type="String" Name="HomePage" MaxLength="500" FixedLength="false" Unicode="false" />
  4194. <Property Type="String" Name="Address" MaxLength="500" FixedLength="false" Unicode="true" />
  4195. <Property Type="String" Name="EnglishAddress" MaxLength="500" FixedLength="false" Unicode="true" />
  4196. <Property Type="String" Name="HistoryEvolution" MaxLength="Max" FixedLength="false" Unicode="true" />
  4197. <Property Type="Int32" Name="RecordStatus" />
  4198. <Property Type="Guid" Name="CreateUserID" />
  4199. <Property Type="DateTime" Name="CreateTime" />
  4200. <Property Type="Guid" Name="ModifyUserID" />
  4201. <Property Type="DateTime" Name="ModifyTime" />
  4202. <NavigationProperty Name="CF_University" Relationship="EMIS.Entities.DTO.FK_CF_UNIVE_REFERENCE_CF_UNIVE" FromRole="CF_UniversityProfile" ToRole="CF_University" />
  4203. </EntityType>
  4204. <EntityType Name="CF_WechatPayList">
  4205. <Key>
  4206. <PropertyRef Name="WechatPayListID" />
  4207. </Key>
  4208. <Property Type="Guid" Name="WechatPayListID" Nullable="false" />
  4209. <Property Type="Guid" Name="ExaminationRegistrationID" />
  4210. <Property Type="String" Name="OrderID" MaxLength="50" FixedLength="false" Unicode="false" />
  4211. <Property Type="String" Name="WechatOrderID" MaxLength="50" FixedLength="false" Unicode="false" />
  4212. <Property Type="Decimal" Name="Total" Precision="18" Scale="2" />
  4213. <Property Type="String" Name="RefundOrderID" MaxLength="50" FixedLength="false" Unicode="false" />
  4214. <Property Type="Decimal" Name="RefundTotal" Precision="18" Scale="2" />
  4215. <Property Type="Int32" Name="RecordStatus" />
  4216. <Property Type="DateTime" Name="CreateTime" />
  4217. <Property Type="String" Name="PayForm" MaxLength="Max" FixedLength="false" Unicode="true" />
  4218. <Property Type="String" Name="PayUrl" MaxLength="Max" FixedLength="false" Unicode="true" />
  4219. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration" FromRole="CF_WechatPayList" ToRole="EX_ExaminationRegistration" />
  4220. </EntityType>
  4221. <EntityType Name="CF_WechatSubscribe">
  4222. <Key>
  4223. <PropertyRef Name="WechatSubscribeID" />
  4224. </Key>
  4225. <Property Type="Guid" Name="WechatSubscribeID" Nullable="false" />
  4226. <Property Type="Guid" Name="UserID" />
  4227. <Property Type="String" Name="OpenID" MaxLength="50" FixedLength="false" Unicode="false" />
  4228. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_WechatSubscribe_Reference_43_CF_Student" FromRole="CF_WechatSubscribe" ToRole="CF_Student" />
  4229. </EntityType>
  4230. <EntityType Name="EM_CoursesTime">
  4231. <Key>
  4232. <PropertyRef Name="CoursesTimeID" />
  4233. </Key>
  4234. <Property Type="Guid" Name="CoursesTimeID" Nullable="false" />
  4235. <Property Type="Int32" Name="StartTimes" Nullable="false" />
  4236. <Property Type="Int32" Name="EndTimes" Nullable="false" />
  4237. <Property Type="Int32" Name="TimesSegment" Nullable="false" />
  4238. <Property Type="Int32" Name="StartHour" Nullable="false" />
  4239. <Property Type="Int32" Name="StartMinutes" Nullable="false" />
  4240. <Property Type="Int32" Name="EndHour" Nullable="false" />
  4241. <Property Type="Int32" Name="EndMinutes" Nullable="false" />
  4242. <Property Type="Int32" Name="RecordStatus" />
  4243. <Property Type="DateTime" Name="CreateTime" />
  4244. <Property Type="Guid" Name="CreateUserID" />
  4245. <Property Type="Guid" Name="ModifyUserID" />
  4246. <Property Type="DateTime" Name="ModifyTime" />
  4247. <NavigationProperty Name="CF_Arrangements" Relationship="EMIS.Entities.DTO.FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME" FromRole="EM_CoursesTime" ToRole="CF_Arrangements" />
  4248. </EntityType>
  4249. <EntityType Name="EM_ExaminationMessage">
  4250. <Key>
  4251. <PropertyRef Name="ExaminationRegistrationID" />
  4252. </Key>
  4253. <Property Type="Guid" Name="ExaminationRegistrationID" Nullable="false" />
  4254. <Property Type="DateTime" Name="ExaminationTime" />
  4255. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4256. <Property Type="Int32" Name="RecordStatus" />
  4257. <Property Type="Guid" Name="CreateUserID" />
  4258. <Property Type="DateTime" Name="CreateTime" />
  4259. <Property Type="Guid" Name="ModifyUserID" />
  4260. <Property Type="DateTime" Name="ModifyTime" />
  4261. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_EM_EXAMI_REFERENCE_EX_EXAMI" FromRole="EM_ExaminationMessage" ToRole="EX_ExaminationRegistration" />
  4262. </EntityType>
  4263. <EntityType Name="EM_TrainingClass">
  4264. <Key>
  4265. <PropertyRef Name="TrainingClassID" />
  4266. </Key>
  4267. <Property Type="Guid" Name="TrainingClassID" Nullable="false" />
  4268. <Property Type="Guid" Name="ExaminationBatchProjectID" />
  4269. <Property Type="Int32" Name="SchoolAreaID" />
  4270. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  4271. <Property Type="Int32" Name="RecordStatus" />
  4272. <Property Type="Guid" Name="CreateUserID" />
  4273. <Property Type="DateTime" Name="CreateTime" />
  4274. <Property Type="Guid" Name="ModifyUserID" />
  4275. <Property Type="DateTime" Name="ModifyTime" />
  4276. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject" FromRole="EM_TrainingClass" ToRole="EX_ExaminationBatchProject" />
  4277. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.EM_TrainingClass_CF_Student" FromRole="EM_TrainingClass" ToRole="CF_Student" />
  4278. </EntityType>
  4279. <EntityType Name="ER_CertisfierDistribute">
  4280. <Key>
  4281. <PropertyRef Name="CertisfierDistributeID" />
  4282. </Key>
  4283. <Property Type="Guid" Name="CertisfierDistributeID" Nullable="false" />
  4284. <Property Type="Guid" Name="ExaminationProjectID" />
  4285. <Property Type="Guid" Name="UserID" />
  4286. <Property Type="Guid" Name="SchoolyearID" />
  4287. <Property Type="Int32" Name="DistributeTypeID" />
  4288. <Property Type="String" Name="No" MaxLength="50" FixedLength="false" Unicode="false" />
  4289. <Property Type="String" Name="Distributer" MaxLength="50" FixedLength="false" Unicode="true" />
  4290. <Property Type="DateTime" Name="DistributeTime" />
  4291. <Property Type="String" Name="ContactPerson" MaxLength="50" FixedLength="false" Unicode="true" />
  4292. <Property Type="String" Name="ContactNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4293. <Property Type="String" Name="ContactIDNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4294. <Property Type="String" Name="Address" MaxLength="Max" FixedLength="false" Unicode="true" />
  4295. <Property Type="String" Name="DeliveryNoteNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4296. <Property Type="String" Name="SaveNo" MaxLength="50" FixedLength="false" Unicode="true" />
  4297. <Property Type="Int32" Name="RecordStatus" />
  4298. <Property Type="Guid" Name="CreateUserID" />
  4299. <Property Type="DateTime" Name="CreateTime" />
  4300. <Property Type="Guid" Name="ModifyUserID" />
  4301. <Property Type="DateTime" Name="ModifyTime" />
  4302. <NavigationProperty Name="CF_Schoolyear" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear" FromRole="ER_CertisfierDistribute" ToRole="CF_Schoolyear" />
  4303. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_42_CF_Student" FromRole="ER_CertisfierDistribute" ToRole="CF_Student" />
  4304. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject" FromRole="ER_CertisfierDistribute" ToRole="EX_ExaminationProject" />
  4305. </EntityType>
  4306. <EntityType Name="ER_ExaminationScore">
  4307. <Key>
  4308. <PropertyRef Name="ExaminationScoreID" />
  4309. </Key>
  4310. <Property Type="Guid" Name="ExaminationScoreID" Nullable="false" />
  4311. <Property Type="Guid" Name="ExaminationBatchProjectID" />
  4312. <Property Type="Guid" Name="UserID" />
  4313. <Property Type="Int32" Name="ExaminationSubjectID" />
  4314. <Property Type="Boolean" Name="IsResit" />
  4315. <Property Type="Decimal" Name="Score" Precision="18" Scale="2" />
  4316. <Property Type="DateTime" Name="Expire" />
  4317. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4318. <Property Type="Int32" Name="RecordStatus" />
  4319. <Property Type="DateTime" Name="CreateTime" />
  4320. <Property Type="Guid" Name="CreateUserID" />
  4321. <Property Type="Guid" Name="ModifyUserID" />
  4322. <Property Type="DateTime" Name="ModifyTime" />
  4323. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_35_CF_Student" FromRole="ER_ExaminationScore" ToRole="CF_Student" />
  4324. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject" FromRole="ER_ExaminationScore" ToRole="EX_ExaminationBatchProject" />
  4325. <NavigationProperty Name="ER_Resit" Relationship="EMIS.Entities.DTO.FK_ER_Resit_Reference_40_ER_ExaminationScore" FromRole="ER_ExaminationScore" ToRole="ER_Resit" />
  4326. </EntityType>
  4327. <EntityType Name="ER_LevelSetting">
  4328. <Key>
  4329. <PropertyRef Name="LevelSettingID" />
  4330. </Key>
  4331. <Property Type="Guid" Name="LevelSettingID" Nullable="false" />
  4332. <Property Type="Guid" Name="ExaminationProjectID" />
  4333. <Property Type="String" Name="LevelName" MaxLength="50" FixedLength="false" Unicode="false" />
  4334. <Property Type="Boolean" Name="IsPassed" />
  4335. <Property Type="Boolean" Name="IsPassLine" />
  4336. <Property Type="Int32" Name="RecordStatus" />
  4337. <Property Type="DateTime" Name="CreateTime" />
  4338. <Property Type="Guid" Name="CreateUserID" />
  4339. <Property Type="Guid" Name="ModifyUserID" />
  4340. <Property Type="DateTime" Name="ModifyTime" />
  4341. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_ER_LevelSetting_Reference_33_EX_ExaminationProject" FromRole="ER_LevelSetting" ToRole="EX_ExaminationProject" />
  4342. <NavigationProperty Name="ER_LevelSettingSubject" Relationship="EMIS.Entities.DTO.FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting" FromRole="ER_LevelSetting" ToRole="ER_LevelSettingSubject" />
  4343. <NavigationProperty Name="ER_ProjectScore" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_39_ER_LevelSetting" FromRole="ER_LevelSetting" ToRole="ER_ProjectScore" />
  4344. </EntityType>
  4345. <EntityType Name="ER_LevelSettingSubject">
  4346. <Key>
  4347. <PropertyRef Name="LevelSettingSubjectID" />
  4348. </Key>
  4349. <Property Type="Guid" Name="LevelSettingSubjectID" Nullable="false" />
  4350. <Property Type="Guid" Name="LevelSettingID" />
  4351. <Property Type="Int32" Name="ExaminationSubjectID" />
  4352. <Property Type="Decimal" Name="PassScore" Precision="18" Scale="2" />
  4353. <Property Type="Int32" Name="RecordStatus" />
  4354. <Property Type="DateTime" Name="CreateTime" />
  4355. <Property Type="Guid" Name="CreateUserID" />
  4356. <Property Type="Guid" Name="ModifyUserID" />
  4357. <Property Type="DateTime" Name="ModifyTime" />
  4358. <NavigationProperty Name="ER_LevelSetting" Relationship="EMIS.Entities.DTO.FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting" FromRole="ER_LevelSettingSubject" ToRole="ER_LevelSetting" />
  4359. </EntityType>
  4360. <EntityType Name="ER_ProjectScore">
  4361. <Key>
  4362. <PropertyRef Name="ProjectScoreID" />
  4363. </Key>
  4364. <Property Type="Guid" Name="ProjectScoreID" Nullable="false" />
  4365. <Property Type="Guid" Name="ExaminationProjectID" />
  4366. <Property Type="Guid" Name="UserID" />
  4367. <Property Type="Guid" Name="LevelSettingID" />
  4368. <Property Type="Guid" Name="SchoolyearID" />
  4369. <Property Type="Int32" Name="RecordStatus" />
  4370. <Property Type="DateTime" Name="CreateTime" />
  4371. <Property Type="Guid" Name="CreateUserID" />
  4372. <Property Type="Guid" Name="ModifyUserID" />
  4373. <Property Type="DateTime" Name="ModifyTime" />
  4374. <NavigationProperty Name="CF_Schoolyear" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_51_CF_Schoolyear" FromRole="ER_ProjectScore" ToRole="CF_Schoolyear" />
  4375. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_38_CF_Student" FromRole="ER_ProjectScore" ToRole="CF_Student" />
  4376. <NavigationProperty Name="ER_LevelSetting" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_39_ER_LevelSetting" FromRole="ER_ProjectScore" ToRole="ER_LevelSetting" />
  4377. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_37_EX_ExaminationProject" FromRole="ER_ProjectScore" ToRole="EX_ExaminationProject" />
  4378. </EntityType>
  4379. <EntityType Name="ER_Resit">
  4380. <Key>
  4381. <PropertyRef Name="ResitID" />
  4382. </Key>
  4383. <Property Type="Guid" Name="ResitID" Nullable="false" />
  4384. <Property Type="Guid" Name="ExaminationScoreID" />
  4385. <Property Type="Int32" Name="RecordStatus" />
  4386. <Property Type="DateTime" Name="CreateTime" />
  4387. <Property Type="Guid" Name="CreateUserID" />
  4388. <Property Type="Guid" Name="ModifyUserID" />
  4389. <Property Type="DateTime" Name="ModifyTime" />
  4390. <NavigationProperty Name="ER_ExaminationScore" Relationship="EMIS.Entities.DTO.FK_ER_Resit_Reference_40_ER_ExaminationScore" FromRole="ER_Resit" ToRole="ER_ExaminationScore" />
  4391. </EntityType>
  4392. <EntityType Name="EX_ExaminationBatch">
  4393. <Key>
  4394. <PropertyRef Name="ExaminationBatchID" />
  4395. </Key>
  4396. <Property Type="Guid" Name="ExaminationBatchID" Nullable="false" />
  4397. <Property Type="Guid" Name="SchoolyearID" />
  4398. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4399. <Property Type="DateTime" Name="StartDate" />
  4400. <Property Type="DateTime" Name="EndDate" />
  4401. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4402. <Property Type="Int32" Name="RecordStatus" />
  4403. <Property Type="Guid" Name="CreateUserID" />
  4404. <Property Type="DateTime" Name="CreateTime" />
  4405. <Property Type="Guid" Name="ModifyUserID" />
  4406. <Property Type="DateTime" Name="ModifyTime" />
  4407. <NavigationProperty Name="CF_Schoolyear" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear" FromRole="EX_ExaminationBatch" ToRole="CF_Schoolyear" />
  4408. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch" FromRole="EX_ExaminationBatch" ToRole="EX_ExaminationBatchProject" />
  4409. </EntityType>
  4410. <EntityType Name="EX_ExaminationBatchProject">
  4411. <Key>
  4412. <PropertyRef Name="ExaminationBatchProjectID" />
  4413. </Key>
  4414. <Property Type="Guid" Name="ExaminationBatchProjectID" Nullable="false" />
  4415. <Property Type="Guid" Name="ExaminationBatchID" />
  4416. <Property Type="Guid" Name="ExaminationProjectID" />
  4417. <Property Type="DateTime" Name="StartDate" />
  4418. <Property Type="DateTime" Name="EndDate" />
  4419. <Property Type="String" Name="SimulateTime" MaxLength="50" FixedLength="false" Unicode="true" />
  4420. <Property Type="String" Name="Training" MaxLength="Max" FixedLength="false" Unicode="true" />
  4421. <Property Type="String" Name="TakeCourseTime" MaxLength="50" FixedLength="false" Unicode="true" />
  4422. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4423. <Property Type="Int32" Name="MaxRegistCount" />
  4424. <Property Type="Int32" Name="RecordStatus" />
  4425. <Property Type="Guid" Name="CreateUserID" />
  4426. <Property Type="DateTime" Name="CreateTime" />
  4427. <Property Type="Guid" Name="ModifyUserID" />
  4428. <Property Type="DateTime" Name="ModifyTime" />
  4429. <NavigationProperty Name="EM_TrainingClass" Relationship="EMIS.Entities.DTO.FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProject" ToRole="EM_TrainingClass" />
  4430. <NavigationProperty Name="ER_ExaminationScore" Relationship="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProject" ToRole="ER_ExaminationScore" />
  4431. <NavigationProperty Name="EX_ExaminationBatch" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch" FromRole="EX_ExaminationBatchProject" ToRole="EX_ExaminationBatch" />
  4432. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject" FromRole="EX_ExaminationBatchProject" ToRole="EX_ExaminationProject" />
  4433. <NavigationProperty Name="EX_ExaminationBatchProjectControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProject" ToRole="EX_ExaminationBatchProjectControl" />
  4434. <NavigationProperty Name="EX_ExaminationBatchProjectPersonControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProject" ToRole="EX_ExaminationBatchProjectPersonControl" />
  4435. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProject" ToRole="EX_ExaminationRegistration" />
  4436. </EntityType>
  4437. <EntityType Name="EX_ExaminationBatchProjectControl">
  4438. <Key>
  4439. <PropertyRef Name="ExaminationBatchProjectControlID" />
  4440. </Key>
  4441. <Property Type="Guid" Name="ExaminationBatchProjectControlID" Nullable="false" />
  4442. <Property Type="Guid" Name="ExaminationBatchProjectID" />
  4443. <Property Type="Guid" Name="ExaminationProjectFeeID" />
  4444. <Property Type="Boolean" Name="IsOnlinePay" />
  4445. <Property Type="Int32" Name="SchoolyearID" />
  4446. <Property Type="Guid" Name="CollegeID" />
  4447. <Property Type="Int32" Name="StandardID" />
  4448. <Property Type="Int32" Name="RecordStatus" />
  4449. <Property Type="Guid" Name="CreateUserID" />
  4450. <Property Type="DateTime" Name="CreateTime" />
  4451. <Property Type="Guid" Name="ModifyUserID" />
  4452. <Property Type="DateTime" Name="ModifyTime" />
  4453. <NavigationProperty Name="CF_College" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College" FromRole="EX_ExaminationBatchProjectControl" ToRole="CF_College" />
  4454. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProjectControl" ToRole="EX_ExaminationBatchProject" />
  4455. <NavigationProperty Name="EX_ExaminationProjectFee" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee" FromRole="EX_ExaminationBatchProjectControl" ToRole="EX_ExaminationProjectFee" />
  4456. </EntityType>
  4457. <EntityType Name="EX_ExaminationBatchProjectPersonControl">
  4458. <Key>
  4459. <PropertyRef Name="ExaminationBatchProjectPersonControlID" />
  4460. </Key>
  4461. <Property Type="Guid" Name="ExaminationBatchProjectPersonControlID" Nullable="false" />
  4462. <Property Type="Guid" Name="ExaminationBatchProjectID" />
  4463. <Property Type="Guid" Name="ExaminationProjectFeeID" />
  4464. <Property Type="Guid" Name="UserID" />
  4465. <Property Type="Boolean" Name="IsOnlinePay" />
  4466. <Property Type="DateTime" Name="StartDate" />
  4467. <Property Type="DateTime" Name="EndDate" />
  4468. <Property Type="Int32" Name="RecordStatus" />
  4469. <Property Type="Guid" Name="CreateUserID" />
  4470. <Property Type="DateTime" Name="CreateTime" />
  4471. <Property Type="Guid" Name="ModifyUserID" />
  4472. <Property Type="DateTime" Name="ModifyTime" />
  4473. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student" FromRole="EX_ExaminationBatchProjectPersonControl" ToRole="CF_Student" />
  4474. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject" FromRole="EX_ExaminationBatchProjectPersonControl" ToRole="EX_ExaminationBatchProject" />
  4475. <NavigationProperty Name="EX_ExaminationProjectFee" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee" FromRole="EX_ExaminationBatchProjectPersonControl" ToRole="EX_ExaminationProjectFee" />
  4476. </EntityType>
  4477. <EntityType Name="EX_ExaminationProject">
  4478. <Key>
  4479. <PropertyRef Name="ExaminationProjectID" />
  4480. </Key>
  4481. <Property Type="Guid" Name="ExaminationProjectID" Nullable="false" />
  4482. <Property Type="Guid" Name="ExaminationTypeID" />
  4483. <Property Type="Int32" Name="ExaminationLevelID" />
  4484. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4485. <Property Type="Guid" Name="PreposeProjectID" />
  4486. <Property Type="Int32" Name="IssuedByID" />
  4487. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4488. <Property Type="Int32" Name="RecordStatus" />
  4489. <Property Type="Guid" Name="CreateUserID" />
  4490. <Property Type="DateTime" Name="CreateTime" />
  4491. <Property Type="Guid" Name="ModifyUserID" />
  4492. <Property Type="DateTime" Name="ModifyTime" />
  4493. <NavigationProperty Name="ER_CertisfierDistribute" Relationship="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="ER_CertisfierDistribute" />
  4494. <NavigationProperty Name="ER_LevelSetting" Relationship="EMIS.Entities.DTO.FK_ER_LevelSetting_Reference_33_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="ER_LevelSetting" />
  4495. <NavigationProperty Name="ER_ProjectScore" Relationship="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_37_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="ER_ProjectScore" />
  4496. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="EX_ExaminationBatchProject" />
  4497. <NavigationProperty Name="EX_ExaminationProjectFee" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="EX_ExaminationProjectFee" />
  4498. <NavigationProperty Name="EX_ExaminationProjectSubject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject" FromRole="EX_ExaminationProject" ToRole="EX_ExaminationProjectSubject" />
  4499. <NavigationProperty Name="EX_ExaminationType" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationSubject_Reference_EX_ExaminationType" FromRole="EX_ExaminationProject" ToRole="EX_ExaminationType" />
  4500. </EntityType>
  4501. <EntityType Name="EX_ExaminationProjectCollegeControl">
  4502. <Key>
  4503. <PropertyRef Name="ExaminationProjectCollegeControlID" />
  4504. </Key>
  4505. <Property Type="Guid" Name="ExaminationProjectCollegeControlID" Nullable="false" />
  4506. <Property Type="Guid" Name="ExaminationProjectID" />
  4507. <Property Type="Int32" Name="StandardID" />
  4508. <Property Type="Int32" Name="RecordStatus" />
  4509. <Property Type="Guid" Name="CreateUserID" />
  4510. <Property Type="DateTime" Name="CreateTime" />
  4511. <Property Type="Guid" Name="ModifyUserID" />
  4512. <Property Type="DateTime" Name="ModifyTime" />
  4513. </EntityType>
  4514. <EntityType Name="EX_ExaminationProjectCountLimit">
  4515. <Key>
  4516. <PropertyRef Name="ExaminationSubjectCountLimitID" />
  4517. </Key>
  4518. <Property Type="Guid" Name="ExaminationSubjectCountLimitID" Nullable="false" />
  4519. <Property Type="Guid" Name="ExaminationTypeID" />
  4520. <Property Type="Int32" Name="StandardID" />
  4521. <Property Type="Int32" Name="SchoolyearNumID" />
  4522. <Property Type="Int32" Name="SubjectCountLimit" />
  4523. <Property Type="Int32" Name="RecordStatus" />
  4524. <Property Type="DateTime" Name="CreateTime" />
  4525. <Property Type="Guid" Name="CreateUserID" />
  4526. <Property Type="Guid" Name="ModifyUserID" />
  4527. <Property Type="DateTime" Name="ModifyTime" />
  4528. </EntityType>
  4529. <EntityType Name="EX_ExaminationProjectFee">
  4530. <Key>
  4531. <PropertyRef Name="ExaminationProjectFeeID" />
  4532. </Key>
  4533. <Property Type="Guid" Name="ExaminationProjectFeeID" Nullable="false" />
  4534. <Property Type="Guid" Name="ExaminationProjectID" />
  4535. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4536. <Property Type="Int32" Name="RecordStatus" />
  4537. <Property Type="Guid" Name="CreateUserID" />
  4538. <Property Type="DateTime" Name="CreateTime" />
  4539. <Property Type="Guid" Name="ModifyUserID" />
  4540. <Property Type="DateTime" Name="ModifyTime" />
  4541. <NavigationProperty Name="EX_ExaminationBatchProjectControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee" FromRole="EX_ExaminationProjectFee" ToRole="EX_ExaminationBatchProjectControl" />
  4542. <NavigationProperty Name="EX_ExaminationBatchProjectPersonControl" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee" FromRole="EX_ExaminationProjectFee" ToRole="EX_ExaminationBatchProjectPersonControl" />
  4543. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject" FromRole="EX_ExaminationProjectFee" ToRole="EX_ExaminationProject" />
  4544. <NavigationProperty Name="EX_ExaminationProjectFeeType" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee" FromRole="EX_ExaminationProjectFee" ToRole="EX_ExaminationProjectFeeType" />
  4545. </EntityType>
  4546. <EntityType Name="EX_ExaminationProjectFeeType">
  4547. <Key>
  4548. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  4549. </Key>
  4550. <Property Type="Guid" Name="ExaminationProjectFeeTypeID" Nullable="false" />
  4551. <Property Type="Guid" Name="ExaminationProjectFeeID" />
  4552. <Property Type="Int32" Name="FeeTypeID" />
  4553. <Property Type="Decimal" Name="Fee" Precision="18" Scale="1" />
  4554. <Property Type="Boolean" Name="IsRequiredForNew" />
  4555. <Property Type="Boolean" Name="IsResit" />
  4556. <Property Type="Boolean" Name="IsTrainingFee" />
  4557. <Property Type="Boolean" Name="IsMaterial" />
  4558. <Property Type="Int32" Name="RecordStatus" />
  4559. <Property Type="Guid" Name="CreateUserID" />
  4560. <Property Type="DateTime" Name="CreateTime" />
  4561. <Property Type="Guid" Name="ModifyUserID" />
  4562. <Property Type="DateTime" Name="ModifyTime" />
  4563. <NavigationProperty Name="EX_ExaminationProjectFee" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee" FromRole="EX_ExaminationProjectFeeType" ToRole="EX_ExaminationProjectFee" />
  4564. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType" FromRole="EX_ExaminationProjectFeeType" ToRole="EX_ExaminationRegistration" />
  4565. </EntityType>
  4566. <EntityType Name="EX_ExaminationProjectSubject">
  4567. <Key>
  4568. <PropertyRef Name="ExaminationProjectSubjectID" />
  4569. </Key>
  4570. <Property Type="Guid" Name="ExaminationProjectSubjectID" Nullable="false" />
  4571. <Property Type="Guid" Name="ExaminationProjectID" />
  4572. <Property Type="Int32" Name="ExaminationSubjectID" />
  4573. <Property Type="Int32" Name="ResitCount" />
  4574. <Property Type="Int32" Name="RecordStatus" />
  4575. <Property Type="Guid" Name="CreateUserID" />
  4576. <Property Type="DateTime" Name="CreateTime" />
  4577. <Property Type="Guid" Name="ModifyUserID" />
  4578. <Property Type="DateTime" Name="ModifyTime" />
  4579. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject" FromRole="EX_ExaminationProjectSubject" ToRole="EX_ExaminationProject" />
  4580. </EntityType>
  4581. <EntityType Name="EX_ExaminationRegistration">
  4582. <Key>
  4583. <PropertyRef Name="ExaminationRegistrationID" />
  4584. </Key>
  4585. <Property Type="Guid" Name="ExaminationRegistrationID" Nullable="false" />
  4586. <Property Type="Guid" Name="ExaminationProjectFeeTypeID" />
  4587. <Property Type="Guid" Name="ExaminationRegistrationConfirmID" />
  4588. <Property Type="Guid" Name="ExaminationBatchProjectID" />
  4589. <Property Type="Guid" Name="UserID" />
  4590. <Property Type="Decimal" Name="Fee" Precision="18" Scale="1" />
  4591. <Property Type="String" Name="BankName" MaxLength="50" FixedLength="false" Unicode="true" />
  4592. <Property Type="String" Name="CardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4593. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  4594. <Property Type="DateTime" Name="PayTime" />
  4595. <Property Type="String" Name="RefundReason" MaxLength="Max" FixedLength="false" Unicode="true" />
  4596. <Property Type="Guid" Name="RefundUserID" />
  4597. <Property Type="DateTime" Name="RefundTime" />
  4598. <Property Type="Guid" Name="RefundConfirmUserID" />
  4599. <Property Type="DateTime" Name="RefundConfirmTime" />
  4600. <Property Type="Int32" Name="RecordStatus" />
  4601. <Property Type="Guid" Name="CreateUserID" />
  4602. <Property Type="DateTime" Name="CreateTime" />
  4603. <Property Type="Guid" Name="ModifyUserID" />
  4604. <Property Type="DateTime" Name="ModifyTime" />
  4605. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_CF_Student" FromRole="EX_ExaminationRegistration" ToRole="CF_Student" />
  4606. <NavigationProperty Name="CF_WechatPayList" Relationship="EMIS.Entities.DTO.FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration" FromRole="EX_ExaminationRegistration" ToRole="CF_WechatPayList" />
  4607. <NavigationProperty Name="EM_ExaminationMessage" Relationship="EMIS.Entities.DTO.FK_EM_EXAMI_REFERENCE_EX_EXAMI" FromRole="EX_ExaminationRegistration" ToRole="EM_ExaminationMessage" />
  4608. <NavigationProperty Name="EX_ExaminationBatchProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationBatchProject" FromRole="EX_ExaminationRegistration" ToRole="EX_ExaminationBatchProject" />
  4609. <NavigationProperty Name="EX_ExaminationProjectFeeType" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType" FromRole="EX_ExaminationRegistration" ToRole="EX_ExaminationProjectFeeType" />
  4610. <NavigationProperty Name="EX_ExaminationRegistrationConfirm" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm" FromRole="EX_ExaminationRegistration" ToRole="EX_ExaminationRegistrationConfirm" />
  4611. </EntityType>
  4612. <EntityType Name="EX_ExaminationRegistrationConfirm">
  4613. <Key>
  4614. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  4615. </Key>
  4616. <Property Type="Guid" Name="ExaminationRegistrationConfirmID" Nullable="false" />
  4617. <Property Type="String" Name="No" MaxLength="50" FixedLength="false" Unicode="false" />
  4618. <Property Type="String" Name="ReceiptNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4619. <Property Type="Guid" Name="Receiver" />
  4620. <Property Type="String" Name="BarcodeUrl" MaxLength="1000" FixedLength="false" Unicode="true" />
  4621. <Property Type="Int32" Name="RecordStatus" />
  4622. <Property Type="Guid" Name="CreateUserID" />
  4623. <Property Type="DateTime" Name="CreateTime" />
  4624. <Property Type="Guid" Name="ModifyUserID" />
  4625. <Property Type="DateTime" Name="ModifyTime" />
  4626. <NavigationProperty Name="EX_ExaminationRegistration" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm" FromRole="EX_ExaminationRegistrationConfirm" ToRole="EX_ExaminationRegistration" />
  4627. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistrationConfirm_Sys_User" FromRole="EX_ExaminationRegistrationConfirm" ToRole="Sys_User" />
  4628. </EntityType>
  4629. <EntityType Name="EX_ExaminationType">
  4630. <Key>
  4631. <PropertyRef Name="ExaminationTypeID" />
  4632. </Key>
  4633. <Property Type="Guid" Name="ExaminationTypeID" Nullable="false" />
  4634. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4635. <Property Type="Boolean" Name="IsTimesLimit" />
  4636. <Property Type="Int32" Name="RecordStatus" />
  4637. <Property Type="DateTime" Name="CreateTime" />
  4638. <Property Type="Guid" Name="CreateUserID" />
  4639. <Property Type="Guid" Name="ModifyUserID" />
  4640. <Property Type="DateTime" Name="ModifyTime" />
  4641. <NavigationProperty Name="EX_ExaminationProject" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationSubject_Reference_EX_ExaminationType" FromRole="EX_ExaminationType" ToRole="EX_ExaminationProject" />
  4642. </EntityType>
  4643. <EntityType Name="EX_InvalidReceipt">
  4644. <Key>
  4645. <PropertyRef Name="InvalidReceiptID" />
  4646. </Key>
  4647. <Property Type="Guid" Name="InvalidReceiptID" Nullable="false" />
  4648. <Property Type="String" Name="ReceiptNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4649. <Property Type="Int32" Name="RecordStatus" />
  4650. <Property Type="DateTime" Name="CreateTime" />
  4651. <Property Type="Guid" Name="CreateUserID" />
  4652. <Property Type="Guid" Name="ModifyUserID" />
  4653. <Property Type="DateTime" Name="ModifyTime" />
  4654. </EntityType>
  4655. <EntityType Name="EX_Receipt">
  4656. <Key>
  4657. <PropertyRef Name="ReceiptID" />
  4658. </Key>
  4659. <Property Type="Guid" Name="ReceiptID" Nullable="false" />
  4660. <Property Type="Guid" Name="UserID" />
  4661. <Property Type="String" Name="ReceiptStartNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4662. <Property Type="String" Name="ReceiptEndNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4663. <Property Type="String" Name="CurrentReceipNo" MaxLength="50" FixedLength="false" Unicode="false" />
  4664. <Property Type="Int32" Name="RecordStatus" />
  4665. <Property Type="DateTime" Name="CreateTime" />
  4666. <Property Type="Guid" Name="CreateUserID" />
  4667. <Property Type="Guid" Name="ModifyUserID" />
  4668. <Property Type="DateTime" Name="ModifyTime" />
  4669. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_EX_Receipt_REFERENCE_SYS_USER" FromRole="EX_Receipt" ToRole="Sys_User" />
  4670. </EntityType>
  4671. <EntityType Name="Sys_Announcement">
  4672. <Key>
  4673. <PropertyRef Name="AnnouncementID" />
  4674. </Key>
  4675. <Property Type="Guid" Name="AnnouncementID" Nullable="false" />
  4676. <Property Type="Guid" Name="AnnouncementTypeID" />
  4677. <Property Type="String" Name="Title" MaxLength="100" FixedLength="false" Unicode="true" />
  4678. <Property Type="String" Name="Content" MaxLength="Max" FixedLength="false" Unicode="true" />
  4679. <Property Type="DateTime" Name="StartTime" />
  4680. <Property Type="DateTime" Name="EndTime" />
  4681. <Property Type="Boolean" Name="IsTop" />
  4682. <Property Type="Int32" Name="RecordStatus" />
  4683. <Property Type="DateTime" Name="CreateTime" />
  4684. <Property Type="Guid" Name="CreateUserID" />
  4685. <Property Type="Guid" Name="ModifyUserID" />
  4686. <Property Type="DateTime" Name="ModifyTime" />
  4687. <NavigationProperty Name="Sys_AnnouncementType" Relationship="EMIS.Entities.DTO.FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType" FromRole="Sys_Announcement" ToRole="Sys_AnnouncementType" />
  4688. <NavigationProperty Name="Sys_Role" Relationship="EMIS.Entities.DTO.Sys_Announcement_Sys_Role" FromRole="Sys_Announcement" ToRole="Sys_Role" />
  4689. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.Sys_Announcement_Sys_User" FromRole="Sys_Announcement" ToRole="Sys_User" />
  4690. </EntityType>
  4691. <EntityType Name="Sys_AnnouncementType">
  4692. <Key>
  4693. <PropertyRef Name="AnnouncementTypeID" />
  4694. </Key>
  4695. <Property Type="Guid" Name="AnnouncementTypeID" Nullable="false" />
  4696. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  4697. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4698. <Property Type="String" Name="Description" MaxLength="Max" FixedLength="false" Unicode="true" />
  4699. <Property Type="Int32" Name="RecordStatus" />
  4700. <Property Type="DateTime" Name="CreateTime" />
  4701. <Property Type="Guid" Name="CreateUserID" />
  4702. <Property Type="Guid" Name="ModifyUserID" />
  4703. <Property Type="DateTime" Name="ModifyTime" />
  4704. <NavigationProperty Name="Sys_Announcement" Relationship="EMIS.Entities.DTO.FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType" FromRole="Sys_AnnouncementType" ToRole="Sys_Announcement" />
  4705. </EntityType>
  4706. <EntityType Name="Sys_BatchModify">
  4707. <Key>
  4708. <PropertyRef Name="BatchModifyID" />
  4709. </Key>
  4710. <Property Type="Guid" Name="BatchModifyID" Nullable="false" />
  4711. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="false" />
  4712. <Property Type="String" Name="Value" MaxLength="50" FixedLength="false" Unicode="false" />
  4713. <Property Type="String" Name="ControlType" MaxLength="50" FixedLength="false" Unicode="false" />
  4714. <Property Type="String" Name="ControlTextFiled" MaxLength="50" FixedLength="false" Unicode="false" />
  4715. <Property Type="String" Name="ControlValueFiled" MaxLength="50" FixedLength="false" Unicode="false" />
  4716. <Property Type="String" Name="PostUrl" MaxLength="100" FixedLength="false" Unicode="false" />
  4717. <Property Type="String" Name="DictionaryCode" MaxLength="50" FixedLength="false" Unicode="true" />
  4718. <Property Type="String" Name="ReturnUrl" MaxLength="50" FixedLength="false" Unicode="false" />
  4719. <Property Type="String" Name="listControl" MaxLength="50" FixedLength="false" Unicode="false" />
  4720. <Property Type="String" Name="MUNClass" MaxLength="50" FixedLength="false" Unicode="false" />
  4721. <Property Type="String" Name="MNUID" MaxLength="50" FixedLength="false" Unicode="false" />
  4722. <Property Type="Int32" Name="OrderNo" />
  4723. <Property Type="Int32" Name="RecordStatus" />
  4724. <Property Type="DateTime" Name="CreateTime" />
  4725. <Property Type="Guid" Name="CreateUserID" />
  4726. <Property Type="Guid" Name="ModifyUserID" />
  4727. <Property Type="DateTime" Name="ModifyTime" />
  4728. <NavigationProperty Name="Sys_BatchModifyExpand" Relationship="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_BATC" FromRole="Sys_BatchModify" ToRole="Sys_BatchModifyExpand" />
  4729. <NavigationProperty Name="Sys_Dictionary" Relationship="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_DICT" FromRole="Sys_BatchModify" ToRole="Sys_Dictionary" />
  4730. </EntityType>
  4731. <EntityType Name="Sys_BatchModifyEvents">
  4732. <Key>
  4733. <PropertyRef Name="BatchModifyEventsID" />
  4734. </Key>
  4735. <Property Type="Guid" Name="BatchModifyEventsID" Nullable="false" />
  4736. <Property Type="String" Name="MNUID" MaxLength="50" FixedLength="false" Unicode="false" />
  4737. <Property Type="String" Name="MUNClass" MaxLength="50" FixedLength="false" Unicode="false" />
  4738. <Property Type="String" Name="ColumnName" MaxLength="50" FixedLength="false" Unicode="false" />
  4739. <Property Type="String" Name="OnBefore" MaxLength="500" FixedLength="false" Unicode="false" />
  4740. <Property Type="String" Name="OnAfter" MaxLength="500" FixedLength="false" Unicode="false" />
  4741. <Property Type="DateTime" Name="CreateTime" />
  4742. <Property Type="Guid" Name="CreateUserID" />
  4743. <Property Type="Guid" Name="ModifyUserID" />
  4744. <Property Type="DateTime" Name="ModifyTime" />
  4745. </EntityType>
  4746. <EntityType Name="Sys_BatchModifyExpand">
  4747. <Key>
  4748. <PropertyRef Name="ID" />
  4749. </Key>
  4750. <Property Type="Guid" Name="ID" Nullable="false" />
  4751. <Property Type="Guid" Name="BatchModifyID" />
  4752. <Property Type="String" Name="ColumnName" MaxLength="50" FixedLength="false" Unicode="false" />
  4753. <Property Type="String" Name="ColumnValue" MaxLength="50" FixedLength="false" Unicode="false" />
  4754. <Property Type="Int32" Name="RecordStatus" />
  4755. <Property Type="DateTime" Name="CreateTime" />
  4756. <Property Type="Guid" Name="CreateUserID" />
  4757. <Property Type="Guid" Name="ModifyUserID" />
  4758. <Property Type="DateTime" Name="ModifyTime" />
  4759. <NavigationProperty Name="Sys_BatchModify" Relationship="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_BATC" FromRole="Sys_BatchModifyExpand" ToRole="Sys_BatchModify" />
  4760. </EntityType>
  4761. <EntityType Name="Sys_ConfiguretermsExpand">
  4762. <Key>
  4763. <PropertyRef Name="ID" />
  4764. </Key>
  4765. <Property Type="Guid" Name="ID" Nullable="false" />
  4766. <Property Type="Guid" Name="ConfiguretermsInfoID" />
  4767. <Property Type="String" Name="ColumnName" MaxLength="50" FixedLength="false" Unicode="false" />
  4768. <Property Type="String" Name="ColumnValue" MaxLength="50" FixedLength="false" Unicode="false" />
  4769. <Property Type="Int32" Name="RecordStatus" />
  4770. <Property Type="DateTime" Name="CreateTime" />
  4771. <Property Type="Guid" Name="CreateUserID" />
  4772. <Property Type="Guid" Name="ModifyUserID" />
  4773. <Property Type="DateTime" Name="ModifyTime" />
  4774. <NavigationProperty Name="Sys_ConfiguretermsInfo" Relationship="EMIS.Entities.DTO.FK_SYS_Configureterms" FromRole="Sys_ConfiguretermsExpand" ToRole="Sys_ConfiguretermsInfo" />
  4775. </EntityType>
  4776. <EntityType Name="Sys_ConfiguretermsInfo">
  4777. <Key>
  4778. <PropertyRef Name="ID" />
  4779. </Key>
  4780. <Property Type="Guid" Name="ID" Nullable="false" />
  4781. <Property Type="String" Name="Name" MaxLength="200" FixedLength="false" Unicode="false" />
  4782. <Property Type="String" Name="Value" MaxLength="50" FixedLength="false" Unicode="false" />
  4783. <Property Type="String" Name="ControlType" MaxLength="50" FixedLength="false" Unicode="false" />
  4784. <Property Type="String" Name="ControlTextFiled" MaxLength="50" FixedLength="false" Unicode="false" />
  4785. <Property Type="String" Name="ControlValueFiled" MaxLength="50" FixedLength="false" Unicode="false" />
  4786. <Property Type="String" Name="PostUrl" MaxLength="50" FixedLength="false" Unicode="false" />
  4787. <Property Type="String" Name="DictionaryCode" MaxLength="50" FixedLength="false" Unicode="false" />
  4788. <Property Type="String" Name="ReturnUrl" MaxLength="50" FixedLength="false" Unicode="false" />
  4789. <Property Type="String" Name="listControl" MaxLength="50" FixedLength="false" Unicode="false" />
  4790. <Property Type="String" Name="MUNClass" MaxLength="50" FixedLength="false" Unicode="false" />
  4791. <Property Type="String" Name="MNUID" MaxLength="50" FixedLength="false" Unicode="false" />
  4792. <Property Type="Int32" Name="OrderNo" />
  4793. <Property Type="Int32" Name="RecordStatus" />
  4794. <Property Type="DateTime" Name="CreateTime" />
  4795. <Property Type="Guid" Name="CreateUserID" />
  4796. <Property Type="Guid" Name="ModifyUserID" />
  4797. <Property Type="DateTime" Name="ModifyTime" />
  4798. <NavigationProperty Name="Sys_ConfiguretermsExpand" Relationship="EMIS.Entities.DTO.FK_SYS_Configureterms" FromRole="Sys_ConfiguretermsInfo" ToRole="Sys_ConfiguretermsExpand" />
  4799. </EntityType>
  4800. <EntityType Name="Sys_ContextMenu">
  4801. <Key>
  4802. <PropertyRef Name="ContextMnuNo" />
  4803. </Key>
  4804. <Property Type="String" Name="ContextMnuNo" Nullable="false" MaxLength="30" FixedLength="false" Unicode="true" />
  4805. <Property Type="String" Name="FormClass" MaxLength="50" FixedLength="false" Unicode="false" />
  4806. <Property Type="String" Name="Title" MaxLength="50" FixedLength="false" Unicode="true" />
  4807. <Property Type="Boolean" Name="IsNeedPrivilege" Nullable="false" />
  4808. <Property Type="String" Name="IconName" MaxLength="50" FixedLength="false" Unicode="true" />
  4809. <Property Type="String" Name="Scripts" MaxLength="500" FixedLength="false" Unicode="false" />
  4810. <Property Type="Int32" Name="SeqNo" />
  4811. <Property Type="String" Name="FunctionCode" MaxLength="50" FixedLength="false" Unicode="true" />
  4812. <Property Type="String" Name="MenuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  4813. <Property Type="Int32" Name="RecordStatus" />
  4814. <NavigationProperty Name="Sys_FunctionCode" Relationship="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION" FromRole="Sys_ContextMenu" ToRole="Sys_FunctionCode" />
  4815. <NavigationProperty Name="Sys_Menu" Relationship="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU" FromRole="Sys_ContextMenu" ToRole="Sys_Menu" />
  4816. <NavigationProperty Name="Sys_ControlItemDetail" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ContextMenu" FromRole="Sys_ContextMenu" ToRole="Sys_ControlItemDetail" />
  4817. </EntityType>
  4818. <EntityType Name="Sys_ControlItem">
  4819. <Key>
  4820. <PropertyRef Name="ControlItemCode" />
  4821. </Key>
  4822. <Property Type="String" Name="ControlItemCode" Nullable="false" MaxLength="30" FixedLength="false" Unicode="false" />
  4823. <Property Type="Int32" Name="ControlItemTypeID" />
  4824. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  4825. <Property Type="String" Name="ClassName" MaxLength="500" FixedLength="false" Unicode="false" />
  4826. <Property Type="String" Name="Message" MaxLength="50" FixedLength="false" Unicode="true" />
  4827. <Property Type="Boolean" Name="IsLoginControl" />
  4828. <Property Type="Boolean" Name="IsEnable" />
  4829. <NavigationProperty Name="Sys_ControlItemDetail" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ControlItem" FromRole="Sys_ControlItem" ToRole="Sys_ControlItemDetail" />
  4830. </EntityType>
  4831. <EntityType Name="Sys_ControlItemDetail">
  4832. <Key>
  4833. <PropertyRef Name="ControlItemDetailID" />
  4834. </Key>
  4835. <Property Type="Guid" Name="ControlItemDetailID" Nullable="false" />
  4836. <Property Type="String" Name="ControlItemCode" Nullable="false" MaxLength="30" FixedLength="false" Unicode="false" />
  4837. <Property Type="String" Name="MenuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  4838. <Property Type="String" Name="ContextMnuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  4839. <NavigationProperty Name="Sys_ContextMenu" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ContextMenu" FromRole="Sys_ControlItemDetail" ToRole="Sys_ContextMenu" />
  4840. <NavigationProperty Name="Sys_ControlItem" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ControlItem" FromRole="Sys_ControlItemDetail" ToRole="Sys_ControlItem" />
  4841. <NavigationProperty Name="Sys_Menu" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_Menu" FromRole="Sys_ControlItemDetail" ToRole="Sys_Menu" />
  4842. </EntityType>
  4843. <EntityType Name="Sys_Dictionary">
  4844. <Key>
  4845. <PropertyRef Name="DictionaryCode" />
  4846. </Key>
  4847. <Property Type="String" Name="DictionaryCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  4848. <Property Type="String" Name="Name" MaxLength="500" FixedLength="false" Unicode="true" />
  4849. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  4850. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  4851. <Property Type="Boolean" Name="IsEditable" />
  4852. <NavigationProperty Name="CF_DataCenterCodeTranslate" Relationship="EMIS.Entities.DTO.FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary" FromRole="Sys_Dictionary" ToRole="CF_DataCenterCodeTranslate" />
  4853. <NavigationProperty Name="Sys_BatchModify" Relationship="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_DICT" FromRole="Sys_Dictionary" ToRole="Sys_BatchModify" />
  4854. <NavigationProperty Name="Sys_DictionaryItem" Relationship="EMIS.Entities.DTO.FK_Sys_DictionaryItem_Sys_Dictionary" FromRole="Sys_Dictionary" ToRole="Sys_DictionaryItem" />
  4855. </EntityType>
  4856. <EntityType Name="Sys_DictionaryItem">
  4857. <Key>
  4858. <PropertyRef Name="DictionaryItemID" />
  4859. </Key>
  4860. <Property Type="Guid" Name="DictionaryItemID" Nullable="false" />
  4861. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  4862. <Property Type="String" Name="DictionaryCode" MaxLength="50" FixedLength="false" Unicode="true" />
  4863. <Property Type="Int32" Name="Value" />
  4864. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  4865. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  4866. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  4867. <Property Type="Boolean" Name="IsEditable" />
  4868. <NavigationProperty Name="Sys_Dictionary" Relationship="EMIS.Entities.DTO.FK_Sys_DictionaryItem_Sys_Dictionary" FromRole="Sys_DictionaryItem" ToRole="Sys_Dictionary" />
  4869. </EntityType>
  4870. <EntityType Name="Sys_FunctionCode">
  4871. <Key>
  4872. <PropertyRef Name="FunctionCode" />
  4873. </Key>
  4874. <Property Type="String" Name="FunctionCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  4875. <Property Type="String" Name="FunctionName" MaxLength="50" FixedLength="false" Unicode="true" />
  4876. <Property Type="String" Name="ParentFunctionCode" MaxLength="50" FixedLength="false" Unicode="true" />
  4877. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  4878. <NavigationProperty Name="Sys_ContextMenu" Relationship="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION" FromRole="Sys_FunctionCode" ToRole="Sys_ContextMenu" />
  4879. <NavigationProperty Name="Sys_Menu" Relationship="EMIS.Entities.DTO.FK_SYS_MENU_REFERENCE_SYS_FUNC" FromRole="Sys_FunctionCode" ToRole="Sys_Menu" />
  4880. <NavigationProperty Name="Sys_Role" Relationship="EMIS.Entities.DTO.Sys_Role_Sys_FunctionCode" FromRole="Sys_FunctionCode" ToRole="Sys_Role" />
  4881. </EntityType>
  4882. <EntityType Name="Sys_LoginHistory">
  4883. <Key>
  4884. <PropertyRef Name="LoginHistoryID" />
  4885. </Key>
  4886. <Property Type="Guid" Name="LoginHistoryID" Nullable="false" />
  4887. <Property Type="String" Name="LoginID" MaxLength="50" FixedLength="false" Unicode="true" />
  4888. <Property Type="Int32" Name="Count" />
  4889. <Property Type="DateTime" Name="LoginFailTime" />
  4890. </EntityType>
  4891. <EntityType Name="Sys_MailVerifyCode">
  4892. <Key>
  4893. <PropertyRef Name="UserID" />
  4894. </Key>
  4895. <Property Type="Guid" Name="UserID" Nullable="false" />
  4896. <Property Type="String" Name="VerifyCode" MaxLength="50" FixedLength="false" Unicode="false" />
  4897. <Property Type="Int32" Name="RecordStatus" />
  4898. <Property Type="Guid" Name="CreateUserID" />
  4899. <Property Type="DateTime" Name="CreateTime" />
  4900. <Property Type="Guid" Name="ModifyUserID" />
  4901. <Property Type="DateTime" Name="ModifyTime" />
  4902. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_Sys_MailVerifyCode_REFERENCE_SYS_USER" FromRole="Sys_MailVerifyCode" ToRole="Sys_User" />
  4903. </EntityType>
  4904. <EntityType Name="Sys_Menu">
  4905. <Key>
  4906. <PropertyRef Name="MenuNo" />
  4907. </Key>
  4908. <Property Type="String" Name="MenuNo" Nullable="false" MaxLength="30" FixedLength="false" Unicode="true" />
  4909. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  4910. <Property Type="String" Name="MenuName" Nullable="false" MaxLength="60" FixedLength="false" Unicode="true" />
  4911. <Property Type="String" Name="Icon" MaxLength="50" FixedLength="false" Unicode="true" />
  4912. <Property Type="String" Name="Url" MaxLength="500" FixedLength="false" Unicode="false" />
  4913. <Property Type="String" Name="ParentMenuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  4914. <Property Type="String" Name="Description" MaxLength="500" FixedLength="false" Unicode="true" />
  4915. <Property Type="Boolean" Name="IsTopMenu" Nullable="false" />
  4916. <Property Type="Boolean" Name="IsVisible" Nullable="false" />
  4917. <Property Type="Boolean" Name="IsLeaf" />
  4918. <Property Type="String" Name="FunctionCode" MaxLength="50" FixedLength="false" Unicode="true" />
  4919. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  4920. <NavigationProperty Name="Sys_ContextMenu" Relationship="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU" FromRole="Sys_Menu" ToRole="Sys_ContextMenu" />
  4921. <NavigationProperty Name="Sys_ControlItemDetail" Relationship="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_Menu" FromRole="Sys_Menu" ToRole="Sys_ControlItemDetail" />
  4922. <NavigationProperty Name="Sys_FunctionCode" Relationship="EMIS.Entities.DTO.FK_SYS_MENU_REFERENCE_SYS_FUNC" FromRole="Sys_Menu" ToRole="Sys_FunctionCode" />
  4923. <NavigationProperty Name="Sys_RoleDataRange" Relationship="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU" FromRole="Sys_Menu" ToRole="Sys_RoleDataRange" />
  4924. </EntityType>
  4925. <EntityType Name="Sys_Role">
  4926. <Key>
  4927. <PropertyRef Name="RoleID" />
  4928. </Key>
  4929. <Property Type="Guid" Name="RoleID" Nullable="false" />
  4930. <Property Type="Int32" Name="TypeID" />
  4931. <Property Type="String" Name="RoleName" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  4932. <Property Type="String" Name="Description" MaxLength="500" FixedLength="false" Unicode="true" />
  4933. <Property Type="Boolean" Name="IsSystemRole" Nullable="false" />
  4934. <Property Type="Int32" Name="SystemRoleType" />
  4935. <Property Type="Int32" Name="DefaultDataRange" />
  4936. <Property Type="Int32" Name="RecordStatus" />
  4937. <Property Type="Guid" Name="CreateUserID" />
  4938. <Property Type="DateTime" Name="CreateTime" />
  4939. <Property Type="Guid" Name="ModifyUserID" />
  4940. <Property Type="DateTime" Name="ModifyTime" />
  4941. <Property Type="Int32" Name="OrderNo" />
  4942. <NavigationProperty Name="CF_StudentRole" Relationship="EMIS.Entities.DTO.FK_CF_StudentRole_REFERENCE_SYS_ROLE" FromRole="Sys_Role" ToRole="CF_StudentRole" />
  4943. <NavigationProperty Name="Sys_RoleDataRange" Relationship="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE" FromRole="Sys_Role" ToRole="Sys_RoleDataRange" />
  4944. <NavigationProperty Name="Sys_Announcement" Relationship="EMIS.Entities.DTO.Sys_Announcement_Sys_Role" FromRole="Sys_Role" ToRole="Sys_Announcement" />
  4945. <NavigationProperty Name="Sys_FunctionCode" Relationship="EMIS.Entities.DTO.Sys_Role_Sys_FunctionCode" FromRole="Sys_Role" ToRole="Sys_FunctionCode" />
  4946. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.Sys_User_Sys_Role" FromRole="Sys_Role" ToRole="Sys_User" />
  4947. </EntityType>
  4948. <EntityType Name="Sys_RoleDataRange">
  4949. <Key>
  4950. <PropertyRef Name="RoleDataRangeID" />
  4951. </Key>
  4952. <Property Type="Guid" Name="RoleDataRangeID" Nullable="false" />
  4953. <Property Type="Guid" Name="RoleID" />
  4954. <Property Type="String" Name="MenuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  4955. <Property Type="Int32" Name="DataRangeID" Nullable="false" />
  4956. <Property Type="Int32" Name="RecordStatus" />
  4957. <Property Type="Guid" Name="CreateUserID" />
  4958. <Property Type="DateTime" Name="CreateTime" />
  4959. <Property Type="Guid" Name="ModifyUserID" />
  4960. <Property Type="DateTime" Name="ModifyTime" />
  4961. <NavigationProperty Name="Sys_Menu" Relationship="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU" FromRole="Sys_RoleDataRange" ToRole="Sys_Menu" />
  4962. <NavigationProperty Name="Sys_Role" Relationship="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE" FromRole="Sys_RoleDataRange" ToRole="Sys_Role" />
  4963. </EntityType>
  4964. <EntityType Name="Sys_ScheduleJob">
  4965. <Key>
  4966. <PropertyRef Name="jobid" />
  4967. </Key>
  4968. <Property Type="String" Name="jobid" Nullable="false" MaxLength="100" FixedLength="false" Unicode="false" />
  4969. <Property Type="String" Name="jobname" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  4970. <Property Type="String" Name="assemname" Nullable="false" MaxLength="200" FixedLength="false" Unicode="false" />
  4971. <Property Type="String" Name="classname" Nullable="false" MaxLength="200" FixedLength="false" Unicode="false" />
  4972. <Property Type="String" Name="jobdesc" Nullable="false" MaxLength="500" FixedLength="false" Unicode="true" />
  4973. <Property Type="Boolean" Name="autolog" Nullable="false" />
  4974. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  4975. <Property Type="Guid" Name="CreateUserID" />
  4976. <Property Type="DateTime" Name="CreateTime" />
  4977. <Property Type="Guid" Name="ModifyUserID" />
  4978. <Property Type="DateTime" Name="ModifyTime" />
  4979. <NavigationProperty Name="Sys_Scheduling" Relationship="EMIS.Entities.DTO.FK_Sys_ScheduleJob_Sys_Scheduling" FromRole="Sys_ScheduleJob" ToRole="Sys_Scheduling" />
  4980. </EntityType>
  4981. <EntityType Name="Sys_ScheduleLog">
  4982. <Key>
  4983. <PropertyRef Name="scheduleLogID" />
  4984. </Key>
  4985. <Property Type="Guid" Name="scheduleLogID" Nullable="false" />
  4986. <Property Type="Guid" Name="scid" />
  4987. <Property Type="DateTime" Name="timeBegin" Nullable="false" />
  4988. <Property Type="DateTime" Name="timeEnd" Nullable="false" />
  4989. <Property Type="Boolean" Name="successful" Nullable="false" />
  4990. <Property Type="Int32" Name="useSeconds" Nullable="false" />
  4991. <Property Type="String" Name="Desc" MaxLength="1000" FixedLength="false" Unicode="true" />
  4992. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  4993. <Property Type="Guid" Name="CreateUserID" />
  4994. <Property Type="DateTime" Name="CreateTime" />
  4995. <Property Type="Guid" Name="ModifyUserID" />
  4996. <Property Type="DateTime" Name="ModifyTime" />
  4997. <NavigationProperty Name="Sys_Scheduling" Relationship="EMIS.Entities.DTO.FK_Sys_Scheduling_Sys_ScheduleLog" FromRole="Sys_ScheduleLog" ToRole="Sys_Scheduling" />
  4998. </EntityType>
  4999. <EntityType Name="Sys_Scheduling">
  5000. <Key>
  5001. <PropertyRef Name="scid" />
  5002. </Key>
  5003. <Property Type="Guid" Name="scid" Nullable="false" />
  5004. <Property Type="String" Name="jobid" MaxLength="100" FixedLength="false" Unicode="false" />
  5005. <Property Type="String" Name="datebegin" Nullable="false" MaxLength="8" FixedLength="true" Unicode="false" />
  5006. <Property Type="String" Name="dateend" Nullable="false" MaxLength="8" FixedLength="true" Unicode="false" />
  5007. <Property Type="String" Name="timefrom" Nullable="false" MaxLength="10" FixedLength="true" Unicode="false" />
  5008. <Property Type="String" Name="timeto" Nullable="false" MaxLength="10" FixedLength="true" Unicode="false" />
  5009. <Property Type="String" Name="looptype" Nullable="false" MaxLength="1" FixedLength="true" Unicode="false" />
  5010. <Property Type="Int32" Name="loopnumb" Nullable="false" />
  5011. <Property Type="String" Name="scmode" Nullable="false" MaxLength="1" FixedLength="true" Unicode="false" />
  5012. <Property Type="Int32" Name="scinterval" Nullable="false" />
  5013. <Property Type="String" Name="notes" Nullable="false" MaxLength="500" FixedLength="false" Unicode="true" />
  5014. <Property Type="String" Name="status" Nullable="false" MaxLength="1" FixedLength="true" Unicode="false" />
  5015. <Property Type="DateTime" Name="lastrun" />
  5016. <Property Type="Int32" Name="totalloopnumb" />
  5017. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  5018. <Property Type="Guid" Name="CreateUserID" />
  5019. <Property Type="DateTime" Name="CreateTime" />
  5020. <Property Type="Guid" Name="ModifyUserID" />
  5021. <Property Type="DateTime" Name="ModifyTime" />
  5022. <NavigationProperty Name="Sys_ScheduleJob" Relationship="EMIS.Entities.DTO.FK_Sys_ScheduleJob_Sys_Scheduling" FromRole="Sys_Scheduling" ToRole="Sys_ScheduleJob" />
  5023. <NavigationProperty Name="Sys_ScheduleLog" Relationship="EMIS.Entities.DTO.FK_Sys_Scheduling_Sys_ScheduleLog" FromRole="Sys_Scheduling" ToRole="Sys_ScheduleLog" />
  5024. </EntityType>
  5025. <EntityType Name="Sys_SerialNumber">
  5026. <Key>
  5027. <PropertyRef Name="ID" />
  5028. </Key>
  5029. <Property Type="String" Name="ID" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  5030. <Property Type="Int32" Name="Number" Nullable="false" />
  5031. <Property Type="DateTime" Name="ResetTime" Nullable="false" />
  5032. </EntityType>
  5033. <EntityType Name="Sys_ShareRecord">
  5034. <Key>
  5035. <PropertyRef Name="ShareRecordID" />
  5036. </Key>
  5037. <Property Type="Guid" Name="ShareRecordID" Nullable="false" />
  5038. <Property Type="DateTime" Name="DateTime" />
  5039. <Property Type="Guid" Name="AnnouncementID" />
  5040. <Property Type="Guid" Name="UserID" />
  5041. <Property Type="String" Name="OpenID" MaxLength="50" FixedLength="false" Unicode="true" />
  5042. <Property Type="Int32" Name="RecordStatus" />
  5043. <Property Type="Guid" Name="CreateUserID" />
  5044. <Property Type="DateTime" Name="CreateTime" />
  5045. <Property Type="Guid" Name="ModifyUserID" />
  5046. <Property Type="DateTime" Name="ModifyTime" />
  5047. </EntityType>
  5048. <EntityType Name="Sys_User">
  5049. <Key>
  5050. <PropertyRef Name="UserID" />
  5051. </Key>
  5052. <Property Type="Guid" Name="UserID" Nullable="false" />
  5053. <Property Type="String" Name="LoginID" MaxLength="50" FixedLength="false" Unicode="false" />
  5054. <Property Type="String" Name="Password" MaxLength="50" FixedLength="false" Unicode="false" />
  5055. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  5056. <Property Type="Int32" Name="RecordStatus" />
  5057. <Property Type="Guid" Name="CreateUserID" />
  5058. <Property Type="DateTime" Name="CreateTime" />
  5059. <Property Type="Guid" Name="ModifyUserID" />
  5060. <Property Type="DateTime" Name="ModifyTime" />
  5061. <NavigationProperty Name="CF_Staff" Relationship="EMIS.Entities.DTO.FK_CF_Staff_Sys_User" FromRole="Sys_User" ToRole="CF_Staff" />
  5062. <NavigationProperty Name="CF_Student" Relationship="EMIS.Entities.DTO.FK_CF_STUDENT_REFERENCE_SYS_USER" FromRole="Sys_User" ToRole="CF_Student" />
  5063. <NavigationProperty Name="EX_ExaminationRegistrationConfirm" Relationship="EMIS.Entities.DTO.FK_EX_ExaminationRegistrationConfirm_Sys_User" FromRole="Sys_User" ToRole="EX_ExaminationRegistrationConfirm" />
  5064. <NavigationProperty Name="EX_Receipt" Relationship="EMIS.Entities.DTO.FK_EX_Receipt_REFERENCE_SYS_USER" FromRole="Sys_User" ToRole="EX_Receipt" />
  5065. <NavigationProperty Name="Sys_MailVerifyCode" Relationship="EMIS.Entities.DTO.FK_Sys_MailVerifyCode_REFERENCE_SYS_USER" FromRole="Sys_User" ToRole="Sys_MailVerifyCode" />
  5066. <NavigationProperty Name="TestOperate" Relationship="EMIS.Entities.DTO.FK_TestOperate_Sys_User" FromRole="Sys_User" ToRole="TestOperate" />
  5067. <NavigationProperty Name="Sys_Announcement" Relationship="EMIS.Entities.DTO.Sys_Announcement_Sys_User" FromRole="Sys_User" ToRole="Sys_Announcement" />
  5068. <NavigationProperty Name="Sys_Role" Relationship="EMIS.Entities.DTO.Sys_User_Sys_Role" FromRole="Sys_User" ToRole="Sys_Role" />
  5069. </EntityType>
  5070. <EntityType Name="Sys_UserScore">
  5071. <Key>
  5072. <PropertyRef Name="UserID" />
  5073. </Key>
  5074. <Property Type="Guid" Name="UserID" Nullable="false" />
  5075. <Property Type="Int32" Name="Score" />
  5076. <Property Type="Guid" Name="CreateUserID" />
  5077. <Property Type="DateTime" Name="CreateTime" />
  5078. <Property Type="Guid" Name="ModifyUserID" />
  5079. <Property Type="DateTime" Name="ModifyTime" />
  5080. </EntityType>
  5081. <EntityType Name="TestOperate">
  5082. <Key>
  5083. <PropertyRef Name="OperateID" />
  5084. </Key>
  5085. <Property Type="Guid" Name="OperateID" Nullable="false" />
  5086. <Property Type="Guid" Name="UserID" Nullable="false" />
  5087. <Property Type="DateTime" Name="StartTime" />
  5088. <Property Type="DateTime" Name="EndTime" />
  5089. <Property Type="DateTime" Name="CreateTime" />
  5090. <Property Type="Guid" Name="CreateUserID" />
  5091. <Property Type="Guid" Name="ModifyUserID" />
  5092. <Property Type="DateTime" Name="ModifyTime" />
  5093. <NavigationProperty Name="Sys_User" Relationship="EMIS.Entities.DTO.FK_TestOperate_Sys_User" FromRole="TestOperate" ToRole="Sys_User" />
  5094. </EntityType>
  5095. <Association Name="FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME">
  5096. <End Type="EMIS.Entities.DTO.EM_CoursesTime" Role="EM_CoursesTime" Multiplicity="0..1" />
  5097. <End Type="EMIS.Entities.DTO.CF_Arrangements" Role="CF_Arrangements" Multiplicity="*" />
  5098. <ReferentialConstraint>
  5099. <Principal Role="EM_CoursesTime">
  5100. <PropertyRef Name="CoursesTimeID" />
  5101. </Principal>
  5102. <Dependent Role="CF_Arrangements">
  5103. <PropertyRef Name="CoursesTimeID" />
  5104. </Dependent>
  5105. </ReferentialConstraint>
  5106. </Association>
  5107. <Association Name="FK_CF_CAMPU_REFERENCE_CF_CAMPU">
  5108. <End Type="EMIS.Entities.DTO.CF_Campus" Role="CF_Campus" Multiplicity="1" />
  5109. <End Type="EMIS.Entities.DTO.CF_CampusProfile" Role="CF_CampusProfile" Multiplicity="0..1" />
  5110. <ReferentialConstraint>
  5111. <Principal Role="CF_Campus">
  5112. <PropertyRef Name="CampusID" />
  5113. </Principal>
  5114. <Dependent Role="CF_CampusProfile">
  5115. <PropertyRef Name="CampusID" />
  5116. </Dependent>
  5117. </ReferentialConstraint>
  5118. </Association>
  5119. <Association Name="FK_CF_Campus_REFERENCE_CF_UNIVERSITY">
  5120. <End Type="EMIS.Entities.DTO.CF_University" Role="CF_University" Multiplicity="0..1" />
  5121. <End Type="EMIS.Entities.DTO.CF_Campus" Role="CF_Campus" Multiplicity="*" />
  5122. <ReferentialConstraint>
  5123. <Principal Role="CF_University">
  5124. <PropertyRef Name="UniversityID" />
  5125. </Principal>
  5126. <Dependent Role="CF_Campus">
  5127. <PropertyRef Name="UniversityID" />
  5128. </Dependent>
  5129. </ReferentialConstraint>
  5130. </Association>
  5131. <Association Name="FK_CF_COLLEGE_REFERENCE_CF_Campus">
  5132. <End Type="EMIS.Entities.DTO.CF_Campus" Role="CF_Campus" Multiplicity="0..1" />
  5133. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="*" />
  5134. <ReferentialConstraint>
  5135. <Principal Role="CF_Campus">
  5136. <PropertyRef Name="CampusID" />
  5137. </Principal>
  5138. <Dependent Role="CF_College">
  5139. <PropertyRef Name="CampusID" />
  5140. </Dependent>
  5141. </ReferentialConstraint>
  5142. </Association>
  5143. <Association Name="FK_CF_StaffManageCampus_REFERENCE_CF_Campus">
  5144. <End Type="EMIS.Entities.DTO.CF_Campus" Role="CF_Campus" Multiplicity="0..1" />
  5145. <End Type="EMIS.Entities.DTO.CF_StaffManageCampus" Role="CF_StaffManageCampus" Multiplicity="*" />
  5146. <ReferentialConstraint>
  5147. <Principal Role="CF_Campus">
  5148. <PropertyRef Name="CampusID" />
  5149. </Principal>
  5150. <Dependent Role="CF_StaffManageCampus">
  5151. <PropertyRef Name="CampusID" />
  5152. </Dependent>
  5153. </ReferentialConstraint>
  5154. </Association>
  5155. <Association Name="FK_CF_CLASS_REFERENCE_CF_GRADE">
  5156. <End Type="EMIS.Entities.DTO.CF_Grademajor" Role="CF_Grademajor" Multiplicity="0..1" />
  5157. <End Type="EMIS.Entities.DTO.CF_Classmajor" Role="CF_Classmajor" Multiplicity="*" />
  5158. <ReferentialConstraint>
  5159. <Principal Role="CF_Grademajor">
  5160. <PropertyRef Name="GrademajorID" />
  5161. </Principal>
  5162. <Dependent Role="CF_Classmajor">
  5163. <PropertyRef Name="GrademajorID" />
  5164. </Dependent>
  5165. </ReferentialConstraint>
  5166. </Association>
  5167. <Association Name="FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT">
  5168. <End Type="EMIS.Entities.DTO.CF_Classmajor" Role="CF_Classmajor" Multiplicity="0..1" />
  5169. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="*" />
  5170. <ReferentialConstraint>
  5171. <Principal Role="CF_Classmajor">
  5172. <PropertyRef Name="ClassmajorID" />
  5173. </Principal>
  5174. <Dependent Role="CF_Student">
  5175. <PropertyRef Name="ClassmajorID" />
  5176. </Dependent>
  5177. </ReferentialConstraint>
  5178. </Association>
  5179. <Association Name="FK_CF_SOCIA_REFERENCE_CF_CLASS">
  5180. <End Type="EMIS.Entities.DTO.CF_Classmajor" Role="CF_Classmajor" Multiplicity="1" />
  5181. <End Type="EMIS.Entities.DTO.CF_SocialClassmajor" Role="CF_SocialClassmajor" Multiplicity="0..1" />
  5182. <ReferentialConstraint>
  5183. <Principal Role="CF_Classmajor">
  5184. <PropertyRef Name="ClassmajorID" />
  5185. </Principal>
  5186. <Dependent Role="CF_SocialClassmajor">
  5187. <PropertyRef Name="ClassmajorID" />
  5188. </Dependent>
  5189. </ReferentialConstraint>
  5190. </Association>
  5191. <Association Name="FK_CF_COLLE_REFERENCE_CF_COLLE">
  5192. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="1" />
  5193. <End Type="EMIS.Entities.DTO.CF_CollegeProfile" Role="CF_CollegeProfile" Multiplicity="0..1" />
  5194. <ReferentialConstraint>
  5195. <Principal Role="CF_College">
  5196. <PropertyRef Name="CollegeID" />
  5197. </Principal>
  5198. <Dependent Role="CF_CollegeProfile">
  5199. <PropertyRef Name="CollegeID" />
  5200. </Dependent>
  5201. </ReferentialConstraint>
  5202. </Association>
  5203. <Association Name="FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE">
  5204. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="0..1" />
  5205. <End Type="EMIS.Entities.DTO.CF_Department" Role="CF_Department" Multiplicity="*" />
  5206. <ReferentialConstraint>
  5207. <Principal Role="CF_College">
  5208. <PropertyRef Name="CollegeID" />
  5209. </Principal>
  5210. <Dependent Role="CF_Department">
  5211. <PropertyRef Name="CollegeID" />
  5212. </Dependent>
  5213. </ReferentialConstraint>
  5214. </Association>
  5215. <Association Name="FK_CF_FACUL_REFERENCE_CF_COLLE">
  5216. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="0..1" />
  5217. <End Type="EMIS.Entities.DTO.CF_Facultymajor" Role="CF_Facultymajor" Multiplicity="*" />
  5218. <ReferentialConstraint>
  5219. <Principal Role="CF_College">
  5220. <PropertyRef Name="CollegeID" />
  5221. </Principal>
  5222. <Dependent Role="CF_Facultymajor">
  5223. <PropertyRef Name="CollegeID" />
  5224. </Dependent>
  5225. </ReferentialConstraint>
  5226. </Association>
  5227. <Association Name="FK_CF_Staff_CF_College">
  5228. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="0..1" />
  5229. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="*" />
  5230. <ReferentialConstraint>
  5231. <Principal Role="CF_College">
  5232. <PropertyRef Name="CollegeID" />
  5233. </Principal>
  5234. <Dependent Role="CF_Staff">
  5235. <PropertyRef Name="CollegeID" />
  5236. </Dependent>
  5237. </ReferentialConstraint>
  5238. </Association>
  5239. <Association Name="FK_CF_StaffManageCollege_REFERENCE_CF_College">
  5240. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="0..1" />
  5241. <End Type="EMIS.Entities.DTO.CF_StaffManageCollege" Role="CF_StaffManageCollege" Multiplicity="*" />
  5242. <ReferentialConstraint>
  5243. <Principal Role="CF_College">
  5244. <PropertyRef Name="CollegeID" />
  5245. </Principal>
  5246. <Dependent Role="CF_StaffManageCollege">
  5247. <PropertyRef Name="CollegeID" />
  5248. </Dependent>
  5249. </ReferentialConstraint>
  5250. </Association>
  5251. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College">
  5252. <End Type="EMIS.Entities.DTO.CF_College" Role="CF_College" Multiplicity="0..1" />
  5253. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl" Role="EX_ExaminationBatchProjectControl" Multiplicity="*" />
  5254. <ReferentialConstraint>
  5255. <Principal Role="CF_College">
  5256. <PropertyRef Name="CollegeID" />
  5257. </Principal>
  5258. <Dependent Role="EX_ExaminationBatchProjectControl">
  5259. <PropertyRef Name="CollegeID" />
  5260. </Dependent>
  5261. </ReferentialConstraint>
  5262. </Association>
  5263. <Association Name="FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary">
  5264. <End Type="EMIS.Entities.DTO.Sys_Dictionary" Role="Sys_Dictionary" Multiplicity="0..1" />
  5265. <End Type="EMIS.Entities.DTO.CF_DataCenterCodeTranslate" Role="CF_DataCenterCodeTranslate" Multiplicity="*" />
  5266. <ReferentialConstraint>
  5267. <Principal Role="Sys_Dictionary">
  5268. <PropertyRef Name="DictionaryCode" />
  5269. </Principal>
  5270. <Dependent Role="CF_DataCenterCodeTranslate">
  5271. <PropertyRef Name="DictionaryCode" />
  5272. </Dependent>
  5273. </ReferentialConstraint>
  5274. </Association>
  5275. <Association Name="FK_CF_DEPAR_REFERENCE_CF_DEPAR">
  5276. <End Type="EMIS.Entities.DTO.CF_Department" Role="CF_Department" Multiplicity="1" />
  5277. <End Type="EMIS.Entities.DTO.CF_DepartmentProfile" Role="CF_DepartmentProfile" Multiplicity="0..1" />
  5278. <ReferentialConstraint>
  5279. <Principal Role="CF_Department">
  5280. <PropertyRef Name="DepartmentID" />
  5281. </Principal>
  5282. <Dependent Role="CF_DepartmentProfile">
  5283. <PropertyRef Name="DepartmentID" />
  5284. </Dependent>
  5285. </ReferentialConstraint>
  5286. </Association>
  5287. <Association Name="FK_CF_STAFF_REFERENCE_Department">
  5288. <End Type="EMIS.Entities.DTO.CF_Department" Role="CF_Department" Multiplicity="0..1" />
  5289. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="*" />
  5290. <ReferentialConstraint>
  5291. <Principal Role="CF_Department">
  5292. <PropertyRef Name="DepartmentID" />
  5293. </Principal>
  5294. <Dependent Role="CF_Staff">
  5295. <PropertyRef Name="DepartmentID" />
  5296. </Dependent>
  5297. </ReferentialConstraint>
  5298. </Association>
  5299. <Association Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Department">
  5300. <End Type="EMIS.Entities.DTO.CF_Department" Role="CF_Department" Multiplicity="0..1" />
  5301. <End Type="EMIS.Entities.DTO.CF_StaffManageDepartment" Role="CF_StaffManageDepartment" Multiplicity="*" />
  5302. <ReferentialConstraint>
  5303. <Principal Role="CF_Department">
  5304. <PropertyRef Name="DepartmentID" />
  5305. </Principal>
  5306. <Dependent Role="CF_StaffManageDepartment">
  5307. <PropertyRef Name="DepartmentID" />
  5308. </Dependent>
  5309. </ReferentialConstraint>
  5310. </Association>
  5311. <Association Name="FK_CF_GRADE_REFERENCE_CF_FACUL">
  5312. <End Type="EMIS.Entities.DTO.CF_Facultymajor" Role="CF_Facultymajor" Multiplicity="0..1" />
  5313. <End Type="EMIS.Entities.DTO.CF_Grademajor" Role="CF_Grademajor" Multiplicity="*" />
  5314. <ReferentialConstraint>
  5315. <Principal Role="CF_Facultymajor">
  5316. <PropertyRef Name="FacultymajorID" />
  5317. </Principal>
  5318. <Dependent Role="CF_Grademajor">
  5319. <PropertyRef Name="FacultymajorID" />
  5320. </Dependent>
  5321. </ReferentialConstraint>
  5322. </Association>
  5323. <Association Name="FK_CF_Grademajor_CF_Schoolyear">
  5324. <End Type="EMIS.Entities.DTO.CF_Schoolyear" Role="CF_Schoolyear" Multiplicity="0..1" />
  5325. <End Type="EMIS.Entities.DTO.CF_Grademajor" Role="CF_Grademajor" Multiplicity="*" />
  5326. <ReferentialConstraint>
  5327. <Principal Role="CF_Schoolyear">
  5328. <PropertyRef Name="SchoolyearID" />
  5329. </Principal>
  5330. <Dependent Role="CF_Grademajor">
  5331. <PropertyRef Name="GraduatingSemesterID" />
  5332. </Dependent>
  5333. </ReferentialConstraint>
  5334. </Association>
  5335. <Association Name="FK_CF_Recruitstudents_REFERENCE_CF_STUDENT">
  5336. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="1" />
  5337. <End Type="EMIS.Entities.DTO.CF_Recruitstudents" Role="CF_Recruitstudents" Multiplicity="0..1" />
  5338. <ReferentialConstraint>
  5339. <Principal Role="CF_Student">
  5340. <PropertyRef Name="UserID" />
  5341. </Principal>
  5342. <Dependent Role="CF_Recruitstudents">
  5343. <PropertyRef Name="UserID" />
  5344. </Dependent>
  5345. </ReferentialConstraint>
  5346. </Association>
  5347. <Association Name="FK_CF_STUDE_REFERENCE_CF_SCHOO">
  5348. <End Type="EMIS.Entities.DTO.CF_Schoolyear" Role="CF_Schoolyear" Multiplicity="0..1" />
  5349. <End Type="EMIS.Entities.DTO.CF_Recruitstudents" Role="CF_Recruitstudents" Multiplicity="*" />
  5350. <ReferentialConstraint>
  5351. <Principal Role="CF_Schoolyear">
  5352. <PropertyRef Name="SchoolyearID" />
  5353. </Principal>
  5354. <Dependent Role="CF_Recruitstudents">
  5355. <PropertyRef Name="EnteringSchoolYearID" />
  5356. </Dependent>
  5357. </ReferentialConstraint>
  5358. </Association>
  5359. <Association Name="FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear">
  5360. <End Type="EMIS.Entities.DTO.CF_Schoolyear" Role="CF_Schoolyear" Multiplicity="0..1" />
  5361. <End Type="EMIS.Entities.DTO.ER_CertisfierDistribute" Role="ER_CertisfierDistribute" Multiplicity="*" />
  5362. <ReferentialConstraint>
  5363. <Principal Role="CF_Schoolyear">
  5364. <PropertyRef Name="SchoolyearID" />
  5365. </Principal>
  5366. <Dependent Role="ER_CertisfierDistribute">
  5367. <PropertyRef Name="SchoolyearID" />
  5368. </Dependent>
  5369. </ReferentialConstraint>
  5370. </Association>
  5371. <Association Name="FK_ER_ProjectScore_Reference_51_CF_Schoolyear">
  5372. <End Type="EMIS.Entities.DTO.CF_Schoolyear" Role="CF_Schoolyear" Multiplicity="0..1" />
  5373. <End Type="EMIS.Entities.DTO.ER_ProjectScore" Role="ER_ProjectScore" Multiplicity="*" />
  5374. <ReferentialConstraint>
  5375. <Principal Role="CF_Schoolyear">
  5376. <PropertyRef Name="SchoolyearID" />
  5377. </Principal>
  5378. <Dependent Role="ER_ProjectScore">
  5379. <PropertyRef Name="SchoolyearID" />
  5380. </Dependent>
  5381. </ReferentialConstraint>
  5382. </Association>
  5383. <Association Name="FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear">
  5384. <End Type="EMIS.Entities.DTO.CF_Schoolyear" Role="CF_Schoolyear" Multiplicity="0..1" />
  5385. <End Type="EMIS.Entities.DTO.EX_ExaminationBatch" Role="EX_ExaminationBatch" Multiplicity="*" />
  5386. <ReferentialConstraint>
  5387. <Principal Role="CF_Schoolyear">
  5388. <PropertyRef Name="SchoolyearID" />
  5389. </Principal>
  5390. <Dependent Role="EX_ExaminationBatch">
  5391. <PropertyRef Name="SchoolyearID" />
  5392. </Dependent>
  5393. </ReferentialConstraint>
  5394. </Association>
  5395. <Association Name="FK_CF_STAFF_REFERENCE_CF_STAFF">
  5396. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="1" />
  5397. <End Type="EMIS.Entities.DTO.CF_StaffProfile" Role="CF_StaffProfile" Multiplicity="0..1" />
  5398. <ReferentialConstraint>
  5399. <Principal Role="CF_Staff">
  5400. <PropertyRef Name="UserID" />
  5401. </Principal>
  5402. <Dependent Role="CF_StaffProfile">
  5403. <PropertyRef Name="UserID" />
  5404. </Dependent>
  5405. </ReferentialConstraint>
  5406. </Association>
  5407. <Association Name="FK_CF_Staff_Sys_User">
  5408. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="1" />
  5409. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="0..1" />
  5410. <ReferentialConstraint>
  5411. <Principal Role="Sys_User">
  5412. <PropertyRef Name="UserID" />
  5413. </Principal>
  5414. <Dependent Role="CF_Staff">
  5415. <PropertyRef Name="UserID" />
  5416. </Dependent>
  5417. </ReferentialConstraint>
  5418. </Association>
  5419. <Association Name="FK_CF_StaffManageCampus_REFERENCE_CF_STAFF">
  5420. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="0..1" />
  5421. <End Type="EMIS.Entities.DTO.CF_StaffManageCampus" Role="CF_StaffManageCampus" Multiplicity="*" />
  5422. <ReferentialConstraint>
  5423. <Principal Role="CF_Staff">
  5424. <PropertyRef Name="UserID" />
  5425. </Principal>
  5426. <Dependent Role="CF_StaffManageCampus">
  5427. <PropertyRef Name="UserID" />
  5428. </Dependent>
  5429. </ReferentialConstraint>
  5430. </Association>
  5431. <Association Name="FK_CF_StaffManageCollege_REFERENCE_CF_STAFF">
  5432. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="0..1" />
  5433. <End Type="EMIS.Entities.DTO.CF_StaffManageCollege" Role="CF_StaffManageCollege" Multiplicity="*" />
  5434. <ReferentialConstraint>
  5435. <Principal Role="CF_Staff">
  5436. <PropertyRef Name="UserID" />
  5437. </Principal>
  5438. <Dependent Role="CF_StaffManageCollege">
  5439. <PropertyRef Name="UserID" />
  5440. </Dependent>
  5441. </ReferentialConstraint>
  5442. </Association>
  5443. <Association Name="FK_CF_StaffManageDepartment_REFERENCE_CF_Staff">
  5444. <End Type="EMIS.Entities.DTO.CF_Staff" Role="CF_Staff" Multiplicity="0..1" />
  5445. <End Type="EMIS.Entities.DTO.CF_StaffManageDepartment" Role="CF_StaffManageDepartment" Multiplicity="*" />
  5446. <ReferentialConstraint>
  5447. <Principal Role="CF_Staff">
  5448. <PropertyRef Name="UserID" />
  5449. </Principal>
  5450. <Dependent Role="CF_StaffManageDepartment">
  5451. <PropertyRef Name="UserID" />
  5452. </Dependent>
  5453. </ReferentialConstraint>
  5454. </Association>
  5455. <Association Name="FK_CF_STUDENT_REFERENCE_SYS_USER">
  5456. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="1" />
  5457. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5458. <ReferentialConstraint>
  5459. <Principal Role="Sys_User">
  5460. <PropertyRef Name="UserID" />
  5461. </Principal>
  5462. <Dependent Role="CF_Student">
  5463. <PropertyRef Name="UserID" />
  5464. </Dependent>
  5465. </ReferentialConstraint>
  5466. </Association>
  5467. <Association Name="FK_CF_StudentAccount_REFERENCE_CF_STUDENT">
  5468. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="1" />
  5469. <End Type="EMIS.Entities.DTO.CF_StudentAccount" Role="CF_StudentAccount" Multiplicity="0..1" />
  5470. <ReferentialConstraint>
  5471. <Principal Role="CF_Student">
  5472. <PropertyRef Name="UserID" />
  5473. </Principal>
  5474. <Dependent Role="CF_StudentAccount">
  5475. <PropertyRef Name="UserID" />
  5476. </Dependent>
  5477. </ReferentialConstraint>
  5478. </Association>
  5479. <Association Name="FK_CF_StudentContact_REFERENCE_CF_STUDENT">
  5480. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="1" />
  5481. <End Type="EMIS.Entities.DTO.CF_StudentContact" Role="CF_StudentContact" Multiplicity="0..1" />
  5482. <ReferentialConstraint>
  5483. <Principal Role="CF_Student">
  5484. <PropertyRef Name="UserID" />
  5485. </Principal>
  5486. <Dependent Role="CF_StudentContact">
  5487. <PropertyRef Name="UserID" />
  5488. </Dependent>
  5489. </ReferentialConstraint>
  5490. </Association>
  5491. <Association Name="FK_CF_StudentProfile_REFERENCE_CF_STUDENT">
  5492. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="1" />
  5493. <End Type="EMIS.Entities.DTO.CF_StudentProfile" Role="CF_StudentProfile" Multiplicity="0..1" />
  5494. <ReferentialConstraint>
  5495. <Principal Role="CF_Student">
  5496. <PropertyRef Name="UserID" />
  5497. </Principal>
  5498. <Dependent Role="CF_StudentProfile">
  5499. <PropertyRef Name="UserID" />
  5500. </Dependent>
  5501. </ReferentialConstraint>
  5502. </Association>
  5503. <Association Name="FK_CF_WechatSubscribe_Reference_43_CF_Student">
  5504. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5505. <End Type="EMIS.Entities.DTO.CF_WechatSubscribe" Role="CF_WechatSubscribe" Multiplicity="*" />
  5506. <ReferentialConstraint>
  5507. <Principal Role="CF_Student">
  5508. <PropertyRef Name="UserID" />
  5509. </Principal>
  5510. <Dependent Role="CF_WechatSubscribe">
  5511. <PropertyRef Name="UserID" />
  5512. </Dependent>
  5513. </ReferentialConstraint>
  5514. </Association>
  5515. <Association Name="FK_ER_CertisfierDistribute_Reference_42_CF_Student">
  5516. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5517. <End Type="EMIS.Entities.DTO.ER_CertisfierDistribute" Role="ER_CertisfierDistribute" Multiplicity="*" />
  5518. <ReferentialConstraint>
  5519. <Principal Role="CF_Student">
  5520. <PropertyRef Name="UserID" />
  5521. </Principal>
  5522. <Dependent Role="ER_CertisfierDistribute">
  5523. <PropertyRef Name="UserID" />
  5524. </Dependent>
  5525. </ReferentialConstraint>
  5526. </Association>
  5527. <Association Name="FK_ER_ExaminationScore_Reference_35_CF_Student">
  5528. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5529. <End Type="EMIS.Entities.DTO.ER_ExaminationScore" Role="ER_ExaminationScore" Multiplicity="*" />
  5530. <ReferentialConstraint>
  5531. <Principal Role="CF_Student">
  5532. <PropertyRef Name="UserID" />
  5533. </Principal>
  5534. <Dependent Role="ER_ExaminationScore">
  5535. <PropertyRef Name="UserID" />
  5536. </Dependent>
  5537. </ReferentialConstraint>
  5538. </Association>
  5539. <Association Name="FK_ER_ProjectScore_Reference_38_CF_Student">
  5540. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5541. <End Type="EMIS.Entities.DTO.ER_ProjectScore" Role="ER_ProjectScore" Multiplicity="*" />
  5542. <ReferentialConstraint>
  5543. <Principal Role="CF_Student">
  5544. <PropertyRef Name="UserID" />
  5545. </Principal>
  5546. <Dependent Role="ER_ProjectScore">
  5547. <PropertyRef Name="UserID" />
  5548. </Dependent>
  5549. </ReferentialConstraint>
  5550. </Association>
  5551. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student">
  5552. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5553. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl" Role="EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  5554. <ReferentialConstraint>
  5555. <Principal Role="CF_Student">
  5556. <PropertyRef Name="UserID" />
  5557. </Principal>
  5558. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  5559. <PropertyRef Name="UserID" />
  5560. </Dependent>
  5561. </ReferentialConstraint>
  5562. </Association>
  5563. <Association Name="FK_EX_ExaminationRegistration_CF_Student">
  5564. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="0..1" />
  5565. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="*" />
  5566. <ReferentialConstraint>
  5567. <Principal Role="CF_Student">
  5568. <PropertyRef Name="UserID" />
  5569. </Principal>
  5570. <Dependent Role="EX_ExaminationRegistration">
  5571. <PropertyRef Name="UserID" />
  5572. </Dependent>
  5573. </ReferentialConstraint>
  5574. </Association>
  5575. <Association Name="FK_CF_StudentRole_REFERENCE_SYS_ROLE">
  5576. <End Type="EMIS.Entities.DTO.Sys_Role" Role="Sys_Role" Multiplicity="1" />
  5577. <End Type="EMIS.Entities.DTO.CF_StudentRole" Role="CF_StudentRole" Multiplicity="0..1" />
  5578. <ReferentialConstraint>
  5579. <Principal Role="Sys_Role">
  5580. <PropertyRef Name="RoleID" />
  5581. </Principal>
  5582. <Dependent Role="CF_StudentRole">
  5583. <PropertyRef Name="RoleID" />
  5584. </Dependent>
  5585. </ReferentialConstraint>
  5586. </Association>
  5587. <Association Name="FK_CF_UNIVE_REFERENCE_CF_UNIVE">
  5588. <End Type="EMIS.Entities.DTO.CF_University" Role="CF_University" Multiplicity="1" />
  5589. <End Type="EMIS.Entities.DTO.CF_UniversityProfile" Role="CF_UniversityProfile" Multiplicity="0..1" />
  5590. <ReferentialConstraint>
  5591. <Principal Role="CF_University">
  5592. <PropertyRef Name="UniversityID" />
  5593. </Principal>
  5594. <Dependent Role="CF_UniversityProfile">
  5595. <PropertyRef Name="UniversityID" />
  5596. </Dependent>
  5597. </ReferentialConstraint>
  5598. </Association>
  5599. <Association Name="FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration">
  5600. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="0..1" />
  5601. <End Type="EMIS.Entities.DTO.CF_WechatPayList" Role="CF_WechatPayList" Multiplicity="*" />
  5602. <ReferentialConstraint>
  5603. <Principal Role="EX_ExaminationRegistration">
  5604. <PropertyRef Name="ExaminationRegistrationID" />
  5605. </Principal>
  5606. <Dependent Role="CF_WechatPayList">
  5607. <PropertyRef Name="ExaminationRegistrationID" />
  5608. </Dependent>
  5609. </ReferentialConstraint>
  5610. </Association>
  5611. <Association Name="FK_EM_EXAMI_REFERENCE_EX_EXAMI">
  5612. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="1" />
  5613. <End Type="EMIS.Entities.DTO.EM_ExaminationMessage" Role="EM_ExaminationMessage" Multiplicity="0..1" />
  5614. <ReferentialConstraint>
  5615. <Principal Role="EX_ExaminationRegistration">
  5616. <PropertyRef Name="ExaminationRegistrationID" />
  5617. </Principal>
  5618. <Dependent Role="EM_ExaminationMessage">
  5619. <PropertyRef Name="ExaminationRegistrationID" />
  5620. </Dependent>
  5621. </ReferentialConstraint>
  5622. </Association>
  5623. <Association Name="FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject">
  5624. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="0..1" />
  5625. <End Type="EMIS.Entities.DTO.EM_TrainingClass" Role="EM_TrainingClass" Multiplicity="*" />
  5626. <ReferentialConstraint>
  5627. <Principal Role="EX_ExaminationBatchProject">
  5628. <PropertyRef Name="ExaminationBatchProjectID" />
  5629. </Principal>
  5630. <Dependent Role="EM_TrainingClass">
  5631. <PropertyRef Name="ExaminationBatchProjectID" />
  5632. </Dependent>
  5633. </ReferentialConstraint>
  5634. </Association>
  5635. <Association Name="FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject">
  5636. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5637. <End Type="EMIS.Entities.DTO.ER_CertisfierDistribute" Role="ER_CertisfierDistribute" Multiplicity="*" />
  5638. <ReferentialConstraint>
  5639. <Principal Role="EX_ExaminationProject">
  5640. <PropertyRef Name="ExaminationProjectID" />
  5641. </Principal>
  5642. <Dependent Role="ER_CertisfierDistribute">
  5643. <PropertyRef Name="ExaminationProjectID" />
  5644. </Dependent>
  5645. </ReferentialConstraint>
  5646. </Association>
  5647. <Association Name="FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject">
  5648. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="0..1" />
  5649. <End Type="EMIS.Entities.DTO.ER_ExaminationScore" Role="ER_ExaminationScore" Multiplicity="*" />
  5650. <ReferentialConstraint>
  5651. <Principal Role="EX_ExaminationBatchProject">
  5652. <PropertyRef Name="ExaminationBatchProjectID" />
  5653. </Principal>
  5654. <Dependent Role="ER_ExaminationScore">
  5655. <PropertyRef Name="ExaminationBatchProjectID" />
  5656. </Dependent>
  5657. </ReferentialConstraint>
  5658. </Association>
  5659. <Association Name="FK_ER_Resit_Reference_40_ER_ExaminationScore">
  5660. <End Type="EMIS.Entities.DTO.ER_ExaminationScore" Role="ER_ExaminationScore" Multiplicity="0..1" />
  5661. <End Type="EMIS.Entities.DTO.ER_Resit" Role="ER_Resit" Multiplicity="*" />
  5662. <ReferentialConstraint>
  5663. <Principal Role="ER_ExaminationScore">
  5664. <PropertyRef Name="ExaminationScoreID" />
  5665. </Principal>
  5666. <Dependent Role="ER_Resit">
  5667. <PropertyRef Name="ExaminationScoreID" />
  5668. </Dependent>
  5669. </ReferentialConstraint>
  5670. </Association>
  5671. <Association Name="FK_ER_LevelSetting_Reference_33_EX_ExaminationProject">
  5672. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5673. <End Type="EMIS.Entities.DTO.ER_LevelSetting" Role="ER_LevelSetting" Multiplicity="*" />
  5674. <ReferentialConstraint>
  5675. <Principal Role="EX_ExaminationProject">
  5676. <PropertyRef Name="ExaminationProjectID" />
  5677. </Principal>
  5678. <Dependent Role="ER_LevelSetting">
  5679. <PropertyRef Name="ExaminationProjectID" />
  5680. </Dependent>
  5681. </ReferentialConstraint>
  5682. </Association>
  5683. <Association Name="FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting">
  5684. <End Type="EMIS.Entities.DTO.ER_LevelSetting" Role="ER_LevelSetting" Multiplicity="0..1" />
  5685. <End Type="EMIS.Entities.DTO.ER_LevelSettingSubject" Role="ER_LevelSettingSubject" Multiplicity="*" />
  5686. <ReferentialConstraint>
  5687. <Principal Role="ER_LevelSetting">
  5688. <PropertyRef Name="LevelSettingID" />
  5689. </Principal>
  5690. <Dependent Role="ER_LevelSettingSubject">
  5691. <PropertyRef Name="LevelSettingID" />
  5692. </Dependent>
  5693. </ReferentialConstraint>
  5694. </Association>
  5695. <Association Name="FK_ER_ProjectScore_Reference_39_ER_LevelSetting">
  5696. <End Type="EMIS.Entities.DTO.ER_LevelSetting" Role="ER_LevelSetting" Multiplicity="0..1" />
  5697. <End Type="EMIS.Entities.DTO.ER_ProjectScore" Role="ER_ProjectScore" Multiplicity="*" />
  5698. <ReferentialConstraint>
  5699. <Principal Role="ER_LevelSetting">
  5700. <PropertyRef Name="LevelSettingID" />
  5701. </Principal>
  5702. <Dependent Role="ER_ProjectScore">
  5703. <PropertyRef Name="LevelSettingID" />
  5704. </Dependent>
  5705. </ReferentialConstraint>
  5706. </Association>
  5707. <Association Name="FK_ER_ProjectScore_Reference_37_EX_ExaminationProject">
  5708. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5709. <End Type="EMIS.Entities.DTO.ER_ProjectScore" Role="ER_ProjectScore" Multiplicity="*" />
  5710. <ReferentialConstraint>
  5711. <Principal Role="EX_ExaminationProject">
  5712. <PropertyRef Name="ExaminationProjectID" />
  5713. </Principal>
  5714. <Dependent Role="ER_ProjectScore">
  5715. <PropertyRef Name="ExaminationProjectID" />
  5716. </Dependent>
  5717. </ReferentialConstraint>
  5718. </Association>
  5719. <Association Name="FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch">
  5720. <End Type="EMIS.Entities.DTO.EX_ExaminationBatch" Role="EX_ExaminationBatch" Multiplicity="0..1" />
  5721. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="*" />
  5722. <ReferentialConstraint>
  5723. <Principal Role="EX_ExaminationBatch">
  5724. <PropertyRef Name="ExaminationBatchID" />
  5725. </Principal>
  5726. <Dependent Role="EX_ExaminationBatchProject">
  5727. <PropertyRef Name="ExaminationBatchID" />
  5728. </Dependent>
  5729. </ReferentialConstraint>
  5730. </Association>
  5731. <Association Name="FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject">
  5732. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5733. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="*" />
  5734. <ReferentialConstraint>
  5735. <Principal Role="EX_ExaminationProject">
  5736. <PropertyRef Name="ExaminationProjectID" />
  5737. </Principal>
  5738. <Dependent Role="EX_ExaminationBatchProject">
  5739. <PropertyRef Name="ExaminationProjectID" />
  5740. </Dependent>
  5741. </ReferentialConstraint>
  5742. </Association>
  5743. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject">
  5744. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="0..1" />
  5745. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl" Role="EX_ExaminationBatchProjectControl" Multiplicity="*" />
  5746. <ReferentialConstraint>
  5747. <Principal Role="EX_ExaminationBatchProject">
  5748. <PropertyRef Name="ExaminationBatchProjectID" />
  5749. </Principal>
  5750. <Dependent Role="EX_ExaminationBatchProjectControl">
  5751. <PropertyRef Name="ExaminationBatchProjectID" />
  5752. </Dependent>
  5753. </ReferentialConstraint>
  5754. </Association>
  5755. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject">
  5756. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="0..1" />
  5757. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl" Role="EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  5758. <ReferentialConstraint>
  5759. <Principal Role="EX_ExaminationBatchProject">
  5760. <PropertyRef Name="ExaminationBatchProjectID" />
  5761. </Principal>
  5762. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  5763. <PropertyRef Name="ExaminationBatchProjectID" />
  5764. </Dependent>
  5765. </ReferentialConstraint>
  5766. </Association>
  5767. <Association Name="FK_EX_ExaminationRegistration_EX_ExaminationBatchProject">
  5768. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProject" Role="EX_ExaminationBatchProject" Multiplicity="0..1" />
  5769. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="*" />
  5770. <ReferentialConstraint>
  5771. <Principal Role="EX_ExaminationBatchProject">
  5772. <PropertyRef Name="ExaminationBatchProjectID" />
  5773. </Principal>
  5774. <Dependent Role="EX_ExaminationRegistration">
  5775. <PropertyRef Name="ExaminationBatchProjectID" />
  5776. </Dependent>
  5777. </ReferentialConstraint>
  5778. </Association>
  5779. <Association Name="FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee">
  5780. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFee" Role="EX_ExaminationProjectFee" Multiplicity="0..1" />
  5781. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl" Role="EX_ExaminationBatchProjectControl" Multiplicity="*" />
  5782. <ReferentialConstraint>
  5783. <Principal Role="EX_ExaminationProjectFee">
  5784. <PropertyRef Name="ExaminationProjectFeeID" />
  5785. </Principal>
  5786. <Dependent Role="EX_ExaminationBatchProjectControl">
  5787. <PropertyRef Name="ExaminationProjectFeeID" />
  5788. </Dependent>
  5789. </ReferentialConstraint>
  5790. </Association>
  5791. <Association Name="FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee">
  5792. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFee" Role="EX_ExaminationProjectFee" Multiplicity="0..1" />
  5793. <End Type="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl" Role="EX_ExaminationBatchProjectPersonControl" Multiplicity="*" />
  5794. <ReferentialConstraint>
  5795. <Principal Role="EX_ExaminationProjectFee">
  5796. <PropertyRef Name="ExaminationProjectFeeID" />
  5797. </Principal>
  5798. <Dependent Role="EX_ExaminationBatchProjectPersonControl">
  5799. <PropertyRef Name="ExaminationProjectFeeID" />
  5800. </Dependent>
  5801. </ReferentialConstraint>
  5802. </Association>
  5803. <Association Name="FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject">
  5804. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5805. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFee" Role="EX_ExaminationProjectFee" Multiplicity="*" />
  5806. <ReferentialConstraint>
  5807. <Principal Role="EX_ExaminationProject">
  5808. <PropertyRef Name="ExaminationProjectID" />
  5809. </Principal>
  5810. <Dependent Role="EX_ExaminationProjectFee">
  5811. <PropertyRef Name="ExaminationProjectID" />
  5812. </Dependent>
  5813. </ReferentialConstraint>
  5814. </Association>
  5815. <Association Name="FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject">
  5816. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="0..1" />
  5817. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectSubject" Role="EX_ExaminationProjectSubject" Multiplicity="*" />
  5818. <ReferentialConstraint>
  5819. <Principal Role="EX_ExaminationProject">
  5820. <PropertyRef Name="ExaminationProjectID" />
  5821. </Principal>
  5822. <Dependent Role="EX_ExaminationProjectSubject">
  5823. <PropertyRef Name="ExaminationProjectID" />
  5824. </Dependent>
  5825. </ReferentialConstraint>
  5826. </Association>
  5827. <Association Name="FK_EX_ExaminationSubject_Reference_EX_ExaminationType">
  5828. <End Type="EMIS.Entities.DTO.EX_ExaminationType" Role="EX_ExaminationType" Multiplicity="0..1" />
  5829. <End Type="EMIS.Entities.DTO.EX_ExaminationProject" Role="EX_ExaminationProject" Multiplicity="*" />
  5830. <ReferentialConstraint>
  5831. <Principal Role="EX_ExaminationType">
  5832. <PropertyRef Name="ExaminationTypeID" />
  5833. </Principal>
  5834. <Dependent Role="EX_ExaminationProject">
  5835. <PropertyRef Name="ExaminationTypeID" />
  5836. </Dependent>
  5837. </ReferentialConstraint>
  5838. </Association>
  5839. <Association Name="FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee">
  5840. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFee" Role="EX_ExaminationProjectFee" Multiplicity="0..1" />
  5841. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFeeType" Role="EX_ExaminationProjectFeeType" Multiplicity="*" />
  5842. <ReferentialConstraint>
  5843. <Principal Role="EX_ExaminationProjectFee">
  5844. <PropertyRef Name="ExaminationProjectFeeID" />
  5845. </Principal>
  5846. <Dependent Role="EX_ExaminationProjectFeeType">
  5847. <PropertyRef Name="ExaminationProjectFeeID" />
  5848. </Dependent>
  5849. </ReferentialConstraint>
  5850. </Association>
  5851. <Association Name="FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType">
  5852. <End Type="EMIS.Entities.DTO.EX_ExaminationProjectFeeType" Role="EX_ExaminationProjectFeeType" Multiplicity="0..1" />
  5853. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="*" />
  5854. <ReferentialConstraint>
  5855. <Principal Role="EX_ExaminationProjectFeeType">
  5856. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  5857. </Principal>
  5858. <Dependent Role="EX_ExaminationRegistration">
  5859. <PropertyRef Name="ExaminationProjectFeeTypeID" />
  5860. </Dependent>
  5861. </ReferentialConstraint>
  5862. </Association>
  5863. <Association Name="FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm">
  5864. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistrationConfirm" Role="EX_ExaminationRegistrationConfirm" Multiplicity="0..1" />
  5865. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistration" Role="EX_ExaminationRegistration" Multiplicity="*" />
  5866. <ReferentialConstraint>
  5867. <Principal Role="EX_ExaminationRegistrationConfirm">
  5868. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  5869. </Principal>
  5870. <Dependent Role="EX_ExaminationRegistration">
  5871. <PropertyRef Name="ExaminationRegistrationConfirmID" />
  5872. </Dependent>
  5873. </ReferentialConstraint>
  5874. </Association>
  5875. <Association Name="FK_EX_ExaminationRegistrationConfirm_Sys_User">
  5876. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="0..1" />
  5877. <End Type="EMIS.Entities.DTO.EX_ExaminationRegistrationConfirm" Role="EX_ExaminationRegistrationConfirm" Multiplicity="*" />
  5878. <ReferentialConstraint>
  5879. <Principal Role="Sys_User">
  5880. <PropertyRef Name="UserID" />
  5881. </Principal>
  5882. <Dependent Role="EX_ExaminationRegistrationConfirm">
  5883. <PropertyRef Name="Receiver" />
  5884. </Dependent>
  5885. </ReferentialConstraint>
  5886. </Association>
  5887. <Association Name="FK_EX_Receipt_REFERENCE_SYS_USER">
  5888. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="0..1" />
  5889. <End Type="EMIS.Entities.DTO.EX_Receipt" Role="EX_Receipt" Multiplicity="*" />
  5890. <ReferentialConstraint>
  5891. <Principal Role="Sys_User">
  5892. <PropertyRef Name="UserID" />
  5893. </Principal>
  5894. <Dependent Role="EX_Receipt">
  5895. <PropertyRef Name="UserID" />
  5896. </Dependent>
  5897. </ReferentialConstraint>
  5898. </Association>
  5899. <Association Name="FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType">
  5900. <End Type="EMIS.Entities.DTO.Sys_AnnouncementType" Role="Sys_AnnouncementType" Multiplicity="0..1" />
  5901. <End Type="EMIS.Entities.DTO.Sys_Announcement" Role="Sys_Announcement" Multiplicity="*" />
  5902. <ReferentialConstraint>
  5903. <Principal Role="Sys_AnnouncementType">
  5904. <PropertyRef Name="AnnouncementTypeID" />
  5905. </Principal>
  5906. <Dependent Role="Sys_Announcement">
  5907. <PropertyRef Name="AnnouncementTypeID" />
  5908. </Dependent>
  5909. </ReferentialConstraint>
  5910. </Association>
  5911. <Association Name="FK_SYS_BATC_REFERENCE_SYS_BATC">
  5912. <End Type="EMIS.Entities.DTO.Sys_BatchModify" Role="Sys_BatchModify" Multiplicity="0..1" />
  5913. <End Type="EMIS.Entities.DTO.Sys_BatchModifyExpand" Role="Sys_BatchModifyExpand" Multiplicity="*" />
  5914. <ReferentialConstraint>
  5915. <Principal Role="Sys_BatchModify">
  5916. <PropertyRef Name="BatchModifyID" />
  5917. </Principal>
  5918. <Dependent Role="Sys_BatchModifyExpand">
  5919. <PropertyRef Name="BatchModifyID" />
  5920. </Dependent>
  5921. </ReferentialConstraint>
  5922. </Association>
  5923. <Association Name="FK_SYS_BATC_REFERENCE_SYS_DICT">
  5924. <End Type="EMIS.Entities.DTO.Sys_Dictionary" Role="Sys_Dictionary" Multiplicity="0..1" />
  5925. <End Type="EMIS.Entities.DTO.Sys_BatchModify" Role="Sys_BatchModify" Multiplicity="*" />
  5926. <ReferentialConstraint>
  5927. <Principal Role="Sys_Dictionary">
  5928. <PropertyRef Name="DictionaryCode" />
  5929. </Principal>
  5930. <Dependent Role="Sys_BatchModify">
  5931. <PropertyRef Name="DictionaryCode" />
  5932. </Dependent>
  5933. </ReferentialConstraint>
  5934. </Association>
  5935. <Association Name="FK_SYS_Configureterms">
  5936. <End Type="EMIS.Entities.DTO.Sys_ConfiguretermsInfo" Role="Sys_ConfiguretermsInfo" Multiplicity="0..1" />
  5937. <End Type="EMIS.Entities.DTO.Sys_ConfiguretermsExpand" Role="Sys_ConfiguretermsExpand" Multiplicity="*" />
  5938. <ReferentialConstraint>
  5939. <Principal Role="Sys_ConfiguretermsInfo">
  5940. <PropertyRef Name="ID" />
  5941. </Principal>
  5942. <Dependent Role="Sys_ConfiguretermsExpand">
  5943. <PropertyRef Name="ConfiguretermsInfoID" />
  5944. </Dependent>
  5945. </ReferentialConstraint>
  5946. </Association>
  5947. <Association Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION">
  5948. <End Type="EMIS.Entities.DTO.Sys_FunctionCode" Role="Sys_FunctionCode" Multiplicity="0..1" />
  5949. <End Type="EMIS.Entities.DTO.Sys_ContextMenu" Role="Sys_ContextMenu" Multiplicity="*" />
  5950. <ReferentialConstraint>
  5951. <Principal Role="Sys_FunctionCode">
  5952. <PropertyRef Name="FunctionCode" />
  5953. </Principal>
  5954. <Dependent Role="Sys_ContextMenu">
  5955. <PropertyRef Name="FunctionCode" />
  5956. </Dependent>
  5957. </ReferentialConstraint>
  5958. </Association>
  5959. <Association Name="FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU">
  5960. <End Type="EMIS.Entities.DTO.Sys_Menu" Role="Sys_Menu" Multiplicity="0..1" />
  5961. <End Type="EMIS.Entities.DTO.Sys_ContextMenu" Role="Sys_ContextMenu" Multiplicity="*" />
  5962. <ReferentialConstraint>
  5963. <Principal Role="Sys_Menu">
  5964. <PropertyRef Name="MenuNo" />
  5965. </Principal>
  5966. <Dependent Role="Sys_ContextMenu">
  5967. <PropertyRef Name="MenuNo" />
  5968. </Dependent>
  5969. </ReferentialConstraint>
  5970. </Association>
  5971. <Association Name="FK_Sys_ControlItemDetail_Sys_ContextMenu">
  5972. <End Type="EMIS.Entities.DTO.Sys_ContextMenu" Role="Sys_ContextMenu" Multiplicity="0..1" />
  5973. <End Type="EMIS.Entities.DTO.Sys_ControlItemDetail" Role="Sys_ControlItemDetail" Multiplicity="*" />
  5974. <ReferentialConstraint>
  5975. <Principal Role="Sys_ContextMenu">
  5976. <PropertyRef Name="ContextMnuNo" />
  5977. </Principal>
  5978. <Dependent Role="Sys_ControlItemDetail">
  5979. <PropertyRef Name="ContextMnuNo" />
  5980. </Dependent>
  5981. </ReferentialConstraint>
  5982. </Association>
  5983. <Association Name="FK_Sys_ControlItemDetail_Sys_ControlItem">
  5984. <End Type="EMIS.Entities.DTO.Sys_ControlItem" Role="Sys_ControlItem" Multiplicity="1" />
  5985. <End Type="EMIS.Entities.DTO.Sys_ControlItemDetail" Role="Sys_ControlItemDetail" Multiplicity="*" />
  5986. <ReferentialConstraint>
  5987. <Principal Role="Sys_ControlItem">
  5988. <PropertyRef Name="ControlItemCode" />
  5989. </Principal>
  5990. <Dependent Role="Sys_ControlItemDetail">
  5991. <PropertyRef Name="ControlItemCode" />
  5992. </Dependent>
  5993. </ReferentialConstraint>
  5994. </Association>
  5995. <Association Name="FK_Sys_ControlItemDetail_Sys_Menu">
  5996. <End Type="EMIS.Entities.DTO.Sys_Menu" Role="Sys_Menu" Multiplicity="0..1" />
  5997. <End Type="EMIS.Entities.DTO.Sys_ControlItemDetail" Role="Sys_ControlItemDetail" Multiplicity="*" />
  5998. <ReferentialConstraint>
  5999. <Principal Role="Sys_Menu">
  6000. <PropertyRef Name="MenuNo" />
  6001. </Principal>
  6002. <Dependent Role="Sys_ControlItemDetail">
  6003. <PropertyRef Name="MenuNo" />
  6004. </Dependent>
  6005. </ReferentialConstraint>
  6006. </Association>
  6007. <Association Name="FK_Sys_DictionaryItem_Sys_Dictionary">
  6008. <End Type="EMIS.Entities.DTO.Sys_Dictionary" Role="Sys_Dictionary" Multiplicity="0..1" />
  6009. <End Type="EMIS.Entities.DTO.Sys_DictionaryItem" Role="Sys_DictionaryItem" Multiplicity="*" />
  6010. <ReferentialConstraint>
  6011. <Principal Role="Sys_Dictionary">
  6012. <PropertyRef Name="DictionaryCode" />
  6013. </Principal>
  6014. <Dependent Role="Sys_DictionaryItem">
  6015. <PropertyRef Name="DictionaryCode" />
  6016. </Dependent>
  6017. </ReferentialConstraint>
  6018. </Association>
  6019. <Association Name="FK_SYS_MENU_REFERENCE_SYS_FUNC">
  6020. <End Type="EMIS.Entities.DTO.Sys_FunctionCode" Role="Sys_FunctionCode" Multiplicity="0..1" />
  6021. <End Type="EMIS.Entities.DTO.Sys_Menu" Role="Sys_Menu" Multiplicity="*" />
  6022. <ReferentialConstraint>
  6023. <Principal Role="Sys_FunctionCode">
  6024. <PropertyRef Name="FunctionCode" />
  6025. </Principal>
  6026. <Dependent Role="Sys_Menu">
  6027. <PropertyRef Name="FunctionCode" />
  6028. </Dependent>
  6029. </ReferentialConstraint>
  6030. </Association>
  6031. <Association Name="FK_Sys_MailVerifyCode_REFERENCE_SYS_USER">
  6032. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="1" />
  6033. <End Type="EMIS.Entities.DTO.Sys_MailVerifyCode" Role="Sys_MailVerifyCode" Multiplicity="0..1" />
  6034. <ReferentialConstraint>
  6035. <Principal Role="Sys_User">
  6036. <PropertyRef Name="UserID" />
  6037. </Principal>
  6038. <Dependent Role="Sys_MailVerifyCode">
  6039. <PropertyRef Name="UserID" />
  6040. </Dependent>
  6041. </ReferentialConstraint>
  6042. </Association>
  6043. <Association Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU">
  6044. <End Type="EMIS.Entities.DTO.Sys_Menu" Role="Sys_Menu" Multiplicity="0..1" />
  6045. <End Type="EMIS.Entities.DTO.Sys_RoleDataRange" Role="Sys_RoleDataRange" Multiplicity="*" />
  6046. <ReferentialConstraint>
  6047. <Principal Role="Sys_Menu">
  6048. <PropertyRef Name="MenuNo" />
  6049. </Principal>
  6050. <Dependent Role="Sys_RoleDataRange">
  6051. <PropertyRef Name="MenuNo" />
  6052. </Dependent>
  6053. </ReferentialConstraint>
  6054. </Association>
  6055. <Association Name="FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE">
  6056. <End Type="EMIS.Entities.DTO.Sys_Role" Role="Sys_Role" Multiplicity="0..1" />
  6057. <End Type="EMIS.Entities.DTO.Sys_RoleDataRange" Role="Sys_RoleDataRange" Multiplicity="*" />
  6058. <ReferentialConstraint>
  6059. <Principal Role="Sys_Role">
  6060. <PropertyRef Name="RoleID" />
  6061. </Principal>
  6062. <Dependent Role="Sys_RoleDataRange">
  6063. <PropertyRef Name="RoleID" />
  6064. </Dependent>
  6065. </ReferentialConstraint>
  6066. </Association>
  6067. <Association Name="FK_Sys_ScheduleJob_Sys_Scheduling">
  6068. <End Type="EMIS.Entities.DTO.Sys_ScheduleJob" Role="Sys_ScheduleJob" Multiplicity="0..1" />
  6069. <End Type="EMIS.Entities.DTO.Sys_Scheduling" Role="Sys_Scheduling" Multiplicity="*" />
  6070. <ReferentialConstraint>
  6071. <Principal Role="Sys_ScheduleJob">
  6072. <PropertyRef Name="jobid" />
  6073. </Principal>
  6074. <Dependent Role="Sys_Scheduling">
  6075. <PropertyRef Name="jobid" />
  6076. </Dependent>
  6077. </ReferentialConstraint>
  6078. </Association>
  6079. <Association Name="FK_Sys_Scheduling_Sys_ScheduleLog">
  6080. <End Type="EMIS.Entities.DTO.Sys_Scheduling" Role="Sys_Scheduling" Multiplicity="0..1" />
  6081. <End Type="EMIS.Entities.DTO.Sys_ScheduleLog" Role="Sys_ScheduleLog" Multiplicity="*" />
  6082. <ReferentialConstraint>
  6083. <Principal Role="Sys_Scheduling">
  6084. <PropertyRef Name="scid" />
  6085. </Principal>
  6086. <Dependent Role="Sys_ScheduleLog">
  6087. <PropertyRef Name="scid" />
  6088. </Dependent>
  6089. </ReferentialConstraint>
  6090. </Association>
  6091. <Association Name="FK_TestOperate_Sys_User">
  6092. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="1" />
  6093. <End Type="EMIS.Entities.DTO.TestOperate" Role="TestOperate" Multiplicity="*" />
  6094. <ReferentialConstraint>
  6095. <Principal Role="Sys_User">
  6096. <PropertyRef Name="UserID" />
  6097. </Principal>
  6098. <Dependent Role="TestOperate">
  6099. <PropertyRef Name="UserID" />
  6100. </Dependent>
  6101. </ReferentialConstraint>
  6102. </Association>
  6103. <Association Name="EM_TrainingClass_CF_Student">
  6104. <End Type="EMIS.Entities.DTO.EM_TrainingClass" Role="EM_TrainingClass" Multiplicity="*" />
  6105. <End Type="EMIS.Entities.DTO.CF_Student" Role="CF_Student" Multiplicity="*" />
  6106. </Association>
  6107. <Association Name="Sys_Announcement_Sys_Role">
  6108. <End Type="EMIS.Entities.DTO.Sys_Announcement" Role="Sys_Announcement" Multiplicity="*" />
  6109. <End Type="EMIS.Entities.DTO.Sys_Role" Role="Sys_Role" Multiplicity="*" />
  6110. </Association>
  6111. <Association Name="Sys_Announcement_Sys_User">
  6112. <End Type="EMIS.Entities.DTO.Sys_Announcement" Role="Sys_Announcement" Multiplicity="*" />
  6113. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="*" />
  6114. </Association>
  6115. <Association Name="Sys_Role_Sys_FunctionCode">
  6116. <End Type="EMIS.Entities.DTO.Sys_FunctionCode" Role="Sys_FunctionCode" Multiplicity="*" />
  6117. <End Type="EMIS.Entities.DTO.Sys_Role" Role="Sys_Role" Multiplicity="*" />
  6118. </Association>
  6119. <Association Name="Sys_User_Sys_Role">
  6120. <End Type="EMIS.Entities.DTO.Sys_Role" Role="Sys_Role" Multiplicity="*" />
  6121. <End Type="EMIS.Entities.DTO.Sys_User" Role="Sys_User" Multiplicity="*" />
  6122. </Association>
  6123. </Schema>
  6124. </edmx:ConceptualModels>
  6125. <!-- C-S mapping content -->
  6126. <edmx:Mappings>
  6127. <Mapping xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs" Space="C-S">
  6128. <Alias Key="Model" Value="EMISContext" />
  6129. <Alias Key="Target" Value="EMISContext.Store" />
  6130. <EntityContainerMapping CdmEntityContainer="EMISNewContext" StorageEntityContainer="EMISContextStoreContainer">
  6131. <EntitySetMapping Name="CF_Arrangements">
  6132. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Arrangements">
  6133. <MappingFragment StoreEntitySet="CF_Arrangements">
  6134. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6135. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6136. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6137. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6138. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6139. <ScalarProperty Name="IsOnWork" ColumnName="IsOnWork" />
  6140. <ScalarProperty Name="Weekday" ColumnName="Weekday" />
  6141. <ScalarProperty Name="CoursesTimeID" ColumnName="CoursesTimeID" />
  6142. <ScalarProperty Name="ArrangementsID" ColumnName="ArrangementsID" />
  6143. </MappingFragment>
  6144. </EntityTypeMapping>
  6145. </EntitySetMapping>
  6146. <EntitySetMapping Name="CF_Campus">
  6147. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Campus">
  6148. <MappingFragment StoreEntitySet="CF_Campus">
  6149. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6150. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6151. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6152. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6153. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6154. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6155. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6156. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  6157. <ScalarProperty Name="Name" ColumnName="Name" />
  6158. <ScalarProperty Name="No" ColumnName="No" />
  6159. <ScalarProperty Name="UniversityID" ColumnName="UniversityID" />
  6160. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  6161. </MappingFragment>
  6162. </EntityTypeMapping>
  6163. </EntitySetMapping>
  6164. <EntitySetMapping Name="CF_CampusProfile">
  6165. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_CampusProfile">
  6166. <MappingFragment StoreEntitySet="CF_CampusProfile">
  6167. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6168. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6169. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6170. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6171. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6172. <ScalarProperty Name="Evolution" ColumnName="Evolution" />
  6173. <ScalarProperty Name="Email" ColumnName="Email" />
  6174. <ScalarProperty Name="FAX" ColumnName="FAX" />
  6175. <ScalarProperty Name="Officephone" ColumnName="Officephone" />
  6176. <ScalarProperty Name="ZIPCode" ColumnName="ZIPCode" />
  6177. <ScalarProperty Name="Studentcharge" ColumnName="Studentcharge" />
  6178. <ScalarProperty Name="Teachingsuper" ColumnName="Teachingsuper" />
  6179. <ScalarProperty Name="Placesuper" ColumnName="Placesuper" />
  6180. <ScalarProperty Name="Recruitstudents" ColumnName="Recruitstudents" />
  6181. <ScalarProperty Name="Generalsuper" ColumnName="Generalsuper" />
  6182. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  6183. </MappingFragment>
  6184. </EntityTypeMapping>
  6185. </EntitySetMapping>
  6186. <EntitySetMapping Name="CF_Classmajor">
  6187. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Classmajor">
  6188. <MappingFragment StoreEntitySet="CF_Classmajor">
  6189. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6190. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6191. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6192. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6193. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6194. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6195. <ScalarProperty Name="Fixedclassroom" ColumnName="Fixedclassroom" />
  6196. <ScalarProperty Name="AssistantUserID" ColumnName="AssistantUserID" />
  6197. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6198. <ScalarProperty Name="ClassNum" ColumnName="ClassNum" />
  6199. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6200. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  6201. <ScalarProperty Name="Name" ColumnName="Name" />
  6202. <ScalarProperty Name="No" ColumnName="No" />
  6203. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  6204. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  6205. </MappingFragment>
  6206. </EntityTypeMapping>
  6207. </EntitySetMapping>
  6208. <EntitySetMapping Name="CF_College">
  6209. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_College">
  6210. <MappingFragment StoreEntitySet="CF_College">
  6211. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6212. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6213. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6214. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6215. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6216. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6217. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6218. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  6219. <ScalarProperty Name="Name" ColumnName="Name" />
  6220. <ScalarProperty Name="No" ColumnName="No" />
  6221. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  6222. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6223. </MappingFragment>
  6224. </EntityTypeMapping>
  6225. </EntitySetMapping>
  6226. <EntitySetMapping Name="CF_CollegeProfile">
  6227. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_CollegeProfile">
  6228. <MappingFragment StoreEntitySet="CF_CollegeProfile">
  6229. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6230. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6231. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6232. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6233. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6234. <ScalarProperty Name="Officephone" ColumnName="Officephone" />
  6235. <ScalarProperty Name="FoundDate" ColumnName="FoundDate" />
  6236. <ScalarProperty Name="RunByCategoryID" ColumnName="RunByCategoryID" />
  6237. <ScalarProperty Name="CollegeCategoryID" ColumnName="CollegeCategoryID" />
  6238. <ScalarProperty Name="CollegeTypeID" ColumnName="CollegeTypeID" />
  6239. <ScalarProperty Name="UnitCategoryID" ColumnName="UnitCategoryID" />
  6240. <ScalarProperty Name="AdministrativeManager" ColumnName="AdministrativeManager" />
  6241. <ScalarProperty Name="PoliticalManager" ColumnName="PoliticalManager" />
  6242. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6243. </MappingFragment>
  6244. </EntityTypeMapping>
  6245. </EntitySetMapping>
  6246. <EntitySetMapping Name="CF_DataCenterCodeTranslate">
  6247. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_DataCenterCodeTranslate">
  6248. <MappingFragment StoreEntitySet="CF_DataCenterCodeTranslate">
  6249. <ScalarProperty Name="Value" ColumnName="Value" />
  6250. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  6251. <ScalarProperty Name="Code" ColumnName="Code" />
  6252. <ScalarProperty Name="CodeType" ColumnName="CodeType" />
  6253. </MappingFragment>
  6254. </EntityTypeMapping>
  6255. </EntitySetMapping>
  6256. <EntitySetMapping Name="CF_Department">
  6257. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Department">
  6258. <MappingFragment StoreEntitySet="CF_Department">
  6259. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6260. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6261. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6262. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6263. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6264. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6265. <ScalarProperty Name="HierarchyID" ColumnName="HierarchyID" />
  6266. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6267. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  6268. <ScalarProperty Name="Name" ColumnName="Name" />
  6269. <ScalarProperty Name="No" ColumnName="No" />
  6270. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6271. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  6272. </MappingFragment>
  6273. </EntityTypeMapping>
  6274. </EntitySetMapping>
  6275. <EntitySetMapping Name="CF_DepartmentProfile">
  6276. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_DepartmentProfile">
  6277. <MappingFragment StoreEntitySet="CF_DepartmentProfile">
  6278. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6279. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6280. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6281. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6282. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6283. <ScalarProperty Name="FoundDate" ColumnName="FoundDate" />
  6284. <ScalarProperty Name="DeputyDirectorID" ColumnName="DeputyDirectorID" />
  6285. <ScalarProperty Name="DirectorID" ColumnName="DirectorID" />
  6286. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  6287. </MappingFragment>
  6288. </EntityTypeMapping>
  6289. </EntitySetMapping>
  6290. <EntitySetMapping Name="CF_Facultymajor">
  6291. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Facultymajor">
  6292. <MappingFragment StoreEntitySet="CF_Facultymajor">
  6293. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6294. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6295. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6296. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6297. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6298. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6299. <ScalarProperty Name="SetTime" ColumnName="SetTime" />
  6300. <ScalarProperty Name="TeacherIdentification" ColumnName="TeacherIdentification" />
  6301. <ScalarProperty Name="LearnPositionID" ColumnName="LearnPositionID" />
  6302. <ScalarProperty Name="LearningstyleID" ColumnName="LearningstyleID" />
  6303. <ScalarProperty Name="ScienceclassID" ColumnName="ScienceclassID" />
  6304. <ScalarProperty Name="LearnSystem" ColumnName="LearnSystem" />
  6305. <ScalarProperty Name="LearningformID" ColumnName="LearningformID" />
  6306. <ScalarProperty Name="EducationID" ColumnName="EducationID" />
  6307. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  6308. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6309. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  6310. <ScalarProperty Name="Name" ColumnName="Name" />
  6311. <ScalarProperty Name="Code" ColumnName="Code" />
  6312. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6313. <ScalarProperty Name="FacultymajorID" ColumnName="FacultymajorID" />
  6314. </MappingFragment>
  6315. </EntityTypeMapping>
  6316. </EntitySetMapping>
  6317. <EntitySetMapping Name="CF_Grademajor">
  6318. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Grademajor">
  6319. <MappingFragment StoreEntitySet="CF_Grademajor">
  6320. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6321. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6322. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6323. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6324. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6325. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6326. <ScalarProperty Name="SchoolAreaID" ColumnName="SchoolAreaID" />
  6327. <ScalarProperty Name="Professional" ColumnName="Professional" />
  6328. <ScalarProperty Name="GraduatingSemesterID" ColumnName="GraduatingSemesterID" />
  6329. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  6330. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6331. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  6332. <ScalarProperty Name="Name" ColumnName="Name" />
  6333. <ScalarProperty Name="Code" ColumnName="Code" />
  6334. <ScalarProperty Name="FacultymajorID" ColumnName="FacultymajorID" />
  6335. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  6336. </MappingFragment>
  6337. </EntityTypeMapping>
  6338. </EntitySetMapping>
  6339. <EntitySetMapping Name="CF_InSchoolSetting">
  6340. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_InSchoolSetting">
  6341. <MappingFragment StoreEntitySet="CF_InSchoolSetting">
  6342. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6343. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6344. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6345. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6346. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6347. <ScalarProperty Name="IsSelected" ColumnName="IsSelected" />
  6348. <ScalarProperty Name="InSchoolStatusID" ColumnName="InSchoolStatusID" />
  6349. <ScalarProperty Name="InSchoolSettingID" ColumnName="InSchoolSettingID" />
  6350. </MappingFragment>
  6351. </EntityTypeMapping>
  6352. </EntitySetMapping>
  6353. <EntitySetMapping Name="CF_Parameter">
  6354. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Parameter">
  6355. <MappingFragment StoreEntitySet="CF_Parameter">
  6356. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6357. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6358. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6359. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6360. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6361. <ScalarProperty Name="Value" ColumnName="Value" />
  6362. <ScalarProperty Name="ParameterTypeID" ColumnName="ParameterTypeID" />
  6363. <ScalarProperty Name="ParameterID" ColumnName="ParameterID" />
  6364. </MappingFragment>
  6365. </EntityTypeMapping>
  6366. </EntitySetMapping>
  6367. <EntitySetMapping Name="CF_Recruitstudents">
  6368. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Recruitstudents">
  6369. <MappingFragment StoreEntitySet="CF_Recruitstudents">
  6370. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6371. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6372. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6373. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6374. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6375. <ScalarProperty Name="Area" ColumnName="Area" />
  6376. <ScalarProperty Name="Territorial" ColumnName="Territorial" />
  6377. <ScalarProperty Name="Score" ColumnName="Score" />
  6378. <ScalarProperty Name="Features" ColumnName="Features" />
  6379. <ScalarProperty Name="PlaceBirth" ColumnName="PlaceBirth" />
  6380. <ScalarProperty Name="EntranceDate" ColumnName="EntranceDate" />
  6381. <ScalarProperty Name="EnteringSchoolYearID" ColumnName="EnteringSchoolYearID" />
  6382. <ScalarProperty Name="EntranceWay" ColumnName="EntranceWay" />
  6383. <ScalarProperty Name="ExamineeType" ColumnName="ExamineeType" />
  6384. <ScalarProperty Name="AdmissionTicketNo" ColumnName="AdmissionTicketNo" />
  6385. <ScalarProperty Name="ExamineeNum" ColumnName="ExamineeNum" />
  6386. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6387. </MappingFragment>
  6388. </EntityTypeMapping>
  6389. </EntitySetMapping>
  6390. <EntitySetMapping Name="CF_Schoolyear">
  6391. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Schoolyear">
  6392. <MappingFragment StoreEntitySet="CF_Schoolyear">
  6393. <ScalarProperty Name="Value" ColumnName="Value" />
  6394. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6395. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6396. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6397. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6398. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6399. <ScalarProperty Name="WeekDays" ColumnName="WeekDays" />
  6400. <ScalarProperty Name="IsCurrent" ColumnName="IsCurrent" />
  6401. <ScalarProperty Name="FirstWeek" ColumnName="FirstWeek" />
  6402. <ScalarProperty Name="WeeksNum" ColumnName="WeeksNum" />
  6403. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  6404. <ScalarProperty Name="Years" ColumnName="Years" />
  6405. <ScalarProperty Name="Code" ColumnName="Code" />
  6406. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6407. </MappingFragment>
  6408. </EntityTypeMapping>
  6409. </EntitySetMapping>
  6410. <EntitySetMapping Name="CF_SocialClassmajor">
  6411. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_SocialClassmajor">
  6412. <MappingFragment StoreEntitySet="CF_SocialClassmajor">
  6413. <ScalarProperty Name="SchoolAreaID" ColumnName="SchoolAreaID" />
  6414. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  6415. </MappingFragment>
  6416. </EntityTypeMapping>
  6417. </EntitySetMapping>
  6418. <EntitySetMapping Name="CF_Specialty">
  6419. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Specialty">
  6420. <MappingFragment StoreEntitySet="CF_Specialty">
  6421. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6422. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6423. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6424. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6425. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6426. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6427. <ScalarProperty Name="StandardLevel" ColumnName="StandardLevel" />
  6428. <ScalarProperty Name="StandardTitle" ColumnName="StandardTitle" />
  6429. <ScalarProperty Name="PropertyID" ColumnName="PropertyID" />
  6430. <ScalarProperty Name="ScienceclassID" ColumnName="ScienceclassID" />
  6431. <ScalarProperty Name="LearnSystem" ColumnName="LearnSystem" />
  6432. <ScalarProperty Name="LearningformID" ColumnName="LearningformID" />
  6433. <ScalarProperty Name="EducationID" ColumnName="EducationID" />
  6434. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  6435. <ScalarProperty Name="SpecialtyID" ColumnName="SpecialtyID" />
  6436. </MappingFragment>
  6437. </EntityTypeMapping>
  6438. </EntitySetMapping>
  6439. <EntitySetMapping Name="CF_Staff">
  6440. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Staff">
  6441. <MappingFragment StoreEntitySet="CF_Staff">
  6442. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6443. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6444. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6445. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6446. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6447. <ScalarProperty Name="IsDualTeacher" ColumnName="IsDualTeacher" />
  6448. <ScalarProperty Name="PaymentLevelID" ColumnName="PaymentLevelID" />
  6449. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  6450. <ScalarProperty Name="Profile" ColumnName="Profile" />
  6451. <ScalarProperty Name="PhotoUrl" ColumnName="PhotoUrl" />
  6452. <ScalarProperty Name="TeachingDate" ColumnName="TeachingDate" />
  6453. <ScalarProperty Name="ComeSchoolDate" ColumnName="ComeSchoolDate" />
  6454. <ScalarProperty Name="WorkDate" ColumnName="WorkDate" />
  6455. <ScalarProperty Name="Title" ColumnName="Title" />
  6456. <ScalarProperty Name="LearnPosition" ColumnName="LearnPosition" />
  6457. <ScalarProperty Name="DegreeState" ColumnName="DegreeState" />
  6458. <ScalarProperty Name="LiteracyLevels" ColumnName="LiteracyLevels" />
  6459. <ScalarProperty Name="Situation" ColumnName="Situation" />
  6460. <ScalarProperty Name="CertificatesNum" ColumnName="CertificatesNum" />
  6461. <ScalarProperty Name="CertificatesType" ColumnName="CertificatesType" />
  6462. <ScalarProperty Name="IncumbencyState" ColumnName="IncumbencyState" />
  6463. <ScalarProperty Name="TeacherType" ColumnName="TeacherType" />
  6464. <ScalarProperty Name="Sex" ColumnName="Sex" />
  6465. <ScalarProperty Name="BirthDate" ColumnName="BirthDate" />
  6466. <ScalarProperty Name="StaffCode" ColumnName="StaffCode" />
  6467. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  6468. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6469. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6470. </MappingFragment>
  6471. </EntityTypeMapping>
  6472. </EntitySetMapping>
  6473. <EntitySetMapping Name="CF_StaffManageCampus">
  6474. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StaffManageCampus">
  6475. <MappingFragment StoreEntitySet="CF_StaffManageCampus">
  6476. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6477. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6478. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6479. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6480. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6481. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  6482. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6483. <ScalarProperty Name="StaffManageCampusID" ColumnName="StaffManageCampusID" />
  6484. </MappingFragment>
  6485. </EntityTypeMapping>
  6486. </EntitySetMapping>
  6487. <EntitySetMapping Name="CF_StaffManageCollege">
  6488. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StaffManageCollege">
  6489. <MappingFragment StoreEntitySet="CF_StaffManageCollege">
  6490. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6491. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6492. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6493. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6494. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6495. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6496. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6497. <ScalarProperty Name="StaffManageCollegeID" ColumnName="StaffManageCollegeID" />
  6498. </MappingFragment>
  6499. </EntityTypeMapping>
  6500. </EntitySetMapping>
  6501. <EntitySetMapping Name="CF_StaffManageDepartment">
  6502. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StaffManageDepartment">
  6503. <MappingFragment StoreEntitySet="CF_StaffManageDepartment">
  6504. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6505. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6506. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6507. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6508. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6509. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  6510. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6511. <ScalarProperty Name="StaffManageDepartmentID" ColumnName="StaffManageDepartmentID" />
  6512. </MappingFragment>
  6513. </EntityTypeMapping>
  6514. </EntitySetMapping>
  6515. <EntitySetMapping Name="CF_StaffProfile">
  6516. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StaffProfile">
  6517. <MappingFragment StoreEntitySet="CF_StaffProfile">
  6518. <ScalarProperty Name="Account" ColumnName="Account" />
  6519. <ScalarProperty Name="Religion" ColumnName="Religion" />
  6520. <ScalarProperty Name="WeChatNum" ColumnName="WeChatNum" />
  6521. <ScalarProperty Name="Speciality" ColumnName="Speciality" />
  6522. <ScalarProperty Name="Residence" ColumnName="Residence" />
  6523. <ScalarProperty Name="NowAddress" ColumnName="NowAddress" />
  6524. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  6525. <ScalarProperty Name="Postcode" ColumnName="Postcode" />
  6526. <ScalarProperty Name="Address" ColumnName="Address" />
  6527. <ScalarProperty Name="HousePhone" ColumnName="HousePhone" />
  6528. <ScalarProperty Name="HealthState" ColumnName="HealthState" />
  6529. <ScalarProperty Name="Nationality" ColumnName="Nationality" />
  6530. <ScalarProperty Name="QQ" ColumnName="QQ" />
  6531. <ScalarProperty Name="Email" ColumnName="Email" />
  6532. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  6533. <ScalarProperty Name="OfficeTelephone" ColumnName="OfficeTelephone" />
  6534. <ScalarProperty Name="Telephone" ColumnName="Telephone" />
  6535. <ScalarProperty Name="EducationCode" ColumnName="EducationCode" />
  6536. <ScalarProperty Name="Place" ColumnName="Place" />
  6537. <ScalarProperty Name="Nation" ColumnName="Nation" />
  6538. <ScalarProperty Name="UsedName" ColumnName="UsedName" />
  6539. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6540. </MappingFragment>
  6541. </EntityTypeMapping>
  6542. </EntitySetMapping>
  6543. <EntitySetMapping Name="CF_Student">
  6544. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_Student">
  6545. <MappingFragment StoreEntitySet="CF_Student">
  6546. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6547. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6548. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6549. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6550. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6551. <ScalarProperty Name="Career" ColumnName="Career" />
  6552. <ScalarProperty Name="PhotoUrl" ColumnName="PhotoUrl" />
  6553. <ScalarProperty Name="DegreeStatus" ColumnName="DegreeStatus" />
  6554. <ScalarProperty Name="ReplaceGraduateNo" ColumnName="ReplaceGraduateNo" />
  6555. <ScalarProperty Name="GraduateCardNo" ColumnName="GraduateCardNo" />
  6556. <ScalarProperty Name="GraduateDate" ColumnName="GraduateDate" />
  6557. <ScalarProperty Name="PlanningGraduateDate" ColumnName="PlanningGraduateDate" />
  6558. <ScalarProperty Name="StudentCardNo" ColumnName="StudentCardNo" />
  6559. <ScalarProperty Name="IsDreamProject" ColumnName="IsDreamProject" />
  6560. <ScalarProperty Name="IsProofread" ColumnName="IsProofread" />
  6561. <ScalarProperty Name="CultureModel" ColumnName="CultureModel" />
  6562. <ScalarProperty Name="StudentStatus" ColumnName="StudentStatus" />
  6563. <ScalarProperty Name="InSchoolStatusID" ColumnName="InSchoolStatusID" />
  6564. <ScalarProperty Name="StudentType" ColumnName="StudentType" />
  6565. <ScalarProperty Name="IDNumber" ColumnName="IDNumber" />
  6566. <ScalarProperty Name="CertificatesType" ColumnName="CertificatesType" />
  6567. <ScalarProperty Name="Sex" ColumnName="Sex" />
  6568. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  6569. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6570. </MappingFragment>
  6571. </EntityTypeMapping>
  6572. </EntitySetMapping>
  6573. <EntitySetMapping Name="CF_StudentAccount">
  6574. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StudentAccount">
  6575. <MappingFragment StoreEntitySet="CF_StudentAccount">
  6576. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6577. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6578. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6579. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6580. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6581. <ScalarProperty Name="BankName" ColumnName="BankName" />
  6582. <ScalarProperty Name="CardNo" ColumnName="CardNo" />
  6583. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6584. </MappingFragment>
  6585. </EntityTypeMapping>
  6586. </EntitySetMapping>
  6587. <EntitySetMapping Name="CF_StudentContact">
  6588. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StudentContact">
  6589. <MappingFragment StoreEntitySet="CF_StudentContact">
  6590. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6591. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6592. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6593. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6594. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6595. <ScalarProperty Name="Dormitory" ColumnName="Dormitory" />
  6596. <ScalarProperty Name="Recipient" ColumnName="Recipient" />
  6597. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  6598. <ScalarProperty Name="WorkUnit" ColumnName="WorkUnit" />
  6599. <ScalarProperty Name="Address" ColumnName="Address" />
  6600. <ScalarProperty Name="Zipcode" ColumnName="Zipcode" />
  6601. <ScalarProperty Name="MicroMsgNo" ColumnName="MicroMsgNo" />
  6602. <ScalarProperty Name="Telephone" ColumnName="Telephone" />
  6603. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  6604. <ScalarProperty Name="QQ" ColumnName="QQ" />
  6605. <ScalarProperty Name="Email" ColumnName="Email" />
  6606. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6607. </MappingFragment>
  6608. </EntityTypeMapping>
  6609. </EntitySetMapping>
  6610. <EntitySetMapping Name="CF_StudentProfile">
  6611. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StudentProfile">
  6612. <MappingFragment StoreEntitySet="CF_StudentProfile">
  6613. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6614. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6615. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6616. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6617. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6618. <ScalarProperty Name="GraduationPictureUrl" ColumnName="GraduationPictureUrl" />
  6619. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  6620. <ScalarProperty Name="Weight" ColumnName="Weight" />
  6621. <ScalarProperty Name="Height" ColumnName="Height" />
  6622. <ScalarProperty Name="Specialty" ColumnName="Specialty" />
  6623. <ScalarProperty Name="BornPlace" ColumnName="BornPlace" />
  6624. <ScalarProperty Name="BloodGroup" ColumnName="BloodGroup" />
  6625. <ScalarProperty Name="Healthy" ColumnName="Healthy" />
  6626. <ScalarProperty Name="Place" ColumnName="Place" />
  6627. <ScalarProperty Name="Nation" ColumnName="Nation" />
  6628. <ScalarProperty Name="LiteracyLevels" ColumnName="LiteracyLevels" />
  6629. <ScalarProperty Name="Politics" ColumnName="Politics" />
  6630. <ScalarProperty Name="Country" ColumnName="Country" />
  6631. <ScalarProperty Name="BirthDate" ColumnName="BirthDate" />
  6632. <ScalarProperty Name="DirectorName" ColumnName="DirectorName" />
  6633. <ScalarProperty Name="UsedName" ColumnName="UsedName" />
  6634. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6635. </MappingFragment>
  6636. </EntityTypeMapping>
  6637. </EntitySetMapping>
  6638. <EntitySetMapping Name="CF_StudentRole">
  6639. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_StudentRole">
  6640. <MappingFragment StoreEntitySet="CF_StudentRole">
  6641. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6642. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6643. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6644. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6645. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6646. <ScalarProperty Name="StudentType" ColumnName="StudentType" />
  6647. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  6648. </MappingFragment>
  6649. </EntityTypeMapping>
  6650. </EntitySetMapping>
  6651. <EntitySetMapping Name="CF_University">
  6652. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_University">
  6653. <MappingFragment StoreEntitySet="CF_University">
  6654. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6655. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6656. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6657. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6658. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6659. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6660. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  6661. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  6662. <ScalarProperty Name="Name" ColumnName="Name" />
  6663. <ScalarProperty Name="Code" ColumnName="Code" />
  6664. <ScalarProperty Name="UniversityID" ColumnName="UniversityID" />
  6665. </MappingFragment>
  6666. </EntityTypeMapping>
  6667. </EntitySetMapping>
  6668. <EntitySetMapping Name="CF_UniversityProfile">
  6669. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_UniversityProfile">
  6670. <MappingFragment StoreEntitySet="CF_UniversityProfile">
  6671. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6672. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6673. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6674. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6675. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6676. <ScalarProperty Name="HistoryEvolution" ColumnName="HistoryEvolution" />
  6677. <ScalarProperty Name="EnglishAddress" ColumnName="EnglishAddress" />
  6678. <ScalarProperty Name="Address" ColumnName="Address" />
  6679. <ScalarProperty Name="HomePage" ColumnName="HomePage" />
  6680. <ScalarProperty Name="PublicNum" ColumnName="PublicNum" />
  6681. <ScalarProperty Name="FAX" ColumnName="FAX" />
  6682. <ScalarProperty Name="Email" ColumnName="Email" />
  6683. <ScalarProperty Name="ZIPCode" ColumnName="ZIPCode" />
  6684. <ScalarProperty Name="Telephone" ColumnName="Telephone" />
  6685. <ScalarProperty Name="IsNetCollege" ColumnName="IsNetCollege" />
  6686. <ScalarProperty Name="IsPostCollege" ColumnName="IsPostCollege" />
  6687. <ScalarProperty Name="IsAdultCollege" ColumnName="IsAdultCollege" />
  6688. <ScalarProperty Name="IsKeyUniversity" ColumnName="IsKeyUniversity" />
  6689. <ScalarProperty Name="Is211University" ColumnName="Is211University" />
  6690. <ScalarProperty Name="SubjectCount" ColumnName="SubjectCount" />
  6691. <ScalarProperty Name="SchoolMotto" ColumnName="SchoolMotto" />
  6692. <ScalarProperty Name="SchoolBasis" ColumnName="SchoolBasis" />
  6693. <ScalarProperty Name="AnniversaryDate" ColumnName="AnniversaryDate" />
  6694. <ScalarProperty Name="BuildDate" ColumnName="BuildDate" />
  6695. <ScalarProperty Name="LegalPersonName" ColumnName="LegalPersonName" />
  6696. <ScalarProperty Name="PartyManageID" ColumnName="PartyManageID" />
  6697. <ScalarProperty Name="HeadMasterName" ColumnName="HeadMasterName" />
  6698. <ScalarProperty Name="SchoolLevelID" ColumnName="SchoolLevelID" />
  6699. <ScalarProperty Name="FounderTypeID" ColumnName="FounderTypeID" />
  6700. <ScalarProperty Name="ManagerID" ColumnName="ManagerID" />
  6701. <ScalarProperty Name="SchoolTypeID" ColumnName="SchoolTypeID" />
  6702. <ScalarProperty Name="PropertyID" ColumnName="PropertyID" />
  6703. <ScalarProperty Name="DistrictID" ColumnName="DistrictID" />
  6704. <ScalarProperty Name="CityID" ColumnName="CityID" />
  6705. <ScalarProperty Name="ProvinceID" ColumnName="ProvinceID" />
  6706. <ScalarProperty Name="UniversityID" ColumnName="UniversityID" />
  6707. </MappingFragment>
  6708. </EntityTypeMapping>
  6709. </EntitySetMapping>
  6710. <EntitySetMapping Name="CF_WechatPayList">
  6711. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_WechatPayList">
  6712. <MappingFragment StoreEntitySet="CF_WechatPayList">
  6713. <ScalarProperty Name="PayUrl" ColumnName="PayUrl" />
  6714. <ScalarProperty Name="PayForm" ColumnName="PayForm" />
  6715. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6716. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6717. <ScalarProperty Name="RefundTotal" ColumnName="RefundTotal" />
  6718. <ScalarProperty Name="RefundOrderID" ColumnName="RefundOrderID" />
  6719. <ScalarProperty Name="Total" ColumnName="Total" />
  6720. <ScalarProperty Name="WechatOrderID" ColumnName="WechatOrderID" />
  6721. <ScalarProperty Name="OrderID" ColumnName="OrderID" />
  6722. <ScalarProperty Name="ExaminationRegistrationID" ColumnName="ExaminationRegistrationID" />
  6723. <ScalarProperty Name="WechatPayListID" ColumnName="WechatPayListID" />
  6724. </MappingFragment>
  6725. </EntityTypeMapping>
  6726. </EntitySetMapping>
  6727. <EntitySetMapping Name="CF_WechatSubscribe">
  6728. <EntityTypeMapping TypeName="EMIS.Entities.DTO.CF_WechatSubscribe">
  6729. <MappingFragment StoreEntitySet="CF_WechatSubscribe">
  6730. <ScalarProperty Name="OpenID" ColumnName="OpenID" />
  6731. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6732. <ScalarProperty Name="WechatSubscribeID" ColumnName="WechatSubscribeID" />
  6733. </MappingFragment>
  6734. </EntityTypeMapping>
  6735. </EntitySetMapping>
  6736. <EntitySetMapping Name="EM_CoursesTime">
  6737. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EM_CoursesTime">
  6738. <MappingFragment StoreEntitySet="EM_CoursesTime">
  6739. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6740. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6741. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6742. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6743. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6744. <ScalarProperty Name="EndMinutes" ColumnName="EndMinutes" />
  6745. <ScalarProperty Name="EndHour" ColumnName="EndHour" />
  6746. <ScalarProperty Name="StartMinutes" ColumnName="StartMinutes" />
  6747. <ScalarProperty Name="StartHour" ColumnName="StartHour" />
  6748. <ScalarProperty Name="TimesSegment" ColumnName="TimesSegment" />
  6749. <ScalarProperty Name="EndTimes" ColumnName="EndTimes" />
  6750. <ScalarProperty Name="StartTimes" ColumnName="StartTimes" />
  6751. <ScalarProperty Name="CoursesTimeID" ColumnName="CoursesTimeID" />
  6752. </MappingFragment>
  6753. </EntityTypeMapping>
  6754. </EntitySetMapping>
  6755. <EntitySetMapping Name="EM_ExaminationMessage">
  6756. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EM_ExaminationMessage">
  6757. <MappingFragment StoreEntitySet="EM_ExaminationMessage">
  6758. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6759. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6760. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6761. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6762. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6763. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6764. <ScalarProperty Name="ExaminationTime" ColumnName="ExaminationTime" />
  6765. <ScalarProperty Name="ExaminationRegistrationID" ColumnName="ExaminationRegistrationID" />
  6766. </MappingFragment>
  6767. </EntityTypeMapping>
  6768. </EntitySetMapping>
  6769. <EntitySetMapping Name="EM_TrainingClass">
  6770. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EM_TrainingClass">
  6771. <MappingFragment StoreEntitySet="EM_TrainingClass">
  6772. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6773. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6774. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6775. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6776. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6777. <ScalarProperty Name="Name" ColumnName="Name" />
  6778. <ScalarProperty Name="SchoolAreaID" ColumnName="SchoolAreaID" />
  6779. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  6780. <ScalarProperty Name="TrainingClassID" ColumnName="TrainingClassID" />
  6781. </MappingFragment>
  6782. </EntityTypeMapping>
  6783. </EntitySetMapping>
  6784. <EntitySetMapping Name="ER_CertisfierDistribute">
  6785. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_CertisfierDistribute">
  6786. <MappingFragment StoreEntitySet="ER_CertisfierDistribute">
  6787. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6788. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6789. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6790. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6791. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6792. <ScalarProperty Name="SaveNo" ColumnName="SaveNo" />
  6793. <ScalarProperty Name="DeliveryNoteNo" ColumnName="DeliveryNoteNo" />
  6794. <ScalarProperty Name="Address" ColumnName="Address" />
  6795. <ScalarProperty Name="ContactIDNo" ColumnName="ContactIDNo" />
  6796. <ScalarProperty Name="ContactNo" ColumnName="ContactNo" />
  6797. <ScalarProperty Name="ContactPerson" ColumnName="ContactPerson" />
  6798. <ScalarProperty Name="DistributeTime" ColumnName="DistributeTime" />
  6799. <ScalarProperty Name="Distributer" ColumnName="Distributer" />
  6800. <ScalarProperty Name="No" ColumnName="No" />
  6801. <ScalarProperty Name="DistributeTypeID" ColumnName="DistributeTypeID" />
  6802. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6803. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6804. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6805. <ScalarProperty Name="CertisfierDistributeID" ColumnName="CertisfierDistributeID" />
  6806. </MappingFragment>
  6807. </EntityTypeMapping>
  6808. </EntitySetMapping>
  6809. <EntitySetMapping Name="ER_ExaminationScore">
  6810. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_ExaminationScore">
  6811. <MappingFragment StoreEntitySet="ER_ExaminationScore">
  6812. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6813. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6814. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6815. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6816. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6817. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6818. <ScalarProperty Name="Expire" ColumnName="Expire" />
  6819. <ScalarProperty Name="Score" ColumnName="Score" />
  6820. <ScalarProperty Name="IsResit" ColumnName="IsResit" />
  6821. <ScalarProperty Name="ExaminationSubjectID" ColumnName="ExaminationSubjectID" />
  6822. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6823. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  6824. <ScalarProperty Name="ExaminationScoreID" ColumnName="ExaminationScoreID" />
  6825. </MappingFragment>
  6826. </EntityTypeMapping>
  6827. </EntitySetMapping>
  6828. <EntitySetMapping Name="ER_LevelSetting">
  6829. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_LevelSetting">
  6830. <MappingFragment StoreEntitySet="ER_LevelSetting">
  6831. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6832. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6833. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6834. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6835. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6836. <ScalarProperty Name="IsPassLine" ColumnName="IsPassLine" />
  6837. <ScalarProperty Name="IsPassed" ColumnName="IsPassed" />
  6838. <ScalarProperty Name="LevelName" ColumnName="LevelName" />
  6839. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6840. <ScalarProperty Name="LevelSettingID" ColumnName="LevelSettingID" />
  6841. </MappingFragment>
  6842. </EntityTypeMapping>
  6843. </EntitySetMapping>
  6844. <EntitySetMapping Name="ER_LevelSettingSubject">
  6845. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_LevelSettingSubject">
  6846. <MappingFragment StoreEntitySet="ER_LevelSettingSubject">
  6847. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6848. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6849. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6850. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6851. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6852. <ScalarProperty Name="PassScore" ColumnName="PassScore" />
  6853. <ScalarProperty Name="ExaminationSubjectID" ColumnName="ExaminationSubjectID" />
  6854. <ScalarProperty Name="LevelSettingID" ColumnName="LevelSettingID" />
  6855. <ScalarProperty Name="LevelSettingSubjectID" ColumnName="LevelSettingSubjectID" />
  6856. </MappingFragment>
  6857. </EntityTypeMapping>
  6858. </EntitySetMapping>
  6859. <EntitySetMapping Name="ER_ProjectScore">
  6860. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_ProjectScore">
  6861. <MappingFragment StoreEntitySet="ER_ProjectScore">
  6862. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6863. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6864. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6865. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6866. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6867. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6868. <ScalarProperty Name="LevelSettingID" ColumnName="LevelSettingID" />
  6869. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6870. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6871. <ScalarProperty Name="ProjectScoreID" ColumnName="ProjectScoreID" />
  6872. </MappingFragment>
  6873. </EntityTypeMapping>
  6874. </EntitySetMapping>
  6875. <EntitySetMapping Name="ER_Resit">
  6876. <EntityTypeMapping TypeName="EMIS.Entities.DTO.ER_Resit">
  6877. <MappingFragment StoreEntitySet="ER_Resit">
  6878. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6879. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6880. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6881. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6882. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6883. <ScalarProperty Name="ExaminationScoreID" ColumnName="ExaminationScoreID" />
  6884. <ScalarProperty Name="ResitID" ColumnName="ResitID" />
  6885. </MappingFragment>
  6886. </EntityTypeMapping>
  6887. </EntitySetMapping>
  6888. <EntitySetMapping Name="EX_ExaminationBatch">
  6889. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationBatch">
  6890. <MappingFragment StoreEntitySet="EX_ExaminationBatch">
  6891. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6892. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6893. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6894. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6895. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6896. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6897. <ScalarProperty Name="EndDate" ColumnName="EndDate" />
  6898. <ScalarProperty Name="StartDate" ColumnName="StartDate" />
  6899. <ScalarProperty Name="Name" ColumnName="Name" />
  6900. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6901. <ScalarProperty Name="ExaminationBatchID" ColumnName="ExaminationBatchID" />
  6902. </MappingFragment>
  6903. </EntityTypeMapping>
  6904. </EntitySetMapping>
  6905. <EntitySetMapping Name="EX_ExaminationBatchProject">
  6906. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationBatchProject">
  6907. <MappingFragment StoreEntitySet="EX_ExaminationBatchProject">
  6908. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6909. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6910. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6911. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6912. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6913. <ScalarProperty Name="MaxRegistCount" ColumnName="MaxRegistCount" />
  6914. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6915. <ScalarProperty Name="TakeCourseTime" ColumnName="TakeCourseTime" />
  6916. <ScalarProperty Name="Training" ColumnName="Training" />
  6917. <ScalarProperty Name="SimulateTime" ColumnName="SimulateTime" />
  6918. <ScalarProperty Name="EndDate" ColumnName="EndDate" />
  6919. <ScalarProperty Name="StartDate" ColumnName="StartDate" />
  6920. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6921. <ScalarProperty Name="ExaminationBatchID" ColumnName="ExaminationBatchID" />
  6922. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  6923. </MappingFragment>
  6924. </EntityTypeMapping>
  6925. </EntitySetMapping>
  6926. <EntitySetMapping Name="EX_ExaminationBatchProjectControl">
  6927. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl">
  6928. <MappingFragment StoreEntitySet="EX_ExaminationBatchProjectControl">
  6929. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6930. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6931. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6932. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6933. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6934. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  6935. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  6936. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6937. <ScalarProperty Name="IsOnlinePay" ColumnName="IsOnlinePay" />
  6938. <ScalarProperty Name="ExaminationProjectFeeID" ColumnName="ExaminationProjectFeeID" />
  6939. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  6940. <ScalarProperty Name="ExaminationBatchProjectControlID" ColumnName="ExaminationBatchProjectControlID" />
  6941. </MappingFragment>
  6942. </EntityTypeMapping>
  6943. </EntitySetMapping>
  6944. <EntitySetMapping Name="EX_ExaminationBatchProjectPersonControl">
  6945. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl">
  6946. <MappingFragment StoreEntitySet="EX_ExaminationBatchProjectPersonControl">
  6947. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6948. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6949. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6950. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6951. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6952. <ScalarProperty Name="EndDate" ColumnName="EndDate" />
  6953. <ScalarProperty Name="StartDate" ColumnName="StartDate" />
  6954. <ScalarProperty Name="IsOnlinePay" ColumnName="IsOnlinePay" />
  6955. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6956. <ScalarProperty Name="ExaminationProjectFeeID" ColumnName="ExaminationProjectFeeID" />
  6957. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  6958. <ScalarProperty Name="ExaminationBatchProjectPersonControlID" ColumnName="ExaminationBatchProjectPersonControlID" />
  6959. </MappingFragment>
  6960. </EntityTypeMapping>
  6961. </EntitySetMapping>
  6962. <EntitySetMapping Name="EX_ExaminationProject">
  6963. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProject">
  6964. <MappingFragment StoreEntitySet="EX_ExaminationProject">
  6965. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6966. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6967. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6968. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6969. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6970. <ScalarProperty Name="Remark" ColumnName="Remark" />
  6971. <ScalarProperty Name="IssuedByID" ColumnName="IssuedByID" />
  6972. <ScalarProperty Name="PreposeProjectID" ColumnName="PreposeProjectID" />
  6973. <ScalarProperty Name="Name" ColumnName="Name" />
  6974. <ScalarProperty Name="ExaminationLevelID" ColumnName="ExaminationLevelID" />
  6975. <ScalarProperty Name="ExaminationTypeID" ColumnName="ExaminationTypeID" />
  6976. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6977. </MappingFragment>
  6978. </EntityTypeMapping>
  6979. </EntitySetMapping>
  6980. <EntitySetMapping Name="EX_ExaminationProjectCollegeControl">
  6981. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProjectCollegeControl">
  6982. <MappingFragment StoreEntitySet="EX_ExaminationProjectCollegeControl">
  6983. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6984. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6985. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  6986. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  6987. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  6988. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  6989. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  6990. <ScalarProperty Name="ExaminationProjectCollegeControlID" ColumnName="ExaminationProjectCollegeControlID" />
  6991. </MappingFragment>
  6992. </EntityTypeMapping>
  6993. </EntitySetMapping>
  6994. <EntitySetMapping Name="EX_ExaminationProjectCountLimit">
  6995. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProjectCountLimit">
  6996. <MappingFragment StoreEntitySet="EX_ExaminationProjectCountLimit">
  6997. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  6998. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  6999. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7000. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7001. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7002. <ScalarProperty Name="SubjectCountLimit" ColumnName="SubjectCountLimit" />
  7003. <ScalarProperty Name="SchoolyearNumID" ColumnName="SchoolyearNumID" />
  7004. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  7005. <ScalarProperty Name="ExaminationTypeID" ColumnName="ExaminationTypeID" />
  7006. <ScalarProperty Name="ExaminationSubjectCountLimitID" ColumnName="ExaminationSubjectCountLimitID" />
  7007. </MappingFragment>
  7008. </EntityTypeMapping>
  7009. </EntitySetMapping>
  7010. <EntitySetMapping Name="EX_ExaminationProjectFee">
  7011. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProjectFee">
  7012. <MappingFragment StoreEntitySet="EX_ExaminationProjectFee">
  7013. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7014. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7015. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7016. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7017. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7018. <ScalarProperty Name="Name" ColumnName="Name" />
  7019. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  7020. <ScalarProperty Name="ExaminationProjectFeeID" ColumnName="ExaminationProjectFeeID" />
  7021. </MappingFragment>
  7022. </EntityTypeMapping>
  7023. </EntitySetMapping>
  7024. <EntitySetMapping Name="EX_ExaminationProjectFeeType">
  7025. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProjectFeeType">
  7026. <MappingFragment StoreEntitySet="EX_ExaminationProjectFeeType">
  7027. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7028. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7029. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7030. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7031. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7032. <ScalarProperty Name="IsMaterial" ColumnName="IsMaterial" />
  7033. <ScalarProperty Name="IsTrainingFee" ColumnName="IsTrainingFee" />
  7034. <ScalarProperty Name="IsResit" ColumnName="IsResit" />
  7035. <ScalarProperty Name="IsRequiredForNew" ColumnName="IsRequiredForNew" />
  7036. <ScalarProperty Name="Fee" ColumnName="Fee" />
  7037. <ScalarProperty Name="FeeTypeID" ColumnName="FeeTypeID" />
  7038. <ScalarProperty Name="ExaminationProjectFeeID" ColumnName="ExaminationProjectFeeID" />
  7039. <ScalarProperty Name="ExaminationProjectFeeTypeID" ColumnName="ExaminationProjectFeeTypeID" />
  7040. </MappingFragment>
  7041. </EntityTypeMapping>
  7042. </EntitySetMapping>
  7043. <EntitySetMapping Name="EX_ExaminationProjectSubject">
  7044. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationProjectSubject">
  7045. <MappingFragment StoreEntitySet="EX_ExaminationProjectSubject">
  7046. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7047. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7048. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7049. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7050. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7051. <ScalarProperty Name="ResitCount" ColumnName="ResitCount" />
  7052. <ScalarProperty Name="ExaminationSubjectID" ColumnName="ExaminationSubjectID" />
  7053. <ScalarProperty Name="ExaminationProjectID" ColumnName="ExaminationProjectID" />
  7054. <ScalarProperty Name="ExaminationProjectSubjectID" ColumnName="ExaminationProjectSubjectID" />
  7055. </MappingFragment>
  7056. </EntityTypeMapping>
  7057. </EntitySetMapping>
  7058. <EntitySetMapping Name="EX_ExaminationRegistration">
  7059. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationRegistration">
  7060. <MappingFragment StoreEntitySet="EX_ExaminationRegistration">
  7061. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7062. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7063. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7064. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7065. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7066. <ScalarProperty Name="RefundConfirmTime" ColumnName="RefundConfirmTime" />
  7067. <ScalarProperty Name="RefundConfirmUserID" ColumnName="RefundConfirmUserID" />
  7068. <ScalarProperty Name="RefundTime" ColumnName="RefundTime" />
  7069. <ScalarProperty Name="RefundUserID" ColumnName="RefundUserID" />
  7070. <ScalarProperty Name="RefundReason" ColumnName="RefundReason" />
  7071. <ScalarProperty Name="PayTime" ColumnName="PayTime" />
  7072. <ScalarProperty Name="Remark" ColumnName="Remark" />
  7073. <ScalarProperty Name="CardNo" ColumnName="CardNo" />
  7074. <ScalarProperty Name="BankName" ColumnName="BankName" />
  7075. <ScalarProperty Name="Fee" ColumnName="Fee" />
  7076. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7077. <ScalarProperty Name="ExaminationBatchProjectID" ColumnName="ExaminationBatchProjectID" />
  7078. <ScalarProperty Name="ExaminationRegistrationConfirmID" ColumnName="ExaminationRegistrationConfirmID" />
  7079. <ScalarProperty Name="ExaminationProjectFeeTypeID" ColumnName="ExaminationProjectFeeTypeID" />
  7080. <ScalarProperty Name="ExaminationRegistrationID" ColumnName="ExaminationRegistrationID" />
  7081. </MappingFragment>
  7082. </EntityTypeMapping>
  7083. </EntitySetMapping>
  7084. <EntitySetMapping Name="EX_ExaminationRegistrationConfirm">
  7085. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationRegistrationConfirm">
  7086. <MappingFragment StoreEntitySet="EX_ExaminationRegistrationConfirm">
  7087. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7088. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7089. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7090. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7091. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7092. <ScalarProperty Name="BarcodeUrl" ColumnName="BarcodeUrl" />
  7093. <ScalarProperty Name="Receiver" ColumnName="Receiver" />
  7094. <ScalarProperty Name="ReceiptNo" ColumnName="ReceiptNo" />
  7095. <ScalarProperty Name="No" ColumnName="No" />
  7096. <ScalarProperty Name="ExaminationRegistrationConfirmID" ColumnName="ExaminationRegistrationConfirmID" />
  7097. </MappingFragment>
  7098. </EntityTypeMapping>
  7099. </EntitySetMapping>
  7100. <EntitySetMapping Name="EX_ExaminationType">
  7101. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_ExaminationType">
  7102. <MappingFragment StoreEntitySet="EX_ExaminationType">
  7103. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7104. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7105. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7106. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7107. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7108. <ScalarProperty Name="IsTimesLimit" ColumnName="IsTimesLimit" />
  7109. <ScalarProperty Name="Name" ColumnName="Name" />
  7110. <ScalarProperty Name="ExaminationTypeID" ColumnName="ExaminationTypeID" />
  7111. </MappingFragment>
  7112. </EntityTypeMapping>
  7113. </EntitySetMapping>
  7114. <EntitySetMapping Name="EX_InvalidReceipt">
  7115. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_InvalidReceipt">
  7116. <MappingFragment StoreEntitySet="EX_InvalidReceipt">
  7117. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7118. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7119. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7120. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7121. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7122. <ScalarProperty Name="ReceiptNo" ColumnName="ReceiptNo" />
  7123. <ScalarProperty Name="InvalidReceiptID" ColumnName="InvalidReceiptID" />
  7124. </MappingFragment>
  7125. </EntityTypeMapping>
  7126. </EntitySetMapping>
  7127. <EntitySetMapping Name="EX_Receipt">
  7128. <EntityTypeMapping TypeName="EMIS.Entities.DTO.EX_Receipt">
  7129. <MappingFragment StoreEntitySet="EX_Receipt">
  7130. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7131. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7132. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7133. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7134. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7135. <ScalarProperty Name="CurrentReceipNo" ColumnName="CurrentReceipNo" />
  7136. <ScalarProperty Name="ReceiptEndNo" ColumnName="ReceiptEndNo" />
  7137. <ScalarProperty Name="ReceiptStartNo" ColumnName="ReceiptStartNo" />
  7138. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7139. <ScalarProperty Name="ReceiptID" ColumnName="ReceiptID" />
  7140. </MappingFragment>
  7141. </EntityTypeMapping>
  7142. </EntitySetMapping>
  7143. <EntitySetMapping Name="Sys_Announcement">
  7144. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_Announcement">
  7145. <MappingFragment StoreEntitySet="Sys_Announcement">
  7146. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7147. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7148. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7149. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7150. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7151. <ScalarProperty Name="IsTop" ColumnName="IsTop" />
  7152. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  7153. <ScalarProperty Name="StartTime" ColumnName="StartTime" />
  7154. <ScalarProperty Name="Content" ColumnName="Content" />
  7155. <ScalarProperty Name="Title" ColumnName="Title" />
  7156. <ScalarProperty Name="AnnouncementTypeID" ColumnName="AnnouncementTypeID" />
  7157. <ScalarProperty Name="AnnouncementID" ColumnName="AnnouncementID" />
  7158. </MappingFragment>
  7159. </EntityTypeMapping>
  7160. </EntitySetMapping>
  7161. <EntitySetMapping Name="Sys_AnnouncementType">
  7162. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_AnnouncementType">
  7163. <MappingFragment StoreEntitySet="Sys_AnnouncementType">
  7164. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7165. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7166. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7167. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7168. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7169. <ScalarProperty Name="Description" ColumnName="Description" />
  7170. <ScalarProperty Name="Name" ColumnName="Name" />
  7171. <ScalarProperty Name="No" ColumnName="No" />
  7172. <ScalarProperty Name="AnnouncementTypeID" ColumnName="AnnouncementTypeID" />
  7173. </MappingFragment>
  7174. </EntityTypeMapping>
  7175. </EntitySetMapping>
  7176. <EntitySetMapping Name="Sys_BatchModify">
  7177. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_BatchModify">
  7178. <MappingFragment StoreEntitySet="Sys_BatchModify">
  7179. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7180. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7181. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7182. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7183. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7184. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7185. <ScalarProperty Name="MNUID" ColumnName="MNUID" />
  7186. <ScalarProperty Name="MUNClass" ColumnName="MUNClass" />
  7187. <ScalarProperty Name="listControl" ColumnName="listControl" />
  7188. <ScalarProperty Name="ReturnUrl" ColumnName="ReturnUrl" />
  7189. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  7190. <ScalarProperty Name="PostUrl" ColumnName="PostUrl" />
  7191. <ScalarProperty Name="ControlValueFiled" ColumnName="ControlValueFiled" />
  7192. <ScalarProperty Name="ControlTextFiled" ColumnName="ControlTextFiled" />
  7193. <ScalarProperty Name="ControlType" ColumnName="ControlType" />
  7194. <ScalarProperty Name="Value" ColumnName="Value" />
  7195. <ScalarProperty Name="Name" ColumnName="Name" />
  7196. <ScalarProperty Name="BatchModifyID" ColumnName="BatchModifyID" />
  7197. </MappingFragment>
  7198. </EntityTypeMapping>
  7199. </EntitySetMapping>
  7200. <EntitySetMapping Name="Sys_BatchModifyEvents">
  7201. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_BatchModifyEvents">
  7202. <MappingFragment StoreEntitySet="Sys_BatchModifyEvents">
  7203. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7204. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7205. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7206. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7207. <ScalarProperty Name="OnAfter" ColumnName="OnAfter" />
  7208. <ScalarProperty Name="OnBefore" ColumnName="OnBefore" />
  7209. <ScalarProperty Name="ColumnName" ColumnName="ColumnName" />
  7210. <ScalarProperty Name="MUNClass" ColumnName="MUNClass" />
  7211. <ScalarProperty Name="MNUID" ColumnName="MNUID" />
  7212. <ScalarProperty Name="BatchModifyEventsID" ColumnName="BatchModifyEventsID" />
  7213. </MappingFragment>
  7214. </EntityTypeMapping>
  7215. </EntitySetMapping>
  7216. <EntitySetMapping Name="Sys_BatchModifyExpand">
  7217. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_BatchModifyExpand">
  7218. <MappingFragment StoreEntitySet="Sys_BatchModifyExpand">
  7219. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7220. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7221. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7222. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7223. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7224. <ScalarProperty Name="ColumnValue" ColumnName="ColumnValue" />
  7225. <ScalarProperty Name="ColumnName" ColumnName="ColumnName" />
  7226. <ScalarProperty Name="BatchModifyID" ColumnName="BatchModifyID" />
  7227. <ScalarProperty Name="ID" ColumnName="ID" />
  7228. </MappingFragment>
  7229. </EntityTypeMapping>
  7230. </EntitySetMapping>
  7231. <EntitySetMapping Name="Sys_ConfiguretermsExpand">
  7232. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ConfiguretermsExpand">
  7233. <MappingFragment StoreEntitySet="Sys_ConfiguretermsExpand">
  7234. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7235. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7236. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7237. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7238. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7239. <ScalarProperty Name="ColumnValue" ColumnName="ColumnValue" />
  7240. <ScalarProperty Name="ColumnName" ColumnName="ColumnName" />
  7241. <ScalarProperty Name="ConfiguretermsInfoID" ColumnName="ConfiguretermsInfoID" />
  7242. <ScalarProperty Name="ID" ColumnName="ID" />
  7243. </MappingFragment>
  7244. </EntityTypeMapping>
  7245. </EntitySetMapping>
  7246. <EntitySetMapping Name="Sys_ConfiguretermsInfo">
  7247. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ConfiguretermsInfo">
  7248. <MappingFragment StoreEntitySet="Sys_ConfiguretermsInfo">
  7249. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7250. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7251. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7252. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7253. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7254. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7255. <ScalarProperty Name="MNUID" ColumnName="MNUID" />
  7256. <ScalarProperty Name="MUNClass" ColumnName="MUNClass" />
  7257. <ScalarProperty Name="listControl" ColumnName="listControl" />
  7258. <ScalarProperty Name="ReturnUrl" ColumnName="ReturnUrl" />
  7259. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  7260. <ScalarProperty Name="PostUrl" ColumnName="PostUrl" />
  7261. <ScalarProperty Name="ControlValueFiled" ColumnName="ControlValueFiled" />
  7262. <ScalarProperty Name="ControlTextFiled" ColumnName="ControlTextFiled" />
  7263. <ScalarProperty Name="ControlType" ColumnName="ControlType" />
  7264. <ScalarProperty Name="Value" ColumnName="Value" />
  7265. <ScalarProperty Name="Name" ColumnName="Name" />
  7266. <ScalarProperty Name="ID" ColumnName="ID" />
  7267. </MappingFragment>
  7268. </EntityTypeMapping>
  7269. </EntitySetMapping>
  7270. <EntitySetMapping Name="Sys_ContextMenu">
  7271. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ContextMenu">
  7272. <MappingFragment StoreEntitySet="Sys_ContextMenu">
  7273. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7274. <ScalarProperty Name="MenuNo" ColumnName="MenuNo" />
  7275. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  7276. <ScalarProperty Name="SeqNo" ColumnName="SeqNo" />
  7277. <ScalarProperty Name="Scripts" ColumnName="Scripts" />
  7278. <ScalarProperty Name="IconName" ColumnName="IconName" />
  7279. <ScalarProperty Name="IsNeedPrivilege" ColumnName="IsNeedPrivilege" />
  7280. <ScalarProperty Name="Title" ColumnName="Title" />
  7281. <ScalarProperty Name="FormClass" ColumnName="FormClass" />
  7282. <ScalarProperty Name="ContextMnuNo" ColumnName="ContextMnuNo" />
  7283. </MappingFragment>
  7284. </EntityTypeMapping>
  7285. </EntitySetMapping>
  7286. <EntitySetMapping Name="Sys_ControlItem">
  7287. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ControlItem">
  7288. <MappingFragment StoreEntitySet="Sys_ControlItem">
  7289. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  7290. <ScalarProperty Name="IsLoginControl" ColumnName="IsLoginControl" />
  7291. <ScalarProperty Name="Message" ColumnName="Message" />
  7292. <ScalarProperty Name="ClassName" ColumnName="ClassName" />
  7293. <ScalarProperty Name="Name" ColumnName="Name" />
  7294. <ScalarProperty Name="ControlItemTypeID" ColumnName="ControlItemTypeID" />
  7295. <ScalarProperty Name="ControlItemCode" ColumnName="ControlItemCode" />
  7296. </MappingFragment>
  7297. </EntityTypeMapping>
  7298. </EntitySetMapping>
  7299. <EntitySetMapping Name="Sys_ControlItemDetail">
  7300. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ControlItemDetail">
  7301. <MappingFragment StoreEntitySet="Sys_ControlItemDetail">
  7302. <ScalarProperty Name="ContextMnuNo" ColumnName="ContextMnuNo" />
  7303. <ScalarProperty Name="MenuNo" ColumnName="MenuNo" />
  7304. <ScalarProperty Name="ControlItemCode" ColumnName="ControlItemCode" />
  7305. <ScalarProperty Name="ControlItemDetailID" ColumnName="ControlItemDetailID" />
  7306. </MappingFragment>
  7307. </EntityTypeMapping>
  7308. </EntitySetMapping>
  7309. <EntitySetMapping Name="Sys_Dictionary">
  7310. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_Dictionary">
  7311. <MappingFragment StoreEntitySet="Sys_Dictionary">
  7312. <ScalarProperty Name="IsEditable" ColumnName="IsEditable" />
  7313. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7314. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7315. <ScalarProperty Name="Name" ColumnName="Name" />
  7316. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  7317. </MappingFragment>
  7318. </EntityTypeMapping>
  7319. </EntitySetMapping>
  7320. <EntitySetMapping Name="Sys_DictionaryItem">
  7321. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_DictionaryItem">
  7322. <MappingFragment StoreEntitySet="Sys_DictionaryItem">
  7323. <ScalarProperty Name="IsEditable" ColumnName="IsEditable" />
  7324. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7325. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7326. <ScalarProperty Name="Name" ColumnName="Name" />
  7327. <ScalarProperty Name="Value" ColumnName="Value" />
  7328. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  7329. <ScalarProperty Name="Code" ColumnName="Code" />
  7330. <ScalarProperty Name="DictionaryItemID" ColumnName="DictionaryItemID" />
  7331. </MappingFragment>
  7332. </EntityTypeMapping>
  7333. </EntitySetMapping>
  7334. <EntitySetMapping Name="Sys_FunctionCode">
  7335. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_FunctionCode">
  7336. <MappingFragment StoreEntitySet="Sys_FunctionCode">
  7337. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7338. <ScalarProperty Name="ParentFunctionCode" ColumnName="ParentFunctionCode" />
  7339. <ScalarProperty Name="FunctionName" ColumnName="FunctionName" />
  7340. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  7341. </MappingFragment>
  7342. </EntityTypeMapping>
  7343. </EntitySetMapping>
  7344. <EntitySetMapping Name="Sys_LoginHistory">
  7345. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_LoginHistory">
  7346. <MappingFragment StoreEntitySet="Sys_LoginHistory">
  7347. <ScalarProperty Name="LoginFailTime" ColumnName="LoginFailTime" />
  7348. <ScalarProperty Name="Count" ColumnName="Count" />
  7349. <ScalarProperty Name="LoginID" ColumnName="LoginID" />
  7350. <ScalarProperty Name="LoginHistoryID" ColumnName="LoginHistoryID" />
  7351. </MappingFragment>
  7352. </EntityTypeMapping>
  7353. </EntitySetMapping>
  7354. <EntitySetMapping Name="Sys_MailVerifyCode">
  7355. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_MailVerifyCode">
  7356. <MappingFragment StoreEntitySet="Sys_MailVerifyCode">
  7357. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7358. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7359. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7360. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7361. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7362. <ScalarProperty Name="VerifyCode" ColumnName="VerifyCode" />
  7363. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7364. </MappingFragment>
  7365. </EntityTypeMapping>
  7366. </EntitySetMapping>
  7367. <EntitySetMapping Name="Sys_Menu">
  7368. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_Menu">
  7369. <MappingFragment StoreEntitySet="Sys_Menu">
  7370. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7371. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  7372. <ScalarProperty Name="IsLeaf" ColumnName="IsLeaf" />
  7373. <ScalarProperty Name="IsVisible" ColumnName="IsVisible" />
  7374. <ScalarProperty Name="IsTopMenu" ColumnName="IsTopMenu" />
  7375. <ScalarProperty Name="Description" ColumnName="Description" />
  7376. <ScalarProperty Name="ParentMenuNo" ColumnName="ParentMenuNo" />
  7377. <ScalarProperty Name="Url" ColumnName="Url" />
  7378. <ScalarProperty Name="Icon" ColumnName="Icon" />
  7379. <ScalarProperty Name="MenuName" ColumnName="MenuName" />
  7380. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7381. <ScalarProperty Name="MenuNo" ColumnName="MenuNo" />
  7382. </MappingFragment>
  7383. </EntityTypeMapping>
  7384. </EntitySetMapping>
  7385. <EntitySetMapping Name="Sys_Role">
  7386. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_Role">
  7387. <MappingFragment StoreEntitySet="Sys_Role">
  7388. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  7389. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7390. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7391. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7392. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7393. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7394. <ScalarProperty Name="DefaultDataRange" ColumnName="DefaultDataRange" />
  7395. <ScalarProperty Name="SystemRoleType" ColumnName="SystemRoleType" />
  7396. <ScalarProperty Name="IsSystemRole" ColumnName="IsSystemRole" />
  7397. <ScalarProperty Name="Description" ColumnName="Description" />
  7398. <ScalarProperty Name="RoleName" ColumnName="RoleName" />
  7399. <ScalarProperty Name="TypeID" ColumnName="TypeID" />
  7400. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  7401. </MappingFragment>
  7402. </EntityTypeMapping>
  7403. </EntitySetMapping>
  7404. <EntitySetMapping Name="Sys_RoleDataRange">
  7405. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_RoleDataRange">
  7406. <MappingFragment StoreEntitySet="Sys_RoleDataRange">
  7407. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7408. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7409. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7410. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7411. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7412. <ScalarProperty Name="DataRangeID" ColumnName="DataRangeID" />
  7413. <ScalarProperty Name="MenuNo" ColumnName="MenuNo" />
  7414. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  7415. <ScalarProperty Name="RoleDataRangeID" ColumnName="RoleDataRangeID" />
  7416. </MappingFragment>
  7417. </EntityTypeMapping>
  7418. </EntitySetMapping>
  7419. <EntitySetMapping Name="Sys_ScheduleJob">
  7420. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ScheduleJob">
  7421. <MappingFragment StoreEntitySet="Sys_ScheduleJob">
  7422. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7423. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7424. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7425. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7426. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7427. <ScalarProperty Name="autolog" ColumnName="autolog" />
  7428. <ScalarProperty Name="jobdesc" ColumnName="jobdesc" />
  7429. <ScalarProperty Name="classname" ColumnName="classname" />
  7430. <ScalarProperty Name="assemname" ColumnName="assemname" />
  7431. <ScalarProperty Name="jobname" ColumnName="jobname" />
  7432. <ScalarProperty Name="jobid" ColumnName="jobid" />
  7433. </MappingFragment>
  7434. </EntityTypeMapping>
  7435. </EntitySetMapping>
  7436. <EntitySetMapping Name="Sys_ScheduleLog">
  7437. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ScheduleLog">
  7438. <MappingFragment StoreEntitySet="Sys_ScheduleLog">
  7439. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7440. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7441. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7442. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7443. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7444. <ScalarProperty Name="Desc" ColumnName="Desc" />
  7445. <ScalarProperty Name="useSeconds" ColumnName="useSeconds" />
  7446. <ScalarProperty Name="successful" ColumnName="successful" />
  7447. <ScalarProperty Name="timeEnd" ColumnName="timeEnd" />
  7448. <ScalarProperty Name="timeBegin" ColumnName="timeBegin" />
  7449. <ScalarProperty Name="scid" ColumnName="scid" />
  7450. <ScalarProperty Name="scheduleLogID" ColumnName="scheduleLogID" />
  7451. </MappingFragment>
  7452. </EntityTypeMapping>
  7453. </EntitySetMapping>
  7454. <EntitySetMapping Name="Sys_Scheduling">
  7455. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_Scheduling">
  7456. <MappingFragment StoreEntitySet="Sys_Scheduling">
  7457. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7458. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7459. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7460. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7461. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7462. <ScalarProperty Name="totalloopnumb" ColumnName="totalloopnumb" />
  7463. <ScalarProperty Name="lastrun" ColumnName="lastrun" />
  7464. <ScalarProperty Name="status" ColumnName="status" />
  7465. <ScalarProperty Name="notes" ColumnName="notes" />
  7466. <ScalarProperty Name="scinterval" ColumnName="scinterval" />
  7467. <ScalarProperty Name="scmode" ColumnName="scmode" />
  7468. <ScalarProperty Name="loopnumb" ColumnName="loopnumb" />
  7469. <ScalarProperty Name="looptype" ColumnName="looptype" />
  7470. <ScalarProperty Name="timeto" ColumnName="timeto" />
  7471. <ScalarProperty Name="timefrom" ColumnName="timefrom" />
  7472. <ScalarProperty Name="dateend" ColumnName="dateend" />
  7473. <ScalarProperty Name="datebegin" ColumnName="datebegin" />
  7474. <ScalarProperty Name="jobid" ColumnName="jobid" />
  7475. <ScalarProperty Name="scid" ColumnName="scid" />
  7476. </MappingFragment>
  7477. </EntityTypeMapping>
  7478. </EntitySetMapping>
  7479. <EntitySetMapping Name="Sys_SerialNumber">
  7480. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_SerialNumber">
  7481. <MappingFragment StoreEntitySet="Sys_SerialNumber">
  7482. <ScalarProperty Name="ResetTime" ColumnName="ResetTime" />
  7483. <ScalarProperty Name="Number" ColumnName="Number" />
  7484. <ScalarProperty Name="ID" ColumnName="ID" />
  7485. </MappingFragment>
  7486. </EntityTypeMapping>
  7487. </EntitySetMapping>
  7488. <EntitySetMapping Name="Sys_ShareRecord">
  7489. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_ShareRecord">
  7490. <MappingFragment StoreEntitySet="Sys_ShareRecord">
  7491. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7492. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7493. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7494. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7495. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7496. <ScalarProperty Name="OpenID" ColumnName="OpenID" />
  7497. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7498. <ScalarProperty Name="AnnouncementID" ColumnName="AnnouncementID" />
  7499. <ScalarProperty Name="DateTime" ColumnName="DateTime" />
  7500. <ScalarProperty Name="ShareRecordID" ColumnName="ShareRecordID" />
  7501. </MappingFragment>
  7502. </EntityTypeMapping>
  7503. </EntitySetMapping>
  7504. <EntitySetMapping Name="Sys_User">
  7505. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_User">
  7506. <MappingFragment StoreEntitySet="Sys_User">
  7507. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7508. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7509. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7510. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7511. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  7512. <ScalarProperty Name="Name" ColumnName="Name" />
  7513. <ScalarProperty Name="Password" ColumnName="Password" />
  7514. <ScalarProperty Name="LoginID" ColumnName="LoginID" />
  7515. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7516. </MappingFragment>
  7517. </EntityTypeMapping>
  7518. </EntitySetMapping>
  7519. <EntitySetMapping Name="Sys_UserScore">
  7520. <EntityTypeMapping TypeName="EMIS.Entities.DTO.Sys_UserScore">
  7521. <MappingFragment StoreEntitySet="Sys_UserScore">
  7522. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7523. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7524. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7525. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7526. <ScalarProperty Name="Score" ColumnName="Score" />
  7527. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7528. </MappingFragment>
  7529. </EntityTypeMapping>
  7530. </EntitySetMapping>
  7531. <EntitySetMapping Name="TestOperate">
  7532. <EntityTypeMapping TypeName="EMIS.Entities.DTO.TestOperate">
  7533. <MappingFragment StoreEntitySet="TestOperate">
  7534. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  7535. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  7536. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  7537. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  7538. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  7539. <ScalarProperty Name="StartTime" ColumnName="StartTime" />
  7540. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7541. <ScalarProperty Name="OperateID" ColumnName="OperateID" />
  7542. </MappingFragment>
  7543. </EntityTypeMapping>
  7544. </EntitySetMapping>
  7545. <AssociationSetMapping Name="EM_TrainingClass_CF_Student" TypeName="EMIS.Entities.DTO.EM_TrainingClass_CF_Student" StoreEntitySet="EM_TrainingClass_CF_Student">
  7546. <EndProperty Name="CF_Student">
  7547. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7548. </EndProperty>
  7549. <EndProperty Name="EM_TrainingClass">
  7550. <ScalarProperty Name="TrainingClassID" ColumnName="TrainingClassID" />
  7551. </EndProperty>
  7552. </AssociationSetMapping>
  7553. <AssociationSetMapping Name="Sys_Announcement_Sys_Role" TypeName="EMIS.Entities.DTO.Sys_Announcement_Sys_Role" StoreEntitySet="Sys_Announcement_Sys_Role">
  7554. <EndProperty Name="Sys_Role">
  7555. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  7556. </EndProperty>
  7557. <EndProperty Name="Sys_Announcement">
  7558. <ScalarProperty Name="AnnouncementID" ColumnName="AnnouncementID" />
  7559. </EndProperty>
  7560. </AssociationSetMapping>
  7561. <AssociationSetMapping Name="Sys_Announcement_Sys_User" TypeName="EMIS.Entities.DTO.Sys_Announcement_Sys_User" StoreEntitySet="Sys_Announcement_Sys_User">
  7562. <EndProperty Name="Sys_User">
  7563. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7564. </EndProperty>
  7565. <EndProperty Name="Sys_Announcement">
  7566. <ScalarProperty Name="AnnouncementID" ColumnName="AnnouncementID" />
  7567. </EndProperty>
  7568. </AssociationSetMapping>
  7569. <AssociationSetMapping Name="Sys_Role_Sys_FunctionCode" TypeName="EMIS.Entities.DTO.Sys_Role_Sys_FunctionCode" StoreEntitySet="Sys_Role_Sys_FunctionCode">
  7570. <EndProperty Name="Sys_Role">
  7571. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  7572. </EndProperty>
  7573. <EndProperty Name="Sys_FunctionCode">
  7574. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  7575. </EndProperty>
  7576. </AssociationSetMapping>
  7577. <AssociationSetMapping Name="Sys_User_Sys_Role" TypeName="EMIS.Entities.DTO.Sys_User_Sys_Role" StoreEntitySet="Sys_User_Sys_Role">
  7578. <EndProperty Name="Sys_User">
  7579. <ScalarProperty Name="UserID" ColumnName="UserID" />
  7580. </EndProperty>
  7581. <EndProperty Name="Sys_Role">
  7582. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  7583. </EndProperty>
  7584. </AssociationSetMapping>
  7585. </EntityContainerMapping>
  7586. </Mapping>
  7587. </edmx:Mappings>
  7588. </edmx:Runtime>
  7589. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  7590. <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2008/10/edmx">
  7591. <edmx:Connection>
  7592. <DesignerInfoPropertySet>
  7593. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  7594. </DesignerInfoPropertySet>
  7595. </edmx:Connection>
  7596. <edmx:Options>
  7597. <DesignerInfoPropertySet>
  7598. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  7599. <DesignerProperty Name="EnablePluralization" Value="False" />
  7600. <DesignerProperty Name="CodeGenerationStrategy" Value="无" />
  7601. <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
  7602. </DesignerInfoPropertySet>
  7603. </edmx:Options>
  7604. <!-- Diagram content (shape and connector positions) -->
  7605. <edmx:Diagrams>
  7606. <Diagram Name="EMISContext" ZoomLevel="66" >
  7607. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Arrangements" Width="1.5" PointX="6" PointY="19.375" Height="2.8441984049479174" />
  7608. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Campus" Width="1.5" PointX="1.5" PointY="18.25" Height="3.9529630533854174" />
  7609. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_CampusProfile" Width="1.5" PointX="3.75" PointY="14" Height="4.1377571614583246" />
  7610. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Classmajor" Width="1.5" PointX="5.25" PointY="33.875" Height="4.5073453776041674" />
  7611. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_College" Width="1.5" PointX="1.5" PointY="22.875" Height="4.5073453776041248" />
  7612. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_CollegeProfile" Width="1.5" PointX="3.75" PointY="23.5" Height="3.7681689453124818" />
  7613. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_DataCenterCodeTranslate" Width="1.5" PointX="6" PointY="5.375" Height="1.920227864583353" />
  7614. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Department" Width="1.5" PointX="7.5" PointY="28.125" Height="4.137757161458353" />
  7615. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_DepartmentProfile" Width="1.5" PointX="9.75" PointY="22.75" Height="2.8441984049478606" />
  7616. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Facultymajor" Width="1.5" PointX="0.75" PointY="28.5" Height="5.246521809895853" />
  7617. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Grademajor" Width="1.5" PointX="3" PointY="34.875" Height="4.5073453776041674" />
  7618. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_InSchoolSetting" Width="1.5" PointX="0.75" PointY="4.75" Height="2.474610188802103" />
  7619. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Parameter" Width="1.5" PointX="0.75" PointY="8.75" Height="2.474610188802103" />
  7620. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Recruitstudents" Width="1.5" PointX="13" PointY="39.625" Height="4.5073453776041674" />
  7621. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Schoolyear" Width="1.5" PointX="0.75" PointY="34.875" Height="4.5073453776041674" />
  7622. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_SocialClassmajor" Width="1.5" PointX="7.5" PointY="35.375" Height="1.5506396484374818" />
  7623. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Specialty" Width="1.5" PointX="11.75" PointY="18.75" Height="3.7681689453124818" />
  7624. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Staff" Width="1.5" PointX="9.75" PointY="26.375" Height="7.464051106770853" />
  7625. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StaffManageCampus" Width="1.5" PointX="15" PointY="24.625" Height="2.8441984049479174" />
  7626. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StaffManageCollege" Width="1.5" PointX="15" PointY="21" Height="2.8441984049479174" />
  7627. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StaffManageDepartment" Width="1.5" PointX="18" PointY="28.75" Height="2.8441984049479174" />
  7628. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StaffProfile" Width="1.5" PointX="12" PointY="24.25" Height="5.246521809895853" />
  7629. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_Student" Width="1.5" PointX="9.75" PointY="35" Height="7.8336393229166106" />
  7630. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StudentAccount" Width="1.5" PointX="12" PointY="36.125" Height="2.6594042968749818" />
  7631. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StudentContact" Width="1.5" PointX="12" PointY="30.5" Height="4.3225512695312318" />
  7632. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StudentProfile" Width="1.5" PointX="12" PointY="49.5" Height="5.246521809895853" />
  7633. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_StudentRole" Width="1.5" PointX="7.5" PointY="58.375" Height="2.474610188802103" />
  7634. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_University" Width="1.5" PointX="1.5" PointY="13.5" Height="3.3985807291666674" />
  7635. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_UniversityProfile" Width="1.5" PointX="3.75" PointY="0.75" Height="7.8336393229166106" />
  7636. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_WechatPayList" Width="1.5" PointX="21.25" PointY="39.625" Height="3.2137866210937318" />
  7637. <EntityTypeShape EntityType="EMIS.Entities.DTO.CF_WechatSubscribe" Width="1.5" PointX="12" PointY="55.5" Height="1.7354337565103606" />
  7638. <EntityTypeShape EntityType="EMIS.Entities.DTO.EM_CoursesTime" Width="1.5" PointX="3.75" PointY="19" Height="3.583374837239603" />
  7639. <EntityTypeShape EntityType="EMIS.Entities.DTO.EM_ExaminationMessage" Width="1.5" PointX="21.25" PointY="43.625" Height="2.6594042968749818" />
  7640. <EntityTypeShape EntityType="EMIS.Entities.DTO.EM_TrainingClass" Width="1.5" PointX="7.5" PointY="40.875" Height="3.028992513020853" />
  7641. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_CertisfierDistribute" Width="1.5" PointX="15" PointY="33.375" Height="5.0617277018229174" />
  7642. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_ExaminationScore" Width="1.5" PointX="16" PointY="40" Height="3.9529630533854174" />
  7643. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_LevelSetting" Width="1.5" PointX="15.75" PointY="29.125" Height="3.3985807291666674" />
  7644. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_LevelSettingSubject" Width="1.5" PointX="18" PointY="24.5" Height="2.8441984049478606" />
  7645. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_ProjectScore" Width="1.5" PointX="18" PointY="35.125" Height="3.583374837239603" />
  7646. <EntityTypeShape EntityType="EMIS.Entities.DTO.ER_Resit" Width="1.5" PointX="18.25" PointY="46.75" Height="2.474610188802103" />
  7647. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationBatch" Width="1.5" PointX="3" PointY="40.75" Height="3.3985807291666674" />
  7648. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProject" Width="1.5" PointX="5.25" PointY="39.875" Height="5.0617277018228606" />
  7649. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProjectControl" Width="1.5" PointX="10.5" PointY="44.5" Height="3.7681689453124818" />
  7650. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationBatchProjectPersonControl" Width="1.5" PointX="15" PointY="45.125" Height="3.7681689453124818" />
  7651. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProject" Width="1.5" PointX="3" PointY="45.125" Height="4.5073453776041106" />
  7652. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProjectCollegeControl" Width="1.5" PointX="12.75" PointY="9.75" Height="2.474610188802103" />
  7653. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProjectCountLimit" Width="1.5" PointX="14.75" PointY="9.75" Height="2.8441984049479174" />
  7654. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProjectFee" Width="1.5" PointX="14.5" PointY="50.375" Height="3.2137866210937318" />
  7655. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProjectFeeType" Width="1.5" PointX="16.75" PointY="50.125" Height="3.7681689453124818" />
  7656. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationProjectSubject" Width="1.5" PointX="5.25" PointY="46.25" Height="2.8441984049478606" />
  7657. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationRegistration" Width="1.5" PointX="19" PointY="40.125" Height="5.800904134114603" />
  7658. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationRegistrationConfirm" Width="1.5" PointX="16.75" PointY="54.625" Height="3.2137866210937318" />
  7659. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_ExaminationType" Width="1.5" PointX="0.75" PointY="46.125" Height="2.6594042968749818" />
  7660. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_InvalidReceipt" Width="1.5" PointX="8.75" PointY="18.75" Height="2.2898160807291674" />
  7661. <EntityTypeShape EntityType="EMIS.Entities.DTO.EX_Receipt" Width="1.5" PointX="9.75" PointY="58.625" Height="3.028992513020853" />
  7662. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_Announcement" Width="1.5" PointX="5.25" PointY="50.875" Height="3.7681689453124818" />
  7663. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_AnnouncementType" Width="1.5" PointX="3" PointY="51.375" Height="2.8441984049478606" />
  7664. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_BatchModify" Width="1.5" PointX="6" PointY="8" Height="4.692139485677103" />
  7665. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_BatchModifyEvents" Width="1.5" PointX="15.75" PointY="4.75" Height="2.8441984049479174" />
  7666. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_BatchModifyExpand" Width="1.5" PointX="8.25" PointY="9" Height="2.8441984049478606" />
  7667. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ConfiguretermsExpand" Width="1.5" PointX="13" PointY="5.875" Height="2.8441984049478597" />
  7668. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ConfiguretermsInfo" Width="1.5" PointX="10.75" PointY="5" Height="4.50734537760411" />
  7669. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ContextMenu" Width="1.5" PointX="7.5" PointY="61.875" Height="3.3985807291666674" />
  7670. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ControlItem" Width="1.5" PointX="10.5" PointY="69.75" Height="2.474610188802103" />
  7671. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ControlItemDetail" Width="1.5" PointX="12.75" PointY="62.875" Height="2.2898160807291745" />
  7672. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_Dictionary" Width="1.5" PointX="3.75" PointY="9.5" Height="2.474610188802103" />
  7673. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_DictionaryItem" Width="1.5" PointX="6" PointY="13.5" Height="2.6594042968749818" />
  7674. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_FunctionCode" Width="1.5" PointX="3" PointY="56.375" Height="2.2898160807291674" />
  7675. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_LoginHistory" Width="1.5" PointX="15.75" PointY="13.75" Height="1.7354337565104174" />
  7676. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_MailVerifyCode" Width="1.5" PointX="9.75" PointY="62.5" Height="2.474610188802103" />
  7677. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_Menu" Width="1.5" PointX="5.25" PointY="60.75" Height="3.9529630533853606" />
  7678. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_Role" Width="1.5" PointX="5.25" PointY="55.375" Height="4.3225512695312318" />
  7679. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_RoleDataRange" Width="1.5" PointX="12.5" PointY="58.5" Height="3.028992513020853" />
  7680. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ScheduleJob" Width="1.5" PointX="8.75" PointY="13.875" Height="3.2137866210937318" />
  7681. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ScheduleLog" Width="1.5" PointX="13.25" PointY="13.75" Height="3.3985807291666106" />
  7682. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_Scheduling" Width="1.5" PointX="11" PointY="13.125" Height="4.8769335937499818" />
  7683. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_SerialNumber" Width="1.5" PointX="15.75" PointY="16.75" Height="1.5506396484374818" />
  7684. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_ShareRecord" Width="1.5" PointX="16.75" PointY="8.75" Height="2.8441984049479174" />
  7685. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_User" Width="1.5" PointX="7.5" PointY="53.25" Height="4.137757161458353" />
  7686. <EntityTypeShape EntityType="EMIS.Entities.DTO.Sys_UserScore" Width="1.5" PointX="17.75" PointY="4.75" Height="2.1050219726562318" />
  7687. <EntityTypeShape EntityType="EMIS.Entities.DTO.TestOperate" Width="1.5" PointX="9.75" PointY="65.625" Height="2.6594042968749818" />
  7688. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_ARRANGEMENTS_REFERENCE_EM_COURSETIME" >
  7689. <ConnectorPoint PointX="5.25" PointY="20.797099202473959" />
  7690. <ConnectorPoint PointX="6" PointY="20.797099202473959" />
  7691. </AssociationConnector>
  7692. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_CAMPU_REFERENCE_CF_CAMPU" >
  7693. <ConnectorPoint PointX="3" PointY="18.251152846153843" />
  7694. <ConnectorPoint PointX="3.375" PointY="17.876152846153843" />
  7695. <ConnectorPoint PointX="3.375" PointY="18.513910007612171" />
  7696. <ConnectorPoint PointX="3.7511528461538459" PointY="18.137757161458325" />
  7697. </AssociationConnector>
  7698. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_Campus_REFERENCE_CF_UNIVERSITY" >
  7699. <ConnectorPoint PointX="2.25" PointY="16.898580729166667" />
  7700. <ConnectorPoint PointX="2.25" PointY="18.25" />
  7701. </AssociationConnector>
  7702. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_COLLEGE_REFERENCE_CF_Campus" >
  7703. <ConnectorPoint PointX="2.25" PointY="22.202963053385417" />
  7704. <ConnectorPoint PointX="2.25" PointY="22.875" />
  7705. </AssociationConnector>
  7706. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_Campus" >
  7707. <ConnectorPoint PointX="3" PointY="20.258309949769682" />
  7708. <ConnectorPoint PointX="3.5" PointY="20.258309949769682" />
  7709. <ConnectorPoint PointX="3.5" PointY="22.833374837239603" />
  7710. <ConnectorPoint PointX="9.1666666666666661" PointY="22.833374837239603" />
  7711. <ConnectorPoint PointX="9.3333333333333339" PointY="22.833374837239603" />
  7712. <ConnectorPoint PointX="9.5" PointY="22.833374837239603" />
  7713. <ConnectorPoint PointX="9.5" PointY="25.844198404947861" />
  7714. <ConnectorPoint PointX="11.541666666666666" PointY="25.844198404947861" />
  7715. <ConnectorPoint PointX="11.708333333333334" PointY="25.844198404947861" />
  7716. <ConnectorPoint PointX="11.75" PointY="25.844198404947861" />
  7717. <ConnectorPoint PointX="11.75" PointY="24.094198404947917" />
  7718. <ConnectorPoint PointX="15.75" PointY="24.094198404947917" />
  7719. <ConnectorPoint PointX="15.75" PointY="24.625" />
  7720. </AssociationConnector>
  7721. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_CLASS_REFERENCE_CF_GRADE" >
  7722. <ConnectorPoint PointX="4.5" PointY="36.628672688802084" />
  7723. <ConnectorPoint PointX="5.25" PointY="36.628672688802084" />
  7724. </AssociationConnector>
  7725. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_CLASSMAJOR_REFERENCE_CF_STUDENT" >
  7726. <ConnectorPoint PointX="6.75" PointY="37.685242513020825" />
  7727. <ConnectorPoint PointX="9.2916666666666661" PointY="37.685242513020825" />
  7728. <ConnectorPoint PointX="9.4583333333333339" PointY="37.685242513020825" />
  7729. <ConnectorPoint PointX="9.75" PointY="37.685242513020825" />
  7730. </AssociationConnector>
  7731. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_SOCIA_REFERENCE_CF_CLASS" >
  7732. <ConnectorPoint PointX="6.75" PointY="36.150319824218741" />
  7733. <ConnectorPoint PointX="7.5" PointY="36.150319824218741" />
  7734. </AssociationConnector>
  7735. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_COLLE_REFERENCE_CF_COLLE" >
  7736. <ConnectorPoint PointX="3" PointY="25.384084472656241" />
  7737. <ConnectorPoint PointX="3.75" PointY="25.384084472656241" />
  7738. </AssociationConnector>
  7739. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_DEPARTMENT_REFERENCE_CF_COLLEGE" >
  7740. <ConnectorPoint PointX="2.65625" PointY="27.382345377604125" />
  7741. <ConnectorPoint PointX="2.65625" PointY="28.28125" />
  7742. <ConnectorPoint PointX="7.5" PointY="28.28125" />
  7743. </AssociationConnector>
  7744. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_FACUL_REFERENCE_CF_COLLE" >
  7745. <ConnectorPoint PointX="1.875" PointY="27.382345377604125" />
  7746. <ConnectorPoint PointX="1.875" PointY="28.5" />
  7747. </AssociationConnector>
  7748. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_Staff_CF_College" >
  7749. <ConnectorPoint PointX="3" PointY="27.356507161458303" />
  7750. <ConnectorPoint PointX="8.1666666666666661" PointY="27.356507161458303" />
  7751. <ConnectorPoint PointX="8.3333333333333339" PointY="27.356507161458303" />
  7752. <ConnectorPoint PointX="9.75" PointY="27.356507161458303" />
  7753. </AssociationConnector>
  7754. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_College" >
  7755. <ConnectorPoint PointX="2.656252" PointY="22.875" />
  7756. <ConnectorPoint PointX="2.656252" PointY="22.422099202473959" />
  7757. <ConnectorPoint PointX="3.25" PointY="22.422099202473959" />
  7758. <ConnectorPoint PointX="3.25" PointY="23.083374837239603" />
  7759. <ConnectorPoint PointX="9.25" PointY="23.083374837239603" />
  7760. <ConnectorPoint PointX="9.25" PointY="22.5" />
  7761. <ConnectorPoint PointX="11.5" PointY="22.5" />
  7762. <ConnectorPoint PointX="11.5" PointY="22.768168945312482" />
  7763. <ConnectorPoint PointX="13.416666666666666" PointY="22.768168945312482" />
  7764. <ConnectorPoint PointX="13.583333333333334" PointY="22.768168945312482" />
  7765. <ConnectorPoint PointX="14.625" PointY="22.768168945312482" />
  7766. <ConnectorPoint PointX="14.625" PointY="22.422099202473959" />
  7767. <ConnectorPoint PointX="15" PointY="22.422099202473959" />
  7768. </AssociationConnector>
  7769. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_26_CF_College" >
  7770. <ConnectorPoint PointX="2.4531225" PointY="27.382345377604125" />
  7771. <ConnectorPoint PointX="2.4531225" PointY="45.03086385091143" />
  7772. <ConnectorPoint PointX="4.5108028157552367" PointY="45.03086385091143" />
  7773. <ConnectorPoint PointX="4.6774694824219027" PointY="45.03086385091143" />
  7774. <ConnectorPoint PointX="4.791666666666667" PointY="45.03086385091143" />
  7775. <ConnectorPoint PointX="4.958333333333333" PointY="45.03086385091143" />
  7776. <ConnectorPoint PointX="5.0725305175780973" PointY="45.03086385091143" />
  7777. <ConnectorPoint PointX="5.2391971842447633" PointY="45.03086385091143" />
  7778. <ConnectorPoint PointX="5.9479186666666672" PointY="45.03086385091143" />
  7779. <ConnectorPoint PointX="6.1145853333333333" PointY="45.03086385091143" />
  7780. <ConnectorPoint PointX="7.166666666666667" PointY="45.03086385091143" />
  7781. <ConnectorPoint PointX="7.333333333333333" PointY="45.03086385091143" />
  7782. <ConnectorPoint PointX="9.2916666666666661" PointY="45.03086385091143" />
  7783. <ConnectorPoint PointX="9.4583333333333339" PointY="45.03086385091143" />
  7784. <ConnectorPoint PointX="9.8072891666666653" PointY="45.03086385091143" />
  7785. <ConnectorPoint PointX="10.481774583333335" PointY="45.03086385091143" />
  7786. <ConnectorPoint PointX="10.5" PointY="45.03086385091143" />
  7787. </AssociationConnector>
  7788. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_DataCenterCodeTranslate_Reference_50_Sys_Dictionary" >
  7789. <ConnectorPoint PointX="5.25" PointY="9.5011528461538468" />
  7790. <ConnectorPoint PointX="5.625" PointY="9.1261528461538468" />
  7791. <ConnectorPoint PointX="5.625" PointY="6.3351139322916765" />
  7792. <ConnectorPoint PointX="6" PointY="6.3351139322916765" />
  7793. </AssociationConnector>
  7794. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_DEPAR_REFERENCE_CF_DEPAR" >
  7795. <ConnectorPoint PointX="8.25" PointY="28.125" />
  7796. <ConnectorPoint PointX="8.25" PointY="24.338786621093732" />
  7797. <ConnectorPoint PointX="9.4166666666666661" PointY="24.338786621093732" />
  7798. <ConnectorPoint PointX="9.5833333333333339" PointY="24.338786621093732" />
  7799. <ConnectorPoint PointX="9.75" PointY="24.338786621093732" />
  7800. </AssociationConnector>
  7801. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_Department" >
  7802. <ConnectorPoint PointX="9" PointY="30.193878580729177" />
  7803. <ConnectorPoint PointX="9.75" PointY="30.193878580729177" />
  7804. </AssociationConnector>
  7805. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Department" >
  7806. <ConnectorPoint PointX="8.25" PointY="32.262757161458353" />
  7807. <ConnectorPoint PointX="8.25" PointY="34.089051106770853" />
  7808. <ConnectorPoint PointX="9.1666666666666661" PointY="34.089051106770853" />
  7809. <ConnectorPoint PointX="9.5833333333333339" PointY="34.089051106770853" />
  7810. <ConnectorPoint PointX="11.75" PointY="34.089051106770853" />
  7811. <ConnectorPoint PointX="11.75" PointY="30.25" />
  7812. <ConnectorPoint PointX="15.5" PointY="30.25" />
  7813. <ConnectorPoint PointX="15.5" PointY="28.875" />
  7814. <ConnectorPoint PointX="15.541666666666666" PointY="28.875" />
  7815. <ConnectorPoint PointX="15.708333333333334" PointY="28.875" />
  7816. <ConnectorPoint PointX="16.822916666666668" PointY="28.875" />
  7817. <ConnectorPoint PointX="16.989583333333332" PointY="28.875" />
  7818. <ConnectorPoint PointX="17.625" PointY="28.875" />
  7819. <ConnectorPoint PointX="17.625" PointY="30.172099202473959" />
  7820. <ConnectorPoint PointX="18" PointY="30.172099202473959" />
  7821. </AssociationConnector>
  7822. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_GRADE_REFERENCE_CF_FACUL" >
  7823. <ConnectorPoint PointX="2.25" PointY="31.123260904947927" />
  7824. <ConnectorPoint PointX="2.3697891666666666" PointY="31.123260904947927" />
  7825. <ConnectorPoint PointX="2.5364558333333336" PointY="31.123260904947927" />
  7826. <ConnectorPoint PointX="3.75" PointY="31.123260904947927" />
  7827. <ConnectorPoint PointX="3.75" PointY="34.875" />
  7828. </AssociationConnector>
  7829. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_Grademajor_CF_Schoolyear" >
  7830. <ConnectorPoint PointX="2.25" PointY="37.128672688802084" />
  7831. <ConnectorPoint PointX="2.3697891666666666" PointY="37.128672688802084" />
  7832. <ConnectorPoint PointX="2.5364558333333336" PointY="37.128672688802084" />
  7833. <ConnectorPoint PointX="3" PointY="37.128672688802084" />
  7834. </AssociationConnector>
  7835. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_Recruitstudents_REFERENCE_CF_STUDENT" >
  7836. <ConnectorPoint PointX="11.25" PointY="41.229319661458305" />
  7837. <ConnectorPoint PointX="13" PointY="41.229319661458305" />
  7838. </AssociationConnector>
  7839. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_STUDE_REFERENCE_CF_SCHOO" >
  7840. <ConnectorPoint PointX="1.5" PointY="39.382345377604167" />
  7841. <ConnectorPoint PointX="1.5" PointY="39.625" />
  7842. <ConnectorPoint PointX="1.8229191666666667" PointY="39.625" />
  7843. <ConnectorPoint PointX="1.9895858333333332" PointY="39.625" />
  7844. <ConnectorPoint PointX="2.3697891666666666" PointY="39.625" />
  7845. <ConnectorPoint PointX="2.5364558333333336" PointY="39.625" />
  7846. <ConnectorPoint PointX="9.2916666666666661" PointY="39.625" />
  7847. <ConnectorPoint PointX="9.4583333333333339" PointY="39.625" />
  7848. <ConnectorPoint PointX="9.5" PointY="39.625" />
  7849. <ConnectorPoint PointX="9.5" PointY="43.083639322916611" />
  7850. <ConnectorPoint PointX="9.8072891666666653" PointY="43.083639322916611" />
  7851. <ConnectorPoint PointX="9.9739558333333331" PointY="43.083639322916611" />
  7852. <ConnectorPoint PointX="10.010416666666666" PointY="43.083639322916611" />
  7853. <ConnectorPoint PointX="10.177083333333334" PointY="43.083639322916611" />
  7854. <ConnectorPoint PointX="10.213544166666667" PointY="43.083639322916611" />
  7855. <ConnectorPoint PointX="10.481774583333335" PointY="43.083639322916611" />
  7856. <ConnectorPoint PointX="12.625" PointY="43.083639322916611" />
  7857. <ConnectorPoint PointX="12.625" PointY="42.712084519531288" />
  7858. <ConnectorPoint PointX="13" PointY="42.712084519531288" />
  7859. </AssociationConnector>
  7860. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_52_CF_Schoolyear" >
  7861. <ConnectorPoint PointX="1.5" PointY="34.875" />
  7862. <ConnectorPoint PointX="1.5" PointY="34.625" />
  7863. <ConnectorPoint PointX="2.3697891666666666" PointY="34.625" />
  7864. <ConnectorPoint PointX="2.5364558333333336" PointY="34.625" />
  7865. <ConnectorPoint PointX="2.6666666666666665" PointY="34.625" />
  7866. <ConnectorPoint PointX="2.8333333333333335" PointY="34.625" />
  7867. <ConnectorPoint PointX="3.6666666666666665" PointY="34.625" />
  7868. <ConnectorPoint PointX="3.8333333333333335" PointY="34.625" />
  7869. <ConnectorPoint PointX="5" PointY="34.625" />
  7870. <ConnectorPoint PointX="5" PointY="33.625" />
  7871. <ConnectorPoint PointX="8.1666666666666661" PointY="33.625" />
  7872. <ConnectorPoint PointX="8.3333333333333339" PointY="33.625" />
  7873. <ConnectorPoint PointX="9.1666666666666661" PointY="33.625" />
  7874. <ConnectorPoint PointX="9.4583333333333339" PointY="33.625" />
  7875. <ConnectorPoint PointX="9.5" PointY="33.625" />
  7876. <ConnectorPoint PointX="9.5" PointY="34.339051106770853" />
  7877. <ConnectorPoint PointX="11.416666666666666" PointY="34.339051106770853" />
  7878. <ConnectorPoint PointX="11.583333333333334" PointY="34.339051106770853" />
  7879. <ConnectorPoint PointX="11.75" PointY="34.339051106770853" />
  7880. <ConnectorPoint PointX="11.75" PointY="35.473775634765616" />
  7881. <ConnectorPoint PointX="15" PointY="35.473775634765616" />
  7882. </AssociationConnector>
  7883. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_51_CF_Schoolyear" >
  7884. <ConnectorPoint PointX="2.25" PointY="35.97058434440099" />
  7885. <ConnectorPoint PointX="2.3697891666666666" PointY="35.97058434440099" />
  7886. <ConnectorPoint PointX="2.5364558333333336" PointY="35.97058434440099" />
  7887. <ConnectorPoint PointX="2.75" PointY="35.97058434440099" />
  7888. <ConnectorPoint PointX="2.75" PointY="33.375" />
  7889. <ConnectorPoint PointX="3.6666666666666665" PointY="33.375" />
  7890. <ConnectorPoint PointX="3.8333333333333335" PointY="33.375" />
  7891. <ConnectorPoint PointX="8.1666666666666661" PointY="33.375" />
  7892. <ConnectorPoint PointX="8.3333333333333339" PointY="33.375" />
  7893. <ConnectorPoint PointX="9.25" PointY="33.375" />
  7894. <ConnectorPoint PointX="9.25" PointY="34.214051106770853" />
  7895. <ConnectorPoint PointX="9.2916666666666661" PointY="34.214051106770853" />
  7896. <ConnectorPoint PointX="9.5833333333333339" PointY="34.214051106770853" />
  7897. <ConnectorPoint PointX="11.5" PointY="34.214051106770853" />
  7898. <ConnectorPoint PointX="11.5" PointY="35.072551269531232" />
  7899. <ConnectorPoint PointX="11.541666666666666" PointY="35.072551269531232" />
  7900. <ConnectorPoint PointX="11.833333333333334" PointY="35.072551269531232" />
  7901. <ConnectorPoint PointX="14.75" PointY="35.072551269531232" />
  7902. <ConnectorPoint PointX="14.75" PointY="33.125" />
  7903. <ConnectorPoint PointX="16.666666666666668" PointY="33.125" />
  7904. <ConnectorPoint PointX="16.833333333333332" PointY="33.125" />
  7905. <ConnectorPoint PointX="16.916666666666668" PointY="33.125" />
  7906. <ConnectorPoint PointX="17.083333333333332" PointY="33.125" />
  7907. <ConnectorPoint PointX="18.75" PointY="33.125" />
  7908. <ConnectorPoint PointX="18.75" PointY="35.125" />
  7909. </AssociationConnector>
  7910. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatch_Reference_1_CF_Schoolyear" >
  7911. <ConnectorPoint PointX="1.9062525" PointY="39.382345377604167" />
  7912. <ConnectorPoint PointX="1.9062525" PointY="42.449290364583334" />
  7913. <ConnectorPoint PointX="2.3697891666666666" PointY="42.449290364583334" />
  7914. <ConnectorPoint PointX="2.5364558333333336" PointY="42.449290364583334" />
  7915. <ConnectorPoint PointX="3" PointY="42.449290364583334" />
  7916. </AssociationConnector>
  7917. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_STAFF_REFERENCE_CF_STAFF" >
  7918. <ConnectorPoint PointX="11.25" PointY="27.935760904947927" />
  7919. <ConnectorPoint PointX="12" PointY="27.935760904947927" />
  7920. </AssociationConnector>
  7921. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_Staff_Sys_User" >
  7922. <ConnectorPoint PointX="9.0000000000000018" PointY="53.25" />
  7923. <ConnectorPoint PointX="9.375" PointY="52.875" />
  7924. <ConnectorPoint PointX="9.375" PointY="31.940691790364525" />
  7925. <ConnectorPoint PointX="9.75" PointY="31.940691790364525" />
  7926. </AssociationConnector>
  7927. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageCampus_REFERENCE_CF_STAFF" >
  7928. <ConnectorPoint PointX="11.25" PointY="28.92552498998398" />
  7929. <ConnectorPoint PointX="15.25" PointY="28.92552498998398" />
  7930. <ConnectorPoint PointX="15.25" PointY="28.625" />
  7931. <ConnectorPoint PointX="15.541666666666666" PointY="28.625" />
  7932. <ConnectorPoint PointX="15.708333333333334" PointY="28.625" />
  7933. <ConnectorPoint PointX="15.9999995" PointY="28.625" />
  7934. <ConnectorPoint PointX="15.9999995" PointY="27.469198404947917" />
  7935. </AssociationConnector>
  7936. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageCollege_REFERENCE_CF_STAFF" >
  7937. <ConnectorPoint PointX="10.5" PointY="26.375" />
  7938. <ConnectorPoint PointX="10.5" PointY="26.094198404947861" />
  7939. <ConnectorPoint PointX="11.625" PointY="26.094198404947861" />
  7940. <ConnectorPoint PointX="11.625" PointY="23.018168945312482" />
  7941. <ConnectorPoint PointX="13.5" PointY="23.018168945312482" />
  7942. <ConnectorPoint PointX="13.5" PointY="21.679797601236984" />
  7943. <ConnectorPoint PointX="15" PointY="21.679797601236984" />
  7944. </AssociationConnector>
  7945. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StaffManageDepartment_REFERENCE_CF_Staff" >
  7946. <ConnectorPoint PointX="11.25" PointY="31.344788048377417" />
  7947. <ConnectorPoint PointX="11.666666666666666" PointY="31.344788048377417" />
  7948. <ConnectorPoint PointX="11.833333333333334" PointY="31.344788048377417" />
  7949. <ConnectorPoint PointX="15.625" PointY="31.344788048377417" />
  7950. <ConnectorPoint PointX="15.625" PointY="28.5" />
  7951. <ConnectorPoint PointX="15.916666166666666" PointY="28.5" />
  7952. <ConnectorPoint PointX="16.083332833333333" PointY="28.5" />
  7953. <ConnectorPoint PointX="16.822916666666668" PointY="28.5" />
  7954. <ConnectorPoint PointX="16.989583333333332" PointY="28.5" />
  7955. <ConnectorPoint PointX="18.75" PointY="28.5" />
  7956. <ConnectorPoint PointX="18.75" PointY="28.75" />
  7957. </AssociationConnector>
  7958. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_STUDENT_REFERENCE_SYS_USER" >
  7959. <ConnectorPoint PointX="9" PointY="55.350131080729113" />
  7960. <ConnectorPoint PointX="9.8072891666666653" PointY="55.350131080729113" />
  7961. <ConnectorPoint PointX="9.9739558333333331" PointY="55.350131080729113" />
  7962. <ConnectorPoint PointX="10.09375" PointY="55.350131080729113" />
  7963. <ConnectorPoint PointX="10.09375" PointY="42.833639322916611" />
  7964. </AssociationConnector>
  7965. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StudentAccount_REFERENCE_CF_STUDENT" >
  7966. <ConnectorPoint PointX="11.25" PointY="37.454702148437491" />
  7967. <ConnectorPoint PointX="12" PointY="37.454702148437491" />
  7968. </AssociationConnector>
  7969. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StudentContact_REFERENCE_CF_STUDENT" >
  7970. <ConnectorPoint PointX="11.250000000000002" PointY="35" />
  7971. <ConnectorPoint PointX="11.44107443490112" PointY="34.808925565098882" />
  7972. <ConnectorPoint PointX="11.558925565098878" PointY="34.691074434901118" />
  7973. <ConnectorPoint PointX="11.625" PointY="34.625" />
  7974. <ConnectorPoint PointX="11.625" PointY="35.197551269531232" />
  7975. <ConnectorPoint PointX="11.69107443490112" PointY="35.131476834630114" />
  7976. <ConnectorPoint PointX="11.808925565098878" PointY="35.01362570443235" />
  7977. <ConnectorPoint PointX="12" PointY="34.822551269531232" />
  7978. </AssociationConnector>
  7979. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StudentProfile_REFERENCE_CF_STUDENT" >
  7980. <ConnectorPoint PointX="10.2968775" PointY="42.833639322916611" />
  7981. <ConnectorPoint PointX="10.2968775" PointY="52.123260904947927" />
  7982. <ConnectorPoint PointX="12" PointY="52.123260904947927" />
  7983. </AssociationConnector>
  7984. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_WechatSubscribe_Reference_43_CF_Student" >
  7985. <ConnectorPoint PointX="9.8906225" PointY="42.833639322916611" />
  7986. <ConnectorPoint PointX="9.8906225" PointY="56.36771687825518" />
  7987. <ConnectorPoint PointX="10.588541666666666" PointY="56.36771687825518" />
  7988. <ConnectorPoint PointX="10.755208333333334" PointY="56.36771687825518" />
  7989. <ConnectorPoint PointX="12" PointY="56.36771687825518" />
  7990. </AssociationConnector>
  7991. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_42_CF_Student" >
  7992. <ConnectorPoint PointX="11.25" PointY="35.830637817382808" />
  7993. <ConnectorPoint PointX="15" PointY="35.830637817382808" />
  7994. </AssociationConnector>
  7995. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_35_CF_Student" >
  7996. <ConnectorPoint PointX="11.25" PointY="39.204702148437491" />
  7997. <ConnectorPoint PointX="15.385417166666665" PointY="39.204702148437491" />
  7998. <ConnectorPoint PointX="15.552083833333333" PointY="39.204702148437491" />
  7999. <ConnectorPoint PointX="15.666666666666666" PointY="39.204702148437491" />
  8000. <ConnectorPoint PointX="15.833333333333334" PointY="39.204702148437491" />
  8001. <ConnectorPoint PointX="17.03125" PointY="39.204702148437491" />
  8002. <ConnectorPoint PointX="17.03125" PointY="40" />
  8003. </AssociationConnector>
  8004. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_38_CF_Student" >
  8005. <ConnectorPoint PointX="11.25" PointY="38.9945507226563" />
  8006. <ConnectorPoint PointX="15.385417166666665" PointY="38.9945507226563" />
  8007. <ConnectorPoint PointX="15.552083833333333" PointY="38.9945507226563" />
  8008. <ConnectorPoint PointX="15.666666666666666" PointY="38.9945507226563" />
  8009. <ConnectorPoint PointX="15.833333333333334" PointY="38.9945507226563" />
  8010. <ConnectorPoint PointX="18.010416666666668" PointY="38.9945507226563" />
  8011. <ConnectorPoint PointX="18.177083333333332" PointY="38.9945507226563" />
  8012. <ConnectorPoint PointX="18.46875" PointY="38.9945507226563" />
  8013. <ConnectorPoint PointX="18.46875" PointY="38.7083748372396" />
  8014. </AssociationConnector>
  8015. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_29_CF_Student" >
  8016. <ConnectorPoint PointX="10.398441250000001" PointY="42.833639322916611" />
  8017. <ConnectorPoint PointX="10.398441250000001" PointY="48.611918945312482" />
  8018. <ConnectorPoint PointX="14.635416666666666" PointY="48.611918945312482" />
  8019. <ConnectorPoint PointX="14.802083333333334" PointY="48.611918945312482" />
  8020. <ConnectorPoint PointX="15" PointY="48.611918945312482" />
  8021. </AssociationConnector>
  8022. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_CF_Student" >
  8023. <ConnectorPoint PointX="11.25" PointY="39.414853574218682" />
  8024. <ConnectorPoint PointX="15.385417166666665" PointY="39.414853574218682" />
  8025. <ConnectorPoint PointX="15.552083833333333" PointY="39.414853574218682" />
  8026. <ConnectorPoint PointX="15.666666666666666" PointY="39.414853574218682" />
  8027. <ConnectorPoint PointX="15.833333333333334" PointY="39.414853574218682" />
  8028. <ConnectorPoint PointX="16.947916666666668" PointY="39.414853574218682" />
  8029. <ConnectorPoint PointX="17.114583333333332" PointY="39.414853574218682" />
  8030. <ConnectorPoint PointX="18.010416666666668" PointY="39.414853574218682" />
  8031. <ConnectorPoint PointX="18.177083333333332" PointY="39.414853574218682" />
  8032. <ConnectorPoint PointX="20.03125" PointY="39.414853574218682" />
  8033. <ConnectorPoint PointX="20.03125" PointY="40.125" />
  8034. </AssociationConnector>
  8035. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_StudentRole_REFERENCE_SYS_ROLE" >
  8036. <ConnectorPoint PointX="6.75" PointY="59.036275634765616" />
  8037. <ConnectorPoint PointX="7.5" PointY="59.036275634765616" />
  8038. </AssociationConnector>
  8039. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_UNIVE_REFERENCE_CF_UNIVE" >
  8040. <ConnectorPoint PointX="2.65625" PointY="13.5" />
  8041. <ConnectorPoint PointX="2.65625" PointY="2.71875" />
  8042. <ConnectorPoint PointX="3.75" PointY="2.71875" />
  8043. </AssociationConnector>
  8044. <AssociationConnector Association="EMIS.Entities.DTO.FK_CF_WechatPayList_Reference_49_EX_ExaminationRegistration" >
  8045. <ConnectorPoint PointX="20.5" PointY="41.481893310546866" />
  8046. <ConnectorPoint PointX="21.25" PointY="41.481893310546866" />
  8047. </AssociationConnector>
  8048. <AssociationConnector Association="EMIS.Entities.DTO.FK_EM_EXAMI_REFERENCE_EX_EXAMI" >
  8049. <ConnectorPoint PointX="20.5" PointY="44.7754520670573" />
  8050. <ConnectorPoint PointX="21.25" PointY="44.7754520670573" />
  8051. </AssociationConnector>
  8052. <AssociationConnector Association="EMIS.Entities.DTO.FK_EM_TrainingClass_Reference_56_EX_ExaminationBatchProject" >
  8053. <ConnectorPoint PointX="6.75" PointY="42.389496256510427" />
  8054. <ConnectorPoint PointX="7.5" PointY="42.389496256510427" />
  8055. </AssociationConnector>
  8056. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_CertisfierDistribute_Reference_41_EX_ExaminationProject" >
  8057. <ConnectorPoint PointX="4.5" PointY="47.378672688802055" />
  8058. <ConnectorPoint PointX="4.666666666666667" PointY="47.378672688802055" />
  8059. <ConnectorPoint PointX="4.833333333333333" PointY="47.378672688802055" />
  8060. <ConnectorPoint PointX="5" PointY="47.378672688802055" />
  8061. <ConnectorPoint PointX="5" PointY="46" />
  8062. <ConnectorPoint PointX="9.2916666666666661" PointY="46" />
  8063. <ConnectorPoint PointX="9.4583333333333339" PointY="46" />
  8064. <ConnectorPoint PointX="9.8072891666666653" PointY="46" />
  8065. <ConnectorPoint PointX="9.9739558333333331" PointY="46" />
  8066. <ConnectorPoint PointX="10.010416666666666" PointY="46" />
  8067. <ConnectorPoint PointX="10.177083333333334" PointY="46" />
  8068. <ConnectorPoint PointX="10.1875" PointY="46" />
  8069. <ConnectorPoint PointX="10.1875" PointY="44.25" />
  8070. <ConnectorPoint PointX="10.213544166666667" PointY="44.25" />
  8071. <ConnectorPoint PointX="10.481774583333335" PointY="44.25" />
  8072. <ConnectorPoint PointX="12.416666666666666" PointY="44.25" />
  8073. <ConnectorPoint PointX="12.583333333333334" PointY="44.25" />
  8074. <ConnectorPoint PointX="12.75" PointY="44.25" />
  8075. <ConnectorPoint PointX="12.75" PointY="44.875" />
  8076. <ConnectorPoint PointX="14.635416666666666" PointY="44.875" />
  8077. <ConnectorPoint PointX="14.802083333333334" PointY="44.875" />
  8078. <ConnectorPoint PointX="15.151041916666665" PointY="44.875" />
  8079. <ConnectorPoint PointX="15.317708583333333" PointY="44.875" />
  8080. <ConnectorPoint PointX="15.468750499999999" PointY="44.875" />
  8081. <ConnectorPoint PointX="15.468750499999999" PointY="38.436727701822917" />
  8082. </AssociationConnector>
  8083. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ExaminationScore_Reference_34_EX_ExaminationBatchProject" >
  8084. <ConnectorPoint PointX="6.75" PointY="44.34375" />
  8085. <ConnectorPoint PointX="7.166666666666667" PointY="44.34375" />
  8086. <ConnectorPoint PointX="7.333333333333333" PointY="44.34375" />
  8087. <ConnectorPoint PointX="9.2916666666666661" PointY="44.34375" />
  8088. <ConnectorPoint PointX="9.4583333333333339" PointY="44.34375" />
  8089. <ConnectorPoint PointX="9.8072891666666653" PointY="44.34375" />
  8090. <ConnectorPoint PointX="10.481774583333335" PointY="44.34375" />
  8091. <ConnectorPoint PointX="12.416666666666666" PointY="44.34375" />
  8092. <ConnectorPoint PointX="12.583333333333334" PointY="44.34375" />
  8093. <ConnectorPoint PointX="12.666666666666666" PointY="44.34375" />
  8094. <ConnectorPoint PointX="12.958333333333334" PointY="44.34375" />
  8095. <ConnectorPoint PointX="15.385417166666665" PointY="44.34375" />
  8096. <ConnectorPoint PointX="15.552083833333333" PointY="44.34375" />
  8097. <ConnectorPoint PointX="15.666666666666666" PointY="44.34375" />
  8098. <ConnectorPoint PointX="15.833333333333334" PointY="44.34375" />
  8099. <ConnectorPoint PointX="16.75" PointY="44.34375" />
  8100. <ConnectorPoint PointX="16.75" PointY="43.952963053385417" />
  8101. </AssociationConnector>
  8102. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_Resit_Reference_40_ER_ExaminationScore" >
  8103. <ConnectorPoint PointX="17.1562525" PointY="43.952963053385417" />
  8104. <ConnectorPoint PointX="17.1562525" PointY="49.090139567057292" />
  8105. <ConnectorPoint PointX="17.744791666666668" PointY="49.090139567057292" />
  8106. <ConnectorPoint PointX="17.911458333333332" PointY="49.090139567057292" />
  8107. <ConnectorPoint PointX="18.010416666666668" PointY="49.090139567057292" />
  8108. <ConnectorPoint PointX="18.177083333333332" PointY="49.090139567057292" />
  8109. <ConnectorPoint PointX="18.25" PointY="49.090139567057292" />
  8110. </AssociationConnector>
  8111. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_LevelSetting_Reference_33_EX_ExaminationProject" >
  8112. <ConnectorPoint PointX="4.5" PointY="48.536761033203135" />
  8113. <ConnectorPoint PointX="4.75" PointY="48.536761033203135" />
  8114. <ConnectorPoint PointX="4.75" PointY="45.75" />
  8115. <ConnectorPoint PointX="9.2916666666666661" PointY="45.75" />
  8116. <ConnectorPoint PointX="9.4583333333333339" PointY="45.75" />
  8117. <ConnectorPoint PointX="9.8072891666666653" PointY="45.75" />
  8118. <ConnectorPoint PointX="9.9739558333333331" PointY="45.75" />
  8119. <ConnectorPoint PointX="10" PointY="45.75" />
  8120. <ConnectorPoint PointX="10" PointY="44" />
  8121. <ConnectorPoint PointX="10.010416666666666" PointY="44" />
  8122. <ConnectorPoint PointX="10.177083333333334" PointY="44" />
  8123. <ConnectorPoint PointX="10.213544166666667" PointY="44" />
  8124. <ConnectorPoint PointX="10.481774583333335" PointY="44" />
  8125. <ConnectorPoint PointX="12.5" PointY="44" />
  8126. <ConnectorPoint PointX="12.5" PointY="44.625" />
  8127. <ConnectorPoint PointX="12.666666666666666" PointY="44.625" />
  8128. <ConnectorPoint PointX="12.833333333333334" PointY="44.625" />
  8129. <ConnectorPoint PointX="15.151041916666665" PointY="44.625" />
  8130. <ConnectorPoint PointX="15.317708583333333" PointY="44.625" />
  8131. <ConnectorPoint PointX="15.385417166666665" PointY="44.625" />
  8132. <ConnectorPoint PointX="15.552083833333333" PointY="44.625" />
  8133. <ConnectorPoint PointX="15.75" PointY="44.625" />
  8134. <ConnectorPoint PointX="15.75" PointY="38.686727701822917" />
  8135. <ConnectorPoint PointX="16.75" PointY="38.686727701822917" />
  8136. <ConnectorPoint PointX="16.75" PointY="32.898580729166667" />
  8137. <ConnectorPoint PointX="16.5" PointY="32.898580729166667" />
  8138. <ConnectorPoint PointX="16.5" PointY="32.523580729166667" />
  8139. </AssociationConnector>
  8140. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_LevelSettingSubject_Reference_36_ER_LevelSetting" >
  8141. <ConnectorPoint PointX="16.90625" PointY="29.125" />
  8142. <ConnectorPoint PointX="16.90625" PointY="24.53125" />
  8143. <ConnectorPoint PointX="18" PointY="24.53125" />
  8144. </AssociationConnector>
  8145. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_39_ER_LevelSetting" >
  8146. <ConnectorPoint PointX="17" PointY="32.523580729166667" />
  8147. <ConnectorPoint PointX="17" PointY="38.592977701822917" />
  8148. <ConnectorPoint PointX="18" PointY="38.592977701822917" />
  8149. </AssociationConnector>
  8150. <AssociationConnector Association="EMIS.Entities.DTO.FK_ER_ProjectScore_Reference_37_EX_ExaminationProject" >
  8151. <ConnectorPoint PointX="4.5" PointY="49.362305094401052" />
  8152. <ConnectorPoint PointX="9.2916666666666661" PointY="49.362305094401052" />
  8153. <ConnectorPoint PointX="9.4583333333333339" PointY="49.362305094401052" />
  8154. <ConnectorPoint PointX="9.8072891666666653" PointY="49.362305094401052" />
  8155. <ConnectorPoint PointX="9.9739558333333331" PointY="49.362305094401052" />
  8156. <ConnectorPoint PointX="10.010416666666666" PointY="49.362305094401052" />
  8157. <ConnectorPoint PointX="10.177083333333334" PointY="49.362305094401052" />
  8158. <ConnectorPoint PointX="10.213544166666667" PointY="49.362305094401052" />
  8159. <ConnectorPoint PointX="10.380210833333335" PointY="49.362305094401052" />
  8160. <ConnectorPoint PointX="14.494789166666665" PointY="49.362305094401052" />
  8161. <ConnectorPoint PointX="14.802083333333334" PointY="49.362305094401052" />
  8162. <ConnectorPoint PointX="15.416666666666666" PointY="49.362305094401052" />
  8163. <ConnectorPoint PointX="15.583333333333334" PointY="49.362305094401052" />
  8164. <ConnectorPoint PointX="17.744791666666668" PointY="49.362305094401052" />
  8165. <ConnectorPoint PointX="17.911458333333332" PointY="49.362305094401052" />
  8166. <ConnectorPoint PointX="18.09375" PointY="49.362305094401052" />
  8167. <ConnectorPoint PointX="18.09375" PointY="38.7083748372396" />
  8168. </AssociationConnector>
  8169. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_2_EX_ExaminationBatch" >
  8170. <ConnectorPoint PointX="4.5" PointY="42.449290364583334" />
  8171. <ConnectorPoint PointX="5.25" PointY="42.449290364583334" />
  8172. </AssociationConnector>
  8173. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProject_Reference_22_EX_ExaminationProject" >
  8174. <ConnectorPoint PointX="4.5000000000000018" PointY="45.125" />
  8175. <ConnectorPoint PointX="4.875" PointY="44.75" />
  8176. <ConnectorPoint PointX="4.875" PointY="45.311727701822861" />
  8177. <ConnectorPoint PointX="5.25" PointY="44.936727701822861" />
  8178. </AssociationConnector>
  8179. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_23_EX_ExaminationBatchProject" >
  8180. <ConnectorPoint PointX="6.75" PointY="44.71836385091143" />
  8181. <ConnectorPoint PointX="7.166666666666667" PointY="44.71836385091143" />
  8182. <ConnectorPoint PointX="7.333333333333333" PointY="44.71836385091143" />
  8183. <ConnectorPoint PointX="9.2916666666666661" PointY="44.71836385091143" />
  8184. <ConnectorPoint PointX="9.4583333333333339" PointY="44.71836385091143" />
  8185. <ConnectorPoint PointX="9.8072891666666653" PointY="44.71836385091143" />
  8186. <ConnectorPoint PointX="10.481774583333335" PointY="44.71836385091143" />
  8187. <ConnectorPoint PointX="10.5" PointY="44.71836385091143" />
  8188. </AssociationConnector>
  8189. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_27_EX_ExaminationBatchProject" >
  8190. <ConnectorPoint PointX="6.75" PointY="44.375002499999937" />
  8191. <ConnectorPoint PointX="7.166666666666667" PointY="44.375002499999937" />
  8192. <ConnectorPoint PointX="7.333333333333333" PointY="44.375002499999937" />
  8193. <ConnectorPoint PointX="9.2916666666666661" PointY="44.375002499999937" />
  8194. <ConnectorPoint PointX="9.4583333333333339" PointY="44.375002499999937" />
  8195. <ConnectorPoint PointX="9.8072891666666653" PointY="44.375002499999937" />
  8196. <ConnectorPoint PointX="10.481774583333335" PointY="44.375002499999937" />
  8197. <ConnectorPoint PointX="12.416666666666666" PointY="44.375002499999937" />
  8198. <ConnectorPoint PointX="12.583333333333334" PointY="44.375002499999937" />
  8199. <ConnectorPoint PointX="12.666666666666666" PointY="44.375002499999937" />
  8200. <ConnectorPoint PointX="12.833333333333334" PointY="44.375002499999937" />
  8201. <ConnectorPoint PointX="15.23437525" PointY="44.375002499999937" />
  8202. <ConnectorPoint PointX="15.23437525" PointY="45.125" />
  8203. </AssociationConnector>
  8204. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationBatchProject" >
  8205. <ConnectorPoint PointX="6.031252" PointY="44.936727701822861" />
  8206. <ConnectorPoint PointX="6.031252" PointY="45.436727701822861" />
  8207. <ConnectorPoint PointX="7.25" PointY="45.436727701822861" />
  8208. <ConnectorPoint PointX="7.25" PointY="44.153992513020853" />
  8209. <ConnectorPoint PointX="9.2916666666666661" PointY="44.153992513020853" />
  8210. <ConnectorPoint PointX="9.4583333333333339" PointY="44.153992513020853" />
  8211. <ConnectorPoint PointX="9.8072891666666653" PointY="44.153992513020853" />
  8212. <ConnectorPoint PointX="10.177083333333334" PointY="44.153992513020853" />
  8213. <ConnectorPoint PointX="10.213544166666667" PointY="44.153992513020853" />
  8214. <ConnectorPoint PointX="10.481774583333335" PointY="44.153992513020853" />
  8215. <ConnectorPoint PointX="12.416666666666666" PointY="44.153992513020853" />
  8216. <ConnectorPoint PointX="12.583333333333334" PointY="44.153992513020853" />
  8217. <ConnectorPoint PointX="12.875" PointY="44.153992513020853" />
  8218. <ConnectorPoint PointX="12.875" PointY="44.444845377604167" />
  8219. <ConnectorPoint PointX="15.385417166666665" PointY="44.444845377604167" />
  8220. <ConnectorPoint PointX="15.552083833333333" PointY="44.444845377604167" />
  8221. <ConnectorPoint PointX="15.666666666666666" PointY="44.444845377604167" />
  8222. <ConnectorPoint PointX="15.833333333333334" PointY="44.444845377604167" />
  8223. <ConnectorPoint PointX="17.072919166666669" PointY="44.444845377604167" />
  8224. <ConnectorPoint PointX="17.239585833333333" PointY="44.444845377604167" />
  8225. <ConnectorPoint PointX="18.010416666666668" PointY="44.444845377604167" />
  8226. <ConnectorPoint PointX="18.177083333333332" PointY="44.444845377604167" />
  8227. <ConnectorPoint PointX="18.625" PointY="44.444845377604167" />
  8228. <ConnectorPoint PointX="18.625" PointY="43.0254520670573" />
  8229. <ConnectorPoint PointX="19" PointY="43.0254520670573" />
  8230. </AssociationConnector>
  8231. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectControl_Reference_24_EX_ExaminationProjectFee" >
  8232. <ConnectorPoint PointX="14.71875" PointY="50.375" />
  8233. <ConnectorPoint PointX="14.71875" PointY="44.75" />
  8234. <ConnectorPoint PointX="12.833333333333334" PointY="44.75" />
  8235. <ConnectorPoint PointX="12.666666666666666" PointY="44.75" />
  8236. <ConnectorPoint PointX="12" PointY="44.75" />
  8237. </AssociationConnector>
  8238. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationBatchProjectPersonControl_Reference_28_EX_ExaminationProjectFee" >
  8239. <ConnectorPoint PointX="15.5" PointY="50.375" />
  8240. <ConnectorPoint PointX="15.5" PointY="48.893168945312482" />
  8241. </AssociationConnector>
  8242. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectFee_Reference_3_EX_ExaminationProject" >
  8243. <ConnectorPoint PointX="4.5" PointY="49.228249249674406" />
  8244. <ConnectorPoint PointX="9.2916666666666661" PointY="49.228249249674406" />
  8245. <ConnectorPoint PointX="9.4583333333333339" PointY="49.228249249674406" />
  8246. <ConnectorPoint PointX="9.8072891666666653" PointY="49.228249249674406" />
  8247. <ConnectorPoint PointX="9.9739558333333331" PointY="49.228249249674406" />
  8248. <ConnectorPoint PointX="10.010416666666666" PointY="49.228249249674406" />
  8249. <ConnectorPoint PointX="10.177083333333334" PointY="49.228249249674406" />
  8250. <ConnectorPoint PointX="10.213544166666667" PointY="49.228249249674406" />
  8251. <ConnectorPoint PointX="10.380210833333335" PointY="49.228249249674406" />
  8252. <ConnectorPoint PointX="14.5781225" PointY="49.228249249674406" />
  8253. <ConnectorPoint PointX="14.5781225" PointY="50.375" />
  8254. </AssociationConnector>
  8255. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectSubject_Reference_7_EX_ExaminationProject" >
  8256. <ConnectorPoint PointX="4.5" PointY="46.751836344401028" />
  8257. <ConnectorPoint PointX="4.666666666666667" PointY="46.751836344401028" />
  8258. <ConnectorPoint PointX="4.833333333333333" PointY="46.751836344401028" />
  8259. <ConnectorPoint PointX="4.916666666666667" PointY="46.751836344401028" />
  8260. <ConnectorPoint PointX="5.083333333333333" PointY="46.751836344401028" />
  8261. <ConnectorPoint PointX="5.25" PointY="46.751836344401028" />
  8262. </AssociationConnector>
  8263. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationSubject_Reference_EX_ExaminationType" >
  8264. <ConnectorPoint PointX="2.25" PointY="47.454702148437491" />
  8265. <ConnectorPoint PointX="3" PointY="47.454702148437491" />
  8266. </AssociationConnector>
  8267. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationProjectFeeType_Reference_20_EX_ExaminationProjectFee" >
  8268. <ConnectorPoint PointX="16" PointY="51.981893310546866" />
  8269. <ConnectorPoint PointX="16.75" PointY="51.981893310546866" />
  8270. </AssociationConnector>
  8271. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_Reference_31_EX_ExaminationProjectFeeType" >
  8272. <ConnectorPoint PointX="17.828125" PointY="50.125" />
  8273. <ConnectorPoint PointX="17.828125" PointY="45.185374755859385" />
  8274. <ConnectorPoint PointX="18.010416666666668" PointY="45.185374755859385" />
  8275. <ConnectorPoint PointX="18.177083333333332" PointY="45.185374755859385" />
  8276. <ConnectorPoint PointX="19" PointY="45.185374755859385" />
  8277. </AssociationConnector>
  8278. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistration_EX_ExaminationRegistrationConfirm" >
  8279. <ConnectorPoint PointX="18.25" PointY="56.231893310546866" />
  8280. <ConnectorPoint PointX="20.15625" PointY="56.231893310546866" />
  8281. <ConnectorPoint PointX="20.15625" PointY="45.9259041341146" />
  8282. </AssociationConnector>
  8283. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_ExaminationRegistrationConfirm_Sys_User" >
  8284. <ConnectorPoint PointX="9" PointY="55.017076445312483" />
  8285. <ConnectorPoint PointX="9.8072891666666653" PointY="55.017076445312483" />
  8286. <ConnectorPoint PointX="9.9739558333333331" PointY="55.017076445312483" />
  8287. <ConnectorPoint PointX="10.010416666666666" PointY="55.017076445312483" />
  8288. <ConnectorPoint PointX="10.177083333333334" PointY="55.017076445312483" />
  8289. <ConnectorPoint PointX="10.588541666666666" PointY="55.017076445312483" />
  8290. <ConnectorPoint PointX="10.755208333333334" PointY="55.017076445312483" />
  8291. <ConnectorPoint PointX="16.75" PointY="55.017076445312483" />
  8292. </AssociationConnector>
  8293. <AssociationConnector Association="EMIS.Entities.DTO.FK_EX_Receipt_REFERENCE_SYS_USER" >
  8294. <ConnectorPoint PointX="9" PointY="54.133538222656242" />
  8295. <ConnectorPoint PointX="9.8072891666666653" PointY="54.133538222656242" />
  8296. <ConnectorPoint PointX="9.9739558333333331" PointY="54.133538222656242" />
  8297. <ConnectorPoint PointX="10.010416666666666" PointY="54.133538222656242" />
  8298. <ConnectorPoint PointX="10.177083333333334" PointY="54.133538222656242" />
  8299. <ConnectorPoint PointX="10.671875" PointY="54.133538222656242" />
  8300. <ConnectorPoint PointX="10.671875" PointY="58.625" />
  8301. </AssociationConnector>
  8302. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_Announcement_REFERENCE_Sys_AnnouncementType" >
  8303. <ConnectorPoint PointX="4.5" PointY="52.79709920247393" />
  8304. <ConnectorPoint PointX="5.25" PointY="52.79709920247393" />
  8305. </AssociationConnector>
  8306. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_BATC" >
  8307. <ConnectorPoint PointX="7.5" PointY="10.42209920247393" />
  8308. <ConnectorPoint PointX="8.25" PointY="10.42209920247393" />
  8309. </AssociationConnector>
  8310. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_BATC_REFERENCE_SYS_DICT" >
  8311. <ConnectorPoint PointX="5.25" PointY="10.769134017478026" />
  8312. <ConnectorPoint PointX="6" PointY="10.769134017478026" />
  8313. </AssociationConnector>
  8314. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_Configureterms" >
  8315. <ConnectorPoint PointX="12.25" PointY="7.29709920247393" />
  8316. <ConnectorPoint PointX="13" PointY="7.29709920247393" />
  8317. </AssociationConnector>
  8318. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_FUNCTION" >
  8319. <ConnectorPoint PointX="3.75" PointY="58.664816080729167" />
  8320. <ConnectorPoint PointX="3.75" PointY="65.019521891276014" />
  8321. <ConnectorPoint PointX="7.5" PointY="65.019521891276014" />
  8322. </AssociationConnector>
  8323. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_CONTEXTMENU_REFERENCE_SYS_MENU" >
  8324. <ConnectorPoint PointX="6.75" PointY="63.28898152669268" />
  8325. <ConnectorPoint PointX="7.5" PointY="63.28898152669268" />
  8326. </AssociationConnector>
  8327. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ContextMenu" >
  8328. <ConnectorPoint PointX="9" PointY="65.100963134765635" />
  8329. <ConnectorPoint PointX="9.2916666666666661" PointY="65.100963134765635" />
  8330. <ConnectorPoint PointX="9.4583333333333339" PointY="65.100963134765635" />
  8331. <ConnectorPoint PointX="12.75" PointY="65.100963134765635" />
  8332. </AssociationConnector>
  8333. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_ControlItem" >
  8334. <ConnectorPoint PointX="11.65625" PointY="69.75" />
  8335. <ConnectorPoint PointX="11.65625" PointY="65.132215634765686" />
  8336. <ConnectorPoint PointX="12.75" PointY="65.132215634765686" />
  8337. </AssociationConnector>
  8338. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_ControlItemDetail_Sys_Menu" >
  8339. <ConnectorPoint PointX="6.75" PointY="61.764496256510427" />
  8340. <ConnectorPoint PointX="9.2916666666666661" PointY="61.764496256510427" />
  8341. <ConnectorPoint PointX="9.6145833333333339" PointY="61.764496256510427" />
  8342. <ConnectorPoint PointX="14.15625" PointY="61.764496256510427" />
  8343. <ConnectorPoint PointX="14.15625" PointY="62.875" />
  8344. </AssociationConnector>
  8345. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_DictionaryItem_Sys_Dictionary" >
  8346. <ConnectorPoint PointX="5.25" PointY="11.974610188802103" />
  8347. <ConnectorPoint PointX="5.625" PointY="12.349610188802103" />
  8348. <ConnectorPoint PointX="5.625" PointY="14.829702148437491" />
  8349. <ConnectorPoint PointX="6" PointY="14.829702148437491" />
  8350. </AssociationConnector>
  8351. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_MENU_REFERENCE_SYS_FUNC" >
  8352. <ConnectorPoint PointX="4.1562525" PointY="58.664816080729167" />
  8353. <ConnectorPoint PointX="4.1562525" PointY="62.72648152669268" />
  8354. <ConnectorPoint PointX="5.25" PointY="62.72648152669268" />
  8355. </AssociationConnector>
  8356. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_MailVerifyCode_REFERENCE_SYS_USER" >
  8357. <ConnectorPoint PointX="9" PointY="57.330063853766049" />
  8358. <ConnectorPoint PointX="9.53125" PointY="57.861313853766049" />
  8359. <ConnectorPoint PointX="9.53125" PointY="63.737305094401052" />
  8360. <ConnectorPoint PointX="9.75" PointY="63.737305094401052" />
  8361. </AssociationConnector>
  8362. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_MENU" >
  8363. <ConnectorPoint PointX="6.75" PointY="61.788498128255213" />
  8364. <ConnectorPoint PointX="9.2916666666666661" PointY="61.788498128255213" />
  8365. <ConnectorPoint PointX="9.6145833333333339" PointY="61.788498128255213" />
  8366. <ConnectorPoint PointX="12.59375" PointY="61.788498128255213" />
  8367. <ConnectorPoint PointX="12.59375" PointY="61.528992513020853" />
  8368. </AssociationConnector>
  8369. <AssociationConnector Association="EMIS.Entities.DTO.FK_SYS_ROLEDATARANGE_REFERENCE_SYS_ROLE" >
  8370. <ConnectorPoint PointX="6.75" PointY="57.881378580729177" />
  8371. <ConnectorPoint PointX="9.2916666666666661" PointY="57.881378580729177" />
  8372. <ConnectorPoint PointX="9.4583333333333339" PointY="57.881378580729177" />
  8373. <ConnectorPoint PointX="10.588541666666666" PointY="57.881378580729177" />
  8374. <ConnectorPoint PointX="10.755208333333334" PointY="57.881378580729177" />
  8375. <ConnectorPoint PointX="13.78125" PointY="57.881378580729177" />
  8376. <ConnectorPoint PointX="13.78125" PointY="58.5" />
  8377. </AssociationConnector>
  8378. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_ScheduleJob_Sys_Scheduling" >
  8379. <ConnectorPoint PointX="10.25" PointY="15.481893310546866" />
  8380. <ConnectorPoint PointX="11" PointY="15.481893310546866" />
  8381. </AssociationConnector>
  8382. <AssociationConnector Association="EMIS.Entities.DTO.FK_Sys_Scheduling_Sys_ScheduleLog" >
  8383. <ConnectorPoint PointX="12.5" PointY="15.449290364583305" />
  8384. <ConnectorPoint PointX="13.25" PointY="15.449290364583305" />
  8385. </AssociationConnector>
  8386. <AssociationConnector Association="EMIS.Entities.DTO.FK_TestOperate_Sys_User" >
  8387. <ConnectorPoint PointX="8.9757692307692327" PointY="57.387757161458353" />
  8388. <ConnectorPoint PointX="9.375" PointY="57.786987930689122" />
  8389. <ConnectorPoint PointX="9.375" PointY="66.954702148437491" />
  8390. <ConnectorPoint PointX="9.75" PointY="66.954702148437491" />
  8391. </AssociationConnector>
  8392. <AssociationConnector Association="EMIS.Entities.DTO.EM_TrainingClass_CF_Student" >
  8393. <ConnectorPoint PointX="9" PointY="41.854319661458305" />
  8394. <ConnectorPoint PointX="9.2916666666666661" PointY="41.854319661458305" />
  8395. <ConnectorPoint PointX="9.5833333333333339" PointY="41.854319661458305" />
  8396. <ConnectorPoint PointX="9.75" PointY="41.854319661458305" />
  8397. </AssociationConnector>
  8398. <AssociationConnector Association="EMIS.Entities.DTO.Sys_Announcement_Sys_Role" >
  8399. <ConnectorPoint PointX="6" PointY="54.643168945312482" />
  8400. <ConnectorPoint PointX="6" PointY="55.375" />
  8401. </AssociationConnector>
  8402. <AssociationConnector Association="EMIS.Entities.DTO.Sys_Announcement_Sys_User" >
  8403. <ConnectorPoint PointX="6.75" PointY="53.946584472656241" />
  8404. <ConnectorPoint PointX="7.5" PointY="53.946584472656241" />
  8405. </AssociationConnector>
  8406. <AssociationConnector Association="EMIS.Entities.DTO.Sys_Role_Sys_FunctionCode" >
  8407. <ConnectorPoint PointX="4.5" PointY="57.519908040364584" />
  8408. <ConnectorPoint PointX="5.25" PointY="57.519908040364584" />
  8409. </AssociationConnector>
  8410. <AssociationConnector Association="EMIS.Entities.DTO.Sys_User_Sys_Role" >
  8411. <ConnectorPoint PointX="6.75" PointY="56.381378580729177" />
  8412. <ConnectorPoint PointX="7.5" PointY="56.381378580729177" />
  8413. </AssociationConnector>
  8414. </Diagram>
  8415. </edmx:Diagrams>
  8416. </edmx:Designer>
  8417. </edmx:Edmx>