EMISOnlineContext.edmx 422 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490
  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="EMISOnlineContext.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="EMISOnlineContextStoreContainer">
  9. <EntitySet Name="CF_Campus" EntityType="EMISOnlineContext.Store.CF_Campus" store:Type="Tables" Schema="dbo" />
  10. <EntitySet Name="CF_Classmajor" EntityType="EMISOnlineContext.Store.CF_Classmajor" store:Type="Tables" Schema="dbo" />
  11. <EntitySet Name="CF_College" EntityType="EMISOnlineContext.Store.CF_College" store:Type="Tables" Schema="dbo" />
  12. <EntitySet Name="CF_Department" EntityType="EMISOnlineContext.Store.CF_Department" store:Type="Tables" Schema="dbo" />
  13. <EntitySet Name="CF_Facultymajor" EntityType="EMISOnlineContext.Store.CF_Facultymajor" store:Type="Tables" Schema="dbo" />
  14. <EntitySet Name="CF_Grademajor" EntityType="EMISOnlineContext.Store.CF_Grademajor" store:Type="Tables" Schema="dbo" />
  15. <EntitySet Name="CF_Recruitstudents" EntityType="EMISOnlineContext.Store.CF_Recruitstudents" store:Type="Tables" Schema="dbo" />
  16. <EntitySet Name="CF_Schoolyear" EntityType="EMISOnlineContext.Store.CF_Schoolyear" store:Type="Tables" Schema="dbo" />
  17. <EntitySet Name="CF_Staff" EntityType="EMISOnlineContext.Store.CF_Staff" store:Type="Tables" Schema="dbo" />
  18. <EntitySet Name="CF_StaffProfile" EntityType="EMISOnlineContext.Store.CF_StaffProfile" store:Type="Tables" Schema="dbo" />
  19. <EntitySet Name="CF_Student" EntityType="EMISOnlineContext.Store.CF_Student" store:Type="Tables" Schema="dbo" />
  20. <EntitySet Name="CF_StudentContact" EntityType="EMISOnlineContext.Store.CF_StudentContact" store:Type="Tables" Schema="dbo" />
  21. <EntitySet Name="CF_StudentContrast" EntityType="EMISOnlineContext.Store.CF_StudentContrast" store:Type="Tables" Schema="dbo" />
  22. <EntitySet Name="CF_StudentRole" EntityType="EMISOnlineContext.Store.CF_StudentRole" store:Type="Tables" Schema="dbo" />
  23. <EntitySet Name="CF_University" EntityType="EMISOnlineContext.Store.CF_University" store:Type="Tables" Schema="dbo" />
  24. <EntitySet Name="Coursework" EntityType="EMISOnlineContext.Store.Coursework" store:Type="Tables" Schema="dbo" />
  25. <EntitySet Name="CourseworkAnswer" EntityType="EMISOnlineContext.Store.CourseworkAnswer" store:Type="Tables" Schema="dbo" />
  26. <EntitySet Name="CourseworkResult" EntityType="EMISOnlineContext.Store.CourseworkResult" store:Type="Tables" Schema="dbo" />
  27. <EntitySet Name="EM_CourseChapter" EntityType="EMISOnlineContext.Store.EM_CourseChapter" store:Type="Tables" Schema="dbo" />
  28. <EntitySet Name="EM_CourseChapter_Video" EntityType="EMISOnlineContext.Store.EM_CourseChapter_Video" store:Type="Tables" Schema="dbo" />
  29. <EntitySet Name="EM_Coursematerial" EntityType="EMISOnlineContext.Store.EM_Coursematerial" store:Type="Tables" Schema="dbo" />
  30. <EntitySet Name="EM_CoursematerialExtend" EntityType="EMISOnlineContext.Store.EM_CoursematerialExtend" store:Type="Tables" Schema="dbo" />
  31. <EntitySet Name="EM_CourseStudyStatus" EntityType="EMISOnlineContext.Store.EM_CourseStudyStatus" store:Type="Tables" Schema="dbo" />
  32. <EntitySet Name="EM_CourseVideo" EntityType="EMISOnlineContext.Store.EM_CourseVideo" store:Type="Tables" Schema="dbo" />
  33. <EntitySet Name="EM_EducationMission" EntityType="EMISOnlineContext.Store.EM_EducationMission" store:Type="Tables" Schema="dbo" />
  34. <EntitySet Name="EM_EducationMissionClass" EntityType="EMISOnlineContext.Store.EM_EducationMissionClass" store:Type="Tables" Schema="dbo" />
  35. <EntitySet Name="EM_EducationMissionClass_CF_Classmajor" EntityType="EMISOnlineContext.Store.EM_EducationMissionClass_CF_Classmajor" store:Type="Tables" Schema="dbo" />
  36. <EntitySet Name="EM_EducationMissionClassTeachingSetting" EntityType="EMISOnlineContext.Store.EM_EducationMissionClassTeachingSetting" store:Type="Tables" Schema="dbo" />
  37. <EntitySet Name="EM_EducationSchedulingClass" EntityType="EMISOnlineContext.Store.EM_EducationSchedulingClass" store:Type="Tables" Schema="dbo" />
  38. <EntitySet Name="EM_EducationSchedulingClass_CF_Student" EntityType="EMISOnlineContext.Store.EM_EducationSchedulingClass_CF_Student" store:Type="Tables" Schema="dbo" />
  39. <EntitySet Name="EM_ExecutableFreeSelectionCouse" EntityType="EMISOnlineContext.Store.EM_ExecutableFreeSelectionCouse" store:Type="Tables" Schema="dbo" />
  40. <EntitySet Name="EM_ExecutableFreeSelectionCouseTeachingSetting" EntityType="EMISOnlineContext.Store.EM_ExecutableFreeSelectionCouseTeachingSetting" store:Type="Tables" Schema="dbo" />
  41. <EntitySet Name="EM_ExecutableOptionalCourse" EntityType="EMISOnlineContext.Store.EM_ExecutableOptionalCourse" store:Type="Tables" Schema="dbo" />
  42. <EntitySet Name="EM_ExecutableOptionalCourseTeachingSetting" EntityType="EMISOnlineContext.Store.EM_ExecutableOptionalCourseTeachingSetting" store:Type="Tables" Schema="dbo" />
  43. <EntitySet Name="EM_ExecutablePlan" EntityType="EMISOnlineContext.Store.EM_ExecutablePlan" store:Type="Tables" Schema="dbo" />
  44. <EntitySet Name="EM_ExecutablePlanTeachingSetting" EntityType="EMISOnlineContext.Store.EM_ExecutablePlanTeachingSetting" store:Type="Tables" Schema="dbo" />
  45. <EntitySet Name="EM_FreeSelectionCouse" EntityType="EMISOnlineContext.Store.EM_FreeSelectionCouse" store:Type="Tables" Schema="dbo" />
  46. <EntitySet Name="EM_FTPVideo" EntityType="EMISOnlineContext.Store.EM_FTPVideo" store:Type="Tables" Schema="dbo" />
  47. <EntitySet Name="EM_MissionClassTeacher" EntityType="EMISOnlineContext.Store.EM_MissionClassTeacher" store:Type="Tables" Schema="dbo" />
  48. <EntitySet Name="EM_OptionalCoursePlan" EntityType="EMISOnlineContext.Store.EM_OptionalCoursePlan" store:Type="Tables" Schema="dbo" />
  49. <EntitySet Name="EM_SpecialtyCourse" EntityType="EMISOnlineContext.Store.EM_SpecialtyCourse" store:Type="Tables" Schema="dbo" />
  50. <EntitySet Name="EM_SpecialtyCourseTeachingSetting" EntityType="EMISOnlineContext.Store.EM_SpecialtyCourseTeachingSetting" store:Type="Tables" Schema="dbo" />
  51. <EntitySet Name="ER_ScoreRule" EntityType="EMISOnlineContext.Store.ER_ScoreRule" store:Type="Tables" Schema="dbo" />
  52. <EntitySet Name="ER_TeacherScore" EntityType="EMISOnlineContext.Store.ER_TeacherScore" store:Type="Tables" Schema="dbo" />
  53. <EntitySet Name="Exam_Log" EntityType="EMISOnlineContext.Store.Exam_Log" store:Type="Tables" Schema="dbo" />
  54. <EntitySet Name="ExamineeAnswer" EntityType="EMISOnlineContext.Store.ExamineeAnswer" store:Type="Tables" Schema="dbo" />
  55. <EntitySet Name="ExamPaper" EntityType="EMISOnlineContext.Store.ExamPaper" store:Type="Tables" Schema="dbo" />
  56. <EntitySet Name="ExamResult" EntityType="EMISOnlineContext.Store.ExamResult" store:Type="Tables" Schema="dbo" />
  57. <EntitySet Name="ExamResult_backup_20120913" EntityType="EMISOnlineContext.Store.ExamResult_backup_20120913" store:Type="Tables" store:Schema="dbo" store:Name="ExamResult_backup_20120913">
  58. <DefiningQuery>SELECT
  59. [ExamResult_backup_20120913].[ID] AS [ID],
  60. [ExamResult_backup_20120913].[user_id] AS [user_id],
  61. [ExamResult_backup_20120913].[test_name] AS [test_name],
  62. [ExamResult_backup_20120913].[test_paper_id] AS [test_paper_id],
  63. [ExamResult_backup_20120913].[test_begin_date] AS [test_begin_date],
  64. [ExamResult_backup_20120913].[test_end_date] AS [test_end_date],
  65. [ExamResult_backup_20120913].[limited_minutes] AS [limited_minutes],
  66. [ExamResult_backup_20120913].[test_address] AS [test_address],
  67. [ExamResult_backup_20120913].[onlinetest_id] AS [onlinetest_id],
  68. [ExamResult_backup_20120913].[OrgId] AS [OrgId],
  69. [ExamResult_backup_20120913].[username] AS [username],
  70. [ExamResult_backup_20120913].[score] AS [score],
  71. [ExamResult_backup_20120913].[modifiy_sore] AS [modifiy_sore],
  72. [ExamResult_backup_20120913].[is_auto_read] AS [is_auto_read],
  73. [ExamResult_backup_20120913].[visible] AS [visible],
  74. [ExamResult_backup_20120913].[is_man_read] AS [is_man_read],
  75. [ExamResult_backup_20120913].[last_examination] AS [last_examination]
  76. FROM [dbo].[ExamResult_backup_20120913] AS [ExamResult_backup_20120913]</DefiningQuery>
  77. </EntitySet>
  78. <EntitySet Name="ExamSetting_Examiner" EntityType="EMISOnlineContext.Store.ExamSetting_Examiner" store:Type="Tables" Schema="dbo" />
  79. <EntitySet Name="ExamWarning" EntityType="EMISOnlineContext.Store.ExamWarning" store:Type="Tables" Schema="dbo" />
  80. <EntitySet Name="MSreplication_objects" EntityType="EMISOnlineContext.Store.MSreplication_objects" store:Type="Tables" store:Schema="dbo" store:Name="MSreplication_objects">
  81. <DefiningQuery>SELECT
  82. [MSreplication_objects].[publisher] AS [publisher],
  83. [MSreplication_objects].[publisher_db] AS [publisher_db],
  84. [MSreplication_objects].[publication] AS [publication],
  85. [MSreplication_objects].[object_name] AS [object_name],
  86. [MSreplication_objects].[object_type] AS [object_type],
  87. [MSreplication_objects].[article] AS [article]
  88. FROM [dbo].[MSreplication_objects] AS [MSreplication_objects]</DefiningQuery>
  89. </EntitySet>
  90. <EntitySet Name="MSreplication_subscriptions" EntityType="EMISOnlineContext.Store.MSreplication_subscriptions" store:Type="Tables" store:Schema="dbo" store:Name="MSreplication_subscriptions">
  91. <DefiningQuery>SELECT
  92. [MSreplication_subscriptions].[publisher] AS [publisher],
  93. [MSreplication_subscriptions].[publisher_db] AS [publisher_db],
  94. [MSreplication_subscriptions].[publication] AS [publication],
  95. [MSreplication_subscriptions].[independent_agent] AS [independent_agent],
  96. [MSreplication_subscriptions].[subscription_type] AS [subscription_type],
  97. [MSreplication_subscriptions].[distribution_agent] AS [distribution_agent],
  98. [MSreplication_subscriptions].[time] AS [time],
  99. [MSreplication_subscriptions].[description] AS [description],
  100. [MSreplication_subscriptions].[transaction_timestamp] AS [transaction_timestamp],
  101. [MSreplication_subscriptions].[update_mode] AS [update_mode],
  102. [MSreplication_subscriptions].[agent_id] AS [agent_id],
  103. [MSreplication_subscriptions].[subscription_guid] AS [subscription_guid],
  104. [MSreplication_subscriptions].[subid] AS [subid],
  105. [MSreplication_subscriptions].[immediate_sync] AS [immediate_sync]
  106. FROM [dbo].[MSreplication_subscriptions] AS [MSreplication_subscriptions]</DefiningQuery>
  107. </EntitySet>
  108. <EntitySet Name="MSsavedforeignkeycolumns" EntityType="EMISOnlineContext.Store.MSsavedforeignkeycolumns" store:Type="Tables" store:Schema="dbo" store:Name="MSsavedforeignkeycolumns">
  109. <DefiningQuery>SELECT
  110. [MSsavedforeignkeycolumns].[program_name] AS [program_name],
  111. [MSsavedforeignkeycolumns].[constraint_name] AS [constraint_name],
  112. [MSsavedforeignkeycolumns].[parent_schema] AS [parent_schema],
  113. [MSsavedforeignkeycolumns].[constraint_column_id] AS [constraint_column_id],
  114. [MSsavedforeignkeycolumns].[referencing_column_name] AS [referencing_column_name],
  115. [MSsavedforeignkeycolumns].[referenced_column_name] AS [referenced_column_name],
  116. [MSsavedforeignkeycolumns].[timestamp] AS [timestamp]
  117. FROM [dbo].[MSsavedforeignkeycolumns] AS [MSsavedforeignkeycolumns]</DefiningQuery>
  118. </EntitySet>
  119. <EntitySet Name="MSsavedforeignkeyextendedproperties" EntityType="EMISOnlineContext.Store.MSsavedforeignkeyextendedproperties" store:Type="Tables" store:Schema="dbo" store:Name="MSsavedforeignkeyextendedproperties">
  120. <DefiningQuery>SELECT
  121. [MSsavedforeignkeyextendedproperties].[program_name] AS [program_name],
  122. [MSsavedforeignkeyextendedproperties].[constraint_name] AS [constraint_name],
  123. [MSsavedforeignkeyextendedproperties].[parent_schema] AS [parent_schema],
  124. [MSsavedforeignkeyextendedproperties].[property_name] AS [property_name],
  125. [MSsavedforeignkeyextendedproperties].[timestamp] AS [timestamp]
  126. FROM [dbo].[MSsavedforeignkeyextendedproperties] AS [MSsavedforeignkeyextendedproperties]</DefiningQuery>
  127. </EntitySet>
  128. <EntitySet Name="MSsavedforeignkeys" EntityType="EMISOnlineContext.Store.MSsavedforeignkeys" store:Type="Tables" store:Schema="dbo" store:Name="MSsavedforeignkeys">
  129. <DefiningQuery>SELECT
  130. [MSsavedforeignkeys].[program_name] AS [program_name],
  131. [MSsavedforeignkeys].[constraint_name] AS [constraint_name],
  132. [MSsavedforeignkeys].[parent_schema] AS [parent_schema],
  133. [MSsavedforeignkeys].[parent_name] AS [parent_name],
  134. [MSsavedforeignkeys].[referenced_object_schema] AS [referenced_object_schema],
  135. [MSsavedforeignkeys].[referenced_object_name] AS [referenced_object_name],
  136. [MSsavedforeignkeys].[is_disabled] AS [is_disabled],
  137. [MSsavedforeignkeys].[is_not_for_replication] AS [is_not_for_replication],
  138. [MSsavedforeignkeys].[is_not_trusted] AS [is_not_trusted],
  139. [MSsavedforeignkeys].[delete_referential_action] AS [delete_referential_action],
  140. [MSsavedforeignkeys].[update_referential_action] AS [update_referential_action],
  141. [MSsavedforeignkeys].[timestamp] AS [timestamp]
  142. FROM [dbo].[MSsavedforeignkeys] AS [MSsavedforeignkeys]</DefiningQuery>
  143. </EntitySet>
  144. <EntitySet Name="MSsnapshotdeliveryprogress" EntityType="EMISOnlineContext.Store.MSsnapshotdeliveryprogress" store:Type="Tables" store:Schema="dbo" store:Name="MSsnapshotdeliveryprogress">
  145. <DefiningQuery>SELECT
  146. [MSsnapshotdeliveryprogress].[session_token] AS [session_token],
  147. [MSsnapshotdeliveryprogress].[progress_token_hash] AS [progress_token_hash],
  148. [MSsnapshotdeliveryprogress].[progress_token] AS [progress_token],
  149. [MSsnapshotdeliveryprogress].[progress_timestamp] AS [progress_timestamp]
  150. FROM [dbo].[MSsnapshotdeliveryprogress] AS [MSsnapshotdeliveryprogress]</DefiningQuery>
  151. </EntitySet>
  152. <EntitySet Name="MSsubscription_agents" EntityType="EMISOnlineContext.Store.MSsubscription_agents" store:Type="Tables" store:Schema="dbo" store:Name="MSsubscription_agents">
  153. <DefiningQuery>SELECT
  154. [MSsubscription_agents].[id] AS [id],
  155. [MSsubscription_agents].[publisher] AS [publisher],
  156. [MSsubscription_agents].[publisher_db] AS [publisher_db],
  157. [MSsubscription_agents].[publication] AS [publication],
  158. [MSsubscription_agents].[subscription_type] AS [subscription_type],
  159. [MSsubscription_agents].[queue_id] AS [queue_id],
  160. [MSsubscription_agents].[update_mode] AS [update_mode],
  161. [MSsubscription_agents].[failover_mode] AS [failover_mode],
  162. [MSsubscription_agents].[spid] AS [spid],
  163. [MSsubscription_agents].[login_time] AS [login_time],
  164. [MSsubscription_agents].[allow_subscription_copy] AS [allow_subscription_copy],
  165. [MSsubscription_agents].[attach_state] AS [attach_state],
  166. [MSsubscription_agents].[attach_version] AS [attach_version],
  167. [MSsubscription_agents].[last_sync_status] AS [last_sync_status],
  168. [MSsubscription_agents].[last_sync_summary] AS [last_sync_summary],
  169. [MSsubscription_agents].[last_sync_time] AS [last_sync_time],
  170. [MSsubscription_agents].[queue_server] AS [queue_server]
  171. FROM [dbo].[MSsubscription_agents] AS [MSsubscription_agents]</DefiningQuery>
  172. </EntitySet>
  173. <EntitySet Name="Sys_Dictionary" EntityType="EMISOnlineContext.Store.Sys_Dictionary" store:Type="Tables" Schema="dbo" />
  174. <EntitySet Name="Sys_DictionaryItem" EntityType="EMISOnlineContext.Store.Sys_DictionaryItem" store:Type="Tables" Schema="dbo" />
  175. <EntitySet Name="Sys_FunctionCode" EntityType="EMISOnlineContext.Store.Sys_FunctionCode" store:Type="Tables" Schema="dbo" />
  176. <EntitySet Name="Sys_LoginCount" EntityType="EMISOnlineContext.Store.Sys_LoginCount" store:Type="Tables" Schema="dbo" />
  177. <EntitySet Name="Sys_MailVerifyCode" EntityType="EMISOnlineContext.Store.Sys_MailVerifyCode" store:Type="Tables" Schema="dbo" />
  178. <EntitySet Name="Sys_Menu" EntityType="EMISOnlineContext.Store.Sys_Menu" store:Type="Tables" Schema="dbo" />
  179. <EntitySet Name="Sys_Role" EntityType="EMISOnlineContext.Store.Sys_Role" store:Type="Tables" Schema="dbo" />
  180. <EntitySet Name="Sys_Role_Sys_FunctionCode" EntityType="EMISOnlineContext.Store.Sys_Role_Sys_FunctionCode" store:Type="Tables" Schema="dbo" />
  181. <EntitySet Name="Sys_User" EntityType="EMISOnlineContext.Store.Sys_User" store:Type="Tables" Schema="dbo" />
  182. <EntitySet Name="Sys_User_Sys_Role" EntityType="EMISOnlineContext.Store.Sys_User_Sys_Role" store:Type="Tables" Schema="dbo" />
  183. <EntitySet Name="test_base_param" EntityType="EMISOnlineContext.Store.test_base_param" store:Type="Tables" Schema="dbo" />
  184. <EntitySet Name="test_base_param_type" EntityType="EMISOnlineContext.Store.test_base_param_type" store:Type="Tables" Schema="dbo" />
  185. <EntitySet Name="test_base_question_type" EntityType="EMISOnlineContext.Store.test_base_question_type" store:Type="Tables" Schema="dbo" />
  186. <EntitySet Name="test_comm_param_set" EntityType="EMISOnlineContext.Store.test_comm_param_set" store:Type="Tables" Schema="dbo" />
  187. <EntitySet Name="test_comm_set" EntityType="EMISOnlineContext.Store.test_comm_set" store:Type="Tables" Schema="dbo" />
  188. <EntitySet Name="test_exchange" EntityType="EMISOnlineContext.Store.test_exchange" store:Type="Tables" Schema="dbo" />
  189. <EntitySet Name="test_keyword" EntityType="EMISOnlineContext.Store.test_keyword" store:Type="Tables" Schema="dbo" />
  190. <EntitySet Name="test_onlinetest" EntityType="EMISOnlineContext.Store.test_onlinetest" store:Type="Tables" Schema="dbo" />
  191. <EntitySet Name="test_onlinetest_man" EntityType="EMISOnlineContext.Store.test_onlinetest_man" store:Type="Tables" store:Schema="dbo" store:Name="test_onlinetest_man">
  192. <DefiningQuery>SELECT
  193. [test_onlinetest_man].[ID] AS [ID],
  194. [test_onlinetest_man].[onlinetest_id] AS [onlinetest_id],
  195. [test_onlinetest_man].[user_id] AS [user_id],
  196. [test_onlinetest_man].[OrgId] AS [OrgId],
  197. [test_onlinetest_man].[name] AS [name],
  198. [test_onlinetest_man].[username] AS [username],
  199. [test_onlinetest_man].[sex] AS [sex],
  200. [test_onlinetest_man].[mobile_num] AS [mobile_num],
  201. [test_onlinetest_man].[created_by] AS [created_by],
  202. [test_onlinetest_man].[created_date] AS [created_date],
  203. [test_onlinetest_man].[loginCount] AS [loginCount],
  204. [test_onlinetest_man].[lastLoginTime] AS [lastLoginTime],
  205. [test_onlinetest_man].[beginTime] AS [beginTime],
  206. [test_onlinetest_man].[endTime] AS [endTime],
  207. [test_onlinetest_man].[limited_minutes] AS [limited_minutes],
  208. [test_onlinetest_man].[state] AS [state],
  209. [test_onlinetest_man].[warning_count] AS [warning_count],
  210. [test_onlinetest_man].[lastModified] AS [lastModified],
  211. [test_onlinetest_man].[relogin_count] AS [relogin_count],
  212. [test_onlinetest_man].[time_of_filling] AS [time_of_filling],
  213. [test_onlinetest_man].[filled] AS [filled]
  214. FROM [dbo].[test_onlinetest_man] AS [test_onlinetest_man]</DefiningQuery>
  215. </EntitySet>
  216. <EntitySet Name="test_onlinetest_manshow" EntityType="EMISOnlineContext.Store.test_onlinetest_manshow" store:Type="Tables" Schema="dbo" />
  217. <EntitySet Name="test_paper" EntityType="EMISOnlineContext.Store.test_paper" store:Type="Tables" Schema="dbo" />
  218. <EntitySet Name="test_paper_guide" EntityType="EMISOnlineContext.Store.test_paper_guide" store:Type="Tables" Schema="dbo" />
  219. <EntitySet Name="test_paper_question_set" EntityType="EMISOnlineContext.Store.test_paper_question_set" store:Type="Tables" Schema="dbo" />
  220. <EntitySet Name="test_paper_question_set_fortest" EntityType="EMISOnlineContext.Store.test_paper_question_set_fortest" store:Type="Tables" Schema="dbo" />
  221. <EntitySet Name="test_question" EntityType="EMISOnlineContext.Store.test_question" store:Type="Tables" Schema="dbo" />
  222. <EntitySet Name="test_question_administrator" EntityType="EMISOnlineContext.Store.test_question_administrator" store:Type="Tables" Schema="dbo" />
  223. <EntitySet Name="test_question_file" EntityType="EMISOnlineContext.Store.test_question_file" store:Type="Tables" Schema="dbo" />
  224. <EntitySet Name="test_question_keyword" EntityType="EMISOnlineContext.Store.test_question_keyword" store:Type="Tables" Schema="dbo" />
  225. <EntitySet Name="test_question_libary" EntityType="EMISOnlineContext.Store.test_question_libary" store:Type="Tables" Schema="dbo" />
  226. <EntitySet Name="test_question_provid_answer" EntityType="EMISOnlineContext.Store.test_question_provid_answer" store:Type="Tables" Schema="dbo" />
  227. <EntitySet Name="v_question" EntityType="EMISOnlineContext.Store.v_question" store:Type="Views" store:Schema="dbo" store:Name="v_question">
  228. <DefiningQuery>SELECT
  229. [v_question].[question_json] AS [question_json],
  230. [v_question].[test_question_Id] AS [test_question_Id],
  231. [v_question].[base_question_type_id] AS [base_question_type_id],
  232. [v_question].[test_paper_id] AS [test_paper_id],
  233. [v_question].[order ] AS [order ]
  234. FROM [dbo].[v_question] AS [v_question]</DefiningQuery>
  235. </EntitySet>
  236. <EntitySet Name="V_StudentEducationMissionClass" EntityType="EMISOnlineContext.Store.V_StudentEducationMissionClass" store:Type="Views" store:Schema="dbo" store:Name="V_StudentEducationMissionClass">
  237. <DefiningQuery>SELECT
  238. [V_StudentEducationMissionClass].[EducationMissionClassID] AS [EducationMissionClassID],
  239. [V_StudentEducationMissionClass].[EducationMissionClassName] AS [EducationMissionClassName],
  240. [V_StudentEducationMissionClass].[CoursematerialID] AS [CoursematerialID],
  241. [V_StudentEducationMissionClass].[CourseName] AS [CourseName],
  242. [V_StudentEducationMissionClass].[CoverUrl] AS [CoverUrl],
  243. [V_StudentEducationMissionClass].[UserID] AS [UserID],
  244. [V_StudentEducationMissionClass].[SchoolyearID] AS [SchoolyearID],
  245. [V_StudentEducationMissionClass].[TeacherID] AS [TeacherID]
  246. FROM [dbo].[V_StudentEducationMissionClass] AS [V_StudentEducationMissionClass]</DefiningQuery>
  247. </EntitySet>
  248. <EntitySet Name="v_test_question" EntityType="EMISOnlineContext.Store.v_test_question" store:Type="Views" store:Schema="dbo" store:Name="v_test_question">
  249. <DefiningQuery>SELECT
  250. [v_test_question].[rid] AS [rid],
  251. [v_test_question].[test_question_Id] AS [test_question_Id],
  252. [v_test_question].[base_question_type_id] AS [base_question_type_id],
  253. [v_test_question].[content] AS [content],
  254. [v_test_question].[question_file_id] AS [question_file_id],
  255. [v_test_question].[question_type_name] AS [question_type_name],
  256. [v_test_question].[questione_lib_name] AS [questione_lib_name],
  257. [v_test_question].[difficulty_degree] AS [difficulty_degree],
  258. [v_test_question].[answers] AS [answers],
  259. [v_test_question].[is_order] AS [is_order],
  260. [v_test_question].[answers_note] AS [answers_note],
  261. [v_test_question].[note] AS [note],
  262. [v_test_question].[test_question_libary_id] AS [test_question_libary_id],
  263. [v_test_question].[used_count] AS [used_count],
  264. [v_test_question].[right_percent] AS [right_percent],
  265. [v_test_question].[is_vaild] AS [is_vaild],
  266. [v_test_question].[created_date] AS [created_date],
  267. [v_test_question].[wrong_count] AS [wrong_count],
  268. [v_test_question].[score] AS [score],
  269. [v_test_question].[filled] AS [filled],
  270. [v_test_question].[time_of_filling] AS [time_of_filling],
  271. [v_test_question].[created_by] AS [created_by],
  272. [v_test_question].[wrong_percent] AS [wrong_percent]
  273. FROM [dbo].[v_test_question] AS [v_test_question]</DefiningQuery>
  274. </EntitySet>
  275. <EntitySet Name="VTestQestion" EntityType="EMISOnlineContext.Store.VTestQestion" store:Type="Views" store:Schema="dbo" store:Name="VTestQestion">
  276. <DefiningQuery>SELECT
  277. [VTestQestion].[rid] AS [rid],
  278. [VTestQestion].[test_question_Id] AS [test_question_Id],
  279. [VTestQestion].[base_question_type_id] AS [base_question_type_id],
  280. [VTestQestion].[content] AS [content],
  281. [VTestQestion].[question_file_id] AS [question_file_id],
  282. [VTestQestion].[question_type_name] AS [question_type_name],
  283. [VTestQestion].[questione_lib_name] AS [questione_lib_name],
  284. [VTestQestion].[difficulty_degree] AS [difficulty_degree],
  285. [VTestQestion].[answers] AS [answers],
  286. [VTestQestion].[is_order] AS [is_order],
  287. [VTestQestion].[answers_note] AS [answers_note],
  288. [VTestQestion].[note] AS [note],
  289. [VTestQestion].[test_question_libary_id] AS [test_question_libary_id],
  290. [VTestQestion].[used_count] AS [used_count],
  291. [VTestQestion].[right_percent] AS [right_percent],
  292. [VTestQestion].[is_vaild] AS [is_vaild],
  293. [VTestQestion].[created_date] AS [created_date],
  294. [VTestQestion].[wrong_count] AS [wrong_count],
  295. [VTestQestion].[score] AS [score],
  296. [VTestQestion].[filled] AS [filled],
  297. [VTestQestion].[time_of_filling] AS [time_of_filling],
  298. [VTestQestion].[created_by] AS [created_by],
  299. [VTestQestion].[wrong_percent] AS [wrong_percent]
  300. FROM [dbo].[VTestQestion] AS [VTestQestion]</DefiningQuery>
  301. </EntitySet>
  302. <AssociationSet Name="fk_answer2questionfile" Association="EMISOnlineContext.Store.fk_answer2questionfile">
  303. <End Role="test_question_file" EntitySet="test_question_file" />
  304. <End Role="test_question_provid_answer" EntitySet="test_question_provid_answer" />
  305. </AssociationSet>
  306. <AssociationSet Name="fk_base_param2baseparent" Association="EMISOnlineContext.Store.fk_base_param2baseparent">
  307. <End Role="test_base_param_type" EntitySet="test_base_param_type" />
  308. <End Role="test_base_param" EntitySet="test_base_param" />
  309. </AssociationSet>
  310. <AssociationSet Name="fk_commbaseset2commset" Association="EMISOnlineContext.Store.fk_commbaseset2commset">
  311. <End Role="test_comm_set" EntitySet="test_comm_set" />
  312. <End Role="test_comm_param_set" EntitySet="test_comm_param_set" />
  313. </AssociationSet>
  314. <AssociationSet Name="FK_COURSEWO_REFERENCE_COURSEWO" Association="EMISOnlineContext.Store.FK_COURSEWO_REFERENCE_COURSEWO">
  315. <End Role="Coursework" EntitySet="Coursework" />
  316. <End Role="CourseworkResult" EntitySet="CourseworkResult" />
  317. </AssociationSet>
  318. <AssociationSet Name="FK_COURSEWO_REFERENCE_COURSEWO333" Association="EMISOnlineContext.Store.FK_COURSEWO_REFERENCE_COURSEWO333">
  319. <End Role="Coursework" EntitySet="Coursework" />
  320. <End Role="CourseworkAnswer" EntitySet="CourseworkAnswer" />
  321. </AssociationSet>
  322. <AssociationSet Name="FK_COURSEWO_REFERENCE_EX_EXAMI" Association="EMISOnlineContext.Store.FK_COURSEWO_REFERENCE_EX_EXAMI">
  323. <End Role="test_paper" EntitySet="test_paper" />
  324. <End Role="Coursework" EntitySet="Coursework" />
  325. </AssociationSet>
  326. <AssociationSet Name="FK_COURSEWO_REFERENCE_EX_EXAMI2" Association="EMISOnlineContext.Store.FK_COURSEWO_REFERENCE_EX_EXAMI2">
  327. <End Role="test_paper" EntitySet="test_paper" />
  328. <End Role="CourseworkResult" EntitySet="CourseworkResult" />
  329. </AssociationSet>
  330. <AssociationSet Name="FK_EM_COURS_REFERENCE_EM_COURS_Video" Association="EMISOnlineContext.Store.FK_EM_COURS_REFERENCE_EM_COURS_Video">
  331. <End Role="EM_CourseVideo" EntitySet="EM_CourseVideo" />
  332. <End Role="EM_CourseChapter_Video" EntitySet="EM_CourseChapter_Video" />
  333. </AssociationSet>
  334. <AssociationSet Name="FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo" Association="EMISOnlineContext.Store.FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo">
  335. <End Role="EM_CourseVideo" EntitySet="EM_CourseVideo" />
  336. <End Role="EM_CourseStudyStatus" EntitySet="EM_CourseStudyStatus" />
  337. </AssociationSet>
  338. <AssociationSet Name="FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse" Association="EMISOnlineContext.Store.FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse">
  339. <End Role="EM_ExecutableFreeSelectionCouse" EntitySet="EM_ExecutableFreeSelectionCouse" />
  340. <End Role="EM_ExecutableFreeSelectionCouseTeachingSetting" EntitySet="EM_ExecutableFreeSelectionCouseTeachingSetting" />
  341. </AssociationSet>
  342. <AssociationSet Name="FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse" Association="EMISOnlineContext.Store.FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse">
  343. <End Role="EM_ExecutableOptionalCourse" EntitySet="EM_ExecutableOptionalCourse" />
  344. <End Role="EM_ExecutableOptionalCourseTeachingSetting" EntitySet="EM_ExecutableOptionalCourseTeachingSetting" />
  345. </AssociationSet>
  346. <AssociationSet Name="FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass" Association="EMISOnlineContext.Store.FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass">
  347. <End Role="EM_EducationMissionClass" EntitySet="EM_EducationMissionClass" />
  348. <End Role="EM_MissionClassTeacher" EntitySet="EM_MissionClassTeacher" />
  349. </AssociationSet>
  350. <AssociationSet Name="FK_EM_SPECI_REFERENCE_EM_COURS" Association="EMISOnlineContext.Store.FK_EM_SPECI_REFERENCE_EM_COURS">
  351. <End Role="EM_Coursematerial" EntitySet="EM_Coursematerial" />
  352. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  353. </AssociationSet>
  354. <AssociationSet Name="FK_EM_SPECI_REFERENCE_EM_SPECI" Association="EMISOnlineContext.Store.FK_EM_SPECI_REFERENCE_EM_SPECI">
  355. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  356. <End Role="EM_SpecialtyCourseTeachingSetting" EntitySet="EM_SpecialtyCourseTeachingSetting" />
  357. </AssociationSet>
  358. <AssociationSet Name="FK_EM_SpecialtyCourse_CF_Department" Association="EMISOnlineContext.Store.FK_EM_SpecialtyCourse_CF_Department">
  359. <End Role="CF_Department" EntitySet="CF_Department" />
  360. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  361. </AssociationSet>
  362. <AssociationSet Name="FK_EXAMRESU_REFERENCE_TEST_ONL" Association="EMISOnlineContext.Store.FK_EXAMRESU_REFERENCE_TEST_ONL">
  363. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  364. <End Role="ExamResult" EntitySet="ExamResult" />
  365. </AssociationSet>
  366. <AssociationSet Name="fk_paperquestion_2Paper" Association="EMISOnlineContext.Store.fk_paperquestion_2Paper">
  367. <End Role="test_paper" EntitySet="test_paper" />
  368. <End Role="test_paper_question_set" EntitySet="test_paper_question_set" />
  369. </AssociationSet>
  370. <AssociationSet Name="fk_question_2questionfile" Association="EMISOnlineContext.Store.fk_question_2questionfile">
  371. <End Role="test_question_file" EntitySet="test_question_file" />
  372. <End Role="test_question" EntitySet="test_question" />
  373. </AssociationSet>
  374. <AssociationSet Name="fk_question_type_keyword" Association="EMISOnlineContext.Store.fk_question_type_keyword">
  375. <End Role="test_keyword" EntitySet="test_keyword" />
  376. <End Role="test_question_keyword" EntitySet="test_question_keyword" />
  377. </AssociationSet>
  378. <AssociationSet Name="FK_SYS_MENU_REFERENCE_SYS_FUNC" Association="EMISOnlineContext.Store.FK_SYS_MENU_REFERENCE_SYS_FUNC">
  379. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  380. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  381. </AssociationSet>
  382. <AssociationSet Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_Sys_FunctionCode" Association="EMISOnlineContext.Store.FK_Sys_Role_Sys_FunctionCode_REFERENCE_Sys_FunctionCode">
  383. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  384. <End Role="Sys_Role_Sys_FunctionCode" EntitySet="Sys_Role_Sys_FunctionCode" />
  385. </AssociationSet>
  386. <AssociationSet Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE" Association="EMISOnlineContext.Store.FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE">
  387. <End Role="Sys_Role" EntitySet="Sys_Role" />
  388. <End Role="Sys_Role_Sys_FunctionCode" EntitySet="Sys_Role_Sys_FunctionCode" />
  389. </AssociationSet>
  390. <AssociationSet Name="FK_TEST_ONL_REFERENCE_TEST_SHOW" Association="EMISOnlineContext.Store.FK_TEST_ONL_REFERENCE_TEST_SHOW">
  391. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  392. <End Role="test_onlinetest_manshow" EntitySet="test_onlinetest_manshow" />
  393. </AssociationSet>
  394. <AssociationSet Name="fk_test_onlinetest_test_paper_id" Association="EMISOnlineContext.Store.fk_test_onlinetest_test_paper_id">
  395. <End Role="test_paper" EntitySet="test_paper" />
  396. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  397. </AssociationSet>
  398. <AssociationSet Name="FK_TEST_QUE_REFERENCE_TEST_QUE" Association="EMISOnlineContext.Store.FK_TEST_QUE_REFERENCE_TEST_QUE">
  399. <End Role="test_question" EntitySet="test_question" />
  400. <End Role="test_question_provid_answer" EntitySet="test_question_provid_answer" />
  401. </AssociationSet>
  402. <AssociationSet Name="fk_testquestions2questiontype" Association="EMISOnlineContext.Store.fk_testquestions2questiontype">
  403. <End Role="test_base_question_type" EntitySet="test_base_question_type" />
  404. <End Role="test_question" EntitySet="test_question" />
  405. </AssociationSet>
  406. </EntityContainer>
  407. <EntityType Name="CF_Campus">
  408. <Key>
  409. <PropertyRef Name="CampusID" />
  410. </Key>
  411. <Property Name="CampusID" Type="uniqueidentifier" Nullable="false" />
  412. <Property Name="UniversityID" Type="uniqueidentifier" />
  413. <Property Name="No" Type="varchar" MaxLength="20" />
  414. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  415. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  416. <Property Name="EnglishName" Type="nvarchar" MaxLength="50" />
  417. <Property Name="Remark" Type="nvarchar(max)" />
  418. <Property Name="RecordStatus" Type="int" />
  419. <Property Name="CreateUserID" Type="uniqueidentifier" />
  420. <Property Name="CreateTime" Type="datetime" />
  421. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  422. <Property Name="ModifyTime" Type="datetime" />
  423. </EntityType>
  424. <EntityType Name="CF_Classmajor">
  425. <Key>
  426. <PropertyRef Name="ClassmajorID" />
  427. </Key>
  428. <Property Name="ClassmajorID" Type="uniqueidentifier" Nullable="false" />
  429. <Property Name="GrademajorID" Type="uniqueidentifier" />
  430. <Property Name="No" Type="varchar" Nullable="false" MaxLength="50" />
  431. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  432. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  433. <Property Name="EnglishName" Type="varchar" MaxLength="100" />
  434. <Property Name="ClassNum" Type="int" />
  435. <Property Name="UserID" Type="uniqueidentifier" />
  436. <Property Name="AssistantUserID" Type="uniqueidentifier" />
  437. <Property Name="Fixedclassroom" Type="nvarchar" MaxLength="50" />
  438. <Property Name="RecordStatus" Type="int" />
  439. <Property Name="CreateTime" Type="datetime" />
  440. <Property Name="CreateUserID" Type="uniqueidentifier" />
  441. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  442. <Property Name="ModifyTime" Type="datetime" />
  443. <Property Name="Remarks" Type="nvarchar" MaxLength="500" />
  444. </EntityType>
  445. <EntityType Name="CF_College">
  446. <Key>
  447. <PropertyRef Name="CollegeID" />
  448. </Key>
  449. <Property Name="CollegeID" Type="uniqueidentifier" Nullable="false" />
  450. <Property Name="CampusID" Type="uniqueidentifier" />
  451. <Property Name="No" Type="varchar" MaxLength="20" />
  452. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  453. <Property Name="EnglishName" Type="varchar" MaxLength="100" />
  454. <Property Name="ParentCollegeID" Type="uniqueidentifier" />
  455. <Property Name="HierarchyID" Type="varchar" MaxLength="500" />
  456. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  457. <Property Name="RecordStatus" Type="int" />
  458. <Property Name="CreateUserID" Type="uniqueidentifier" />
  459. <Property Name="CreateTime" Type="datetime" />
  460. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  461. <Property Name="ModifyTime" Type="datetime" />
  462. </EntityType>
  463. <EntityType Name="CF_Department">
  464. <Key>
  465. <PropertyRef Name="DepartmentID" />
  466. </Key>
  467. <Property Name="DepartmentID" Type="uniqueidentifier" Nullable="false" />
  468. <Property Name="CollegeID" Type="uniqueidentifier" />
  469. <Property Name="No" Type="varchar" MaxLength="20" />
  470. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  471. <Property Name="SimpleName" Type="nvarchar" MaxLength="20" />
  472. <Property Name="EnglishName" Type="varchar" MaxLength="200" />
  473. <Property Name="ParentDepartmentID" Type="uniqueidentifier" />
  474. <Property Name="HierarchyID" Type="varchar" MaxLength="500" />
  475. <Property Name="RecordStatus" Type="int" />
  476. <Property Name="CreateUserID" Type="uniqueidentifier" />
  477. <Property Name="CreateTime" Type="datetime" />
  478. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  479. <Property Name="ModifyTime" Type="datetime" />
  480. </EntityType>
  481. <EntityType Name="CF_Facultymajor">
  482. <Key>
  483. <PropertyRef Name="FacultymajorID" />
  484. </Key>
  485. <Property Name="FacultymajorID" Type="uniqueidentifier" Nullable="false" />
  486. <Property Name="CollegeID" Type="uniqueidentifier" />
  487. <Property Name="Code" Type="varchar" Nullable="false" MaxLength="50" />
  488. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  489. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  490. <Property Name="EnglishName" Type="varchar" MaxLength="100" />
  491. <Property Name="LearnSystem" Type="decimal" Scale="2" />
  492. <Property Name="LearnPositionID" Type="int" />
  493. <Property Name="EducationID" Type="int" />
  494. <Property Name="StandardID" Type="int" />
  495. <Property Name="ScienceclassID" Type="int" />
  496. <Property Name="LearningstyleID" Type="int" />
  497. <Property Name="LearningformID" Type="int" />
  498. <Property Name="SetTime" Type="datetime" />
  499. <Property Name="TeacherIdentification" Type="nvarchar" MaxLength="50" />
  500. <Property Name="RecordStatus" Type="int" />
  501. <Property Name="CreateTime" Type="datetime" />
  502. <Property Name="CreateUserID" Type="uniqueidentifier" />
  503. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  504. <Property Name="ModifyTime" Type="datetime" />
  505. <Property Name="Remarks" Type="nvarchar" MaxLength="500" />
  506. </EntityType>
  507. <EntityType Name="CF_Grademajor">
  508. <Key>
  509. <PropertyRef Name="GrademajorID" />
  510. </Key>
  511. <Property Name="GrademajorID" Type="uniqueidentifier" Nullable="false" />
  512. <Property Name="Code" Type="varchar" Nullable="false" MaxLength="50" />
  513. <Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="100" />
  514. <Property Name="Abbreviation" Type="nvarchar" MaxLength="100" />
  515. <Property Name="SchoolyearID" Type="int" />
  516. <Property Name="Professional" Type="varchar" MaxLength="100" />
  517. <Property Name="SchoolcodeID" Type="int" />
  518. <Property Name="FacultymajorID" Type="uniqueidentifier" />
  519. <Property Name="GraduatingSemesterID" Type="uniqueidentifier" />
  520. <Property Name="RecordStatus" Type="int" />
  521. <Property Name="CreateTime" Type="datetime" />
  522. <Property Name="CreateUserID" Type="uniqueidentifier" />
  523. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  524. <Property Name="ModifyTime" Type="datetime" />
  525. <Property Name="Remarks" Type="nvarchar" MaxLength="500" />
  526. </EntityType>
  527. <EntityType Name="CF_Recruitstudents">
  528. <Key>
  529. <PropertyRef Name="UserID" />
  530. </Key>
  531. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  532. <Property Name="EntranceDate" Type="datetime" />
  533. <Property Name="EntranceWay" Type="int" />
  534. <Property Name="ExamineeNum" Type="varchar" MaxLength="50" />
  535. <Property Name="PlaceBirth" Type="varchar" MaxLength="100" />
  536. <Property Name="ExamineeType" Type="int" />
  537. <Property Name="Features" Type="int" />
  538. <Property Name="Score" Type="decimal" Scale="2" />
  539. <Property Name="Territorial" Type="int" />
  540. <Property Name="Area" Type="varchar" MaxLength="200" />
  541. <Property Name="RecordStatus" Type="int" />
  542. <Property Name="CreateTime" Type="datetime" />
  543. <Property Name="CreateUserID" Type="uniqueidentifier" />
  544. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  545. <Property Name="ModifyTime" Type="datetime" />
  546. <Property Name="EnteringSchoolYearID" Type="uniqueidentifier" />
  547. <Property Name="AdmissionTicketNo" Type="varchar" MaxLength="50" />
  548. </EntityType>
  549. <EntityType Name="CF_Schoolyear">
  550. <Key>
  551. <PropertyRef Name="SchoolyearID" />
  552. </Key>
  553. <Property Name="SchoolyearID" Type="uniqueidentifier" Nullable="false" />
  554. <Property Name="Code" Type="nvarchar" MaxLength="50" />
  555. <Property Name="Years" Type="int" Nullable="false" />
  556. <Property Name="SchoolcodeID" Type="int" Nullable="false" />
  557. <Property Name="WeeksNum" Type="int" Nullable="false" />
  558. <Property Name="FirstWeek" Type="datetime" Nullable="false" />
  559. <Property Name="IsCurrent" Type="bit" Nullable="false" />
  560. <Property Name="WeekDays" Type="int" Nullable="false" />
  561. <Property Name="RecordStatus" Type="int" />
  562. <Property Name="CreateTime" Type="datetime" />
  563. <Property Name="CreateUserID" Type="uniqueidentifier" />
  564. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  565. <Property Name="ModifyTime" Type="datetime" />
  566. <Property Name="Value" Type="int" />
  567. </EntityType>
  568. <EntityType Name="CF_Staff">
  569. <Key>
  570. <PropertyRef Name="UserID" />
  571. </Key>
  572. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  573. <Property Name="CollegeID" Type="uniqueidentifier" />
  574. <Property Name="DepartmentID" Type="uniqueidentifier" />
  575. <Property Name="StaffCode" Type="varchar" Nullable="false" MaxLength="50" />
  576. <Property Name="BirthDate" Type="datetime" />
  577. <Property Name="Sex" Type="int" />
  578. <Property Name="TeacherType" Type="int" />
  579. <Property Name="IncumbencyState" Type="int" />
  580. <Property Name="CertificatesType" Type="int" />
  581. <Property Name="CertificatesNum" Type="varchar" MaxLength="50" />
  582. <Property Name="Situation" Type="int" />
  583. <Property Name="LiteracyLevels" Type="int" />
  584. <Property Name="DegreeState" Type="int" />
  585. <Property Name="LearnPosition" Type="int" />
  586. <Property Name="Title" Type="int" />
  587. <Property Name="WorkDate" Type="datetime" />
  588. <Property Name="ComeSchoolDate" Type="datetime" />
  589. <Property Name="TeachingDate" Type="datetime" />
  590. <Property Name="PhotoUrl" Type="varchar" MaxLength="200" />
  591. <Property Name="Profile" Type="varchar" MaxLength="500" />
  592. <Property Name="Remarks" Type="nvarchar(max)" />
  593. <Property Name="RecordStatus" Type="int" />
  594. <Property Name="CreateTime" Type="datetime" />
  595. <Property Name="CreateUserID" Type="uniqueidentifier" />
  596. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  597. <Property Name="ModifyTime" Type="datetime" />
  598. </EntityType>
  599. <EntityType Name="CF_StaffProfile">
  600. <Key>
  601. <PropertyRef Name="UserID" />
  602. </Key>
  603. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  604. <Property Name="UsedName" Type="varchar" MaxLength="20" />
  605. <Property Name="Nation" Type="int" />
  606. <Property Name="Place" Type="nvarchar" MaxLength="20" />
  607. <Property Name="EducationCode" Type="int" />
  608. <Property Name="Telephone" Type="nvarchar" MaxLength="50" />
  609. <Property Name="OfficeTelephone" Type="nvarchar" MaxLength="50" />
  610. <Property Name="Mobile" Type="nvarchar" MaxLength="50" />
  611. <Property Name="Email" Type="nvarchar" MaxLength="50" />
  612. <Property Name="QQ" Type="varchar" MaxLength="20" />
  613. <Property Name="Nationality" Type="varchar" MaxLength="20" />
  614. <Property Name="HealthState" Type="int" />
  615. <Property Name="HousePhone" Type="varchar" MaxLength="20" />
  616. <Property Name="Address" Type="varchar" MaxLength="50" />
  617. <Property Name="Postcode" Type="varchar" MaxLength="10" />
  618. <Property Name="HomeAddress" Type="varchar" MaxLength="50" />
  619. <Property Name="NowAddress" Type="varchar" MaxLength="50" />
  620. <Property Name="Residence" Type="varchar" MaxLength="50" />
  621. <Property Name="Speciality" Type="varchar" MaxLength="500" />
  622. <Property Name="WeChatNum" Type="varchar" MaxLength="50" />
  623. <Property Name="Religion" Type="int" />
  624. <Property Name="Account" Type="varchar" MaxLength="50" />
  625. </EntityType>
  626. <EntityType Name="CF_Student">
  627. <Key>
  628. <PropertyRef Name="UserID" />
  629. </Key>
  630. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  631. <Property Name="ClassmajorID" Type="uniqueidentifier" />
  632. <Property Name="PhotoUrl" Type="varchar" MaxLength="500" />
  633. <Property Name="Sex" Type="int" />
  634. <Property Name="CertificatesType" Type="int" />
  635. <Property Name="IDNumber" Type="varchar" MaxLength="20" />
  636. <Property Name="StudentCardNo" Type="varchar" MaxLength="50" />
  637. <Property Name="PlanningGraduateDate" Type="datetime" />
  638. <Property Name="CultureModel" Type="int" />
  639. <Property Name="StudentType" Type="int" />
  640. <Property Name="StudentStatus" Type="int" />
  641. <Property Name="InSchoolStatusID" Type="int" />
  642. <Property Name="IsProofread" Type="bit" />
  643. <Property Name="RecordStatus" Type="int" />
  644. <Property Name="CreateTime" Type="datetime" />
  645. <Property Name="CreateUserID" Type="uniqueidentifier" />
  646. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  647. <Property Name="ModifyTime" Type="datetime" />
  648. <Property Name="GraduateCardNo" Type="varchar" MaxLength="50" />
  649. <Property Name="IsDreamProject" Type="bit" />
  650. <Property Name="Career" Type="nvarchar(max)" />
  651. </EntityType>
  652. <EntityType Name="CF_StudentContact">
  653. <Key>
  654. <PropertyRef Name="UserID" />
  655. </Key>
  656. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  657. <Property Name="Email" Type="varchar" MaxLength="100" />
  658. <Property Name="QQ" Type="varchar" MaxLength="40" />
  659. <Property Name="Mobile" Type="varchar" MaxLength="50" />
  660. <Property Name="Telephone" Type="varchar" MaxLength="50" />
  661. <Property Name="MicroMsgNo" Type="varchar" MaxLength="20" />
  662. <Property Name="Zipcode" Type="varchar" MaxLength="10" />
  663. <Property Name="Address" Type="nvarchar" MaxLength="200" />
  664. <Property Name="WorkUnit" Type="nvarchar" MaxLength="200" />
  665. <Property Name="HomeAddress" Type="nvarchar" MaxLength="200" />
  666. <Property Name="Recipient" Type="nvarchar" MaxLength="20" />
  667. <Property Name="Dormitory" Type="nvarchar" MaxLength="100" />
  668. <Property Name="RecordStatus" Type="int" />
  669. <Property Name="CreateTime" Type="datetime" />
  670. <Property Name="CreateUserID" Type="uniqueidentifier" />
  671. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  672. <Property Name="ModifyTime" Type="datetime" />
  673. </EntityType>
  674. <EntityType Name="CF_StudentContrast">
  675. <Key>
  676. <PropertyRef Name="StudentContrastID" />
  677. </Key>
  678. <Property Name="StudentContrastID" Type="uniqueidentifier" Nullable="false" />
  679. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  680. <Property Name="ClassmajorID" Type="uniqueidentifier" />
  681. <Property Name="PhotoUrl" Type="varchar" MaxLength="500" />
  682. <Property Name="Sex" Type="int" Nullable="false" />
  683. <Property Name="CertificatesType" Type="int" />
  684. <Property Name="IDNumber" Type="varchar" Nullable="false" MaxLength="20" />
  685. <Property Name="StudentCardNo" Type="varchar" MaxLength="50" />
  686. <Property Name="PlanningGraduateDate" Type="datetime" />
  687. <Property Name="CultureModel" Type="int" />
  688. <Property Name="StudentType" Type="int" />
  689. <Property Name="StudentStatus" Type="int" />
  690. <Property Name="InSchoolStatusID" Type="int" />
  691. <Property Name="RecordStatus" Type="int" />
  692. <Property Name="CreateTime" Type="datetime" />
  693. <Property Name="CreateUserID" Type="uniqueidentifier" />
  694. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  695. <Property Name="ModifyTime" Type="datetime" />
  696. <Property Name="IP" Type="varchar" MaxLength="50" />
  697. <Property Name="AuditComments" Type="varchar(max)" />
  698. <Property Name="GraduateCardNo" Type="varchar" MaxLength="50" />
  699. <Property Name="IsDreamProject" Type="bit" />
  700. <Property Name="Career" Type="nvarchar(max)" />
  701. </EntityType>
  702. <EntityType Name="CF_StudentRole">
  703. <Key>
  704. <PropertyRef Name="RoleID" />
  705. </Key>
  706. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  707. <Property Name="StudentType" Type="int" />
  708. <Property Name="RecordStatus" Type="int" />
  709. <Property Name="CreateTime" Type="datetime" />
  710. <Property Name="CreateUserID" Type="uniqueidentifier" />
  711. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  712. <Property Name="ModifyTime" Type="datetime" />
  713. </EntityType>
  714. <EntityType Name="CF_University">
  715. <Key>
  716. <PropertyRef Name="UniversityID" />
  717. </Key>
  718. <Property Name="UniversityID" Type="uniqueidentifier" Nullable="false" />
  719. <Property Name="Code" Type="varchar" MaxLength="20" />
  720. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  721. <Property Name="EnglishName" Type="varchar" MaxLength="200" />
  722. <Property Name="SimpleName" Type="nvarchar" MaxLength="50" />
  723. <Property Name="RecordStatus" Type="int" />
  724. <Property Name="CreateUserID" Type="uniqueidentifier" />
  725. <Property Name="CreateTime" Type="datetime" />
  726. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  727. <Property Name="ModifyTime" Type="datetime" />
  728. </EntityType>
  729. <EntityType Name="Coursework">
  730. <Key>
  731. <PropertyRef Name="ID" />
  732. </Key>
  733. <Property Name="ID" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  734. <Property Name="PaperID" Type="decimal" />
  735. <Property Name="WorkName" Type="varchar" MaxLength="300" />
  736. <Property Name="BeginTime" Type="datetime" />
  737. <Property Name="EndTime" Type="datetime" />
  738. <Property Name="breaking_id" Type="int" />
  739. <Property Name="test_method_set_id" Type="decimal" />
  740. <Property Name="notice_method_id" Type="varchar" MaxLength="300" />
  741. <Property Name="status_id" Type="int" />
  742. <Property Name="created_by" Type="varchar" MaxLength="40" />
  743. <Property Name="created_date" Type="varchar" MaxLength="49" />
  744. <Property Name="ISautoBegin" Type="bit" />
  745. <Property Name="isOpenAnswer" Type="bit" />
  746. <Property Name="rand_Test_time" Type="int" />
  747. <Property Name="rand_test_count" Type="int" />
  748. <Property Name="rand_test_point_type" Type="int" />
  749. <Property Name="rand_test_point_setid" Type="int" />
  750. <Property Name="display_type" Type="int" />
  751. <Property Name="isPublishScore" Type="bit" />
  752. <Property Name="isControllable" Type="bit" />
  753. <Property Name="relogin_count" Type="int" />
  754. <Property Name="EducationMissionClassID" Type="uniqueidentifier" />
  755. <Property Name="ModityContent" Type="varchar(max)" />
  756. </EntityType>
  757. <EntityType Name="CourseworkAnswer">
  758. <Key>
  759. <PropertyRef Name="ID" />
  760. </Key>
  761. <Property Name="ID" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  762. <Property Name="workid" Type="decimal" />
  763. <Property Name="user_id" Type="varchar" MaxLength="40" />
  764. <Property Name="resultXml" Type="xml" />
  765. </EntityType>
  766. <EntityType Name="CourseworkResult">
  767. <Key>
  768. <PropertyRef Name="ID" />
  769. </Key>
  770. <Property Name="ID" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  771. <Property Name="user_id" Type="varchar" MaxLength="40" />
  772. <Property Name="test_paper_id" Type="decimal" />
  773. <Property Name="test_begin_date" Type="datetime" />
  774. <Property Name="test_end_date" Type="datetime" />
  775. <Property Name="limited_minutes" Type="int" />
  776. <Property Name="workid" Type="decimal" />
  777. <Property Name="ExaminationPaperID" Type="uniqueidentifier" />
  778. <Property Name="username" Type="varchar" MaxLength="40" />
  779. <Property Name="score" Type="float" />
  780. <Property Name="is_auto_read" Type="bit" />
  781. <Property Name="state" Type="int" />
  782. <Property Name="warning_count" Type="int" />
  783. <Property Name="lastLoginTime" Type="datetime" />
  784. </EntityType>
  785. <EntityType Name="EM_CourseChapter">
  786. <Key>
  787. <PropertyRef Name="CourseChapterID" />
  788. </Key>
  789. <Property Name="CourseChapterID" Type="uniqueidentifier" Nullable="false" />
  790. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  791. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  792. <Property Name="OrderID" Type="int" />
  793. <Property Name="ParentCourseChapterID" Type="uniqueidentifier" />
  794. <Property Name="VideoTypeID" Type="int" />
  795. <Property Name="OuterVideoUrl" Type="varchar" MaxLength="2048" />
  796. <Property Name="RecordStatus" Type="int" />
  797. <Property Name="CreateTime" Type="datetime" />
  798. <Property Name="CreateUserID" Type="uniqueidentifier" />
  799. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  800. <Property Name="ModifyTime" Type="datetime" />
  801. </EntityType>
  802. <EntityType Name="EM_CourseChapter_Video">
  803. <Key>
  804. <PropertyRef Name="CourseVideoID" />
  805. <PropertyRef Name="CourseChapterID" />
  806. </Key>
  807. <Property Name="CourseVideoID" Type="uniqueidentifier" Nullable="false" />
  808. <Property Name="CourseChapterID" Type="uniqueidentifier" Nullable="false" />
  809. </EntityType>
  810. <EntityType Name="EM_Coursematerial">
  811. <Key>
  812. <PropertyRef Name="CoursematerialID" />
  813. </Key>
  814. <Property Name="CoursematerialID" Type="uniqueidentifier" Nullable="false" />
  815. <Property Name="ClassGroupingID" Type="uniqueidentifier" />
  816. <Property Name="CourseCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  817. <Property Name="CourseName" Type="nvarchar" Nullable="false" MaxLength="50" />
  818. <Property Name="Abbreviation" Type="nvarchar" MaxLength="50" />
  819. <Property Name="EnglishName" Type="nvarchar" MaxLength="50" />
  820. <Property Name="StandardName" Type="nvarchar" MaxLength="50" />
  821. <Property Name="CourseEdition" Type="nvarchar" MaxLength="50" />
  822. <Property Name="CourseSynopsis" Type="nvarchar" MaxLength="50" />
  823. <Property Name="CourseReserve" Type="nvarchar" MaxLength="50" />
  824. <Property Name="IsEnable" Type="bit" />
  825. <Property Name="CourseLevelID" Type="int" />
  826. <Property Name="CourseScienceID" Type="int" />
  827. <Property Name="Remarks" Type="nvarchar" MaxLength="500" />
  828. <Property Name="RecordStatus" Type="int" />
  829. <Property Name="CreateTime" Type="datetime" />
  830. <Property Name="CreateUserID" Type="uniqueidentifier" />
  831. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  832. <Property Name="ModifyTime" Type="datetime" />
  833. </EntityType>
  834. <EntityType Name="EM_CoursematerialExtend">
  835. <Key>
  836. <PropertyRef Name="CoursematerialID" />
  837. </Key>
  838. <Property Name="CoursematerialID" Type="uniqueidentifier" Nullable="false" />
  839. <Property Name="CoverUrl" Type="varchar" MaxLength="1024" />
  840. <Property Name="RecordStatus" Type="int" />
  841. <Property Name="CreateTime" Type="datetime" />
  842. <Property Name="CreateUserID" Type="uniqueidentifier" />
  843. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  844. <Property Name="ModifyTime" Type="datetime" />
  845. </EntityType>
  846. <EntityType Name="EM_CourseStudyStatus">
  847. <Key>
  848. <PropertyRef Name="CourseStudyStatusID" />
  849. </Key>
  850. <Property Name="CourseStudyStatusID" Type="uniqueidentifier" Nullable="false" />
  851. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  852. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  853. <Property Name="ContinuousTime" Type="int" />
  854. <Property Name="LastVideoTypeID" Type="int" />
  855. <Property Name="LastCourseVideoID" Type="uniqueidentifier" />
  856. <Property Name="LastCourseVideoLength" Type="int" />
  857. <Property Name="LastOuterVideoUrl" Type="varchar" MaxLength="2048" />
  858. </EntityType>
  859. <EntityType Name="EM_CourseVideo">
  860. <Key>
  861. <PropertyRef Name="CourseVideoID" />
  862. </Key>
  863. <Property Name="CourseVideoID" Type="uniqueidentifier" Nullable="false" />
  864. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  865. <Property Name="UploadUrl" Type="varchar" MaxLength="2048" />
  866. <Property Name="PlayUrl" Type="varchar" MaxLength="2048" />
  867. <Property Name="RecordStatus" Type="int" />
  868. <Property Name="CreateTime" Type="datetime" />
  869. <Property Name="CreateUserID" Type="uniqueidentifier" />
  870. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  871. <Property Name="ModifyTime" Type="datetime" />
  872. </EntityType>
  873. <EntityType Name="EM_EducationMission">
  874. <Key>
  875. <PropertyRef Name="EducationMissionID" />
  876. </Key>
  877. <Property Name="EducationMissionID" Type="uniqueidentifier" Nullable="false" />
  878. <Property Name="CollegeID" Type="uniqueidentifier" />
  879. <Property Name="DepartmentID" Type="uniqueidentifier" />
  880. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  881. <Property Name="ClassName" Type="nvarchar" MaxLength="100" />
  882. <Property Name="RecordStatus" Type="int" />
  883. <Property Name="CreateTime" Type="datetime" />
  884. <Property Name="CreateUserID" Type="uniqueidentifier" />
  885. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  886. <Property Name="ModifyTime" Type="datetime" />
  887. </EntityType>
  888. <EntityType Name="EM_EducationMissionClass">
  889. <Key>
  890. <PropertyRef Name="EducationMissionClassID" />
  891. </Key>
  892. <Property Name="EducationMissionClassID" Type="uniqueidentifier" Nullable="false" />
  893. <Property Name="EducationMissionID" Type="uniqueidentifier" />
  894. <Property Name="MainScheduleClassID" Type="uniqueidentifier" />
  895. <Property Name="OrderNo" Type="int" />
  896. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  897. <Property Name="TeachingModeID" Type="int" />
  898. <Property Name="OptionalCourseTypeID" Type="int" />
  899. <Property Name="ClassroomTypeID" Type="int" />
  900. <Property Name="ClassroomID" Type="uniqueidentifier" />
  901. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  902. <Property Name="CourseStructureID" Type="int" />
  903. <Property Name="CourseCategoryID" Type="int" />
  904. <Property Name="CourseTypeID" Type="int" />
  905. <Property Name="CourseQualityID" Type="int" />
  906. <Property Name="ExaminationModeID" Type="int" />
  907. <Property Name="TeachinglanguageID" Type="int" />
  908. <Property Name="HandleModeID" Type="int" />
  909. <Property Name="IsNeedMaterial" Type="bit" />
  910. <Property Name="ResultTypeID" Type="int" />
  911. <Property Name="Remark" Type="nvarchar(max)" />
  912. <Property Name="RecordStatus" Type="int" />
  913. <Property Name="CreateUserID" Type="uniqueidentifier" />
  914. <Property Name="CreateTime" Type="datetime" />
  915. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  916. <Property Name="ModifyTime" Type="datetime" />
  917. </EntityType>
  918. <EntityType Name="EM_EducationMissionClass_CF_Classmajor">
  919. <Key>
  920. <PropertyRef Name="EducationMissionClassID" />
  921. <PropertyRef Name="ClassmajorID" />
  922. </Key>
  923. <Property Name="EducationMissionClassID" Type="uniqueidentifier" Nullable="false" />
  924. <Property Name="ClassmajorID" Type="uniqueidentifier" Nullable="false" />
  925. </EntityType>
  926. <EntityType Name="EM_EducationMissionClassTeachingSetting">
  927. <Key>
  928. <PropertyRef Name="EducationMissionClassID" />
  929. </Key>
  930. <Property Name="EducationMissionClassID" Type="uniqueidentifier" Nullable="false" />
  931. <Property Name="Credit" Type="decimal" Scale="2" />
  932. <Property Name="TheoryCourse" Type="int" />
  933. <Property Name="Practicehours" Type="int" />
  934. <Property Name="Trialhours" Type="int" />
  935. <Property Name="WeeklyNum" Type="int" />
  936. <Property Name="TheoryWeeklyNum" Type="int" />
  937. <Property Name="PracticeWeeklyNum" Type="int" />
  938. <Property Name="TrialWeeklyNum" Type="int" />
  939. <Property Name="StartWeeklyNum" Type="int" />
  940. <Property Name="EndWeeklyNum" Type="int" />
  941. <Property Name="WeeklyHours" Type="int" />
  942. </EntityType>
  943. <EntityType Name="EM_EducationSchedulingClass">
  944. <Key>
  945. <PropertyRef Name="EducationSchedulingClassID" />
  946. </Key>
  947. <Property Name="EducationSchedulingClassID" Type="uniqueidentifier" Nullable="false" />
  948. <Property Name="EducationMissionClassID" Type="uniqueidentifier" />
  949. <Property Name="TaskGroupName" Type="nvarchar" MaxLength="50" />
  950. <Property Name="Remarks" Type="nvarchar" MaxLength="200" />
  951. <Property Name="RecordStatus" Type="int" />
  952. <Property Name="CreateTime" Type="datetime" />
  953. <Property Name="CreateUserID" Type="uniqueidentifier" />
  954. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  955. <Property Name="ModifyTime" Type="datetime" />
  956. </EntityType>
  957. <EntityType Name="EM_EducationSchedulingClass_CF_Student">
  958. <Key>
  959. <PropertyRef Name="EducationSchedulingClassID" />
  960. <PropertyRef Name="UserID" />
  961. </Key>
  962. <Property Name="EducationSchedulingClassID" Type="uniqueidentifier" Nullable="false" />
  963. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  964. </EntityType>
  965. <EntityType Name="EM_ExecutableFreeSelectionCouse">
  966. <Key>
  967. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  968. </Key>
  969. <Property Name="ExecutableFreeSelectionCouseID" Type="uniqueidentifier" Nullable="false" />
  970. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  971. <Property Name="FreeSelectionCouseID" Type="uniqueidentifier" />
  972. <Property Name="DefaultClassName" Type="nvarchar" MaxLength="50" />
  973. <Property Name="DepartmentID" Type="uniqueidentifier" />
  974. <Property Name="CourseStructureID" Type="int" />
  975. <Property Name="CourseCategoryID" Type="int" />
  976. <Property Name="CourseTypeID" Type="int" />
  977. <Property Name="CourseQualityID" Type="int" />
  978. <Property Name="PracticeTypeID" Type="int" />
  979. <Property Name="ExaminationModeID" Type="int" />
  980. <Property Name="TeachinglanguageID" Type="int" />
  981. <Property Name="IsNeedMaterial" Type="bit" />
  982. <Property Name="PeopleNumlower" Type="int" />
  983. <Property Name="PeopleNumlimit" Type="int" />
  984. <Property Name="HandleModeID" Type="int" />
  985. <Property Name="IsOpened" Type="bit" />
  986. <Property Name="ResultTypeID" Type="int" />
  987. <Property Name="Remarks" Type="nvarchar" MaxLength="500" />
  988. <Property Name="RecordStatus" Type="int" />
  989. <Property Name="CreateTime" Type="datetime" />
  990. <Property Name="CreateUserID" Type="uniqueidentifier" />
  991. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  992. <Property Name="ModifyTime" Type="datetime" />
  993. </EntityType>
  994. <EntityType Name="EM_ExecutableFreeSelectionCouseTeachingSetting">
  995. <Key>
  996. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  997. </Key>
  998. <Property Name="ExecutableFreeSelectionCouseID" Type="uniqueidentifier" Nullable="false" />
  999. <Property Name="Credit" Type="decimal" Scale="2" />
  1000. <Property Name="TheoryCourse" Type="int" />
  1001. <Property Name="Practicehours" Type="int" />
  1002. <Property Name="Trialhours" Type="int" />
  1003. <Property Name="WeeklyNum" Type="int" />
  1004. <Property Name="TheoryWeeklyNum" Type="int" />
  1005. <Property Name="PracticeWeeklyNum" Type="int" />
  1006. <Property Name="TrialWeeklyNum" Type="int" />
  1007. <Property Name="StartWeeklyNum" Type="int" />
  1008. <Property Name="EndWeeklyNum" Type="int" />
  1009. <Property Name="WeeklyHours" Type="int" />
  1010. </EntityType>
  1011. <EntityType Name="EM_ExecutableOptionalCourse">
  1012. <Key>
  1013. <PropertyRef Name="ExecutableOptionalCourseID" />
  1014. </Key>
  1015. <Property Name="ExecutableOptionalCourseID" Type="uniqueidentifier" Nullable="false" />
  1016. <Property Name="OptionalCourseID" Type="uniqueidentifier" />
  1017. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1018. <Property Name="GrademajorID" Type="uniqueidentifier" />
  1019. <Property Name="DepartmentID" Type="uniqueidentifier" />
  1020. <Property Name="DefaultClassName" Type="nvarchar" MaxLength="50" />
  1021. <Property Name="CourseStructureID" Type="int" />
  1022. <Property Name="CourseCategoryID" Type="int" />
  1023. <Property Name="CourseTypeID" Type="int" />
  1024. <Property Name="CourseQualityID" Type="int" />
  1025. <Property Name="PracticeTypeID" Type="int" />
  1026. <Property Name="ExaminationModeID" Type="int" />
  1027. <Property Name="TeachinglanguageID" Type="int" />
  1028. <Property Name="IsEnable" Type="bit" />
  1029. <Property Name="ResultTypeID" Type="int" />
  1030. <Property Name="Remarks" Type="varchar" MaxLength="500" />
  1031. <Property Name="PeopleNumlower" Type="int" />
  1032. <Property Name="PeopleNumlimit" Type="int" />
  1033. <Property Name="IsOpened" Type="bit" />
  1034. <Property Name="RecordStatus" Type="int" />
  1035. <Property Name="CreateTime" Type="datetime" />
  1036. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1037. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1038. <Property Name="ModifyTime" Type="datetime" />
  1039. </EntityType>
  1040. <EntityType Name="EM_ExecutableOptionalCourseTeachingSetting">
  1041. <Key>
  1042. <PropertyRef Name="ExecutableOptionalCourseID" />
  1043. </Key>
  1044. <Property Name="ExecutableOptionalCourseID" Type="uniqueidentifier" Nullable="false" />
  1045. <Property Name="Credit" Type="decimal" Scale="2" />
  1046. <Property Name="TheoryCourse" Type="int" />
  1047. <Property Name="Practicehours" Type="int" />
  1048. <Property Name="Trialhours" Type="int" />
  1049. <Property Name="WeeklyNum" Type="int" />
  1050. <Property Name="TheoryWeeklyNum" Type="int" />
  1051. <Property Name="PracticeWeeklyNum" Type="int" />
  1052. <Property Name="TrialWeeklyNum" Type="int" />
  1053. <Property Name="StartWeeklyNum" Type="int" />
  1054. <Property Name="EndWeeklyNum" Type="int" />
  1055. <Property Name="WeeklyHours" Type="int" />
  1056. </EntityType>
  1057. <EntityType Name="EM_ExecutablePlan">
  1058. <Key>
  1059. <PropertyRef Name="ExecutablePlanID" />
  1060. </Key>
  1061. <Property Name="ExecutablePlanID" Type="uniqueidentifier" Nullable="false" />
  1062. <Property Name="SourceTypeID" Type="int" />
  1063. <Property Name="HandleModeID" Type="int" />
  1064. <Property Name="GrademajorID" Type="uniqueidentifier" />
  1065. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1066. <Property Name="SpecialtyPlanID" Type="uniqueidentifier" />
  1067. <Property Name="DefaultClassName" Type="nvarchar" MaxLength="50" />
  1068. <Property Name="IsNeedMaterial" Type="bit" />
  1069. <Property Name="DepartmentID" Type="uniqueidentifier" />
  1070. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  1071. <Property Name="CourseStructureID" Type="int" />
  1072. <Property Name="CourseCategoryID" Type="int" />
  1073. <Property Name="CourseTypeID" Type="int" />
  1074. <Property Name="CourseQualityID" Type="int" />
  1075. <Property Name="ResultTypeID" Type="int" />
  1076. <Property Name="Remarks" Type="varchar" MaxLength="500" />
  1077. <Property Name="RecordStatus" Type="int" />
  1078. <Property Name="CreateTime" Type="datetime" />
  1079. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1080. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1081. <Property Name="ModifyTime" Type="datetime" />
  1082. </EntityType>
  1083. <EntityType Name="EM_ExecutablePlanTeachingSetting">
  1084. <Key>
  1085. <PropertyRef Name="ExecutablePlanID" />
  1086. </Key>
  1087. <Property Name="ExecutablePlanID" Type="uniqueidentifier" Nullable="false" />
  1088. <Property Name="Credit" Type="decimal" Scale="2" />
  1089. <Property Name="TheoryCourse" Type="int" />
  1090. <Property Name="Practicehours" Type="int" />
  1091. <Property Name="Trialhours" Type="int" />
  1092. <Property Name="WeeklyNum" Type="int" />
  1093. <Property Name="TheoryWeeklyNum" Type="int" />
  1094. <Property Name="PracticeWeeklyNum" Type="int" />
  1095. <Property Name="TrialWeeklyNum" Type="int" />
  1096. <Property Name="StartWeeklyNum" Type="int" />
  1097. <Property Name="EndWeeklyNum" Type="int" />
  1098. <Property Name="WeeklyHours" Type="int" />
  1099. </EntityType>
  1100. <EntityType Name="EM_FreeSelectionCouse">
  1101. <Key>
  1102. <PropertyRef Name="FreeSelectionCouseID" />
  1103. </Key>
  1104. <Property Name="FreeSelectionCouseID" Type="uniqueidentifier" Nullable="false" />
  1105. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  1106. <Property Name="DepartmentID" Type="uniqueidentifier" />
  1107. <Property Name="CourseStructureID" Type="int" />
  1108. <Property Name="CourseCategoryID" Type="int" />
  1109. <Property Name="CourseTypeID" Type="int" />
  1110. <Property Name="CourseQualityID" Type="int" />
  1111. <Property Name="PracticeTypeID" Type="int" />
  1112. <Property Name="ExaminationModeID" Type="int" />
  1113. <Property Name="TeachinglanguageID" Type="int" />
  1114. <Property Name="SchoolyearNumID" Type="int" />
  1115. <Property Name="SchoolcodeID" Type="int" />
  1116. <Property Name="IsEnable" Type="bit" />
  1117. <Property Name="ResultTypeID" Type="int" />
  1118. <Property Name="Remark" Type="nvarchar(max)" />
  1119. <Property Name="RecordStatus" Type="int" />
  1120. <Property Name="CreateTime" Type="datetime" />
  1121. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1122. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1123. <Property Name="ModifyTime" Type="datetime" />
  1124. </EntityType>
  1125. <EntityType Name="EM_FTPVideo">
  1126. <Key>
  1127. <PropertyRef Name="FTPVideoID" />
  1128. </Key>
  1129. <Property Name="FTPVideoID" Type="uniqueidentifier" Nullable="false" />
  1130. <Property Name="Name" Type="nvarchar" MaxLength="500" />
  1131. <Property Name="FTPPath" Type="varchar" MaxLength="2048" />
  1132. <Property Name="FTPUrl" Type="varchar" MaxLength="2048" />
  1133. <Property Name="M3u8Url" Type="varchar" MaxLength="2048" />
  1134. <Property Name="M3u8Path" Type="varchar" MaxLength="2048" />
  1135. <Property Name="ModifyTime" Type="datetime" />
  1136. <Property Name="CreateTime" Type="datetime" />
  1137. <Property Name="Status" Type="int" />
  1138. </EntityType>
  1139. <EntityType Name="EM_MissionClassTeacher">
  1140. <Key>
  1141. <PropertyRef Name="MissionClassTeacherID" />
  1142. </Key>
  1143. <Property Name="MissionClassTeacherID" Type="uniqueidentifier" Nullable="false" />
  1144. <Property Name="MissionClassID" Type="uniqueidentifier" />
  1145. <Property Name="UserID" Type="uniqueidentifier" />
  1146. <Property Name="TeachType" Type="int" />
  1147. <Property Name="RecordStatus" Type="int" />
  1148. <Property Name="CreateTime" Type="datetime" />
  1149. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1150. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1151. <Property Name="ModifyTime" Type="datetime" />
  1152. </EntityType>
  1153. <EntityType Name="EM_OptionalCoursePlan">
  1154. <Key>
  1155. <PropertyRef Name="OptionalCourseID" />
  1156. </Key>
  1157. <Property Name="OptionalCourseID" Type="uniqueidentifier" Nullable="false" />
  1158. <Property Name="DepartmentID" Type="uniqueidentifier" />
  1159. <Property Name="SpecialtyID" Type="uniqueidentifier" />
  1160. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  1161. <Property Name="CourseStructureID" Type="int" />
  1162. <Property Name="CourseCategoryID" Type="int" />
  1163. <Property Name="CourseTypeID" Type="int" />
  1164. <Property Name="CourseQualityID" Type="int" />
  1165. <Property Name="PracticeTypeID" Type="int" />
  1166. <Property Name="ExaminationModeID" Type="int" />
  1167. <Property Name="TeachinglanguageID" Type="int" />
  1168. <Property Name="SchoolyearNumID" Type="int" />
  1169. <Property Name="SchoolcodeID" Type="int" />
  1170. <Property Name="IsEnable" Type="bit" />
  1171. <Property Name="ResultTypeID" Type="int" />
  1172. <Property Name="Remarks" Type="varchar" MaxLength="500" />
  1173. <Property Name="PeopleNumlower" Type="int" />
  1174. <Property Name="PeopleNumlimit" Type="int" />
  1175. <Property Name="IsOpened" Type="bit" />
  1176. <Property Name="RecordStatus" Type="int" />
  1177. <Property Name="CreateTime" Type="datetime" />
  1178. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1179. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1180. <Property Name="ModifyTime" Type="datetime" />
  1181. </EntityType>
  1182. <EntityType Name="EM_SpecialtyCourse">
  1183. <Key>
  1184. <PropertyRef Name="SpecialtyCourseID" />
  1185. </Key>
  1186. <Property Name="SpecialtyCourseID" Type="uniqueidentifier" Nullable="false" />
  1187. <Property Name="DepartmentID" Type="uniqueidentifier" />
  1188. <Property Name="SpecialtyID" Type="uniqueidentifier" />
  1189. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  1190. <Property Name="CourseStructureID" Type="int" />
  1191. <Property Name="CourseCategoryID" Type="int" />
  1192. <Property Name="CourseTypeID" Type="int" />
  1193. <Property Name="CourseQualityID" Type="int" />
  1194. <Property Name="PracticeTypeID" Type="int" />
  1195. <Property Name="ExaminationModeID" Type="int" />
  1196. <Property Name="TeachinglanguageID" Type="int" />
  1197. <Property Name="SchoolyearNumID" Type="int" />
  1198. <Property Name="SchoolcodeID" Type="int" />
  1199. <Property Name="CourseFineID" Type="int" />
  1200. <Property Name="IsSpecialtycore" Type="bit" />
  1201. <Property Name="IsCooperation" Type="bit" />
  1202. <Property Name="IsRequired" Type="bit" />
  1203. <Property Name="IsElective" Type="bit" />
  1204. <Property Name="IsNetworkCourse" Type="bit" />
  1205. <Property Name="IsMainCourse" Type="bit" />
  1206. <Property Name="IsEnable" Type="bit" />
  1207. <Property Name="Remarks" Type="varchar" MaxLength="500" />
  1208. <Property Name="RecordStatus" Type="int" />
  1209. <Property Name="CreateTime" Type="datetime" />
  1210. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1211. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1212. <Property Name="ModifyTime" Type="datetime" />
  1213. </EntityType>
  1214. <EntityType Name="EM_SpecialtyCourseTeachingSetting">
  1215. <Key>
  1216. <PropertyRef Name="SpecialtyCourseID" />
  1217. </Key>
  1218. <Property Name="SpecialtyCourseID" Type="uniqueidentifier" Nullable="false" />
  1219. <Property Name="Credit" Type="decimal" Scale="2" />
  1220. <Property Name="TheoryCourse" Type="int" />
  1221. <Property Name="Practicehours" Type="int" />
  1222. <Property Name="Trialhours" Type="int" />
  1223. <Property Name="WeeklyNum" Type="int" />
  1224. <Property Name="TheoryWeeklyNum" Type="int" />
  1225. <Property Name="PracticeWeeklyNum" Type="int" />
  1226. <Property Name="TrialWeeklyNum" Type="int" />
  1227. <Property Name="StartWeeklyNum" Type="int" />
  1228. <Property Name="EndWeeklyNum" Type="int" />
  1229. <Property Name="WeeklyHours" Type="int" />
  1230. </EntityType>
  1231. <EntityType Name="ER_ScoreRule">
  1232. <Key>
  1233. <PropertyRef Name="ScoreRuleID" />
  1234. </Key>
  1235. <Property Name="ScoreRuleID" Type="uniqueidentifier" Nullable="false" />
  1236. <Property Name="LoginMax" Type="decimal" Scale="1" />
  1237. <Property Name="LoginEachTime" Type="decimal" Scale="1" />
  1238. <Property Name="CoursewareMax" Type="decimal" Scale="1" />
  1239. <Property Name="CoursewareContinueMinite" Type="int" />
  1240. <Property Name="CoursewareEachTime" Type="decimal" Scale="1" />
  1241. <Property Name="HomeworkMax" Type="decimal" Scale="1" />
  1242. <Property Name="TeacherScore" Type="decimal" Scale="1" />
  1243. </EntityType>
  1244. <EntityType Name="ER_TeacherScore">
  1245. <Key>
  1246. <PropertyRef Name="TeacherScoreID" />
  1247. </Key>
  1248. <Property Name="TeacherScoreID" Type="uniqueidentifier" Nullable="false" />
  1249. <Property Name="CoursematerialID" Type="uniqueidentifier" />
  1250. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1251. <Property Name="Score" Type="decimal" Scale="1" />
  1252. <Property Name="RecordStatus" Type="int" />
  1253. <Property Name="CreateTime" Type="datetime" />
  1254. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1255. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1256. <Property Name="ModifyTime" Type="datetime" />
  1257. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  1258. </EntityType>
  1259. <EntityType Name="Exam_Log">
  1260. <Key>
  1261. <PropertyRef Name="Id" />
  1262. </Key>
  1263. <Property Name="Id" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1264. <Property Name="Date" Type="datetime" Nullable="false" />
  1265. <Property Name="Thread" Type="varchar" Nullable="false" MaxLength="255" />
  1266. <Property Name="Level" Type="varchar" Nullable="false" MaxLength="50" />
  1267. <Property Name="Message" Type="varchar" Nullable="false" MaxLength="4000" />
  1268. <Property Name="Exception" Type="varchar" MaxLength="2000" />
  1269. </EntityType>
  1270. <EntityType Name="ExamineeAnswer">
  1271. <Key>
  1272. <PropertyRef Name="ID" />
  1273. </Key>
  1274. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1275. <Property Name="onlinetest_id" Type="decimal" Nullable="false" />
  1276. <Property Name="user_id" Type="varchar" Nullable="false" MaxLength="50" />
  1277. <Property Name="resultXml" Type="xml" Nullable="false" />
  1278. <Property Name="filled" Type="bit" Nullable="false" />
  1279. </EntityType>
  1280. <EntityType Name="ExamPaper">
  1281. <Key>
  1282. <PropertyRef Name="ID" />
  1283. </Key>
  1284. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1285. <Property Name="user_id" Type="varchar" Nullable="false" MaxLength="50" />
  1286. <Property Name="onlinetest_id" Type="decimal" Nullable="false" />
  1287. <Property Name="Sign" Type="bit" />
  1288. <Property Name="test_questions_Id" Type="decimal" Nullable="false" />
  1289. <Property Name="display_order" Type="int" />
  1290. <Property Name="answer_order" Type="varchar" MaxLength="200" />
  1291. <Property Name="base_question_type_id" Type="decimal" Nullable="false" />
  1292. <Property Name="filled" Type="bit" Nullable="false" />
  1293. <Property Name="time_of_filling" Type="datetime" />
  1294. </EntityType>
  1295. <EntityType Name="ExamResult">
  1296. <Key>
  1297. <PropertyRef Name="ID" />
  1298. </Key>
  1299. <Property Name="ID" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1300. <Property Name="user_id" Type="varchar" Nullable="false" MaxLength="50" />
  1301. <Property Name="test_name" Type="varchar" MaxLength="500" />
  1302. <Property Name="test_paper_id" Type="decimal" />
  1303. <Property Name="test_begin_date" Type="datetime" />
  1304. <Property Name="test_end_date" Type="datetime" />
  1305. <Property Name="limited_minutes" Type="int" />
  1306. <Property Name="test_address" Type="varchar" MaxLength="200" />
  1307. <Property Name="onlinetest_id" Type="decimal" Nullable="false" />
  1308. <Property Name="OrgId" Type="varchar" MaxLength="50" />
  1309. <Property Name="username" Type="nvarchar" MaxLength="50" />
  1310. <Property Name="score" Type="decimal" Precision="12" Scale="1" />
  1311. <Property Name="modifiy_sore" Type="decimal" Precision="12" Scale="1" />
  1312. <Property Name="is_auto_read" Type="bit" />
  1313. <Property Name="visible" Type="bit" />
  1314. <Property Name="is_man_read" Type="bit" />
  1315. <Property Name="last_examination" Type="varchar" MaxLength="50" />
  1316. <Property Name="state" Type="int" />
  1317. <Property Name="warning_count" Type="int" />
  1318. <Property Name="lastModified" Type="datetime" />
  1319. <Property Name="relogin_count" Type="int" />
  1320. <Property Name="time_of_filling" Type="datetime" />
  1321. <Property Name="filled" Type="bit" Nullable="false" />
  1322. <Property Name="lastLoginTime" Type="datetime" />
  1323. </EntityType>
  1324. <!--生成过程中发现错误:
  1325. 警告 6002: 表/视图“EmisOnline.dbo.ExamResult_backup_20120913”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1326. -->
  1327. <EntityType Name="ExamResult_backup_20120913">
  1328. <Key>
  1329. <PropertyRef Name="ID" />
  1330. <PropertyRef Name="user_id" />
  1331. <PropertyRef Name="onlinetest_id" />
  1332. </Key>
  1333. <Property Name="ID" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1334. <Property Name="user_id" Type="varchar" Nullable="false" MaxLength="50" />
  1335. <Property Name="test_name" Type="varchar" MaxLength="500" />
  1336. <Property Name="test_paper_id" Type="decimal" />
  1337. <Property Name="test_begin_date" Type="datetime" />
  1338. <Property Name="test_end_date" Type="datetime" />
  1339. <Property Name="limited_minutes" Type="int" />
  1340. <Property Name="test_address" Type="varchar" MaxLength="200" />
  1341. <Property Name="onlinetest_id" Type="decimal" Nullable="false" />
  1342. <Property Name="OrgId" Type="varchar" MaxLength="50" />
  1343. <Property Name="username" Type="nvarchar" MaxLength="50" />
  1344. <Property Name="score" Type="decimal" Precision="12" Scale="1" />
  1345. <Property Name="modifiy_sore" Type="decimal" Precision="12" Scale="1" />
  1346. <Property Name="is_auto_read" Type="bit" />
  1347. <Property Name="visible" Type="bit" />
  1348. <Property Name="is_man_read" Type="bit" />
  1349. <Property Name="last_examination" Type="varchar" MaxLength="50" />
  1350. </EntityType>
  1351. <EntityType Name="ExamSetting_Examiner">
  1352. <Key>
  1353. <PropertyRef Name="ID" />
  1354. </Key>
  1355. <Property Name="ID" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1356. <Property Name="onlinetest_id" Type="decimal" />
  1357. <Property Name="UserID" Type="nvarchar" Nullable="false" MaxLength="50" />
  1358. <Property Name="UserName" Type="nvarchar" MaxLength="50" />
  1359. <Property Name="UserType" Type="int" />
  1360. <Property Name="filled" Type="bit" Nullable="false" />
  1361. <Property Name="time_of_filling" Type="datetime" />
  1362. </EntityType>
  1363. <EntityType Name="ExamWarning">
  1364. <Key>
  1365. <PropertyRef Name="ID" />
  1366. </Key>
  1367. <Property Name="ID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  1368. <Property Name="WarningCount" Type="int" Nullable="false" />
  1369. <Property Name="Message" Type="nvarchar" Nullable="false" MaxLength="500" />
  1370. <Property Name="Creator" Type="varchar" Nullable="false" MaxLength="50" />
  1371. <Property Name="CreatorName" Type="nvarchar" MaxLength="50" />
  1372. <Property Name="Modified" Type="datetime" Nullable="false" />
  1373. <Property Name="AlertType" Type="int" Nullable="false" />
  1374. </EntityType>
  1375. <!--生成过程中发现错误:
  1376. 警告 6002: 表/视图“EmisOnline.dbo.MSreplication_objects”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1377. -->
  1378. <EntityType Name="MSreplication_objects">
  1379. <Key>
  1380. <PropertyRef Name="object_name" />
  1381. <PropertyRef Name="object_type" />
  1382. </Key>
  1383. <Property Name="publisher" Type="nvarchar" MaxLength="128" />
  1384. <Property Name="publisher_db" Type="nvarchar" MaxLength="128" />
  1385. <Property Name="publication" Type="nvarchar" MaxLength="128" />
  1386. <Property Name="object_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1387. <Property Name="object_type" Type="char" Nullable="false" MaxLength="2" />
  1388. <Property Name="article" Type="nvarchar" MaxLength="128" />
  1389. </EntityType>
  1390. <!--生成过程中发现错误:
  1391. 警告 6002: 表/视图“EmisOnline.dbo.MSreplication_subscriptions”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1392. -->
  1393. <EntityType Name="MSreplication_subscriptions">
  1394. <Key>
  1395. <PropertyRef Name="publisher" />
  1396. <PropertyRef Name="independent_agent" />
  1397. <PropertyRef Name="subscription_type" />
  1398. <PropertyRef Name="time" />
  1399. <PropertyRef Name="transaction_timestamp" />
  1400. <PropertyRef Name="update_mode" />
  1401. <PropertyRef Name="immediate_sync" />
  1402. </Key>
  1403. <Property Name="publisher" Type="nvarchar" Nullable="false" MaxLength="128" />
  1404. <Property Name="publisher_db" Type="nvarchar" MaxLength="128" />
  1405. <Property Name="publication" Type="nvarchar" MaxLength="128" />
  1406. <Property Name="independent_agent" Type="bit" Nullable="false" />
  1407. <Property Name="subscription_type" Type="int" Nullable="false" />
  1408. <Property Name="distribution_agent" Type="nvarchar" MaxLength="128" />
  1409. <Property Name="time" Type="smalldatetime" Nullable="false" />
  1410. <Property Name="description" Type="nvarchar" MaxLength="255" />
  1411. <Property Name="transaction_timestamp" Type="varbinary" Nullable="false" MaxLength="16" />
  1412. <Property Name="update_mode" Type="tinyint" Nullable="false" />
  1413. <Property Name="agent_id" Type="binary" MaxLength="16" />
  1414. <Property Name="subscription_guid" Type="binary" MaxLength="16" />
  1415. <Property Name="subid" Type="binary" MaxLength="16" />
  1416. <Property Name="immediate_sync" Type="bit" Nullable="false" />
  1417. </EntityType>
  1418. <!--生成过程中发现错误:
  1419. 警告 6002: 表/视图“EmisOnline.dbo.MSsavedforeignkeycolumns”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1420. -->
  1421. <EntityType Name="MSsavedforeignkeycolumns">
  1422. <Key>
  1423. <PropertyRef Name="program_name" />
  1424. <PropertyRef Name="constraint_name" />
  1425. <PropertyRef Name="parent_schema" />
  1426. <PropertyRef Name="constraint_column_id" />
  1427. <PropertyRef Name="referencing_column_name" />
  1428. <PropertyRef Name="referenced_column_name" />
  1429. <PropertyRef Name="timestamp" />
  1430. </Key>
  1431. <Property Name="program_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1432. <Property Name="constraint_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1433. <Property Name="parent_schema" Type="nvarchar" Nullable="false" MaxLength="128" />
  1434. <Property Name="constraint_column_id" Type="int" Nullable="false" />
  1435. <Property Name="referencing_column_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1436. <Property Name="referenced_column_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1437. <Property Name="timestamp" Type="datetime" Nullable="false" />
  1438. </EntityType>
  1439. <!--生成过程中发现错误:
  1440. 警告 6002: 表/视图“EmisOnline.dbo.MSsavedforeignkeyextendedproperties”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1441. 警告 6005: 目标 .NET Framework 版本目前不支持数据类型“sql_variant”;已排除表“EmisOnline.dbo.MSsavedforeignkeyextendedproperties”中的列“property_value”。
  1442. -->
  1443. <EntityType Name="MSsavedforeignkeyextendedproperties">
  1444. <Key>
  1445. <PropertyRef Name="program_name" />
  1446. <PropertyRef Name="constraint_name" />
  1447. <PropertyRef Name="parent_schema" />
  1448. <PropertyRef Name="property_name" />
  1449. <PropertyRef Name="timestamp" />
  1450. </Key>
  1451. <Property Name="program_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1452. <Property Name="constraint_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1453. <Property Name="parent_schema" Type="nvarchar" Nullable="false" MaxLength="128" />
  1454. <Property Name="property_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1455. <Property Name="timestamp" Type="datetime" Nullable="false" />
  1456. </EntityType>
  1457. <!--生成过程中发现错误:
  1458. 警告 6002: 表/视图“EmisOnline.dbo.MSsavedforeignkeys”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1459. -->
  1460. <EntityType Name="MSsavedforeignkeys">
  1461. <Key>
  1462. <PropertyRef Name="program_name" />
  1463. <PropertyRef Name="constraint_name" />
  1464. <PropertyRef Name="parent_schema" />
  1465. <PropertyRef Name="parent_name" />
  1466. <PropertyRef Name="referenced_object_schema" />
  1467. <PropertyRef Name="referenced_object_name" />
  1468. <PropertyRef Name="is_disabled" />
  1469. <PropertyRef Name="is_not_for_replication" />
  1470. <PropertyRef Name="is_not_trusted" />
  1471. <PropertyRef Name="delete_referential_action" />
  1472. <PropertyRef Name="update_referential_action" />
  1473. <PropertyRef Name="timestamp" />
  1474. </Key>
  1475. <Property Name="program_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1476. <Property Name="constraint_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1477. <Property Name="parent_schema" Type="nvarchar" Nullable="false" MaxLength="128" />
  1478. <Property Name="parent_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1479. <Property Name="referenced_object_schema" Type="nvarchar" Nullable="false" MaxLength="128" />
  1480. <Property Name="referenced_object_name" Type="nvarchar" Nullable="false" MaxLength="128" />
  1481. <Property Name="is_disabled" Type="bit" Nullable="false" />
  1482. <Property Name="is_not_for_replication" Type="bit" Nullable="false" />
  1483. <Property Name="is_not_trusted" Type="bit" Nullable="false" />
  1484. <Property Name="delete_referential_action" Type="tinyint" Nullable="false" />
  1485. <Property Name="update_referential_action" Type="tinyint" Nullable="false" />
  1486. <Property Name="timestamp" Type="datetime" Nullable="false" />
  1487. </EntityType>
  1488. <!--生成过程中发现错误:
  1489. 警告 6002: 表/视图“EmisOnline.dbo.MSsnapshotdeliveryprogress”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1490. -->
  1491. <EntityType Name="MSsnapshotdeliveryprogress">
  1492. <Key>
  1493. <PropertyRef Name="session_token" />
  1494. <PropertyRef Name="progress_token_hash" />
  1495. <PropertyRef Name="progress_token" />
  1496. </Key>
  1497. <Property Name="session_token" Type="nvarchar" Nullable="false" MaxLength="260" />
  1498. <Property Name="progress_token_hash" Type="int" Nullable="false" />
  1499. <Property Name="progress_token" Type="nvarchar" Nullable="false" MaxLength="500" />
  1500. <Property Name="progress_timestamp" Type="datetime" />
  1501. </EntityType>
  1502. <!--生成过程中发现错误:
  1503. 警告 6002: 表/视图“EmisOnline.dbo.MSsubscription_agents”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1504. -->
  1505. <EntityType Name="MSsubscription_agents">
  1506. <Key>
  1507. <PropertyRef Name="id" />
  1508. <PropertyRef Name="publisher" />
  1509. <PropertyRef Name="publisher_db" />
  1510. <PropertyRef Name="publication" />
  1511. <PropertyRef Name="subscription_type" />
  1512. <PropertyRef Name="update_mode" />
  1513. <PropertyRef Name="failover_mode" />
  1514. <PropertyRef Name="spid" />
  1515. <PropertyRef Name="login_time" />
  1516. <PropertyRef Name="allow_subscription_copy" />
  1517. <PropertyRef Name="attach_state" />
  1518. <PropertyRef Name="attach_version" />
  1519. </Key>
  1520. <Property Name="id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  1521. <Property Name="publisher" Type="nvarchar" Nullable="false" MaxLength="128" />
  1522. <Property Name="publisher_db" Type="nvarchar" Nullable="false" MaxLength="128" />
  1523. <Property Name="publication" Type="nvarchar" Nullable="false" MaxLength="128" />
  1524. <Property Name="subscription_type" Type="int" Nullable="false" />
  1525. <Property Name="queue_id" Type="nvarchar" MaxLength="128" />
  1526. <Property Name="update_mode" Type="tinyint" Nullable="false" />
  1527. <Property Name="failover_mode" Type="bit" Nullable="false" />
  1528. <Property Name="spid" Type="int" Nullable="false" />
  1529. <Property Name="login_time" Type="datetime" Nullable="false" />
  1530. <Property Name="allow_subscription_copy" Type="bit" Nullable="false" />
  1531. <Property Name="attach_state" Type="int" Nullable="false" />
  1532. <Property Name="attach_version" Type="binary" Nullable="false" MaxLength="16" />
  1533. <Property Name="last_sync_status" Type="int" />
  1534. <Property Name="last_sync_summary" Type="nvarchar" MaxLength="128" />
  1535. <Property Name="last_sync_time" Type="datetime" />
  1536. <Property Name="queue_server" Type="nvarchar" MaxLength="128" />
  1537. </EntityType>
  1538. <EntityType Name="Sys_Dictionary">
  1539. <Key>
  1540. <PropertyRef Name="DictionaryCode" />
  1541. </Key>
  1542. <Property Name="DictionaryCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1543. <Property Name="Name" Type="nvarchar" MaxLength="500" />
  1544. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1545. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1546. <Property Name="IsEditable" Type="bit" />
  1547. </EntityType>
  1548. <EntityType Name="Sys_DictionaryItem">
  1549. <Key>
  1550. <PropertyRef Name="DictionaryItemID" />
  1551. </Key>
  1552. <Property Name="DictionaryItemID" Type="uniqueidentifier" Nullable="false" />
  1553. <Property Name="Code" Type="nvarchar" Nullable="false" MaxLength="50" />
  1554. <Property Name="DictionaryCode" Type="nvarchar" MaxLength="50" />
  1555. <Property Name="Value" Type="int" />
  1556. <Property Name="Name" Type="nvarchar" MaxLength="100" />
  1557. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1558. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1559. <Property Name="IsEditable" Type="bit" />
  1560. </EntityType>
  1561. <EntityType Name="Sys_FunctionCode">
  1562. <Key>
  1563. <PropertyRef Name="FunctionCode" />
  1564. </Key>
  1565. <Property Name="FunctionCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1566. <Property Name="FunctionName" Type="nvarchar" MaxLength="50" />
  1567. <Property Name="ParentFunctionCode" Type="nvarchar" MaxLength="50" />
  1568. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1569. </EntityType>
  1570. <EntityType Name="Sys_LoginCount">
  1571. <Key>
  1572. <PropertyRef Name="UserID" />
  1573. <PropertyRef Name="SchoolyearID" />
  1574. </Key>
  1575. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1576. <Property Name="SchoolyearID" Type="uniqueidentifier" Nullable="false" />
  1577. <Property Name="LoginCount" Type="int" />
  1578. <Property Name="lastLoginTime" Type="datetime" />
  1579. </EntityType>
  1580. <EntityType Name="Sys_MailVerifyCode">
  1581. <Key>
  1582. <PropertyRef Name="UserID" />
  1583. </Key>
  1584. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1585. <Property Name="VerifyCode" Type="varchar" MaxLength="50" />
  1586. <Property Name="RecordStatus" Type="int" />
  1587. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1588. <Property Name="CreateTime" Type="datetime" />
  1589. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1590. <Property Name="ModifyTime" Type="datetime" />
  1591. </EntityType>
  1592. <EntityType Name="Sys_Menu">
  1593. <Key>
  1594. <PropertyRef Name="MenuNo" />
  1595. </Key>
  1596. <Property Name="MenuNo" Type="nvarchar" Nullable="false" MaxLength="30" />
  1597. <Property Name="OrderNo" Type="smallint" Nullable="false" />
  1598. <Property Name="MenuName" Type="nvarchar" Nullable="false" MaxLength="60" />
  1599. <Property Name="Icon" Type="nvarchar" MaxLength="50" />
  1600. <Property Name="Url" Type="varchar" MaxLength="500" />
  1601. <Property Name="ParentMenuNo" Type="nvarchar" MaxLength="30" />
  1602. <Property Name="Description" Type="nvarchar" MaxLength="500" />
  1603. <Property Name="IsTopMenu" Type="bit" Nullable="false" />
  1604. <Property Name="IsVisible" Type="bit" Nullable="false" />
  1605. <Property Name="IsLeaf" Type="bit" />
  1606. <Property Name="FunctionCode" Type="nvarchar" MaxLength="50" />
  1607. <Property Name="RecordStatus" Type="int" Nullable="false" />
  1608. </EntityType>
  1609. <EntityType Name="Sys_Role">
  1610. <Key>
  1611. <PropertyRef Name="RoleID" />
  1612. </Key>
  1613. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1614. <Property Name="TypeID" Type="int" />
  1615. <Property Name="RoleName" Type="nvarchar" Nullable="false" MaxLength="100" />
  1616. <Property Name="Description" Type="nvarchar" MaxLength="500" />
  1617. <Property Name="IsSystemRole" Type="bit" />
  1618. <Property Name="SystemRoleType" Type="int" />
  1619. <Property Name="DefaultDataRange" Type="int" />
  1620. <Property Name="RecordStatus" Type="int" />
  1621. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1622. <Property Name="CreateTime" Type="datetime" />
  1623. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1624. <Property Name="ModifyTime" Type="datetime" />
  1625. </EntityType>
  1626. <EntityType Name="Sys_Role_Sys_FunctionCode">
  1627. <Key>
  1628. <PropertyRef Name="RoleID" />
  1629. <PropertyRef Name="FunctionCode" />
  1630. </Key>
  1631. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1632. <Property Name="FunctionCode" Type="nvarchar" Nullable="false" MaxLength="50" />
  1633. </EntityType>
  1634. <EntityType Name="Sys_User">
  1635. <Key>
  1636. <PropertyRef Name="UserID" />
  1637. </Key>
  1638. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1639. <Property Name="LoginID" Type="varchar" MaxLength="50" />
  1640. <Property Name="Password" Type="varchar" MaxLength="50" />
  1641. <Property Name="Name" Type="nvarchar" MaxLength="50" />
  1642. <Property Name="RecordStatus" Type="int" />
  1643. <Property Name="CreateUserID" Type="uniqueidentifier" />
  1644. <Property Name="CreateTime" Type="datetime" />
  1645. <Property Name="ModifyUserID" Type="uniqueidentifier" />
  1646. <Property Name="ModifyTime" Type="datetime" />
  1647. </EntityType>
  1648. <EntityType Name="Sys_User_Sys_Role">
  1649. <Key>
  1650. <PropertyRef Name="UserID" />
  1651. <PropertyRef Name="RoleID" />
  1652. </Key>
  1653. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  1654. <Property Name="RoleID" Type="uniqueidentifier" Nullable="false" />
  1655. </EntityType>
  1656. <EntityType Name="test_base_param">
  1657. <Key>
  1658. <PropertyRef Name="base_param_id" />
  1659. </Key>
  1660. <Property Name="base_param_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1661. <Property Name="name" Type="varchar" MaxLength="300" />
  1662. <Property Name="base_param_parent_id" Type="decimal" />
  1663. <Property Name="order_by" Type="int" />
  1664. <Property Name="isvaild" Type="bit" />
  1665. <Property Name="IsSystem" Type="bit" />
  1666. </EntityType>
  1667. <EntityType Name="test_base_param_type">
  1668. <Key>
  1669. <PropertyRef Name="base_param_parent_id" />
  1670. </Key>
  1671. <Property Name="base_param_parent_id" Type="decimal" Nullable="false" />
  1672. <Property Name="name" Type="varchar" MaxLength="300" />
  1673. <Property Name="order_by" Type="int" />
  1674. </EntityType>
  1675. <EntityType Name="test_base_question_type">
  1676. <Key>
  1677. <PropertyRef Name="base_question_type_id" />
  1678. </Key>
  1679. <Property Name="base_question_type_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1680. <Property Name="Name" Type="varchar" MaxLength="300" />
  1681. <Property Name="type_id" Type="int" />
  1682. <Property Name="diplay_order" Type="int" />
  1683. </EntityType>
  1684. <EntityType Name="test_comm_param_set">
  1685. <Key>
  1686. <PropertyRef Name="comm_param_set_id" />
  1687. </Key>
  1688. <Property Name="comm_param_set_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1689. <Property Name="comm_set_id" Type="decimal" />
  1690. <Property Name="var_id" Type="decimal" />
  1691. </EntityType>
  1692. <EntityType Name="test_comm_set">
  1693. <Key>
  1694. <PropertyRef Name="comm_set_id" />
  1695. </Key>
  1696. <Property Name="comm_set_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1697. <Property Name="note" Type="varchar" MaxLength="1000" />
  1698. </EntityType>
  1699. <EntityType Name="test_exchange">
  1700. <Key>
  1701. <PropertyRef Name="id" />
  1702. </Key>
  1703. <Property Name="id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1704. <Property Name="onlinetest_id" Type="int" />
  1705. <Property Name="type" Type="int" />
  1706. <Property Name="receiveType" Type="int" />
  1707. <Property Name="receiver" Type="varchar" MaxLength="50" />
  1708. <Property Name="content" Type="varchar" MaxLength="200" />
  1709. <Property Name="extendIntData" Type="int" />
  1710. <Property Name="extendStringData" Type="varchar" MaxLength="200" />
  1711. <Property Name="handled" Type="bit" />
  1712. <Property Name="sendTime" Type="datetime" />
  1713. <Property Name="ExamEndState" Type="bit" />
  1714. </EntityType>
  1715. <EntityType Name="test_keyword">
  1716. <Key>
  1717. <PropertyRef Name="test_keyword_id" />
  1718. </Key>
  1719. <Property Name="test_keyword_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1720. <Property Name="name" Type="varchar" MaxLength="300" />
  1721. <Property Name="other_vaild_values" Type="varchar" MaxLength="3000" />
  1722. </EntityType>
  1723. <EntityType Name="test_onlinetest">
  1724. <Key>
  1725. <PropertyRef Name="onlinetest_id" />
  1726. </Key>
  1727. <Property Name="onlinetest_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1728. <Property Name="test_paper_id" Type="decimal" />
  1729. <Property Name="test_name" Type="varchar" MaxLength="500" />
  1730. <Property Name="test_begin_date" Type="datetime" />
  1731. <Property Name="test_end_date" Type="datetime" />
  1732. <Property Name="limited_minutes" Type="int" />
  1733. <Property Name="test_address" Type="varchar" MaxLength="200" />
  1734. <Property Name="breaking_id" Type="smallint" />
  1735. <Property Name="test_method_set_id" Type="decimal" />
  1736. <Property Name="notice_method_id" Type="varchar" MaxLength="300" />
  1737. <Property Name="status_id" Type="decimal" />
  1738. <Property Name="test_code" Type="varchar" MaxLength="300" />
  1739. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1740. <Property Name="created_date" Type="datetime" />
  1741. <Property Name="subjectiveQAutoRead" Type="bit" />
  1742. <Property Name="ModityContent" Type="nvarchar" MaxLength="300" />
  1743. <Property Name="ISautoBegin" Type="bit" />
  1744. <Property Name="isOpenAnswer" Type="bit" />
  1745. <Property Name="rand_Test_time" Type="int" />
  1746. <Property Name="rand_test_count" Type="int" />
  1747. <Property Name="rand_test_point_type" Type="int" />
  1748. <Property Name="rand_test_point_setid" Type="int" />
  1749. <Property Name="display_type" Type="int" />
  1750. <Property Name="isPublishScore" Type="bit" />
  1751. <Property Name="isControllable" Type="bit" />
  1752. <Property Name="notice_datetime" Type="datetime" />
  1753. <Property Name="relogin_count" Type="int" />
  1754. <Property Name="filled" Type="bit" Nullable="false" />
  1755. <Property Name="time_of_filling" Type="datetime" />
  1756. <Property Name="version" Type="timestamp" StoreGeneratedPattern="Computed" />
  1757. <Property Name="ExamID" Type="uniqueidentifier" Nullable="false" />
  1758. <Property Name="SubCode" Type="varchar" MaxLength="50" />
  1759. <Property Name="PassRate" Type="int" />
  1760. <Property Name="ExamerState" Type="int" />
  1761. <Property Name="isReadPaper" Type="bit" />
  1762. <Property Name="EducationMissionClassID" Type="uniqueidentifier" />
  1763. </EntityType>
  1764. <!--生成过程中发现错误:
  1765. 警告 6002: 表/视图“EmisOnline.dbo.test_onlinetest_man”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1766. -->
  1767. <EntityType Name="test_onlinetest_man">
  1768. <Key>
  1769. <PropertyRef Name="ID" />
  1770. <PropertyRef Name="name" />
  1771. <PropertyRef Name="username" />
  1772. <PropertyRef Name="filled" />
  1773. </Key>
  1774. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1775. <Property Name="onlinetest_id" Type="decimal" />
  1776. <Property Name="user_id" Type="varchar" MaxLength="50" />
  1777. <Property Name="OrgId" Type="varchar" MaxLength="50" />
  1778. <Property Name="name" Type="varchar" Nullable="false" MaxLength="500" />
  1779. <Property Name="username" Type="varchar" Nullable="false" MaxLength="500" />
  1780. <Property Name="sex" Type="char" MaxLength="1" />
  1781. <Property Name="mobile_num" Type="varchar" MaxLength="200" />
  1782. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1783. <Property Name="created_date" Type="datetime" />
  1784. <Property Name="loginCount" Type="int" />
  1785. <Property Name="lastLoginTime" Type="datetime" />
  1786. <Property Name="beginTime" Type="datetime" />
  1787. <Property Name="endTime" Type="datetime" />
  1788. <Property Name="limited_minutes" Type="int" />
  1789. <Property Name="state" Type="int" />
  1790. <Property Name="warning_count" Type="int" />
  1791. <Property Name="lastModified" Type="datetime" />
  1792. <Property Name="relogin_count" Type="int" />
  1793. <Property Name="time_of_filling" Type="datetime" />
  1794. <Property Name="filled" Type="bit" Nullable="false" />
  1795. </EntityType>
  1796. <EntityType Name="test_onlinetest_manshow">
  1797. <Key>
  1798. <PropertyRef Name="ID" />
  1799. </Key>
  1800. <Property Name="ID" Type="uniqueidentifier" Nullable="false" />
  1801. <Property Name="onlinetest_id" Type="decimal" />
  1802. <Property Name="user_id" Type="varchar" MaxLength="50" />
  1803. <Property Name="orgid" Type="varchar" MaxLength="50" />
  1804. <Property Name="orgname" Type="varchar" MaxLength="500" />
  1805. <Property Name="username" Type="varchar" MaxLength="500" />
  1806. <Property Name="created_date" Type="datetime" />
  1807. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1808. </EntityType>
  1809. <EntityType Name="test_paper">
  1810. <Key>
  1811. <PropertyRef Name="test_paper_id" />
  1812. </Key>
  1813. <Property Name="test_paper_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1814. <Property Name="PaperName" Type="varchar" MaxLength="200" />
  1815. <Property Name="note" Type="varchar" MaxLength="5000" />
  1816. <Property Name="knowledge_type_set_id" Type="decimal" />
  1817. <Property Name="knowledge_point_set_id" Type="decimal" />
  1818. <Property Name="open_dept_set_id" Type="decimal" />
  1819. <Property Name="is_open_answer" Type="bit" />
  1820. <Property Name="question_libary_set_id" Type="varchar" MaxLength="200" />
  1821. <Property Name="error_percent" Type="decimal" Precision="8" Scale="2" />
  1822. <Property Name="used_count_min" Type="int" />
  1823. <Property Name="used_count_max" Type="int" />
  1824. <Property Name="difficulty_degree_minvalue" Type="decimal" Precision="8" Scale="2" />
  1825. <Property Name="difficulty_degree_maxvalue" Type="decimal" />
  1826. <Property Name="isTestOrSelfTest" Type="smallint" />
  1827. <Property Name="test_method" Type="smallint" />
  1828. <Property Name="question_update_date_min" Type="datetime" />
  1829. <Property Name="question_update_date_max" Type="datetime" />
  1830. <Property Name="is_vaild" Type="bit" />
  1831. <Property Name="vaild_begin_date" Type="datetime" />
  1832. <Property Name="vaild_end_date" Type="datetime" />
  1833. <Property Name="distributing_option" Type="int" />
  1834. <Property Name="Prority" Type="int" />
  1835. <Property Name="paper_score" Type="decimal" Precision="8" Scale="2" />
  1836. <Property Name="is_converted" Type="bit" />
  1837. <Property Name="used_count" Type="decimal" />
  1838. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1839. <Property Name="created_date" Type="datetime" />
  1840. <Property Name="is_dynamic" Type="bit" Nullable="false" />
  1841. <Property Name="is_autogenerate" Type="bit" />
  1842. <Property Name="question_setting" Type="varchar" MaxLength="5000" />
  1843. <Property Name="test_paper_parent_id" Type="decimal" />
  1844. <Property Name="question_setting_xml" Type="xml" />
  1845. </EntityType>
  1846. <EntityType Name="test_paper_guide">
  1847. <Key>
  1848. <PropertyRef Name="test_paper_guide_id" />
  1849. </Key>
  1850. <Property Name="test_paper_guide_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1851. <Property Name="modal_name" Type="varchar" MaxLength="500" />
  1852. <Property Name="note" Type="varchar" MaxLength="500" />
  1853. <Property Name="knowledge_type_set_id" Type="decimal" />
  1854. <Property Name="knowledge_point_set_id" Type="decimal" />
  1855. <Property Name="open_dept_set_id" Type="decimal" />
  1856. <Property Name="is_open_answer" Type="bit" />
  1857. <Property Name="question_libary_set_id" Type="varchar" MaxLength="200" />
  1858. <Property Name="error_percent" Type="decimal" Precision="8" Scale="2" />
  1859. <Property Name="used_count_min" Type="int" />
  1860. <Property Name="used_count_max" Type="int" />
  1861. <Property Name="difficulty_degree_minvalue" Type="decimal" />
  1862. <Property Name="difficulty_degree_maxvalue" Type="decimal" />
  1863. <Property Name="isTestOrSelfTest" Type="smallint" />
  1864. <Property Name="test_method" Type="smallint" />
  1865. <Property Name="get_question_method" Type="smallint" />
  1866. <Property Name="question_update_date_min" Type="datetime" />
  1867. <Property Name="question_update_date_max" Type="datetime" />
  1868. <Property Name="is_vaild" Type="bit" />
  1869. <Property Name="vaild_begin_date" Type="datetime" />
  1870. <Property Name="vaild_end_date" Type="datetime" />
  1871. <Property Name="distributing_option" Type="int" />
  1872. <Property Name="Prority" Type="int" />
  1873. <Property Name="paper_score" Type="decimal" Precision="8" Scale="2" />
  1874. <Property Name="is_converted" Type="bit" />
  1875. <Property Name="used_count" Type="int" />
  1876. <Property Name="is_dynamic" Type="bit" />
  1877. <Property Name="is_autogenerate" Type="bit" />
  1878. <Property Name="created_date" Type="datetime" />
  1879. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1880. </EntityType>
  1881. <EntityType Name="test_paper_question_set">
  1882. <Key>
  1883. <PropertyRef Name="test_paper_question_set_id" />
  1884. </Key>
  1885. <Property Name="test_paper_question_set_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1886. <Property Name="test_paper_id" Type="decimal" />
  1887. <Property Name="questionXml" Type="xml" />
  1888. <Property Name="order" Type="int" />
  1889. </EntityType>
  1890. <EntityType Name="test_paper_question_set_fortest">
  1891. <Key>
  1892. <PropertyRef Name="test_paper_question_set_id" />
  1893. </Key>
  1894. <Property Name="test_paper_question_set_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1895. <Property Name="test_paper_id" Type="decimal" />
  1896. <Property Name="questionXml" Type="xml" />
  1897. <Property Name="order" Type="int" />
  1898. </EntityType>
  1899. <EntityType Name="test_question">
  1900. <Key>
  1901. <PropertyRef Name="test_question_Id" />
  1902. </Key>
  1903. <Property Name="test_question_Id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1904. <Property Name="base_question_type_id" Type="decimal" />
  1905. <Property Name="content" Type="nvarchar(max)" />
  1906. <Property Name="question_file_id" Type="decimal" />
  1907. <Property Name="knowledge_type_id" Type="decimal" />
  1908. <Property Name="knowledge_point_id" Type="decimal" />
  1909. <Property Name="difficulty_degree" Type="decimal" Precision="8" Scale="2" />
  1910. <Property Name="answers" Type="varchar" MaxLength="3000" />
  1911. <Property Name="is_order" Type="bit" />
  1912. <Property Name="answers_note" Type="varchar" MaxLength="300" />
  1913. <Property Name="note" Type="varchar" MaxLength="300" />
  1914. <Property Name="KeyWordIsAnd" Type="bit" />
  1915. <Property Name="test_question_libary_id" Type="decimal" />
  1916. <Property Name="used_count" Type="bigint" />
  1917. <Property Name="right_percent" Type="decimal" Scale="2" />
  1918. <Property Name="wrong_count" Type="bigint" />
  1919. <Property Name="is_vaild" Type="bit" />
  1920. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1921. <Property Name="created_date" Type="datetime" />
  1922. <Property Name="score" Type="decimal" Scale="2" />
  1923. <Property Name="wrong_percent" Type="bigint" StoreGeneratedPattern="Computed" />
  1924. <Property Name="filled" Type="bit" Nullable="false" />
  1925. <Property Name="time_of_filling" Type="datetime" />
  1926. <Property Name="test_question_ParentId" Type="decimal" />
  1927. </EntityType>
  1928. <EntityType Name="test_question_administrator">
  1929. <Key>
  1930. <PropertyRef Name="test_question_administrator_id" />
  1931. </Key>
  1932. <Property Name="test_question_administrator_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1933. <Property Name="test_question_libary_id" Type="decimal" />
  1934. <Property Name="userid" Type="varchar" MaxLength="50" />
  1935. <Property Name="username" Type="nvarchar" MaxLength="50" />
  1936. </EntityType>
  1937. <EntityType Name="test_question_file">
  1938. <Key>
  1939. <PropertyRef Name="file_id" />
  1940. </Key>
  1941. <Property Name="file_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1942. <Property Name="url" Type="varchar" MaxLength="1000" />
  1943. <Property Name="width" Type="decimal" Precision="19" Scale="2" />
  1944. <Property Name="height" Type="decimal" Precision="19" Scale="2" />
  1945. <Property Name="note" Type="varchar" MaxLength="1000" />
  1946. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1947. <Property Name="created_date" Type="datetime" />
  1948. </EntityType>
  1949. <EntityType Name="test_question_keyword">
  1950. <Key>
  1951. <PropertyRef Name="test_question_keyword_id" />
  1952. </Key>
  1953. <Property Name="test_question_keyword_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1954. <Property Name="test_question_Id" Type="decimal" />
  1955. <Property Name="test_keyword_id" Type="decimal" />
  1956. </EntityType>
  1957. <EntityType Name="test_question_libary">
  1958. <Key>
  1959. <PropertyRef Name="test_question_libary_id" />
  1960. </Key>
  1961. <Property Name="test_question_libary_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1962. <Property Name="name" Type="varchar" MaxLength="300" />
  1963. <Property Name="note" Type="varchar" MaxLength="500" />
  1964. <Property Name="base_limited_group_id" Type="decimal" />
  1965. <Property Name="owner_id" Type="decimal" />
  1966. <Property Name="is_vaild" Type="bit" />
  1967. <Property Name="parent_id" Type="decimal" />
  1968. <Property Name="ancestor_id" Type="varchar" MaxLength="300" />
  1969. <Property Name="describe" Type="nvarchar" MaxLength="500" />
  1970. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1971. <Property Name="userName" Type="nvarchar" MaxLength="30" />
  1972. <Property Name="created_date" Type="datetime" />
  1973. <Property Name="filled" Type="bit" Nullable="false" />
  1974. <Property Name="time_of_filling" Type="datetime" />
  1975. </EntityType>
  1976. <EntityType Name="test_question_provid_answer">
  1977. <Key>
  1978. <PropertyRef Name="provid_answer_id" />
  1979. </Key>
  1980. <Property Name="provid_answer_id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  1981. <Property Name="answer_name" Type="varchar" MaxLength="5000" />
  1982. <Property Name="order" Type="int" />
  1983. <Property Name="file_id" Type="decimal" />
  1984. <Property Name="test_question_Id" Type="decimal" />
  1985. <Property Name="created_by" Type="varchar" MaxLength="50" />
  1986. <Property Name="created_date" Type="datetime" />
  1987. <Property Name="filled" Type="bit" Nullable="false" />
  1988. <Property Name="time_of_filling" Type="datetime" />
  1989. </EntityType>
  1990. <!--生成过程中发现错误:
  1991. 警告 6002: 表/视图“EmisOnline.dbo.v_question”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1992. -->
  1993. <EntityType Name="v_question">
  1994. <Key>
  1995. <PropertyRef Name="test_question_Id" />
  1996. <PropertyRef Name="order " />
  1997. </Key>
  1998. <Property Name="question_json" Type="nvarchar(max)" />
  1999. <Property Name="test_question_Id" Type="decimal" Nullable="false" />
  2000. <Property Name="base_question_type_id" Type="decimal" />
  2001. <Property Name="test_paper_id" Type="decimal" />
  2002. <Property Name="order " Type="int" Nullable="false" />
  2003. </EntityType>
  2004. <!--生成过程中发现错误:
  2005. 警告 6002: 表/视图“EmisOnline.dbo.V_StudentEducationMissionClass”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  2006. -->
  2007. <EntityType Name="V_StudentEducationMissionClass">
  2008. <Key>
  2009. <PropertyRef Name="EducationMissionClassID" />
  2010. <PropertyRef Name="CoursematerialID" />
  2011. <PropertyRef Name="CourseName" />
  2012. <PropertyRef Name="UserID" />
  2013. </Key>
  2014. <Property Name="EducationMissionClassID" Type="uniqueidentifier" Nullable="false" />
  2015. <Property Name="EducationMissionClassName" Type="nvarchar" MaxLength="100" />
  2016. <Property Name="CoursematerialID" Type="uniqueidentifier" Nullable="false" />
  2017. <Property Name="CourseName" Type="nvarchar" Nullable="false" MaxLength="50" />
  2018. <Property Name="CoverUrl" Type="varchar" MaxLength="1024" />
  2019. <Property Name="UserID" Type="uniqueidentifier" Nullable="false" />
  2020. <Property Name="SchoolyearID" Type="uniqueidentifier" />
  2021. <Property Name="TeacherID" Type="uniqueidentifier" />
  2022. </EntityType>
  2023. <!--生成过程中发现错误:
  2024. 警告 6002: 表/视图“EmisOnline.dbo.v_test_question”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  2025. -->
  2026. <EntityType Name="v_test_question">
  2027. <Key>
  2028. <PropertyRef Name="test_question_Id" />
  2029. <PropertyRef Name="filled" />
  2030. </Key>
  2031. <Property Name="rid" Type="uniqueidentifier" />
  2032. <Property Name="test_question_Id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  2033. <Property Name="base_question_type_id" Type="decimal" />
  2034. <Property Name="content" Type="nvarchar(max)" />
  2035. <Property Name="question_file_id" Type="decimal" />
  2036. <Property Name="question_type_name" Type="varchar" MaxLength="300" />
  2037. <Property Name="questione_lib_name" Type="varchar" MaxLength="300" />
  2038. <Property Name="difficulty_degree" Type="decimal" Precision="8" Scale="2" />
  2039. <Property Name="answers" Type="varchar" MaxLength="3000" />
  2040. <Property Name="is_order" Type="bit" />
  2041. <Property Name="answers_note" Type="varchar" MaxLength="300" />
  2042. <Property Name="note" Type="varchar" MaxLength="300" />
  2043. <Property Name="test_question_libary_id" Type="decimal" />
  2044. <Property Name="used_count" Type="bigint" />
  2045. <Property Name="right_percent" Type="decimal" Scale="2" />
  2046. <Property Name="is_vaild" Type="bit" />
  2047. <Property Name="created_date" Type="datetime" />
  2048. <Property Name="wrong_count" Type="bigint" />
  2049. <Property Name="score" Type="decimal" Scale="2" />
  2050. <Property Name="filled" Type="bit" Nullable="false" />
  2051. <Property Name="time_of_filling" Type="datetime" />
  2052. <Property Name="created_by" Type="varchar" MaxLength="50" />
  2053. <Property Name="wrong_percent" Type="bigint" />
  2054. </EntityType>
  2055. <!--生成过程中发现错误:
  2056. 警告 6002: 表/视图“EmisOnline.dbo.VTestQestion”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  2057. -->
  2058. <EntityType Name="VTestQestion">
  2059. <Key>
  2060. <PropertyRef Name="test_question_Id" />
  2061. <PropertyRef Name="filled" />
  2062. </Key>
  2063. <Property Name="rid" Type="uniqueidentifier" />
  2064. <Property Name="test_question_Id" Type="decimal" Nullable="false" StoreGeneratedPattern="Identity" />
  2065. <Property Name="base_question_type_id" Type="decimal" />
  2066. <Property Name="content" Type="nvarchar(max)" />
  2067. <Property Name="question_file_id" Type="decimal" />
  2068. <Property Name="question_type_name" Type="varchar" MaxLength="300" />
  2069. <Property Name="questione_lib_name" Type="varchar" MaxLength="300" />
  2070. <Property Name="difficulty_degree" Type="decimal" Precision="8" Scale="2" />
  2071. <Property Name="answers" Type="varchar" MaxLength="3000" />
  2072. <Property Name="is_order" Type="bit" />
  2073. <Property Name="answers_note" Type="varchar" MaxLength="300" />
  2074. <Property Name="note" Type="varchar" MaxLength="300" />
  2075. <Property Name="test_question_libary_id" Type="decimal" />
  2076. <Property Name="used_count" Type="bigint" />
  2077. <Property Name="right_percent" Type="decimal" Scale="2" />
  2078. <Property Name="is_vaild" Type="bit" />
  2079. <Property Name="created_date" Type="datetime" />
  2080. <Property Name="wrong_count" Type="bigint" />
  2081. <Property Name="score" Type="decimal" Scale="2" />
  2082. <Property Name="filled" Type="bit" Nullable="false" />
  2083. <Property Name="time_of_filling" Type="datetime" />
  2084. <Property Name="created_by" Type="varchar" MaxLength="50" />
  2085. <Property Name="wrong_percent" Type="bigint" />
  2086. </EntityType>
  2087. <Association Name="fk_answer2questionfile">
  2088. <End Role="test_question_file" Type="EMISOnlineContext.Store.test_question_file" Multiplicity="0..1" />
  2089. <End Role="test_question_provid_answer" Type="EMISOnlineContext.Store.test_question_provid_answer" Multiplicity="*" />
  2090. <ReferentialConstraint>
  2091. <Principal Role="test_question_file">
  2092. <PropertyRef Name="file_id" />
  2093. </Principal>
  2094. <Dependent Role="test_question_provid_answer">
  2095. <PropertyRef Name="file_id" />
  2096. </Dependent>
  2097. </ReferentialConstraint>
  2098. </Association>
  2099. <Association Name="fk_base_param2baseparent">
  2100. <End Role="test_base_param_type" Type="EMISOnlineContext.Store.test_base_param_type" Multiplicity="0..1" />
  2101. <End Role="test_base_param" Type="EMISOnlineContext.Store.test_base_param" Multiplicity="*" />
  2102. <ReferentialConstraint>
  2103. <Principal Role="test_base_param_type">
  2104. <PropertyRef Name="base_param_parent_id" />
  2105. </Principal>
  2106. <Dependent Role="test_base_param">
  2107. <PropertyRef Name="base_param_parent_id" />
  2108. </Dependent>
  2109. </ReferentialConstraint>
  2110. </Association>
  2111. <Association Name="fk_commbaseset2commset">
  2112. <End Role="test_comm_set" Type="EMISOnlineContext.Store.test_comm_set" Multiplicity="0..1" />
  2113. <End Role="test_comm_param_set" Type="EMISOnlineContext.Store.test_comm_param_set" Multiplicity="*" />
  2114. <ReferentialConstraint>
  2115. <Principal Role="test_comm_set">
  2116. <PropertyRef Name="comm_set_id" />
  2117. </Principal>
  2118. <Dependent Role="test_comm_param_set">
  2119. <PropertyRef Name="comm_set_id" />
  2120. </Dependent>
  2121. </ReferentialConstraint>
  2122. </Association>
  2123. <Association Name="FK_COURSEWO_REFERENCE_COURSEWO">
  2124. <End Role="Coursework" Type="EMISOnlineContext.Store.Coursework" Multiplicity="0..1" />
  2125. <End Role="CourseworkResult" Type="EMISOnlineContext.Store.CourseworkResult" Multiplicity="*" />
  2126. <ReferentialConstraint>
  2127. <Principal Role="Coursework">
  2128. <PropertyRef Name="ID" />
  2129. </Principal>
  2130. <Dependent Role="CourseworkResult">
  2131. <PropertyRef Name="workid" />
  2132. </Dependent>
  2133. </ReferentialConstraint>
  2134. </Association>
  2135. <Association Name="FK_COURSEWO_REFERENCE_COURSEWO333">
  2136. <End Role="Coursework" Type="EMISOnlineContext.Store.Coursework" Multiplicity="0..1" />
  2137. <End Role="CourseworkAnswer" Type="EMISOnlineContext.Store.CourseworkAnswer" Multiplicity="*" />
  2138. <ReferentialConstraint>
  2139. <Principal Role="Coursework">
  2140. <PropertyRef Name="ID" />
  2141. </Principal>
  2142. <Dependent Role="CourseworkAnswer">
  2143. <PropertyRef Name="workid" />
  2144. </Dependent>
  2145. </ReferentialConstraint>
  2146. </Association>
  2147. <Association Name="FK_COURSEWO_REFERENCE_EX_EXAMI">
  2148. <End Role="test_paper" Type="EMISOnlineContext.Store.test_paper" Multiplicity="0..1" />
  2149. <End Role="Coursework" Type="EMISOnlineContext.Store.Coursework" Multiplicity="*" />
  2150. <ReferentialConstraint>
  2151. <Principal Role="test_paper">
  2152. <PropertyRef Name="test_paper_id" />
  2153. </Principal>
  2154. <Dependent Role="Coursework">
  2155. <PropertyRef Name="PaperID" />
  2156. </Dependent>
  2157. </ReferentialConstraint>
  2158. </Association>
  2159. <Association Name="FK_COURSEWO_REFERENCE_EX_EXAMI2">
  2160. <End Role="test_paper" Type="EMISOnlineContext.Store.test_paper" Multiplicity="0..1" />
  2161. <End Role="CourseworkResult" Type="EMISOnlineContext.Store.CourseworkResult" Multiplicity="*" />
  2162. <ReferentialConstraint>
  2163. <Principal Role="test_paper">
  2164. <PropertyRef Name="test_paper_id" />
  2165. </Principal>
  2166. <Dependent Role="CourseworkResult">
  2167. <PropertyRef Name="test_paper_id" />
  2168. </Dependent>
  2169. </ReferentialConstraint>
  2170. </Association>
  2171. <Association Name="FK_EM_COURS_REFERENCE_EM_COURS_Video">
  2172. <End Role="EM_CourseVideo" Type="EMISOnlineContext.Store.EM_CourseVideo" Multiplicity="1" />
  2173. <End Role="EM_CourseChapter_Video" Type="EMISOnlineContext.Store.EM_CourseChapter_Video" Multiplicity="*" />
  2174. <ReferentialConstraint>
  2175. <Principal Role="EM_CourseVideo">
  2176. <PropertyRef Name="CourseVideoID" />
  2177. </Principal>
  2178. <Dependent Role="EM_CourseChapter_Video">
  2179. <PropertyRef Name="CourseVideoID" />
  2180. </Dependent>
  2181. </ReferentialConstraint>
  2182. </Association>
  2183. <Association Name="FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo">
  2184. <End Role="EM_CourseVideo" Type="EMISOnlineContext.Store.EM_CourseVideo" Multiplicity="0..1" />
  2185. <End Role="EM_CourseStudyStatus" Type="EMISOnlineContext.Store.EM_CourseStudyStatus" Multiplicity="*" />
  2186. <ReferentialConstraint>
  2187. <Principal Role="EM_CourseVideo">
  2188. <PropertyRef Name="CourseVideoID" />
  2189. </Principal>
  2190. <Dependent Role="EM_CourseStudyStatus">
  2191. <PropertyRef Name="LastCourseVideoID" />
  2192. </Dependent>
  2193. </ReferentialConstraint>
  2194. </Association>
  2195. <Association Name="FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse">
  2196. <End Role="EM_ExecutableFreeSelectionCouse" Type="EMISOnlineContext.Store.EM_ExecutableFreeSelectionCouse" Multiplicity="1" />
  2197. <End Role="EM_ExecutableFreeSelectionCouseTeachingSetting" Type="EMISOnlineContext.Store.EM_ExecutableFreeSelectionCouseTeachingSetting" Multiplicity="0..1" />
  2198. <ReferentialConstraint>
  2199. <Principal Role="EM_ExecutableFreeSelectionCouse">
  2200. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  2201. </Principal>
  2202. <Dependent Role="EM_ExecutableFreeSelectionCouseTeachingSetting">
  2203. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  2204. </Dependent>
  2205. </ReferentialConstraint>
  2206. </Association>
  2207. <Association Name="FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse">
  2208. <End Role="EM_ExecutableOptionalCourse" Type="EMISOnlineContext.Store.EM_ExecutableOptionalCourse" Multiplicity="1" />
  2209. <End Role="EM_ExecutableOptionalCourseTeachingSetting" Type="EMISOnlineContext.Store.EM_ExecutableOptionalCourseTeachingSetting" Multiplicity="0..1" />
  2210. <ReferentialConstraint>
  2211. <Principal Role="EM_ExecutableOptionalCourse">
  2212. <PropertyRef Name="ExecutableOptionalCourseID" />
  2213. </Principal>
  2214. <Dependent Role="EM_ExecutableOptionalCourseTeachingSetting">
  2215. <PropertyRef Name="ExecutableOptionalCourseID" />
  2216. </Dependent>
  2217. </ReferentialConstraint>
  2218. </Association>
  2219. <Association Name="FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass">
  2220. <End Role="EM_EducationMissionClass" Type="EMISOnlineContext.Store.EM_EducationMissionClass" Multiplicity="0..1">
  2221. <OnDelete Action="Cascade" />
  2222. </End>
  2223. <End Role="EM_MissionClassTeacher" Type="EMISOnlineContext.Store.EM_MissionClassTeacher" Multiplicity="*" />
  2224. <ReferentialConstraint>
  2225. <Principal Role="EM_EducationMissionClass">
  2226. <PropertyRef Name="EducationMissionClassID" />
  2227. </Principal>
  2228. <Dependent Role="EM_MissionClassTeacher">
  2229. <PropertyRef Name="MissionClassID" />
  2230. </Dependent>
  2231. </ReferentialConstraint>
  2232. </Association>
  2233. <Association Name="FK_EM_SPECI_REFERENCE_EM_COURS">
  2234. <End Role="EM_Coursematerial" Type="EMISOnlineContext.Store.EM_Coursematerial" Multiplicity="0..1" />
  2235. <End Role="EM_SpecialtyCourse" Type="EMISOnlineContext.Store.EM_SpecialtyCourse" Multiplicity="*" />
  2236. <ReferentialConstraint>
  2237. <Principal Role="EM_Coursematerial">
  2238. <PropertyRef Name="CoursematerialID" />
  2239. </Principal>
  2240. <Dependent Role="EM_SpecialtyCourse">
  2241. <PropertyRef Name="CoursematerialID" />
  2242. </Dependent>
  2243. </ReferentialConstraint>
  2244. </Association>
  2245. <Association Name="FK_EM_SPECI_REFERENCE_EM_SPECI">
  2246. <End Role="EM_SpecialtyCourse" Type="EMISOnlineContext.Store.EM_SpecialtyCourse" Multiplicity="1">
  2247. <OnDelete Action="Cascade" />
  2248. </End>
  2249. <End Role="EM_SpecialtyCourseTeachingSetting" Type="EMISOnlineContext.Store.EM_SpecialtyCourseTeachingSetting" Multiplicity="0..1" />
  2250. <ReferentialConstraint>
  2251. <Principal Role="EM_SpecialtyCourse">
  2252. <PropertyRef Name="SpecialtyCourseID" />
  2253. </Principal>
  2254. <Dependent Role="EM_SpecialtyCourseTeachingSetting">
  2255. <PropertyRef Name="SpecialtyCourseID" />
  2256. </Dependent>
  2257. </ReferentialConstraint>
  2258. </Association>
  2259. <Association Name="FK_EM_SpecialtyCourse_CF_Department">
  2260. <End Role="CF_Department" Type="EMISOnlineContext.Store.CF_Department" Multiplicity="0..1" />
  2261. <End Role="EM_SpecialtyCourse" Type="EMISOnlineContext.Store.EM_SpecialtyCourse" Multiplicity="*" />
  2262. <ReferentialConstraint>
  2263. <Principal Role="CF_Department">
  2264. <PropertyRef Name="DepartmentID" />
  2265. </Principal>
  2266. <Dependent Role="EM_SpecialtyCourse">
  2267. <PropertyRef Name="DepartmentID" />
  2268. </Dependent>
  2269. </ReferentialConstraint>
  2270. </Association>
  2271. <Association Name="FK_EXAMRESU_REFERENCE_TEST_ONL">
  2272. <End Role="test_onlinetest" Type="EMISOnlineContext.Store.test_onlinetest" Multiplicity="1">
  2273. <OnDelete Action="Cascade" />
  2274. </End>
  2275. <End Role="ExamResult" Type="EMISOnlineContext.Store.ExamResult" Multiplicity="*" />
  2276. <ReferentialConstraint>
  2277. <Principal Role="test_onlinetest">
  2278. <PropertyRef Name="onlinetest_id" />
  2279. </Principal>
  2280. <Dependent Role="ExamResult">
  2281. <PropertyRef Name="onlinetest_id" />
  2282. </Dependent>
  2283. </ReferentialConstraint>
  2284. </Association>
  2285. <Association Name="fk_paperquestion_2Paper">
  2286. <End Role="test_paper" Type="EMISOnlineContext.Store.test_paper" Multiplicity="0..1" />
  2287. <End Role="test_paper_question_set" Type="EMISOnlineContext.Store.test_paper_question_set" Multiplicity="*" />
  2288. <ReferentialConstraint>
  2289. <Principal Role="test_paper">
  2290. <PropertyRef Name="test_paper_id" />
  2291. </Principal>
  2292. <Dependent Role="test_paper_question_set">
  2293. <PropertyRef Name="test_paper_id" />
  2294. </Dependent>
  2295. </ReferentialConstraint>
  2296. </Association>
  2297. <Association Name="fk_question_2questionfile">
  2298. <End Role="test_question_file" Type="EMISOnlineContext.Store.test_question_file" Multiplicity="0..1" />
  2299. <End Role="test_question" Type="EMISOnlineContext.Store.test_question" Multiplicity="*" />
  2300. <ReferentialConstraint>
  2301. <Principal Role="test_question_file">
  2302. <PropertyRef Name="file_id" />
  2303. </Principal>
  2304. <Dependent Role="test_question">
  2305. <PropertyRef Name="question_file_id" />
  2306. </Dependent>
  2307. </ReferentialConstraint>
  2308. </Association>
  2309. <Association Name="fk_question_type_keyword">
  2310. <End Role="test_keyword" Type="EMISOnlineContext.Store.test_keyword" Multiplicity="0..1" />
  2311. <End Role="test_question_keyword" Type="EMISOnlineContext.Store.test_question_keyword" Multiplicity="*" />
  2312. <ReferentialConstraint>
  2313. <Principal Role="test_keyword">
  2314. <PropertyRef Name="test_keyword_id" />
  2315. </Principal>
  2316. <Dependent Role="test_question_keyword">
  2317. <PropertyRef Name="test_keyword_id" />
  2318. </Dependent>
  2319. </ReferentialConstraint>
  2320. </Association>
  2321. <Association Name="FK_SYS_MENU_REFERENCE_SYS_FUNC">
  2322. <End Role="Sys_FunctionCode" Type="EMISOnlineContext.Store.Sys_FunctionCode" Multiplicity="0..1" />
  2323. <End Role="Sys_Menu" Type="EMISOnlineContext.Store.Sys_Menu" Multiplicity="*" />
  2324. <ReferentialConstraint>
  2325. <Principal Role="Sys_FunctionCode">
  2326. <PropertyRef Name="FunctionCode" />
  2327. </Principal>
  2328. <Dependent Role="Sys_Menu">
  2329. <PropertyRef Name="FunctionCode" />
  2330. </Dependent>
  2331. </ReferentialConstraint>
  2332. </Association>
  2333. <Association Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_Sys_FunctionCode">
  2334. <End Role="Sys_FunctionCode" Type="EMISOnlineContext.Store.Sys_FunctionCode" Multiplicity="1" />
  2335. <End Role="Sys_Role_Sys_FunctionCode" Type="EMISOnlineContext.Store.Sys_Role_Sys_FunctionCode" Multiplicity="*" />
  2336. <ReferentialConstraint>
  2337. <Principal Role="Sys_FunctionCode">
  2338. <PropertyRef Name="FunctionCode" />
  2339. </Principal>
  2340. <Dependent Role="Sys_Role_Sys_FunctionCode">
  2341. <PropertyRef Name="FunctionCode" />
  2342. </Dependent>
  2343. </ReferentialConstraint>
  2344. </Association>
  2345. <Association Name="FK_Sys_Role_Sys_FunctionCode_REFERENCE_SYS_ROLE">
  2346. <End Role="Sys_Role" Type="EMISOnlineContext.Store.Sys_Role" Multiplicity="1" />
  2347. <End Role="Sys_Role_Sys_FunctionCode" Type="EMISOnlineContext.Store.Sys_Role_Sys_FunctionCode" Multiplicity="*" />
  2348. <ReferentialConstraint>
  2349. <Principal Role="Sys_Role">
  2350. <PropertyRef Name="RoleID" />
  2351. </Principal>
  2352. <Dependent Role="Sys_Role_Sys_FunctionCode">
  2353. <PropertyRef Name="RoleID" />
  2354. </Dependent>
  2355. </ReferentialConstraint>
  2356. </Association>
  2357. <Association Name="FK_TEST_ONL_REFERENCE_TEST_SHOW">
  2358. <End Role="test_onlinetest" Type="EMISOnlineContext.Store.test_onlinetest" Multiplicity="0..1" />
  2359. <End Role="test_onlinetest_manshow" Type="EMISOnlineContext.Store.test_onlinetest_manshow" Multiplicity="*" />
  2360. <ReferentialConstraint>
  2361. <Principal Role="test_onlinetest">
  2362. <PropertyRef Name="onlinetest_id" />
  2363. </Principal>
  2364. <Dependent Role="test_onlinetest_manshow">
  2365. <PropertyRef Name="onlinetest_id" />
  2366. </Dependent>
  2367. </ReferentialConstraint>
  2368. </Association>
  2369. <Association Name="fk_test_onlinetest_test_paper_id">
  2370. <End Role="test_paper" Type="EMISOnlineContext.Store.test_paper" Multiplicity="0..1" />
  2371. <End Role="test_onlinetest" Type="EMISOnlineContext.Store.test_onlinetest" Multiplicity="*" />
  2372. <ReferentialConstraint>
  2373. <Principal Role="test_paper">
  2374. <PropertyRef Name="test_paper_id" />
  2375. </Principal>
  2376. <Dependent Role="test_onlinetest">
  2377. <PropertyRef Name="test_paper_id" />
  2378. </Dependent>
  2379. </ReferentialConstraint>
  2380. </Association>
  2381. <Association Name="FK_TEST_QUE_REFERENCE_TEST_QUE">
  2382. <End Role="test_question" Type="EMISOnlineContext.Store.test_question" Multiplicity="0..1" />
  2383. <End Role="test_question_provid_answer" Type="EMISOnlineContext.Store.test_question_provid_answer" Multiplicity="*" />
  2384. <ReferentialConstraint>
  2385. <Principal Role="test_question">
  2386. <PropertyRef Name="test_question_Id" />
  2387. </Principal>
  2388. <Dependent Role="test_question_provid_answer">
  2389. <PropertyRef Name="test_question_Id" />
  2390. </Dependent>
  2391. </ReferentialConstraint>
  2392. </Association>
  2393. <Association Name="fk_testquestions2questiontype">
  2394. <End Role="test_base_question_type" Type="EMISOnlineContext.Store.test_base_question_type" Multiplicity="0..1" />
  2395. <End Role="test_question" Type="EMISOnlineContext.Store.test_question" Multiplicity="*" />
  2396. <ReferentialConstraint>
  2397. <Principal Role="test_base_question_type">
  2398. <PropertyRef Name="base_question_type_id" />
  2399. </Principal>
  2400. <Dependent Role="test_question">
  2401. <PropertyRef Name="base_question_type_id" />
  2402. </Dependent>
  2403. </ReferentialConstraint>
  2404. </Association>
  2405. <!--生成过程中发现错误:
  2406. 警告 6013: 表/视图“EmisOnline.dbo.PaperQuestion_set”未定义主键,并且无法推断有效的主键。已排除了此表/视图。若要使用实体,将需要检查您的架构、添加正确的键并取消对实体的注释。
  2407. <EntityType Name="PaperQuestion_set">
  2408. <Property Name="test_paper_id" Type="decimal" />
  2409. <Property Name="test_question_Id" Type="decimal" />
  2410. <Property Name="score" Type="decimal" />
  2411. </EntityType>-->
  2412. </Schema></edmx:StorageModels>
  2413. <!-- CSDL content -->
  2414. <edmx:ConceptualModels>
  2415. <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="EMISOnlineContext" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
  2416. <EntityContainer Name="EMISOnlineContextContainer" annotation:LazyLoadingEnabled="true">
  2417. <EntitySet Name="CF_Campus" EntityType="EMISOnlineContext.CF_Campus" />
  2418. <EntitySet Name="CF_Classmajor" EntityType="EMISOnlineContext.CF_Classmajor" />
  2419. <EntitySet Name="CF_College" EntityType="EMISOnlineContext.CF_College" />
  2420. <EntitySet Name="CF_Department" EntityType="EMISOnlineContext.CF_Department" />
  2421. <EntitySet Name="CF_Facultymajor" EntityType="EMISOnlineContext.CF_Facultymajor" />
  2422. <EntitySet Name="CF_Grademajor" EntityType="EMISOnlineContext.CF_Grademajor" />
  2423. <EntitySet Name="CF_Recruitstudents" EntityType="EMISOnlineContext.CF_Recruitstudents" />
  2424. <EntitySet Name="CF_Schoolyear" EntityType="EMISOnlineContext.CF_Schoolyear" />
  2425. <EntitySet Name="CF_Staff" EntityType="EMISOnlineContext.CF_Staff" />
  2426. <EntitySet Name="CF_StaffProfile" EntityType="EMISOnlineContext.CF_StaffProfile" />
  2427. <EntitySet Name="CF_Student" EntityType="EMISOnlineContext.CF_Student" />
  2428. <EntitySet Name="CF_StudentContact" EntityType="EMISOnlineContext.CF_StudentContact" />
  2429. <EntitySet Name="CF_StudentContrast" EntityType="EMISOnlineContext.CF_StudentContrast" />
  2430. <EntitySet Name="CF_StudentRole" EntityType="EMISOnlineContext.CF_StudentRole" />
  2431. <EntitySet Name="CF_University" EntityType="EMISOnlineContext.CF_University" />
  2432. <EntitySet Name="Coursework" EntityType="EMISOnlineContext.Coursework" />
  2433. <EntitySet Name="CourseworkAnswer" EntityType="EMISOnlineContext.CourseworkAnswer" />
  2434. <EntitySet Name="CourseworkResult" EntityType="EMISOnlineContext.CourseworkResult" />
  2435. <EntitySet Name="EM_CourseChapter" EntityType="EMISOnlineContext.EM_CourseChapter" />
  2436. <EntitySet Name="EM_CourseChapter_Video" EntityType="EMISOnlineContext.EM_CourseChapter_Video" />
  2437. <EntitySet Name="EM_Coursematerial" EntityType="EMISOnlineContext.EM_Coursematerial" />
  2438. <EntitySet Name="EM_CoursematerialExtend" EntityType="EMISOnlineContext.EM_CoursematerialExtend" />
  2439. <EntitySet Name="EM_CourseStudyStatus" EntityType="EMISOnlineContext.EM_CourseStudyStatus" />
  2440. <EntitySet Name="EM_CourseVideo" EntityType="EMISOnlineContext.EM_CourseVideo" />
  2441. <EntitySet Name="EM_EducationMission" EntityType="EMISOnlineContext.EM_EducationMission" />
  2442. <EntitySet Name="EM_EducationMissionClass" EntityType="EMISOnlineContext.EM_EducationMissionClass" />
  2443. <EntitySet Name="EM_EducationMissionClass_CF_Classmajor" EntityType="EMISOnlineContext.EM_EducationMissionClass_CF_Classmajor" />
  2444. <EntitySet Name="EM_EducationMissionClassTeachingSetting" EntityType="EMISOnlineContext.EM_EducationMissionClassTeachingSetting" />
  2445. <EntitySet Name="EM_EducationSchedulingClass" EntityType="EMISOnlineContext.EM_EducationSchedulingClass" />
  2446. <EntitySet Name="EM_EducationSchedulingClass_CF_Student" EntityType="EMISOnlineContext.EM_EducationSchedulingClass_CF_Student" />
  2447. <EntitySet Name="EM_ExecutableFreeSelectionCouse" EntityType="EMISOnlineContext.EM_ExecutableFreeSelectionCouse" />
  2448. <EntitySet Name="EM_ExecutableFreeSelectionCouseTeachingSetting" EntityType="EMISOnlineContext.EM_ExecutableFreeSelectionCouseTeachingSetting" />
  2449. <EntitySet Name="EM_ExecutableOptionalCourse" EntityType="EMISOnlineContext.EM_ExecutableOptionalCourse" />
  2450. <EntitySet Name="EM_ExecutableOptionalCourseTeachingSetting" EntityType="EMISOnlineContext.EM_ExecutableOptionalCourseTeachingSetting" />
  2451. <EntitySet Name="EM_ExecutablePlan" EntityType="EMISOnlineContext.EM_ExecutablePlan" />
  2452. <EntitySet Name="EM_ExecutablePlanTeachingSetting" EntityType="EMISOnlineContext.EM_ExecutablePlanTeachingSetting" />
  2453. <EntitySet Name="EM_FreeSelectionCouse" EntityType="EMISOnlineContext.EM_FreeSelectionCouse" />
  2454. <EntitySet Name="EM_FTPVideo" EntityType="EMISOnlineContext.EM_FTPVideo" />
  2455. <EntitySet Name="EM_MissionClassTeacher" EntityType="EMISOnlineContext.EM_MissionClassTeacher" />
  2456. <EntitySet Name="EM_OptionalCoursePlan" EntityType="EMISOnlineContext.EM_OptionalCoursePlan" />
  2457. <EntitySet Name="EM_SpecialtyCourse" EntityType="EMISOnlineContext.EM_SpecialtyCourse" />
  2458. <EntitySet Name="EM_SpecialtyCourseTeachingSetting" EntityType="EMISOnlineContext.EM_SpecialtyCourseTeachingSetting" />
  2459. <EntitySet Name="ER_ScoreRule" EntityType="EMISOnlineContext.ER_ScoreRule" />
  2460. <EntitySet Name="ER_TeacherScore" EntityType="EMISOnlineContext.ER_TeacherScore" />
  2461. <EntitySet Name="Exam_Log" EntityType="EMISOnlineContext.Exam_Log" />
  2462. <EntitySet Name="ExamineeAnswer" EntityType="EMISOnlineContext.ExamineeAnswer" />
  2463. <EntitySet Name="ExamPaper" EntityType="EMISOnlineContext.ExamPaper" />
  2464. <EntitySet Name="ExamResult" EntityType="EMISOnlineContext.ExamResult" />
  2465. <EntitySet Name="ExamResult_backup_20120913" EntityType="EMISOnlineContext.ExamResult_backup_20120913" />
  2466. <EntitySet Name="ExamSetting_Examiner" EntityType="EMISOnlineContext.ExamSetting_Examiner" />
  2467. <EntitySet Name="ExamWarning" EntityType="EMISOnlineContext.ExamWarning" />
  2468. <EntitySet Name="MSreplication_objects" EntityType="EMISOnlineContext.MSreplication_objects" />
  2469. <EntitySet Name="MSreplication_subscriptions" EntityType="EMISOnlineContext.MSreplication_subscriptions" />
  2470. <EntitySet Name="MSsavedforeignkeycolumns" EntityType="EMISOnlineContext.MSsavedforeignkeycolumns" />
  2471. <EntitySet Name="MSsavedforeignkeyextendedproperties" EntityType="EMISOnlineContext.MSsavedforeignkeyextendedproperties" />
  2472. <EntitySet Name="MSsavedforeignkeys" EntityType="EMISOnlineContext.MSsavedforeignkeys" />
  2473. <EntitySet Name="MSsnapshotdeliveryprogress" EntityType="EMISOnlineContext.MSsnapshotdeliveryprogress" />
  2474. <EntitySet Name="MSsubscription_agents" EntityType="EMISOnlineContext.MSsubscription_agents" />
  2475. <EntitySet Name="Sys_Dictionary" EntityType="EMISOnlineContext.Sys_Dictionary" />
  2476. <EntitySet Name="Sys_DictionaryItem" EntityType="EMISOnlineContext.Sys_DictionaryItem" />
  2477. <EntitySet Name="Sys_FunctionCode" EntityType="EMISOnlineContext.Sys_FunctionCode" />
  2478. <EntitySet Name="Sys_LoginCount" EntityType="EMISOnlineContext.Sys_LoginCount" />
  2479. <EntitySet Name="Sys_MailVerifyCode" EntityType="EMISOnlineContext.Sys_MailVerifyCode" />
  2480. <EntitySet Name="Sys_Menu" EntityType="EMISOnlineContext.Sys_Menu" />
  2481. <EntitySet Name="Sys_Role" EntityType="EMISOnlineContext.Sys_Role" />
  2482. <EntitySet Name="Sys_User" EntityType="EMISOnlineContext.Sys_User" />
  2483. <EntitySet Name="Sys_User_Sys_Role" EntityType="EMISOnlineContext.Sys_User_Sys_Role" />
  2484. <EntitySet Name="test_base_param" EntityType="EMISOnlineContext.test_base_param" />
  2485. <EntitySet Name="test_base_param_type" EntityType="EMISOnlineContext.test_base_param_type" />
  2486. <EntitySet Name="test_base_question_type" EntityType="EMISOnlineContext.test_base_question_type" />
  2487. <EntitySet Name="test_comm_param_set" EntityType="EMISOnlineContext.test_comm_param_set" />
  2488. <EntitySet Name="test_comm_set" EntityType="EMISOnlineContext.test_comm_set" />
  2489. <EntitySet Name="test_exchange" EntityType="EMISOnlineContext.test_exchange" />
  2490. <EntitySet Name="test_keyword" EntityType="EMISOnlineContext.test_keyword" />
  2491. <EntitySet Name="test_onlinetest" EntityType="EMISOnlineContext.test_onlinetest" />
  2492. <EntitySet Name="test_onlinetest_man" EntityType="EMISOnlineContext.test_onlinetest_man" />
  2493. <EntitySet Name="test_onlinetest_manshow" EntityType="EMISOnlineContext.test_onlinetest_manshow" />
  2494. <EntitySet Name="test_paper" EntityType="EMISOnlineContext.test_paper" />
  2495. <EntitySet Name="test_paper_guide" EntityType="EMISOnlineContext.test_paper_guide" />
  2496. <EntitySet Name="test_paper_question_set" EntityType="EMISOnlineContext.test_paper_question_set" />
  2497. <EntitySet Name="test_paper_question_set_fortest" EntityType="EMISOnlineContext.test_paper_question_set_fortest" />
  2498. <EntitySet Name="test_question" EntityType="EMISOnlineContext.test_question" />
  2499. <EntitySet Name="test_question_administrator" EntityType="EMISOnlineContext.test_question_administrator" />
  2500. <EntitySet Name="test_question_file" EntityType="EMISOnlineContext.test_question_file" />
  2501. <EntitySet Name="test_question_keyword" EntityType="EMISOnlineContext.test_question_keyword" />
  2502. <EntitySet Name="test_question_libary" EntityType="EMISOnlineContext.test_question_libary" />
  2503. <EntitySet Name="test_question_provid_answer" EntityType="EMISOnlineContext.test_question_provid_answer" />
  2504. <EntitySet Name="v_question" EntityType="EMISOnlineContext.v_question" />
  2505. <EntitySet Name="V_StudentEducationMissionClass" EntityType="EMISOnlineContext.V_StudentEducationMissionClass" />
  2506. <EntitySet Name="v_test_question" EntityType="EMISOnlineContext.v_test_question" />
  2507. <EntitySet Name="VTestQestion" EntityType="EMISOnlineContext.VTestQestion" />
  2508. <AssociationSet Name="FK_EM_SpecialtyCourse_CF_Department" Association="EMISOnlineContext.FK_EM_SpecialtyCourse_CF_Department">
  2509. <End Role="CF_Department" EntitySet="CF_Department" />
  2510. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  2511. </AssociationSet>
  2512. <AssociationSet Name="FK_COURSEWO_REFERENCE_COURSEWO" Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO">
  2513. <End Role="Coursework" EntitySet="Coursework" />
  2514. <End Role="CourseworkResult" EntitySet="CourseworkResult" />
  2515. </AssociationSet>
  2516. <AssociationSet Name="FK_COURSEWO_REFERENCE_COURSEWO333" Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO333">
  2517. <End Role="Coursework" EntitySet="Coursework" />
  2518. <End Role="CourseworkAnswer" EntitySet="CourseworkAnswer" />
  2519. </AssociationSet>
  2520. <AssociationSet Name="FK_COURSEWO_REFERENCE_EX_EXAMI" Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI">
  2521. <End Role="test_paper" EntitySet="test_paper" />
  2522. <End Role="Coursework" EntitySet="Coursework" />
  2523. </AssociationSet>
  2524. <AssociationSet Name="FK_COURSEWO_REFERENCE_EX_EXAMI2" Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI2">
  2525. <End Role="test_paper" EntitySet="test_paper" />
  2526. <End Role="CourseworkResult" EntitySet="CourseworkResult" />
  2527. </AssociationSet>
  2528. <AssociationSet Name="FK_EM_COURS_REFERENCE_EM_COURS_Video" Association="EMISOnlineContext.FK_EM_COURS_REFERENCE_EM_COURS_Video">
  2529. <End Role="EM_CourseVideo" EntitySet="EM_CourseVideo" />
  2530. <End Role="EM_CourseChapter_Video" EntitySet="EM_CourseChapter_Video" />
  2531. </AssociationSet>
  2532. <AssociationSet Name="FK_EM_SPECI_REFERENCE_EM_COURS" Association="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_COURS">
  2533. <End Role="EM_Coursematerial" EntitySet="EM_Coursematerial" />
  2534. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  2535. </AssociationSet>
  2536. <AssociationSet Name="FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo" Association="EMISOnlineContext.FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo">
  2537. <End Role="EM_CourseVideo" EntitySet="EM_CourseVideo" />
  2538. <End Role="EM_CourseStudyStatus" EntitySet="EM_CourseStudyStatus" />
  2539. </AssociationSet>
  2540. <AssociationSet Name="FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass" Association="EMISOnlineContext.FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass">
  2541. <End Role="EM_EducationMissionClass" EntitySet="EM_EducationMissionClass" />
  2542. <End Role="EM_MissionClassTeacher" EntitySet="EM_MissionClassTeacher" />
  2543. </AssociationSet>
  2544. <AssociationSet Name="FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse" Association="EMISOnlineContext.FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse">
  2545. <End Role="EM_ExecutableFreeSelectionCouse" EntitySet="EM_ExecutableFreeSelectionCouse" />
  2546. <End Role="EM_ExecutableFreeSelectionCouseTeachingSetting" EntitySet="EM_ExecutableFreeSelectionCouseTeachingSetting" />
  2547. </AssociationSet>
  2548. <AssociationSet Name="FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse" Association="EMISOnlineContext.FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse">
  2549. <End Role="EM_ExecutableOptionalCourse" EntitySet="EM_ExecutableOptionalCourse" />
  2550. <End Role="EM_ExecutableOptionalCourseTeachingSetting" EntitySet="EM_ExecutableOptionalCourseTeachingSetting" />
  2551. </AssociationSet>
  2552. <AssociationSet Name="FK_EM_SPECI_REFERENCE_EM_SPECI" Association="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_SPECI">
  2553. <End Role="EM_SpecialtyCourse" EntitySet="EM_SpecialtyCourse" />
  2554. <End Role="EM_SpecialtyCourseTeachingSetting" EntitySet="EM_SpecialtyCourseTeachingSetting" />
  2555. </AssociationSet>
  2556. <AssociationSet Name="FK_EXAMRESU_REFERENCE_TEST_ONL" Association="EMISOnlineContext.FK_EXAMRESU_REFERENCE_TEST_ONL">
  2557. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  2558. <End Role="ExamResult" EntitySet="ExamResult" />
  2559. </AssociationSet>
  2560. <AssociationSet Name="FK_SYS_MENU_REFERENCE_SYS_FUNC" Association="EMISOnlineContext.FK_SYS_MENU_REFERENCE_SYS_FUNC">
  2561. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  2562. <End Role="Sys_Menu" EntitySet="Sys_Menu" />
  2563. </AssociationSet>
  2564. <AssociationSet Name="fk_base_param2baseparent" Association="EMISOnlineContext.fk_base_param2baseparent">
  2565. <End Role="test_base_param_type" EntitySet="test_base_param_type" />
  2566. <End Role="test_base_param" EntitySet="test_base_param" />
  2567. </AssociationSet>
  2568. <AssociationSet Name="fk_testquestions2questiontype" Association="EMISOnlineContext.fk_testquestions2questiontype">
  2569. <End Role="test_base_question_type" EntitySet="test_base_question_type" />
  2570. <End Role="test_question" EntitySet="test_question" />
  2571. </AssociationSet>
  2572. <AssociationSet Name="fk_commbaseset2commset" Association="EMISOnlineContext.fk_commbaseset2commset">
  2573. <End Role="test_comm_set" EntitySet="test_comm_set" />
  2574. <End Role="test_comm_param_set" EntitySet="test_comm_param_set" />
  2575. </AssociationSet>
  2576. <AssociationSet Name="fk_question_type_keyword" Association="EMISOnlineContext.fk_question_type_keyword">
  2577. <End Role="test_keyword" EntitySet="test_keyword" />
  2578. <End Role="test_question_keyword" EntitySet="test_question_keyword" />
  2579. </AssociationSet>
  2580. <AssociationSet Name="FK_TEST_ONL_REFERENCE_TEST_SHOW" Association="EMISOnlineContext.FK_TEST_ONL_REFERENCE_TEST_SHOW">
  2581. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  2582. <End Role="test_onlinetest_manshow" EntitySet="test_onlinetest_manshow" />
  2583. </AssociationSet>
  2584. <AssociationSet Name="fk_test_onlinetest_test_paper_id" Association="EMISOnlineContext.fk_test_onlinetest_test_paper_id">
  2585. <End Role="test_paper" EntitySet="test_paper" />
  2586. <End Role="test_onlinetest" EntitySet="test_onlinetest" />
  2587. </AssociationSet>
  2588. <AssociationSet Name="fk_paperquestion_2Paper" Association="EMISOnlineContext.fk_paperquestion_2Paper">
  2589. <End Role="test_paper" EntitySet="test_paper" />
  2590. <End Role="test_paper_question_set" EntitySet="test_paper_question_set" />
  2591. </AssociationSet>
  2592. <AssociationSet Name="fk_question_2questionfile" Association="EMISOnlineContext.fk_question_2questionfile">
  2593. <End Role="test_question_file" EntitySet="test_question_file" />
  2594. <End Role="test_question" EntitySet="test_question" />
  2595. </AssociationSet>
  2596. <AssociationSet Name="FK_TEST_QUE_REFERENCE_TEST_QUE" Association="EMISOnlineContext.FK_TEST_QUE_REFERENCE_TEST_QUE">
  2597. <End Role="test_question" EntitySet="test_question" />
  2598. <End Role="test_question_provid_answer" EntitySet="test_question_provid_answer" />
  2599. </AssociationSet>
  2600. <AssociationSet Name="fk_answer2questionfile" Association="EMISOnlineContext.fk_answer2questionfile">
  2601. <End Role="test_question_file" EntitySet="test_question_file" />
  2602. <End Role="test_question_provid_answer" EntitySet="test_question_provid_answer" />
  2603. </AssociationSet>
  2604. <AssociationSet Name="Sys_Role_Sys_FunctionCode" Association="EMISOnlineContext.Sys_Role_Sys_FunctionCode">
  2605. <End Role="Sys_FunctionCode" EntitySet="Sys_FunctionCode" />
  2606. <End Role="Sys_Role" EntitySet="Sys_Role" />
  2607. </AssociationSet>
  2608. </EntityContainer>
  2609. <EntityType Name="CF_Campus">
  2610. <Key>
  2611. <PropertyRef Name="CampusID" />
  2612. </Key>
  2613. <Property Type="Guid" Name="CampusID" Nullable="false" />
  2614. <Property Type="Guid" Name="UniversityID" />
  2615. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  2616. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  2617. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  2618. <Property Type="String" Name="EnglishName" MaxLength="50" FixedLength="false" Unicode="true" />
  2619. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  2620. <Property Type="Int32" Name="RecordStatus" />
  2621. <Property Type="Guid" Name="CreateUserID" />
  2622. <Property Type="DateTime" Name="CreateTime" />
  2623. <Property Type="Guid" Name="ModifyUserID" />
  2624. <Property Type="DateTime" Name="ModifyTime" />
  2625. </EntityType>
  2626. <EntityType Name="CF_Classmajor">
  2627. <Key>
  2628. <PropertyRef Name="ClassmajorID" />
  2629. </Key>
  2630. <Property Type="Guid" Name="ClassmajorID" Nullable="false" />
  2631. <Property Type="Guid" Name="GrademajorID" />
  2632. <Property Type="String" Name="No" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  2633. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  2634. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  2635. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="false" />
  2636. <Property Type="Int32" Name="ClassNum" />
  2637. <Property Type="Guid" Name="UserID" />
  2638. <Property Type="Guid" Name="AssistantUserID" />
  2639. <Property Type="String" Name="Fixedclassroom" MaxLength="50" FixedLength="false" Unicode="true" />
  2640. <Property Type="Int32" Name="RecordStatus" />
  2641. <Property Type="DateTime" Name="CreateTime" />
  2642. <Property Type="Guid" Name="CreateUserID" />
  2643. <Property Type="Guid" Name="ModifyUserID" />
  2644. <Property Type="DateTime" Name="ModifyTime" />
  2645. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="true" />
  2646. </EntityType>
  2647. <EntityType Name="CF_College">
  2648. <Key>
  2649. <PropertyRef Name="CollegeID" />
  2650. </Key>
  2651. <Property Type="Guid" Name="CollegeID" Nullable="false" />
  2652. <Property Type="Guid" Name="CampusID" />
  2653. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  2654. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  2655. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="false" />
  2656. <Property Type="Guid" Name="ParentCollegeID" />
  2657. <Property Type="String" Name="HierarchyID" MaxLength="500" FixedLength="false" Unicode="false" />
  2658. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  2659. <Property Type="Int32" Name="RecordStatus" />
  2660. <Property Type="Guid" Name="CreateUserID" />
  2661. <Property Type="DateTime" Name="CreateTime" />
  2662. <Property Type="Guid" Name="ModifyUserID" />
  2663. <Property Type="DateTime" Name="ModifyTime" />
  2664. </EntityType>
  2665. <EntityType Name="CF_Department">
  2666. <Key>
  2667. <PropertyRef Name="DepartmentID" />
  2668. </Key>
  2669. <Property Type="Guid" Name="DepartmentID" Nullable="false" />
  2670. <Property Type="Guid" Name="CollegeID" />
  2671. <Property Type="String" Name="No" MaxLength="20" FixedLength="false" Unicode="false" />
  2672. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  2673. <Property Type="String" Name="SimpleName" MaxLength="20" FixedLength="false" Unicode="true" />
  2674. <Property Type="String" Name="EnglishName" MaxLength="200" FixedLength="false" Unicode="false" />
  2675. <Property Type="Guid" Name="ParentDepartmentID" />
  2676. <Property Type="String" Name="HierarchyID" MaxLength="500" FixedLength="false" Unicode="false" />
  2677. <Property Type="Int32" Name="RecordStatus" />
  2678. <Property Type="Guid" Name="CreateUserID" />
  2679. <Property Type="DateTime" Name="CreateTime" />
  2680. <Property Type="Guid" Name="ModifyUserID" />
  2681. <Property Type="DateTime" Name="ModifyTime" />
  2682. <NavigationProperty Name="EM_SpecialtyCourse" Relationship="EMISOnlineContext.FK_EM_SpecialtyCourse_CF_Department" FromRole="CF_Department" ToRole="EM_SpecialtyCourse" />
  2683. </EntityType>
  2684. <EntityType Name="CF_Facultymajor">
  2685. <Key>
  2686. <PropertyRef Name="FacultymajorID" />
  2687. </Key>
  2688. <Property Type="Guid" Name="FacultymajorID" Nullable="false" />
  2689. <Property Type="Guid" Name="CollegeID" />
  2690. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  2691. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  2692. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  2693. <Property Type="String" Name="EnglishName" MaxLength="100" FixedLength="false" Unicode="false" />
  2694. <Property Type="Decimal" Name="LearnSystem" Precision="18" Scale="2" />
  2695. <Property Type="Int32" Name="LearnPositionID" />
  2696. <Property Type="Int32" Name="EducationID" />
  2697. <Property Type="Int32" Name="StandardID" />
  2698. <Property Type="Int32" Name="ScienceclassID" />
  2699. <Property Type="Int32" Name="LearningstyleID" />
  2700. <Property Type="Int32" Name="LearningformID" />
  2701. <Property Type="DateTime" Name="SetTime" />
  2702. <Property Type="String" Name="TeacherIdentification" MaxLength="50" FixedLength="false" Unicode="true" />
  2703. <Property Type="Int32" Name="RecordStatus" />
  2704. <Property Type="DateTime" Name="CreateTime" />
  2705. <Property Type="Guid" Name="CreateUserID" />
  2706. <Property Type="Guid" Name="ModifyUserID" />
  2707. <Property Type="DateTime" Name="ModifyTime" />
  2708. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="true" />
  2709. </EntityType>
  2710. <EntityType Name="CF_Grademajor">
  2711. <Key>
  2712. <PropertyRef Name="GrademajorID" />
  2713. </Key>
  2714. <Property Type="Guid" Name="GrademajorID" Nullable="false" />
  2715. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  2716. <Property Type="String" Name="Name" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  2717. <Property Type="String" Name="Abbreviation" MaxLength="100" FixedLength="false" Unicode="true" />
  2718. <Property Type="Int32" Name="SchoolyearID" />
  2719. <Property Type="String" Name="Professional" MaxLength="100" FixedLength="false" Unicode="false" />
  2720. <Property Type="Int32" Name="SchoolcodeID" />
  2721. <Property Type="Guid" Name="FacultymajorID" />
  2722. <Property Type="Guid" Name="GraduatingSemesterID" />
  2723. <Property Type="Int32" Name="RecordStatus" />
  2724. <Property Type="DateTime" Name="CreateTime" />
  2725. <Property Type="Guid" Name="CreateUserID" />
  2726. <Property Type="Guid" Name="ModifyUserID" />
  2727. <Property Type="DateTime" Name="ModifyTime" />
  2728. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="true" />
  2729. </EntityType>
  2730. <EntityType Name="CF_Recruitstudents">
  2731. <Key>
  2732. <PropertyRef Name="UserID" />
  2733. </Key>
  2734. <Property Type="Guid" Name="UserID" Nullable="false" />
  2735. <Property Type="DateTime" Name="EntranceDate" />
  2736. <Property Type="Int32" Name="EntranceWay" />
  2737. <Property Type="String" Name="ExamineeNum" MaxLength="50" FixedLength="false" Unicode="false" />
  2738. <Property Type="String" Name="PlaceBirth" MaxLength="100" FixedLength="false" Unicode="false" />
  2739. <Property Type="Int32" Name="ExamineeType" />
  2740. <Property Type="Int32" Name="Features" />
  2741. <Property Type="Decimal" Name="Score" Precision="18" Scale="2" />
  2742. <Property Type="Int32" Name="Territorial" />
  2743. <Property Type="String" Name="Area" MaxLength="200" FixedLength="false" Unicode="false" />
  2744. <Property Type="Int32" Name="RecordStatus" />
  2745. <Property Type="DateTime" Name="CreateTime" />
  2746. <Property Type="Guid" Name="CreateUserID" />
  2747. <Property Type="Guid" Name="ModifyUserID" />
  2748. <Property Type="DateTime" Name="ModifyTime" />
  2749. <Property Type="Guid" Name="EnteringSchoolYearID" />
  2750. <Property Type="String" Name="AdmissionTicketNo" MaxLength="50" FixedLength="false" Unicode="false" />
  2751. </EntityType>
  2752. <EntityType Name="CF_Schoolyear">
  2753. <Key>
  2754. <PropertyRef Name="SchoolyearID" />
  2755. </Key>
  2756. <Property Type="Guid" Name="SchoolyearID" Nullable="false" />
  2757. <Property Type="String" Name="Code" MaxLength="50" FixedLength="false" Unicode="true" />
  2758. <Property Type="Int32" Name="Years" Nullable="false" />
  2759. <Property Type="Int32" Name="SchoolcodeID" Nullable="false" />
  2760. <Property Type="Int32" Name="WeeksNum" Nullable="false" />
  2761. <Property Type="DateTime" Name="FirstWeek" Nullable="false" />
  2762. <Property Type="Boolean" Name="IsCurrent" Nullable="false" />
  2763. <Property Type="Int32" Name="WeekDays" Nullable="false" />
  2764. <Property Type="Int32" Name="RecordStatus" />
  2765. <Property Type="DateTime" Name="CreateTime" />
  2766. <Property Type="Guid" Name="CreateUserID" />
  2767. <Property Type="Guid" Name="ModifyUserID" />
  2768. <Property Type="DateTime" Name="ModifyTime" />
  2769. <Property Type="Int32" Name="Value" />
  2770. </EntityType>
  2771. <EntityType Name="CF_Staff">
  2772. <Key>
  2773. <PropertyRef Name="UserID" />
  2774. </Key>
  2775. <Property Type="Guid" Name="UserID" Nullable="false" />
  2776. <Property Type="Guid" Name="CollegeID" />
  2777. <Property Type="Guid" Name="DepartmentID" />
  2778. <Property Type="String" Name="StaffCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  2779. <Property Type="DateTime" Name="BirthDate" />
  2780. <Property Type="Int32" Name="Sex" />
  2781. <Property Type="Int32" Name="TeacherType" />
  2782. <Property Type="Int32" Name="IncumbencyState" />
  2783. <Property Type="Int32" Name="CertificatesType" />
  2784. <Property Type="String" Name="CertificatesNum" MaxLength="50" FixedLength="false" Unicode="false" />
  2785. <Property Type="Int32" Name="Situation" />
  2786. <Property Type="Int32" Name="LiteracyLevels" />
  2787. <Property Type="Int32" Name="DegreeState" />
  2788. <Property Type="Int32" Name="LearnPosition" />
  2789. <Property Type="Int32" Name="Title" />
  2790. <Property Type="DateTime" Name="WorkDate" />
  2791. <Property Type="DateTime" Name="ComeSchoolDate" />
  2792. <Property Type="DateTime" Name="TeachingDate" />
  2793. <Property Type="String" Name="PhotoUrl" MaxLength="200" FixedLength="false" Unicode="false" />
  2794. <Property Type="String" Name="Profile" MaxLength="500" FixedLength="false" Unicode="false" />
  2795. <Property Type="String" Name="Remarks" MaxLength="Max" FixedLength="false" Unicode="true" />
  2796. <Property Type="Int32" Name="RecordStatus" />
  2797. <Property Type="DateTime" Name="CreateTime" />
  2798. <Property Type="Guid" Name="CreateUserID" />
  2799. <Property Type="Guid" Name="ModifyUserID" />
  2800. <Property Type="DateTime" Name="ModifyTime" />
  2801. </EntityType>
  2802. <EntityType Name="CF_StaffProfile">
  2803. <Key>
  2804. <PropertyRef Name="UserID" />
  2805. </Key>
  2806. <Property Type="Guid" Name="UserID" Nullable="false" />
  2807. <Property Type="String" Name="UsedName" MaxLength="20" FixedLength="false" Unicode="false" />
  2808. <Property Type="Int32" Name="Nation" />
  2809. <Property Type="String" Name="Place" MaxLength="20" FixedLength="false" Unicode="true" />
  2810. <Property Type="Int32" Name="EducationCode" />
  2811. <Property Type="String" Name="Telephone" MaxLength="50" FixedLength="false" Unicode="true" />
  2812. <Property Type="String" Name="OfficeTelephone" MaxLength="50" FixedLength="false" Unicode="true" />
  2813. <Property Type="String" Name="Mobile" MaxLength="50" FixedLength="false" Unicode="true" />
  2814. <Property Type="String" Name="Email" MaxLength="50" FixedLength="false" Unicode="true" />
  2815. <Property Type="String" Name="QQ" MaxLength="20" FixedLength="false" Unicode="false" />
  2816. <Property Type="String" Name="Nationality" MaxLength="20" FixedLength="false" Unicode="false" />
  2817. <Property Type="Int32" Name="HealthState" />
  2818. <Property Type="String" Name="HousePhone" MaxLength="20" FixedLength="false" Unicode="false" />
  2819. <Property Type="String" Name="Address" MaxLength="50" FixedLength="false" Unicode="false" />
  2820. <Property Type="String" Name="Postcode" MaxLength="10" FixedLength="false" Unicode="false" />
  2821. <Property Type="String" Name="HomeAddress" MaxLength="50" FixedLength="false" Unicode="false" />
  2822. <Property Type="String" Name="NowAddress" MaxLength="50" FixedLength="false" Unicode="false" />
  2823. <Property Type="String" Name="Residence" MaxLength="50" FixedLength="false" Unicode="false" />
  2824. <Property Type="String" Name="Speciality" MaxLength="500" FixedLength="false" Unicode="false" />
  2825. <Property Type="String" Name="WeChatNum" MaxLength="50" FixedLength="false" Unicode="false" />
  2826. <Property Type="Int32" Name="Religion" />
  2827. <Property Type="String" Name="Account" MaxLength="50" FixedLength="false" Unicode="false" />
  2828. </EntityType>
  2829. <EntityType Name="CF_Student">
  2830. <Key>
  2831. <PropertyRef Name="UserID" />
  2832. </Key>
  2833. <Property Type="Guid" Name="UserID" Nullable="false" />
  2834. <Property Type="Guid" Name="ClassmajorID" />
  2835. <Property Type="String" Name="PhotoUrl" MaxLength="500" FixedLength="false" Unicode="false" />
  2836. <Property Type="Int32" Name="Sex" />
  2837. <Property Type="Int32" Name="CertificatesType" />
  2838. <Property Type="String" Name="IDNumber" MaxLength="20" FixedLength="false" Unicode="false" />
  2839. <Property Type="String" Name="StudentCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  2840. <Property Type="DateTime" Name="PlanningGraduateDate" />
  2841. <Property Type="Int32" Name="CultureModel" />
  2842. <Property Type="Int32" Name="StudentType" />
  2843. <Property Type="Int32" Name="StudentStatus" />
  2844. <Property Type="Int32" Name="InSchoolStatusID" />
  2845. <Property Type="Boolean" Name="IsProofread" />
  2846. <Property Type="Int32" Name="RecordStatus" />
  2847. <Property Type="DateTime" Name="CreateTime" />
  2848. <Property Type="Guid" Name="CreateUserID" />
  2849. <Property Type="Guid" Name="ModifyUserID" />
  2850. <Property Type="DateTime" Name="ModifyTime" />
  2851. <Property Type="String" Name="GraduateCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  2852. <Property Type="Boolean" Name="IsDreamProject" />
  2853. <Property Type="String" Name="Career" MaxLength="Max" FixedLength="false" Unicode="true" />
  2854. </EntityType>
  2855. <EntityType Name="CF_StudentContact">
  2856. <Key>
  2857. <PropertyRef Name="UserID" />
  2858. </Key>
  2859. <Property Type="Guid" Name="UserID" Nullable="false" />
  2860. <Property Type="String" Name="Email" MaxLength="100" FixedLength="false" Unicode="false" />
  2861. <Property Type="String" Name="QQ" MaxLength="40" FixedLength="false" Unicode="false" />
  2862. <Property Type="String" Name="Mobile" MaxLength="50" FixedLength="false" Unicode="false" />
  2863. <Property Type="String" Name="Telephone" MaxLength="50" FixedLength="false" Unicode="false" />
  2864. <Property Type="String" Name="MicroMsgNo" MaxLength="20" FixedLength="false" Unicode="false" />
  2865. <Property Type="String" Name="Zipcode" MaxLength="10" FixedLength="false" Unicode="false" />
  2866. <Property Type="String" Name="Address" MaxLength="200" FixedLength="false" Unicode="true" />
  2867. <Property Type="String" Name="WorkUnit" MaxLength="200" FixedLength="false" Unicode="true" />
  2868. <Property Type="String" Name="HomeAddress" MaxLength="200" FixedLength="false" Unicode="true" />
  2869. <Property Type="String" Name="Recipient" MaxLength="20" FixedLength="false" Unicode="true" />
  2870. <Property Type="String" Name="Dormitory" MaxLength="100" FixedLength="false" Unicode="true" />
  2871. <Property Type="Int32" Name="RecordStatus" />
  2872. <Property Type="DateTime" Name="CreateTime" />
  2873. <Property Type="Guid" Name="CreateUserID" />
  2874. <Property Type="Guid" Name="ModifyUserID" />
  2875. <Property Type="DateTime" Name="ModifyTime" />
  2876. </EntityType>
  2877. <EntityType Name="CF_StudentContrast">
  2878. <Key>
  2879. <PropertyRef Name="StudentContrastID" />
  2880. </Key>
  2881. <Property Type="Guid" Name="StudentContrastID" Nullable="false" />
  2882. <Property Type="Guid" Name="UserID" Nullable="false" />
  2883. <Property Type="Guid" Name="ClassmajorID" />
  2884. <Property Type="String" Name="PhotoUrl" MaxLength="500" FixedLength="false" Unicode="false" />
  2885. <Property Type="Int32" Name="Sex" Nullable="false" />
  2886. <Property Type="Int32" Name="CertificatesType" />
  2887. <Property Type="String" Name="IDNumber" Nullable="false" MaxLength="20" FixedLength="false" Unicode="false" />
  2888. <Property Type="String" Name="StudentCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  2889. <Property Type="DateTime" Name="PlanningGraduateDate" />
  2890. <Property Type="Int32" Name="CultureModel" />
  2891. <Property Type="Int32" Name="StudentType" />
  2892. <Property Type="Int32" Name="StudentStatus" />
  2893. <Property Type="Int32" Name="InSchoolStatusID" />
  2894. <Property Type="Int32" Name="RecordStatus" />
  2895. <Property Type="DateTime" Name="CreateTime" />
  2896. <Property Type="Guid" Name="CreateUserID" />
  2897. <Property Type="Guid" Name="ModifyUserID" />
  2898. <Property Type="DateTime" Name="ModifyTime" />
  2899. <Property Type="String" Name="IP" MaxLength="50" FixedLength="false" Unicode="false" />
  2900. <Property Type="String" Name="AuditComments" MaxLength="Max" FixedLength="false" Unicode="false" />
  2901. <Property Type="String" Name="GraduateCardNo" MaxLength="50" FixedLength="false" Unicode="false" />
  2902. <Property Type="Boolean" Name="IsDreamProject" />
  2903. <Property Type="String" Name="Career" MaxLength="Max" FixedLength="false" Unicode="true" />
  2904. </EntityType>
  2905. <EntityType Name="CF_StudentRole">
  2906. <Key>
  2907. <PropertyRef Name="RoleID" />
  2908. </Key>
  2909. <Property Type="Guid" Name="RoleID" Nullable="false" />
  2910. <Property Type="Int32" Name="StudentType" />
  2911. <Property Type="Int32" Name="RecordStatus" />
  2912. <Property Type="DateTime" Name="CreateTime" />
  2913. <Property Type="Guid" Name="CreateUserID" />
  2914. <Property Type="Guid" Name="ModifyUserID" />
  2915. <Property Type="DateTime" Name="ModifyTime" />
  2916. </EntityType>
  2917. <EntityType Name="CF_University">
  2918. <Key>
  2919. <PropertyRef Name="UniversityID" />
  2920. </Key>
  2921. <Property Type="Guid" Name="UniversityID" Nullable="false" />
  2922. <Property Type="String" Name="Code" MaxLength="20" FixedLength="false" Unicode="false" />
  2923. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  2924. <Property Type="String" Name="EnglishName" MaxLength="200" FixedLength="false" Unicode="false" />
  2925. <Property Type="String" Name="SimpleName" MaxLength="50" FixedLength="false" Unicode="true" />
  2926. <Property Type="Int32" Name="RecordStatus" />
  2927. <Property Type="Guid" Name="CreateUserID" />
  2928. <Property Type="DateTime" Name="CreateTime" />
  2929. <Property Type="Guid" Name="ModifyUserID" />
  2930. <Property Type="DateTime" Name="ModifyTime" />
  2931. </EntityType>
  2932. <EntityType Name="Coursework">
  2933. <Key>
  2934. <PropertyRef Name="ID" />
  2935. </Key>
  2936. <Property Type="Decimal" Name="ID" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  2937. <Property Type="Decimal" Name="PaperID" Precision="18" Scale="0" />
  2938. <Property Type="String" Name="WorkName" MaxLength="300" FixedLength="false" Unicode="false" />
  2939. <Property Type="DateTime" Name="BeginTime" />
  2940. <Property Type="DateTime" Name="EndTime" />
  2941. <Property Type="Int32" Name="breaking_id" />
  2942. <Property Type="Decimal" Name="test_method_set_id" Precision="18" Scale="0" />
  2943. <Property Type="String" Name="notice_method_id" MaxLength="300" FixedLength="false" Unicode="false" />
  2944. <Property Type="Int32" Name="status_id" />
  2945. <Property Type="String" Name="created_by" MaxLength="40" FixedLength="false" Unicode="false" />
  2946. <Property Type="String" Name="created_date" MaxLength="49" FixedLength="false" Unicode="false" />
  2947. <Property Type="Boolean" Name="ISautoBegin" />
  2948. <Property Type="Boolean" Name="isOpenAnswer" />
  2949. <Property Type="Int32" Name="rand_Test_time" />
  2950. <Property Type="Int32" Name="rand_test_count" />
  2951. <Property Type="Int32" Name="rand_test_point_type" />
  2952. <Property Type="Int32" Name="rand_test_point_setid" />
  2953. <Property Type="Int32" Name="display_type" />
  2954. <Property Type="Boolean" Name="isPublishScore" />
  2955. <Property Type="Boolean" Name="isControllable" />
  2956. <Property Type="Int32" Name="relogin_count" />
  2957. <Property Type="Guid" Name="EducationMissionClassID" />
  2958. <Property Type="String" Name="ModityContent" MaxLength="Max" FixedLength="false" Unicode="false" />
  2959. <NavigationProperty Name="CourseworkResult" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO" FromRole="Coursework" ToRole="CourseworkResult" />
  2960. <NavigationProperty Name="CourseworkAnswer" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO333" FromRole="Coursework" ToRole="CourseworkAnswer" />
  2961. <NavigationProperty Name="test_paper" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI" FromRole="Coursework" ToRole="test_paper" />
  2962. </EntityType>
  2963. <EntityType Name="CourseworkAnswer">
  2964. <Key>
  2965. <PropertyRef Name="ID" />
  2966. </Key>
  2967. <Property Type="Decimal" Name="ID" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  2968. <Property Type="Decimal" Name="workid" Precision="18" Scale="0" />
  2969. <Property Type="String" Name="user_id" MaxLength="40" FixedLength="false" Unicode="false" />
  2970. <Property Type="String" Name="resultXml" MaxLength="Max" FixedLength="false" Unicode="true" />
  2971. <NavigationProperty Name="Coursework" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO333" FromRole="CourseworkAnswer" ToRole="Coursework" />
  2972. </EntityType>
  2973. <EntityType Name="CourseworkResult">
  2974. <Key>
  2975. <PropertyRef Name="ID" />
  2976. </Key>
  2977. <Property Type="Decimal" Name="ID" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  2978. <Property Type="String" Name="user_id" MaxLength="40" FixedLength="false" Unicode="false" />
  2979. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  2980. <Property Type="DateTime" Name="test_begin_date" />
  2981. <Property Type="DateTime" Name="test_end_date" />
  2982. <Property Type="Int32" Name="limited_minutes" />
  2983. <Property Type="Decimal" Name="workid" Precision="18" Scale="0" />
  2984. <Property Type="Guid" Name="ExaminationPaperID" />
  2985. <Property Type="String" Name="username" MaxLength="40" FixedLength="false" Unicode="false" />
  2986. <Property Type="Double" Name="score" />
  2987. <Property Type="Boolean" Name="is_auto_read" />
  2988. <Property Type="Int32" Name="state" />
  2989. <Property Type="Int32" Name="warning_count" />
  2990. <Property Type="DateTime" Name="lastLoginTime" />
  2991. <NavigationProperty Name="Coursework" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO" FromRole="CourseworkResult" ToRole="Coursework" />
  2992. <NavigationProperty Name="test_paper" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI2" FromRole="CourseworkResult" ToRole="test_paper" />
  2993. </EntityType>
  2994. <EntityType Name="EM_CourseChapter">
  2995. <Key>
  2996. <PropertyRef Name="CourseChapterID" />
  2997. </Key>
  2998. <Property Type="Guid" Name="CourseChapterID" Nullable="false" />
  2999. <Property Type="Guid" Name="CoursematerialID" />
  3000. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  3001. <Property Type="Int32" Name="OrderID" />
  3002. <Property Type="Guid" Name="ParentCourseChapterID" />
  3003. <Property Type="Int32" Name="VideoTypeID" />
  3004. <Property Type="String" Name="OuterVideoUrl" MaxLength="2048" FixedLength="false" Unicode="false" />
  3005. <Property Type="Int32" Name="RecordStatus" />
  3006. <Property Type="DateTime" Name="CreateTime" />
  3007. <Property Type="Guid" Name="CreateUserID" />
  3008. <Property Type="Guid" Name="ModifyUserID" />
  3009. <Property Type="DateTime" Name="ModifyTime" />
  3010. </EntityType>
  3011. <EntityType Name="EM_CourseChapter_Video">
  3012. <Key>
  3013. <PropertyRef Name="CourseVideoID" />
  3014. <PropertyRef Name="CourseChapterID" />
  3015. </Key>
  3016. <Property Type="Guid" Name="CourseVideoID" Nullable="false" />
  3017. <Property Type="Guid" Name="CourseChapterID" Nullable="false" />
  3018. <NavigationProperty Name="EM_CourseVideo" Relationship="EMISOnlineContext.FK_EM_COURS_REFERENCE_EM_COURS_Video" FromRole="EM_CourseChapter_Video" ToRole="EM_CourseVideo" />
  3019. </EntityType>
  3020. <EntityType Name="EM_Coursematerial">
  3021. <Key>
  3022. <PropertyRef Name="CoursematerialID" />
  3023. </Key>
  3024. <Property Type="Guid" Name="CoursematerialID" Nullable="false" />
  3025. <Property Type="Guid" Name="ClassGroupingID" />
  3026. <Property Type="String" Name="CourseCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3027. <Property Type="String" Name="CourseName" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3028. <Property Type="String" Name="Abbreviation" MaxLength="50" FixedLength="false" Unicode="true" />
  3029. <Property Type="String" Name="EnglishName" MaxLength="50" FixedLength="false" Unicode="true" />
  3030. <Property Type="String" Name="StandardName" MaxLength="50" FixedLength="false" Unicode="true" />
  3031. <Property Type="String" Name="CourseEdition" MaxLength="50" FixedLength="false" Unicode="true" />
  3032. <Property Type="String" Name="CourseSynopsis" MaxLength="50" FixedLength="false" Unicode="true" />
  3033. <Property Type="String" Name="CourseReserve" MaxLength="50" FixedLength="false" Unicode="true" />
  3034. <Property Type="Boolean" Name="IsEnable" />
  3035. <Property Type="Int32" Name="CourseLevelID" />
  3036. <Property Type="Int32" Name="CourseScienceID" />
  3037. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="true" />
  3038. <Property Type="Int32" Name="RecordStatus" />
  3039. <Property Type="DateTime" Name="CreateTime" />
  3040. <Property Type="Guid" Name="CreateUserID" />
  3041. <Property Type="Guid" Name="ModifyUserID" />
  3042. <Property Type="DateTime" Name="ModifyTime" />
  3043. <NavigationProperty Name="EM_SpecialtyCourse" Relationship="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_COURS" FromRole="EM_Coursematerial" ToRole="EM_SpecialtyCourse" />
  3044. </EntityType>
  3045. <EntityType Name="EM_CoursematerialExtend">
  3046. <Key>
  3047. <PropertyRef Name="CoursematerialID" />
  3048. </Key>
  3049. <Property Type="Guid" Name="CoursematerialID" Nullable="false" />
  3050. <Property Type="String" Name="CoverUrl" MaxLength="1024" FixedLength="false" Unicode="false" />
  3051. <Property Type="Int32" Name="RecordStatus" />
  3052. <Property Type="DateTime" Name="CreateTime" />
  3053. <Property Type="Guid" Name="CreateUserID" />
  3054. <Property Type="Guid" Name="ModifyUserID" />
  3055. <Property Type="DateTime" Name="ModifyTime" />
  3056. </EntityType>
  3057. <EntityType Name="EM_CourseStudyStatus">
  3058. <Key>
  3059. <PropertyRef Name="CourseStudyStatusID" />
  3060. </Key>
  3061. <Property Type="Guid" Name="CourseStudyStatusID" Nullable="false" />
  3062. <Property Type="Guid" Name="UserID" Nullable="false" />
  3063. <Property Type="Guid" Name="CoursematerialID" />
  3064. <Property Type="Int32" Name="ContinuousTime" />
  3065. <Property Type="Int32" Name="LastVideoTypeID" />
  3066. <Property Type="Guid" Name="LastCourseVideoID" />
  3067. <Property Type="Int32" Name="LastCourseVideoLength" />
  3068. <Property Type="String" Name="LastOuterVideoUrl" MaxLength="2048" FixedLength="false" Unicode="false" />
  3069. <NavigationProperty Name="EM_CourseVideo" Relationship="EMISOnlineContext.FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo" FromRole="EM_CourseStudyStatus" ToRole="EM_CourseVideo" />
  3070. </EntityType>
  3071. <EntityType Name="EM_CourseVideo">
  3072. <Key>
  3073. <PropertyRef Name="CourseVideoID" />
  3074. </Key>
  3075. <Property Type="Guid" Name="CourseVideoID" Nullable="false" />
  3076. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  3077. <Property Type="String" Name="UploadUrl" MaxLength="2048" FixedLength="false" Unicode="false" />
  3078. <Property Type="String" Name="PlayUrl" MaxLength="2048" FixedLength="false" Unicode="false" />
  3079. <Property Type="Int32" Name="RecordStatus" />
  3080. <Property Type="DateTime" Name="CreateTime" />
  3081. <Property Type="Guid" Name="CreateUserID" />
  3082. <Property Type="Guid" Name="ModifyUserID" />
  3083. <Property Type="DateTime" Name="ModifyTime" />
  3084. <NavigationProperty Name="EM_CourseChapter_Video" Relationship="EMISOnlineContext.FK_EM_COURS_REFERENCE_EM_COURS_Video" FromRole="EM_CourseVideo" ToRole="EM_CourseChapter_Video" />
  3085. <NavigationProperty Name="EM_CourseStudyStatus" Relationship="EMISOnlineContext.FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo" FromRole="EM_CourseVideo" ToRole="EM_CourseStudyStatus" />
  3086. </EntityType>
  3087. <EntityType Name="EM_EducationMission">
  3088. <Key>
  3089. <PropertyRef Name="EducationMissionID" />
  3090. </Key>
  3091. <Property Type="Guid" Name="EducationMissionID" Nullable="false" />
  3092. <Property Type="Guid" Name="CollegeID" />
  3093. <Property Type="Guid" Name="DepartmentID" />
  3094. <Property Type="Guid" Name="SchoolyearID" />
  3095. <Property Type="String" Name="ClassName" MaxLength="100" FixedLength="false" Unicode="true" />
  3096. <Property Type="Int32" Name="RecordStatus" />
  3097. <Property Type="DateTime" Name="CreateTime" />
  3098. <Property Type="Guid" Name="CreateUserID" />
  3099. <Property Type="Guid" Name="ModifyUserID" />
  3100. <Property Type="DateTime" Name="ModifyTime" />
  3101. </EntityType>
  3102. <EntityType Name="EM_EducationMissionClass">
  3103. <Key>
  3104. <PropertyRef Name="EducationMissionClassID" />
  3105. </Key>
  3106. <Property Type="Guid" Name="EducationMissionClassID" Nullable="false" />
  3107. <Property Type="Guid" Name="EducationMissionID" />
  3108. <Property Type="Guid" Name="MainScheduleClassID" />
  3109. <Property Type="Int32" Name="OrderNo" />
  3110. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  3111. <Property Type="Int32" Name="TeachingModeID" />
  3112. <Property Type="Int32" Name="OptionalCourseTypeID" />
  3113. <Property Type="Int32" Name="ClassroomTypeID" />
  3114. <Property Type="Guid" Name="ClassroomID" />
  3115. <Property Type="Guid" Name="CoursematerialID" />
  3116. <Property Type="Int32" Name="CourseStructureID" />
  3117. <Property Type="Int32" Name="CourseCategoryID" />
  3118. <Property Type="Int32" Name="CourseTypeID" />
  3119. <Property Type="Int32" Name="CourseQualityID" />
  3120. <Property Type="Int32" Name="ExaminationModeID" />
  3121. <Property Type="Int32" Name="TeachinglanguageID" />
  3122. <Property Type="Int32" Name="HandleModeID" />
  3123. <Property Type="Boolean" Name="IsNeedMaterial" />
  3124. <Property Type="Int32" Name="ResultTypeID" />
  3125. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3126. <Property Type="Int32" Name="RecordStatus" />
  3127. <Property Type="Guid" Name="CreateUserID" />
  3128. <Property Type="DateTime" Name="CreateTime" />
  3129. <Property Type="Guid" Name="ModifyUserID" />
  3130. <Property Type="DateTime" Name="ModifyTime" />
  3131. <NavigationProperty Name="EM_MissionClassTeacher" Relationship="EMISOnlineContext.FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass" FromRole="EM_EducationMissionClass" ToRole="EM_MissionClassTeacher" />
  3132. </EntityType>
  3133. <EntityType Name="EM_EducationMissionClass_CF_Classmajor">
  3134. <Key>
  3135. <PropertyRef Name="EducationMissionClassID" />
  3136. <PropertyRef Name="ClassmajorID" />
  3137. </Key>
  3138. <Property Type="Guid" Name="EducationMissionClassID" Nullable="false" />
  3139. <Property Type="Guid" Name="ClassmajorID" Nullable="false" />
  3140. </EntityType>
  3141. <EntityType Name="EM_EducationMissionClassTeachingSetting">
  3142. <Key>
  3143. <PropertyRef Name="EducationMissionClassID" />
  3144. </Key>
  3145. <Property Type="Guid" Name="EducationMissionClassID" Nullable="false" />
  3146. <Property Type="Decimal" Name="Credit" Precision="18" Scale="2" />
  3147. <Property Type="Int32" Name="TheoryCourse" />
  3148. <Property Type="Int32" Name="Practicehours" />
  3149. <Property Type="Int32" Name="Trialhours" />
  3150. <Property Type="Int32" Name="WeeklyNum" />
  3151. <Property Type="Int32" Name="TheoryWeeklyNum" />
  3152. <Property Type="Int32" Name="PracticeWeeklyNum" />
  3153. <Property Type="Int32" Name="TrialWeeklyNum" />
  3154. <Property Type="Int32" Name="StartWeeklyNum" />
  3155. <Property Type="Int32" Name="EndWeeklyNum" />
  3156. <Property Type="Int32" Name="WeeklyHours" />
  3157. </EntityType>
  3158. <EntityType Name="EM_EducationSchedulingClass">
  3159. <Key>
  3160. <PropertyRef Name="EducationSchedulingClassID" />
  3161. </Key>
  3162. <Property Type="Guid" Name="EducationSchedulingClassID" Nullable="false" />
  3163. <Property Type="Guid" Name="EducationMissionClassID" />
  3164. <Property Type="String" Name="TaskGroupName" MaxLength="50" FixedLength="false" Unicode="true" />
  3165. <Property Type="String" Name="Remarks" MaxLength="200" FixedLength="false" Unicode="true" />
  3166. <Property Type="Int32" Name="RecordStatus" />
  3167. <Property Type="DateTime" Name="CreateTime" />
  3168. <Property Type="Guid" Name="CreateUserID" />
  3169. <Property Type="Guid" Name="ModifyUserID" />
  3170. <Property Type="DateTime" Name="ModifyTime" />
  3171. </EntityType>
  3172. <EntityType Name="EM_EducationSchedulingClass_CF_Student">
  3173. <Key>
  3174. <PropertyRef Name="EducationSchedulingClassID" />
  3175. <PropertyRef Name="UserID" />
  3176. </Key>
  3177. <Property Type="Guid" Name="EducationSchedulingClassID" Nullable="false" />
  3178. <Property Type="Guid" Name="UserID" Nullable="false" />
  3179. </EntityType>
  3180. <EntityType Name="EM_ExecutableFreeSelectionCouse">
  3181. <Key>
  3182. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  3183. </Key>
  3184. <Property Type="Guid" Name="ExecutableFreeSelectionCouseID" Nullable="false" />
  3185. <Property Type="Guid" Name="SchoolyearID" />
  3186. <Property Type="Guid" Name="FreeSelectionCouseID" />
  3187. <Property Type="String" Name="DefaultClassName" MaxLength="50" FixedLength="false" Unicode="true" />
  3188. <Property Type="Guid" Name="DepartmentID" />
  3189. <Property Type="Int32" Name="CourseStructureID" />
  3190. <Property Type="Int32" Name="CourseCategoryID" />
  3191. <Property Type="Int32" Name="CourseTypeID" />
  3192. <Property Type="Int32" Name="CourseQualityID" />
  3193. <Property Type="Int32" Name="PracticeTypeID" />
  3194. <Property Type="Int32" Name="ExaminationModeID" />
  3195. <Property Type="Int32" Name="TeachinglanguageID" />
  3196. <Property Type="Boolean" Name="IsNeedMaterial" />
  3197. <Property Type="Int32" Name="PeopleNumlower" />
  3198. <Property Type="Int32" Name="PeopleNumlimit" />
  3199. <Property Type="Int32" Name="HandleModeID" />
  3200. <Property Type="Boolean" Name="IsOpened" />
  3201. <Property Type="Int32" Name="ResultTypeID" />
  3202. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="true" />
  3203. <Property Type="Int32" Name="RecordStatus" />
  3204. <Property Type="DateTime" Name="CreateTime" />
  3205. <Property Type="Guid" Name="CreateUserID" />
  3206. <Property Type="Guid" Name="ModifyUserID" />
  3207. <Property Type="DateTime" Name="ModifyTime" />
  3208. <NavigationProperty Name="EM_ExecutableFreeSelectionCouseTeachingSetting" Relationship="EMISOnlineContext.FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse" FromRole="EM_ExecutableFreeSelectionCouse" ToRole="EM_ExecutableFreeSelectionCouseTeachingSetting" />
  3209. </EntityType>
  3210. <EntityType Name="EM_ExecutableFreeSelectionCouseTeachingSetting">
  3211. <Key>
  3212. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  3213. </Key>
  3214. <Property Type="Guid" Name="ExecutableFreeSelectionCouseID" Nullable="false" />
  3215. <Property Type="Decimal" Name="Credit" Precision="18" Scale="2" />
  3216. <Property Type="Int32" Name="TheoryCourse" />
  3217. <Property Type="Int32" Name="Practicehours" />
  3218. <Property Type="Int32" Name="Trialhours" />
  3219. <Property Type="Int32" Name="WeeklyNum" />
  3220. <Property Type="Int32" Name="TheoryWeeklyNum" />
  3221. <Property Type="Int32" Name="PracticeWeeklyNum" />
  3222. <Property Type="Int32" Name="TrialWeeklyNum" />
  3223. <Property Type="Int32" Name="StartWeeklyNum" />
  3224. <Property Type="Int32" Name="EndWeeklyNum" />
  3225. <Property Type="Int32" Name="WeeklyHours" />
  3226. <NavigationProperty Name="EM_ExecutableFreeSelectionCouse" Relationship="EMISOnlineContext.FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse" FromRole="EM_ExecutableFreeSelectionCouseTeachingSetting" ToRole="EM_ExecutableFreeSelectionCouse" />
  3227. </EntityType>
  3228. <EntityType Name="EM_ExecutableOptionalCourse">
  3229. <Key>
  3230. <PropertyRef Name="ExecutableOptionalCourseID" />
  3231. </Key>
  3232. <Property Type="Guid" Name="ExecutableOptionalCourseID" Nullable="false" />
  3233. <Property Type="Guid" Name="OptionalCourseID" />
  3234. <Property Type="Guid" Name="SchoolyearID" />
  3235. <Property Type="Guid" Name="GrademajorID" />
  3236. <Property Type="Guid" Name="DepartmentID" />
  3237. <Property Type="String" Name="DefaultClassName" MaxLength="50" FixedLength="false" Unicode="true" />
  3238. <Property Type="Int32" Name="CourseStructureID" />
  3239. <Property Type="Int32" Name="CourseCategoryID" />
  3240. <Property Type="Int32" Name="CourseTypeID" />
  3241. <Property Type="Int32" Name="CourseQualityID" />
  3242. <Property Type="Int32" Name="PracticeTypeID" />
  3243. <Property Type="Int32" Name="ExaminationModeID" />
  3244. <Property Type="Int32" Name="TeachinglanguageID" />
  3245. <Property Type="Boolean" Name="IsEnable" />
  3246. <Property Type="Int32" Name="ResultTypeID" />
  3247. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="false" />
  3248. <Property Type="Int32" Name="PeopleNumlower" />
  3249. <Property Type="Int32" Name="PeopleNumlimit" />
  3250. <Property Type="Boolean" Name="IsOpened" />
  3251. <Property Type="Int32" Name="RecordStatus" />
  3252. <Property Type="DateTime" Name="CreateTime" />
  3253. <Property Type="Guid" Name="CreateUserID" />
  3254. <Property Type="Guid" Name="ModifyUserID" />
  3255. <Property Type="DateTime" Name="ModifyTime" />
  3256. <NavigationProperty Name="EM_ExecutableOptionalCourseTeachingSetting" Relationship="EMISOnlineContext.FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse" FromRole="EM_ExecutableOptionalCourse" ToRole="EM_ExecutableOptionalCourseTeachingSetting" />
  3257. </EntityType>
  3258. <EntityType Name="EM_ExecutableOptionalCourseTeachingSetting">
  3259. <Key>
  3260. <PropertyRef Name="ExecutableOptionalCourseID" />
  3261. </Key>
  3262. <Property Type="Guid" Name="ExecutableOptionalCourseID" Nullable="false" />
  3263. <Property Type="Decimal" Name="Credit" Precision="18" Scale="2" />
  3264. <Property Type="Int32" Name="TheoryCourse" />
  3265. <Property Type="Int32" Name="Practicehours" />
  3266. <Property Type="Int32" Name="Trialhours" />
  3267. <Property Type="Int32" Name="WeeklyNum" />
  3268. <Property Type="Int32" Name="TheoryWeeklyNum" />
  3269. <Property Type="Int32" Name="PracticeWeeklyNum" />
  3270. <Property Type="Int32" Name="TrialWeeklyNum" />
  3271. <Property Type="Int32" Name="StartWeeklyNum" />
  3272. <Property Type="Int32" Name="EndWeeklyNum" />
  3273. <Property Type="Int32" Name="WeeklyHours" />
  3274. <NavigationProperty Name="EM_ExecutableOptionalCourse" Relationship="EMISOnlineContext.FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse" FromRole="EM_ExecutableOptionalCourseTeachingSetting" ToRole="EM_ExecutableOptionalCourse" />
  3275. </EntityType>
  3276. <EntityType Name="EM_ExecutablePlan">
  3277. <Key>
  3278. <PropertyRef Name="ExecutablePlanID" />
  3279. </Key>
  3280. <Property Type="Guid" Name="ExecutablePlanID" Nullable="false" />
  3281. <Property Type="Int32" Name="SourceTypeID" />
  3282. <Property Type="Int32" Name="HandleModeID" />
  3283. <Property Type="Guid" Name="GrademajorID" />
  3284. <Property Type="Guid" Name="SchoolyearID" />
  3285. <Property Type="Guid" Name="SpecialtyPlanID" />
  3286. <Property Type="String" Name="DefaultClassName" MaxLength="50" FixedLength="false" Unicode="true" />
  3287. <Property Type="Boolean" Name="IsNeedMaterial" />
  3288. <Property Type="Guid" Name="DepartmentID" />
  3289. <Property Type="Guid" Name="CoursematerialID" />
  3290. <Property Type="Int32" Name="CourseStructureID" />
  3291. <Property Type="Int32" Name="CourseCategoryID" />
  3292. <Property Type="Int32" Name="CourseTypeID" />
  3293. <Property Type="Int32" Name="CourseQualityID" />
  3294. <Property Type="Int32" Name="ResultTypeID" />
  3295. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="false" />
  3296. <Property Type="Int32" Name="RecordStatus" />
  3297. <Property Type="DateTime" Name="CreateTime" />
  3298. <Property Type="Guid" Name="CreateUserID" />
  3299. <Property Type="Guid" Name="ModifyUserID" />
  3300. <Property Type="DateTime" Name="ModifyTime" />
  3301. </EntityType>
  3302. <EntityType Name="EM_ExecutablePlanTeachingSetting">
  3303. <Key>
  3304. <PropertyRef Name="ExecutablePlanID" />
  3305. </Key>
  3306. <Property Type="Guid" Name="ExecutablePlanID" Nullable="false" />
  3307. <Property Type="Decimal" Name="Credit" Precision="18" Scale="2" />
  3308. <Property Type="Int32" Name="TheoryCourse" />
  3309. <Property Type="Int32" Name="Practicehours" />
  3310. <Property Type="Int32" Name="Trialhours" />
  3311. <Property Type="Int32" Name="WeeklyNum" />
  3312. <Property Type="Int32" Name="TheoryWeeklyNum" />
  3313. <Property Type="Int32" Name="PracticeWeeklyNum" />
  3314. <Property Type="Int32" Name="TrialWeeklyNum" />
  3315. <Property Type="Int32" Name="StartWeeklyNum" />
  3316. <Property Type="Int32" Name="EndWeeklyNum" />
  3317. <Property Type="Int32" Name="WeeklyHours" />
  3318. </EntityType>
  3319. <EntityType Name="EM_FreeSelectionCouse">
  3320. <Key>
  3321. <PropertyRef Name="FreeSelectionCouseID" />
  3322. </Key>
  3323. <Property Type="Guid" Name="FreeSelectionCouseID" Nullable="false" />
  3324. <Property Type="Guid" Name="CoursematerialID" />
  3325. <Property Type="Guid" Name="DepartmentID" />
  3326. <Property Type="Int32" Name="CourseStructureID" />
  3327. <Property Type="Int32" Name="CourseCategoryID" />
  3328. <Property Type="Int32" Name="CourseTypeID" />
  3329. <Property Type="Int32" Name="CourseQualityID" />
  3330. <Property Type="Int32" Name="PracticeTypeID" />
  3331. <Property Type="Int32" Name="ExaminationModeID" />
  3332. <Property Type="Int32" Name="TeachinglanguageID" />
  3333. <Property Type="Int32" Name="SchoolyearNumID" />
  3334. <Property Type="Int32" Name="SchoolcodeID" />
  3335. <Property Type="Boolean" Name="IsEnable" />
  3336. <Property Type="Int32" Name="ResultTypeID" />
  3337. <Property Type="String" Name="Remark" MaxLength="Max" FixedLength="false" Unicode="true" />
  3338. <Property Type="Int32" Name="RecordStatus" />
  3339. <Property Type="DateTime" Name="CreateTime" />
  3340. <Property Type="Guid" Name="CreateUserID" />
  3341. <Property Type="Guid" Name="ModifyUserID" />
  3342. <Property Type="DateTime" Name="ModifyTime" />
  3343. </EntityType>
  3344. <EntityType Name="EM_FTPVideo">
  3345. <Key>
  3346. <PropertyRef Name="FTPVideoID" />
  3347. </Key>
  3348. <Property Type="Guid" Name="FTPVideoID" Nullable="false" />
  3349. <Property Type="String" Name="Name" MaxLength="500" FixedLength="false" Unicode="true" />
  3350. <Property Type="String" Name="FTPPath" MaxLength="2048" FixedLength="false" Unicode="false" />
  3351. <Property Type="String" Name="FTPUrl" MaxLength="2048" FixedLength="false" Unicode="false" />
  3352. <Property Type="String" Name="M3u8Url" MaxLength="2048" FixedLength="false" Unicode="false" />
  3353. <Property Type="String" Name="M3u8Path" MaxLength="2048" FixedLength="false" Unicode="false" />
  3354. <Property Type="DateTime" Name="ModifyTime" />
  3355. <Property Type="DateTime" Name="CreateTime" />
  3356. <Property Type="Int32" Name="Status" />
  3357. </EntityType>
  3358. <EntityType Name="EM_MissionClassTeacher">
  3359. <Key>
  3360. <PropertyRef Name="MissionClassTeacherID" />
  3361. </Key>
  3362. <Property Type="Guid" Name="MissionClassTeacherID" Nullable="false" />
  3363. <Property Type="Guid" Name="MissionClassID" />
  3364. <Property Type="Guid" Name="UserID" />
  3365. <Property Type="Int32" Name="TeachType" />
  3366. <Property Type="Int32" Name="RecordStatus" />
  3367. <Property Type="DateTime" Name="CreateTime" />
  3368. <Property Type="Guid" Name="CreateUserID" />
  3369. <Property Type="Guid" Name="ModifyUserID" />
  3370. <Property Type="DateTime" Name="ModifyTime" />
  3371. <NavigationProperty Name="EM_EducationMissionClass" Relationship="EMISOnlineContext.FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass" FromRole="EM_MissionClassTeacher" ToRole="EM_EducationMissionClass" />
  3372. </EntityType>
  3373. <EntityType Name="EM_OptionalCoursePlan">
  3374. <Key>
  3375. <PropertyRef Name="OptionalCourseID" />
  3376. </Key>
  3377. <Property Type="Guid" Name="OptionalCourseID" Nullable="false" />
  3378. <Property Type="Guid" Name="DepartmentID" />
  3379. <Property Type="Guid" Name="SpecialtyID" />
  3380. <Property Type="Guid" Name="CoursematerialID" />
  3381. <Property Type="Int32" Name="CourseStructureID" />
  3382. <Property Type="Int32" Name="CourseCategoryID" />
  3383. <Property Type="Int32" Name="CourseTypeID" />
  3384. <Property Type="Int32" Name="CourseQualityID" />
  3385. <Property Type="Int32" Name="PracticeTypeID" />
  3386. <Property Type="Int32" Name="ExaminationModeID" />
  3387. <Property Type="Int32" Name="TeachinglanguageID" />
  3388. <Property Type="Int32" Name="SchoolyearNumID" />
  3389. <Property Type="Int32" Name="SchoolcodeID" />
  3390. <Property Type="Boolean" Name="IsEnable" />
  3391. <Property Type="Int32" Name="ResultTypeID" />
  3392. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="false" />
  3393. <Property Type="Int32" Name="PeopleNumlower" />
  3394. <Property Type="Int32" Name="PeopleNumlimit" />
  3395. <Property Type="Boolean" Name="IsOpened" />
  3396. <Property Type="Int32" Name="RecordStatus" />
  3397. <Property Type="DateTime" Name="CreateTime" />
  3398. <Property Type="Guid" Name="CreateUserID" />
  3399. <Property Type="Guid" Name="ModifyUserID" />
  3400. <Property Type="DateTime" Name="ModifyTime" />
  3401. </EntityType>
  3402. <EntityType Name="EM_SpecialtyCourse">
  3403. <Key>
  3404. <PropertyRef Name="SpecialtyCourseID" />
  3405. </Key>
  3406. <Property Type="Guid" Name="SpecialtyCourseID" Nullable="false" />
  3407. <Property Type="Guid" Name="DepartmentID" />
  3408. <Property Type="Guid" Name="SpecialtyID" />
  3409. <Property Type="Guid" Name="CoursematerialID" />
  3410. <Property Type="Int32" Name="CourseStructureID" />
  3411. <Property Type="Int32" Name="CourseCategoryID" />
  3412. <Property Type="Int32" Name="CourseTypeID" />
  3413. <Property Type="Int32" Name="CourseQualityID" />
  3414. <Property Type="Int32" Name="PracticeTypeID" />
  3415. <Property Type="Int32" Name="ExaminationModeID" />
  3416. <Property Type="Int32" Name="TeachinglanguageID" />
  3417. <Property Type="Int32" Name="SchoolyearNumID" />
  3418. <Property Type="Int32" Name="SchoolcodeID" />
  3419. <Property Type="Int32" Name="CourseFineID" />
  3420. <Property Type="Boolean" Name="IsSpecialtycore" />
  3421. <Property Type="Boolean" Name="IsCooperation" />
  3422. <Property Type="Boolean" Name="IsRequired" />
  3423. <Property Type="Boolean" Name="IsElective" />
  3424. <Property Type="Boolean" Name="IsNetworkCourse" />
  3425. <Property Type="Boolean" Name="IsMainCourse" />
  3426. <Property Type="Boolean" Name="IsEnable" />
  3427. <Property Type="String" Name="Remarks" MaxLength="500" FixedLength="false" Unicode="false" />
  3428. <Property Type="Int32" Name="RecordStatus" />
  3429. <Property Type="DateTime" Name="CreateTime" />
  3430. <Property Type="Guid" Name="CreateUserID" />
  3431. <Property Type="Guid" Name="ModifyUserID" />
  3432. <Property Type="DateTime" Name="ModifyTime" />
  3433. <NavigationProperty Name="CF_Department" Relationship="EMISOnlineContext.FK_EM_SpecialtyCourse_CF_Department" FromRole="EM_SpecialtyCourse" ToRole="CF_Department" />
  3434. <NavigationProperty Name="EM_Coursematerial" Relationship="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_COURS" FromRole="EM_SpecialtyCourse" ToRole="EM_Coursematerial" />
  3435. <NavigationProperty Name="EM_SpecialtyCourseTeachingSetting" Relationship="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_SPECI" FromRole="EM_SpecialtyCourse" ToRole="EM_SpecialtyCourseTeachingSetting" />
  3436. </EntityType>
  3437. <EntityType Name="EM_SpecialtyCourseTeachingSetting">
  3438. <Key>
  3439. <PropertyRef Name="SpecialtyCourseID" />
  3440. </Key>
  3441. <Property Type="Guid" Name="SpecialtyCourseID" Nullable="false" />
  3442. <Property Type="Decimal" Name="Credit" Precision="18" Scale="2" />
  3443. <Property Type="Int32" Name="TheoryCourse" />
  3444. <Property Type="Int32" Name="Practicehours" />
  3445. <Property Type="Int32" Name="Trialhours" />
  3446. <Property Type="Int32" Name="WeeklyNum" />
  3447. <Property Type="Int32" Name="TheoryWeeklyNum" />
  3448. <Property Type="Int32" Name="PracticeWeeklyNum" />
  3449. <Property Type="Int32" Name="TrialWeeklyNum" />
  3450. <Property Type="Int32" Name="StartWeeklyNum" />
  3451. <Property Type="Int32" Name="EndWeeklyNum" />
  3452. <Property Type="Int32" Name="WeeklyHours" />
  3453. <NavigationProperty Name="EM_SpecialtyCourse" Relationship="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_SPECI" FromRole="EM_SpecialtyCourseTeachingSetting" ToRole="EM_SpecialtyCourse" />
  3454. </EntityType>
  3455. <EntityType Name="ER_ScoreRule">
  3456. <Key>
  3457. <PropertyRef Name="ScoreRuleID" />
  3458. </Key>
  3459. <Property Type="Guid" Name="ScoreRuleID" Nullable="false" />
  3460. <Property Type="Decimal" Name="LoginMax" Precision="18" Scale="1" />
  3461. <Property Type="Decimal" Name="LoginEachTime" Precision="18" Scale="1" />
  3462. <Property Type="Decimal" Name="CoursewareMax" Precision="18" Scale="1" />
  3463. <Property Type="Int32" Name="CoursewareContinueMinite" />
  3464. <Property Type="Decimal" Name="CoursewareEachTime" Precision="18" Scale="1" />
  3465. <Property Type="Decimal" Name="HomeworkMax" Precision="18" Scale="1" />
  3466. <Property Type="Decimal" Name="TeacherScore" Precision="18" Scale="1" />
  3467. </EntityType>
  3468. <EntityType Name="ER_TeacherScore">
  3469. <Key>
  3470. <PropertyRef Name="TeacherScoreID" />
  3471. </Key>
  3472. <Property Type="Guid" Name="TeacherScoreID" Nullable="false" />
  3473. <Property Type="Guid" Name="CoursematerialID" />
  3474. <Property Type="Guid" Name="UserID" Nullable="false" />
  3475. <Property Type="Decimal" Name="Score" Precision="18" Scale="1" />
  3476. <Property Type="Int32" Name="RecordStatus" />
  3477. <Property Type="DateTime" Name="CreateTime" />
  3478. <Property Type="Guid" Name="CreateUserID" />
  3479. <Property Type="Guid" Name="ModifyUserID" />
  3480. <Property Type="DateTime" Name="ModifyTime" />
  3481. <Property Type="Guid" Name="SchoolyearID" />
  3482. </EntityType>
  3483. <EntityType Name="Exam_Log">
  3484. <Key>
  3485. <PropertyRef Name="Id" />
  3486. </Key>
  3487. <Property Type="Int64" Name="Id" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  3488. <Property Type="DateTime" Name="Date" Nullable="false" />
  3489. <Property Type="String" Name="Thread" Nullable="false" MaxLength="255" FixedLength="false" Unicode="false" />
  3490. <Property Type="String" Name="Level" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3491. <Property Type="String" Name="Message" Nullable="false" MaxLength="4000" FixedLength="false" Unicode="false" />
  3492. <Property Type="String" Name="Exception" MaxLength="2000" FixedLength="false" Unicode="false" />
  3493. </EntityType>
  3494. <EntityType Name="ExamineeAnswer">
  3495. <Key>
  3496. <PropertyRef Name="ID" />
  3497. </Key>
  3498. <Property Type="Guid" Name="ID" Nullable="false" />
  3499. <Property Type="Decimal" Name="onlinetest_id" Nullable="false" Precision="18" Scale="0" />
  3500. <Property Type="String" Name="user_id" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3501. <Property Type="String" Name="resultXml" Nullable="false" MaxLength="Max" FixedLength="false" Unicode="true" />
  3502. <Property Type="Boolean" Name="filled" Nullable="false" />
  3503. </EntityType>
  3504. <EntityType Name="ExamPaper">
  3505. <Key>
  3506. <PropertyRef Name="ID" />
  3507. </Key>
  3508. <Property Type="Guid" Name="ID" Nullable="false" />
  3509. <Property Type="String" Name="user_id" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3510. <Property Type="Decimal" Name="onlinetest_id" Nullable="false" Precision="18" Scale="0" />
  3511. <Property Type="Boolean" Name="Sign" />
  3512. <Property Type="Decimal" Name="test_questions_Id" Nullable="false" Precision="18" Scale="0" />
  3513. <Property Type="Int32" Name="display_order" />
  3514. <Property Type="String" Name="answer_order" MaxLength="200" FixedLength="false" Unicode="false" />
  3515. <Property Type="Decimal" Name="base_question_type_id" Nullable="false" Precision="18" Scale="0" />
  3516. <Property Type="Boolean" Name="filled" Nullable="false" />
  3517. <Property Type="DateTime" Name="time_of_filling" />
  3518. </EntityType>
  3519. <EntityType Name="ExamResult">
  3520. <Key>
  3521. <PropertyRef Name="ID" />
  3522. </Key>
  3523. <Property Type="Decimal" Name="ID" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3524. <Property Type="String" Name="user_id" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3525. <Property Type="String" Name="test_name" MaxLength="500" FixedLength="false" Unicode="false" />
  3526. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  3527. <Property Type="DateTime" Name="test_begin_date" />
  3528. <Property Type="DateTime" Name="test_end_date" />
  3529. <Property Type="Int32" Name="limited_minutes" />
  3530. <Property Type="String" Name="test_address" MaxLength="200" FixedLength="false" Unicode="false" />
  3531. <Property Type="Decimal" Name="onlinetest_id" Nullable="false" Precision="18" Scale="0" />
  3532. <Property Type="String" Name="OrgId" MaxLength="50" FixedLength="false" Unicode="false" />
  3533. <Property Type="String" Name="username" MaxLength="50" FixedLength="false" Unicode="true" />
  3534. <Property Type="Decimal" Name="score" Precision="12" Scale="1" />
  3535. <Property Type="Decimal" Name="modifiy_sore" Precision="12" Scale="1" />
  3536. <Property Type="Boolean" Name="is_auto_read" />
  3537. <Property Type="Boolean" Name="visible" />
  3538. <Property Type="Boolean" Name="is_man_read" />
  3539. <Property Type="String" Name="last_examination" MaxLength="50" FixedLength="false" Unicode="false" />
  3540. <Property Type="Int32" Name="state" />
  3541. <Property Type="Int32" Name="warning_count" />
  3542. <Property Type="DateTime" Name="lastModified" />
  3543. <Property Type="Int32" Name="relogin_count" />
  3544. <Property Type="DateTime" Name="time_of_filling" />
  3545. <Property Type="Boolean" Name="filled" Nullable="false" />
  3546. <Property Type="DateTime" Name="lastLoginTime" />
  3547. <NavigationProperty Name="test_onlinetest" Relationship="EMISOnlineContext.FK_EXAMRESU_REFERENCE_TEST_ONL" FromRole="ExamResult" ToRole="test_onlinetest" />
  3548. </EntityType>
  3549. <EntityType Name="ExamResult_backup_20120913">
  3550. <Key>
  3551. <PropertyRef Name="ID" />
  3552. <PropertyRef Name="user_id" />
  3553. <PropertyRef Name="onlinetest_id" />
  3554. </Key>
  3555. <Property Type="Decimal" Name="ID" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3556. <Property Type="String" Name="user_id" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3557. <Property Type="String" Name="test_name" MaxLength="500" FixedLength="false" Unicode="false" />
  3558. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  3559. <Property Type="DateTime" Name="test_begin_date" />
  3560. <Property Type="DateTime" Name="test_end_date" />
  3561. <Property Type="Int32" Name="limited_minutes" />
  3562. <Property Type="String" Name="test_address" MaxLength="200" FixedLength="false" Unicode="false" />
  3563. <Property Type="Decimal" Name="onlinetest_id" Nullable="false" Precision="18" Scale="0" />
  3564. <Property Type="String" Name="OrgId" MaxLength="50" FixedLength="false" Unicode="false" />
  3565. <Property Type="String" Name="username" MaxLength="50" FixedLength="false" Unicode="true" />
  3566. <Property Type="Decimal" Name="score" Precision="12" Scale="1" />
  3567. <Property Type="Decimal" Name="modifiy_sore" Precision="12" Scale="1" />
  3568. <Property Type="Boolean" Name="is_auto_read" />
  3569. <Property Type="Boolean" Name="visible" />
  3570. <Property Type="Boolean" Name="is_man_read" />
  3571. <Property Type="String" Name="last_examination" MaxLength="50" FixedLength="false" Unicode="false" />
  3572. </EntityType>
  3573. <EntityType Name="ExamSetting_Examiner">
  3574. <Key>
  3575. <PropertyRef Name="ID" />
  3576. </Key>
  3577. <Property Type="Int64" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  3578. <Property Type="Decimal" Name="onlinetest_id" Precision="18" Scale="0" />
  3579. <Property Type="String" Name="UserID" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3580. <Property Type="String" Name="UserName" MaxLength="50" FixedLength="false" Unicode="true" />
  3581. <Property Type="Int32" Name="UserType" />
  3582. <Property Type="Boolean" Name="filled" Nullable="false" />
  3583. <Property Type="DateTime" Name="time_of_filling" />
  3584. </EntityType>
  3585. <EntityType Name="ExamWarning">
  3586. <Key>
  3587. <PropertyRef Name="ID" />
  3588. </Key>
  3589. <Property Type="Int32" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  3590. <Property Type="Int32" Name="WarningCount" Nullable="false" />
  3591. <Property Type="String" Name="Message" Nullable="false" MaxLength="500" FixedLength="false" Unicode="true" />
  3592. <Property Type="String" Name="Creator" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  3593. <Property Type="String" Name="CreatorName" MaxLength="50" FixedLength="false" Unicode="true" />
  3594. <Property Type="DateTime" Name="Modified" Nullable="false" />
  3595. <Property Type="Int32" Name="AlertType" Nullable="false" />
  3596. </EntityType>
  3597. <EntityType Name="MSreplication_objects">
  3598. <Key>
  3599. <PropertyRef Name="object_name" />
  3600. <PropertyRef Name="object_type" />
  3601. </Key>
  3602. <Property Type="String" Name="publisher" MaxLength="128" FixedLength="false" Unicode="true" />
  3603. <Property Type="String" Name="publisher_db" MaxLength="128" FixedLength="false" Unicode="true" />
  3604. <Property Type="String" Name="publication" MaxLength="128" FixedLength="false" Unicode="true" />
  3605. <Property Type="String" Name="object_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3606. <Property Type="String" Name="object_type" Nullable="false" MaxLength="2" FixedLength="true" Unicode="false" />
  3607. <Property Type="String" Name="article" MaxLength="128" FixedLength="false" Unicode="true" />
  3608. </EntityType>
  3609. <EntityType Name="MSreplication_subscriptions">
  3610. <Key>
  3611. <PropertyRef Name="publisher" />
  3612. <PropertyRef Name="independent_agent" />
  3613. <PropertyRef Name="subscription_type" />
  3614. <PropertyRef Name="time" />
  3615. <PropertyRef Name="transaction_timestamp" />
  3616. <PropertyRef Name="update_mode" />
  3617. <PropertyRef Name="immediate_sync" />
  3618. </Key>
  3619. <Property Type="String" Name="publisher" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3620. <Property Type="String" Name="publisher_db" MaxLength="128" FixedLength="false" Unicode="true" />
  3621. <Property Type="String" Name="publication" MaxLength="128" FixedLength="false" Unicode="true" />
  3622. <Property Type="Boolean" Name="independent_agent" Nullable="false" />
  3623. <Property Type="Int32" Name="subscription_type" Nullable="false" />
  3624. <Property Type="String" Name="distribution_agent" MaxLength="128" FixedLength="false" Unicode="true" />
  3625. <Property Type="DateTime" Name="time" Nullable="false" />
  3626. <Property Type="String" Name="description" MaxLength="255" FixedLength="false" Unicode="true" />
  3627. <Property Type="Binary" Name="transaction_timestamp" Nullable="false" MaxLength="16" FixedLength="false" />
  3628. <Property Type="Byte" Name="update_mode" Nullable="false" />
  3629. <Property Type="Binary" Name="agent_id" MaxLength="16" FixedLength="true" />
  3630. <Property Type="Binary" Name="subscription_guid" MaxLength="16" FixedLength="true" />
  3631. <Property Type="Binary" Name="subid" MaxLength="16" FixedLength="true" />
  3632. <Property Type="Boolean" Name="immediate_sync" Nullable="false" />
  3633. </EntityType>
  3634. <EntityType Name="MSsavedforeignkeycolumns">
  3635. <Key>
  3636. <PropertyRef Name="program_name" />
  3637. <PropertyRef Name="constraint_name" />
  3638. <PropertyRef Name="parent_schema" />
  3639. <PropertyRef Name="constraint_column_id" />
  3640. <PropertyRef Name="referencing_column_name" />
  3641. <PropertyRef Name="referenced_column_name" />
  3642. <PropertyRef Name="timestamp" />
  3643. </Key>
  3644. <Property Type="String" Name="program_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3645. <Property Type="String" Name="constraint_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3646. <Property Type="String" Name="parent_schema" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3647. <Property Type="Int32" Name="constraint_column_id" Nullable="false" />
  3648. <Property Type="String" Name="referencing_column_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3649. <Property Type="String" Name="referenced_column_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3650. <Property Type="DateTime" Name="timestamp" Nullable="false" />
  3651. </EntityType>
  3652. <EntityType Name="MSsavedforeignkeyextendedproperties">
  3653. <Key>
  3654. <PropertyRef Name="program_name" />
  3655. <PropertyRef Name="constraint_name" />
  3656. <PropertyRef Name="parent_schema" />
  3657. <PropertyRef Name="property_name" />
  3658. <PropertyRef Name="timestamp" />
  3659. </Key>
  3660. <Property Type="String" Name="program_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3661. <Property Type="String" Name="constraint_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3662. <Property Type="String" Name="parent_schema" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3663. <Property Type="String" Name="property_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3664. <Property Type="DateTime" Name="timestamp" Nullable="false" />
  3665. </EntityType>
  3666. <EntityType Name="MSsavedforeignkeys">
  3667. <Key>
  3668. <PropertyRef Name="program_name" />
  3669. <PropertyRef Name="constraint_name" />
  3670. <PropertyRef Name="parent_schema" />
  3671. <PropertyRef Name="parent_name" />
  3672. <PropertyRef Name="referenced_object_schema" />
  3673. <PropertyRef Name="referenced_object_name" />
  3674. <PropertyRef Name="is_disabled" />
  3675. <PropertyRef Name="is_not_for_replication" />
  3676. <PropertyRef Name="is_not_trusted" />
  3677. <PropertyRef Name="delete_referential_action" />
  3678. <PropertyRef Name="update_referential_action" />
  3679. <PropertyRef Name="timestamp" />
  3680. </Key>
  3681. <Property Type="String" Name="program_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3682. <Property Type="String" Name="constraint_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3683. <Property Type="String" Name="parent_schema" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3684. <Property Type="String" Name="parent_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3685. <Property Type="String" Name="referenced_object_schema" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3686. <Property Type="String" Name="referenced_object_name" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3687. <Property Type="Boolean" Name="is_disabled" Nullable="false" />
  3688. <Property Type="Boolean" Name="is_not_for_replication" Nullable="false" />
  3689. <Property Type="Boolean" Name="is_not_trusted" Nullable="false" />
  3690. <Property Type="Byte" Name="delete_referential_action" Nullable="false" />
  3691. <Property Type="Byte" Name="update_referential_action" Nullable="false" />
  3692. <Property Type="DateTime" Name="timestamp" Nullable="false" />
  3693. </EntityType>
  3694. <EntityType Name="MSsnapshotdeliveryprogress">
  3695. <Key>
  3696. <PropertyRef Name="session_token" />
  3697. <PropertyRef Name="progress_token_hash" />
  3698. <PropertyRef Name="progress_token" />
  3699. </Key>
  3700. <Property Type="String" Name="session_token" Nullable="false" MaxLength="260" FixedLength="false" Unicode="true" />
  3701. <Property Type="Int32" Name="progress_token_hash" Nullable="false" />
  3702. <Property Type="String" Name="progress_token" Nullable="false" MaxLength="500" FixedLength="false" Unicode="true" />
  3703. <Property Type="DateTime" Name="progress_timestamp" />
  3704. </EntityType>
  3705. <EntityType Name="MSsubscription_agents">
  3706. <Key>
  3707. <PropertyRef Name="id" />
  3708. <PropertyRef Name="publisher" />
  3709. <PropertyRef Name="publisher_db" />
  3710. <PropertyRef Name="publication" />
  3711. <PropertyRef Name="subscription_type" />
  3712. <PropertyRef Name="update_mode" />
  3713. <PropertyRef Name="failover_mode" />
  3714. <PropertyRef Name="spid" />
  3715. <PropertyRef Name="login_time" />
  3716. <PropertyRef Name="allow_subscription_copy" />
  3717. <PropertyRef Name="attach_state" />
  3718. <PropertyRef Name="attach_version" />
  3719. </Key>
  3720. <Property Type="Int32" Name="id" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  3721. <Property Type="String" Name="publisher" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3722. <Property Type="String" Name="publisher_db" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3723. <Property Type="String" Name="publication" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
  3724. <Property Type="Int32" Name="subscription_type" Nullable="false" />
  3725. <Property Type="String" Name="queue_id" MaxLength="128" FixedLength="false" Unicode="true" />
  3726. <Property Type="Byte" Name="update_mode" Nullable="false" />
  3727. <Property Type="Boolean" Name="failover_mode" Nullable="false" />
  3728. <Property Type="Int32" Name="spid" Nullable="false" />
  3729. <Property Type="DateTime" Name="login_time" Nullable="false" />
  3730. <Property Type="Boolean" Name="allow_subscription_copy" Nullable="false" />
  3731. <Property Type="Int32" Name="attach_state" Nullable="false" />
  3732. <Property Type="Binary" Name="attach_version" Nullable="false" MaxLength="16" FixedLength="true" />
  3733. <Property Type="Int32" Name="last_sync_status" />
  3734. <Property Type="String" Name="last_sync_summary" MaxLength="128" FixedLength="false" Unicode="true" />
  3735. <Property Type="DateTime" Name="last_sync_time" />
  3736. <Property Type="String" Name="queue_server" MaxLength="128" FixedLength="false" Unicode="true" />
  3737. </EntityType>
  3738. <EntityType Name="Sys_Dictionary">
  3739. <Key>
  3740. <PropertyRef Name="DictionaryCode" />
  3741. </Key>
  3742. <Property Type="String" Name="DictionaryCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3743. <Property Type="String" Name="Name" MaxLength="500" FixedLength="false" Unicode="true" />
  3744. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  3745. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  3746. <Property Type="Boolean" Name="IsEditable" />
  3747. </EntityType>
  3748. <EntityType Name="Sys_DictionaryItem">
  3749. <Key>
  3750. <PropertyRef Name="DictionaryItemID" />
  3751. </Key>
  3752. <Property Type="Guid" Name="DictionaryItemID" Nullable="false" />
  3753. <Property Type="String" Name="Code" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3754. <Property Type="String" Name="DictionaryCode" MaxLength="50" FixedLength="false" Unicode="true" />
  3755. <Property Type="Int32" Name="Value" />
  3756. <Property Type="String" Name="Name" MaxLength="100" FixedLength="false" Unicode="true" />
  3757. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  3758. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  3759. <Property Type="Boolean" Name="IsEditable" />
  3760. </EntityType>
  3761. <EntityType Name="Sys_FunctionCode">
  3762. <Key>
  3763. <PropertyRef Name="FunctionCode" />
  3764. </Key>
  3765. <Property Type="String" Name="FunctionCode" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  3766. <Property Type="String" Name="FunctionName" MaxLength="50" FixedLength="false" Unicode="true" />
  3767. <Property Type="String" Name="ParentFunctionCode" MaxLength="50" FixedLength="false" Unicode="true" />
  3768. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  3769. <NavigationProperty Name="Sys_Menu" Relationship="EMISOnlineContext.FK_SYS_MENU_REFERENCE_SYS_FUNC" FromRole="Sys_FunctionCode" ToRole="Sys_Menu" />
  3770. <NavigationProperty Name="Sys_Role" Relationship="EMISOnlineContext.Sys_Role_Sys_FunctionCode" FromRole="Sys_FunctionCode" ToRole="Sys_Role" />
  3771. </EntityType>
  3772. <EntityType Name="Sys_LoginCount">
  3773. <Key>
  3774. <PropertyRef Name="UserID" />
  3775. <PropertyRef Name="SchoolyearID" />
  3776. </Key>
  3777. <Property Type="Guid" Name="UserID" Nullable="false" />
  3778. <Property Type="Guid" Name="SchoolyearID" Nullable="false" />
  3779. <Property Type="Int32" Name="LoginCount" />
  3780. <Property Type="DateTime" Name="lastLoginTime" />
  3781. </EntityType>
  3782. <EntityType Name="Sys_MailVerifyCode">
  3783. <Key>
  3784. <PropertyRef Name="UserID" />
  3785. </Key>
  3786. <Property Type="Guid" Name="UserID" Nullable="false" />
  3787. <Property Type="String" Name="VerifyCode" MaxLength="50" FixedLength="false" Unicode="false" />
  3788. <Property Type="Int32" Name="RecordStatus" />
  3789. <Property Type="Guid" Name="CreateUserID" />
  3790. <Property Type="DateTime" Name="CreateTime" />
  3791. <Property Type="Guid" Name="ModifyUserID" />
  3792. <Property Type="DateTime" Name="ModifyTime" />
  3793. </EntityType>
  3794. <EntityType Name="Sys_Menu">
  3795. <Key>
  3796. <PropertyRef Name="MenuNo" />
  3797. </Key>
  3798. <Property Type="String" Name="MenuNo" Nullable="false" MaxLength="30" FixedLength="false" Unicode="true" />
  3799. <Property Type="Int16" Name="OrderNo" Nullable="false" />
  3800. <Property Type="String" Name="MenuName" Nullable="false" MaxLength="60" FixedLength="false" Unicode="true" />
  3801. <Property Type="String" Name="Icon" MaxLength="50" FixedLength="false" Unicode="true" />
  3802. <Property Type="String" Name="Url" MaxLength="500" FixedLength="false" Unicode="false" />
  3803. <Property Type="String" Name="ParentMenuNo" MaxLength="30" FixedLength="false" Unicode="true" />
  3804. <Property Type="String" Name="Description" MaxLength="500" FixedLength="false" Unicode="true" />
  3805. <Property Type="Boolean" Name="IsTopMenu" Nullable="false" />
  3806. <Property Type="Boolean" Name="IsVisible" Nullable="false" />
  3807. <Property Type="Boolean" Name="IsLeaf" />
  3808. <Property Type="String" Name="FunctionCode" MaxLength="50" FixedLength="false" Unicode="true" />
  3809. <Property Type="Int32" Name="RecordStatus" Nullable="false" />
  3810. <NavigationProperty Name="Sys_FunctionCode" Relationship="EMISOnlineContext.FK_SYS_MENU_REFERENCE_SYS_FUNC" FromRole="Sys_Menu" ToRole="Sys_FunctionCode" />
  3811. </EntityType>
  3812. <EntityType Name="Sys_Role">
  3813. <Key>
  3814. <PropertyRef Name="RoleID" />
  3815. </Key>
  3816. <Property Type="Guid" Name="RoleID" Nullable="false" />
  3817. <Property Type="Int32" Name="TypeID" />
  3818. <Property Type="String" Name="RoleName" Nullable="false" MaxLength="100" FixedLength="false" Unicode="true" />
  3819. <Property Type="String" Name="Description" MaxLength="500" FixedLength="false" Unicode="true" />
  3820. <Property Type="Boolean" Name="IsSystemRole" />
  3821. <Property Type="Int32" Name="SystemRoleType" />
  3822. <Property Type="Int32" Name="DefaultDataRange" />
  3823. <Property Type="Int32" Name="RecordStatus" />
  3824. <Property Type="Guid" Name="CreateUserID" />
  3825. <Property Type="DateTime" Name="CreateTime" />
  3826. <Property Type="Guid" Name="ModifyUserID" />
  3827. <Property Type="DateTime" Name="ModifyTime" />
  3828. <NavigationProperty Name="Sys_FunctionCode" Relationship="EMISOnlineContext.Sys_Role_Sys_FunctionCode" FromRole="Sys_Role" ToRole="Sys_FunctionCode" />
  3829. </EntityType>
  3830. <EntityType Name="Sys_User">
  3831. <Key>
  3832. <PropertyRef Name="UserID" />
  3833. </Key>
  3834. <Property Type="Guid" Name="UserID" Nullable="false" />
  3835. <Property Type="String" Name="LoginID" MaxLength="50" FixedLength="false" Unicode="false" />
  3836. <Property Type="String" Name="Password" MaxLength="50" FixedLength="false" Unicode="false" />
  3837. <Property Type="String" Name="Name" MaxLength="50" FixedLength="false" Unicode="true" />
  3838. <Property Type="Int32" Name="RecordStatus" />
  3839. <Property Type="Guid" Name="CreateUserID" />
  3840. <Property Type="DateTime" Name="CreateTime" />
  3841. <Property Type="Guid" Name="ModifyUserID" />
  3842. <Property Type="DateTime" Name="ModifyTime" />
  3843. </EntityType>
  3844. <EntityType Name="Sys_User_Sys_Role">
  3845. <Key>
  3846. <PropertyRef Name="UserID" />
  3847. <PropertyRef Name="RoleID" />
  3848. </Key>
  3849. <Property Type="Guid" Name="UserID" Nullable="false" />
  3850. <Property Type="Guid" Name="RoleID" Nullable="false" />
  3851. </EntityType>
  3852. <EntityType Name="test_base_param">
  3853. <Key>
  3854. <PropertyRef Name="base_param_id" />
  3855. </Key>
  3856. <Property Type="Decimal" Name="base_param_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3857. <Property Type="String" Name="name" MaxLength="300" FixedLength="false" Unicode="false" />
  3858. <Property Type="Decimal" Name="base_param_parent_id" Precision="18" Scale="0" />
  3859. <Property Type="Int32" Name="order_by" />
  3860. <Property Type="Boolean" Name="isvaild" />
  3861. <Property Type="Boolean" Name="IsSystem" />
  3862. <NavigationProperty Name="test_base_param_type" Relationship="EMISOnlineContext.fk_base_param2baseparent" FromRole="test_base_param" ToRole="test_base_param_type" />
  3863. </EntityType>
  3864. <EntityType Name="test_base_param_type">
  3865. <Key>
  3866. <PropertyRef Name="base_param_parent_id" />
  3867. </Key>
  3868. <Property Type="Decimal" Name="base_param_parent_id" Nullable="false" Precision="18" Scale="0" />
  3869. <Property Type="String" Name="name" MaxLength="300" FixedLength="false" Unicode="false" />
  3870. <Property Type="Int32" Name="order_by" />
  3871. <NavigationProperty Name="test_base_param" Relationship="EMISOnlineContext.fk_base_param2baseparent" FromRole="test_base_param_type" ToRole="test_base_param" />
  3872. </EntityType>
  3873. <EntityType Name="test_base_question_type">
  3874. <Key>
  3875. <PropertyRef Name="base_question_type_id" />
  3876. </Key>
  3877. <Property Type="Decimal" Name="base_question_type_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3878. <Property Type="String" Name="Name" MaxLength="300" FixedLength="false" Unicode="false" />
  3879. <Property Type="Int32" Name="type_id" />
  3880. <Property Type="Int32" Name="diplay_order" />
  3881. <NavigationProperty Name="test_question" Relationship="EMISOnlineContext.fk_testquestions2questiontype" FromRole="test_base_question_type" ToRole="test_question" />
  3882. </EntityType>
  3883. <EntityType Name="test_comm_param_set">
  3884. <Key>
  3885. <PropertyRef Name="comm_param_set_id" />
  3886. </Key>
  3887. <Property Type="Decimal" Name="comm_param_set_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3888. <Property Type="Decimal" Name="comm_set_id" Precision="18" Scale="0" />
  3889. <Property Type="Decimal" Name="var_id" Precision="18" Scale="0" />
  3890. <NavigationProperty Name="test_comm_set" Relationship="EMISOnlineContext.fk_commbaseset2commset" FromRole="test_comm_param_set" ToRole="test_comm_set" />
  3891. </EntityType>
  3892. <EntityType Name="test_comm_set">
  3893. <Key>
  3894. <PropertyRef Name="comm_set_id" />
  3895. </Key>
  3896. <Property Type="Decimal" Name="comm_set_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3897. <Property Type="String" Name="note" MaxLength="1000" FixedLength="false" Unicode="false" />
  3898. <NavigationProperty Name="test_comm_param_set" Relationship="EMISOnlineContext.fk_commbaseset2commset" FromRole="test_comm_set" ToRole="test_comm_param_set" />
  3899. </EntityType>
  3900. <EntityType Name="test_exchange">
  3901. <Key>
  3902. <PropertyRef Name="id" />
  3903. </Key>
  3904. <Property Type="Decimal" Name="id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3905. <Property Type="Int32" Name="onlinetest_id" />
  3906. <Property Type="Int32" Name="type" />
  3907. <Property Type="Int32" Name="receiveType" />
  3908. <Property Type="String" Name="receiver" MaxLength="50" FixedLength="false" Unicode="false" />
  3909. <Property Type="String" Name="content" MaxLength="200" FixedLength="false" Unicode="false" />
  3910. <Property Type="Int32" Name="extendIntData" />
  3911. <Property Type="String" Name="extendStringData" MaxLength="200" FixedLength="false" Unicode="false" />
  3912. <Property Type="Boolean" Name="handled" />
  3913. <Property Type="DateTime" Name="sendTime" />
  3914. <Property Type="Boolean" Name="ExamEndState" />
  3915. </EntityType>
  3916. <EntityType Name="test_keyword">
  3917. <Key>
  3918. <PropertyRef Name="test_keyword_id" />
  3919. </Key>
  3920. <Property Type="Decimal" Name="test_keyword_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3921. <Property Type="String" Name="name" MaxLength="300" FixedLength="false" Unicode="false" />
  3922. <Property Type="String" Name="other_vaild_values" MaxLength="3000" FixedLength="false" Unicode="false" />
  3923. <NavigationProperty Name="test_question_keyword" Relationship="EMISOnlineContext.fk_question_type_keyword" FromRole="test_keyword" ToRole="test_question_keyword" />
  3924. </EntityType>
  3925. <EntityType Name="test_onlinetest">
  3926. <Key>
  3927. <PropertyRef Name="onlinetest_id" />
  3928. </Key>
  3929. <Property Type="Decimal" Name="onlinetest_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  3930. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  3931. <Property Type="String" Name="test_name" MaxLength="500" FixedLength="false" Unicode="false" />
  3932. <Property Type="DateTime" Name="test_begin_date" />
  3933. <Property Type="DateTime" Name="test_end_date" />
  3934. <Property Type="Int32" Name="limited_minutes" />
  3935. <Property Type="String" Name="test_address" MaxLength="200" FixedLength="false" Unicode="false" />
  3936. <Property Type="Int16" Name="breaking_id" />
  3937. <Property Type="Decimal" Name="test_method_set_id" Precision="18" Scale="0" />
  3938. <Property Type="String" Name="notice_method_id" MaxLength="300" FixedLength="false" Unicode="false" />
  3939. <Property Type="Decimal" Name="status_id" Precision="18" Scale="0" />
  3940. <Property Type="String" Name="test_code" MaxLength="300" FixedLength="false" Unicode="false" />
  3941. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  3942. <Property Type="DateTime" Name="created_date" />
  3943. <Property Type="Boolean" Name="subjectiveQAutoRead" />
  3944. <Property Type="String" Name="ModityContent" MaxLength="300" FixedLength="false" Unicode="true" />
  3945. <Property Type="Boolean" Name="ISautoBegin" />
  3946. <Property Type="Boolean" Name="isOpenAnswer" />
  3947. <Property Type="Int32" Name="rand_Test_time" />
  3948. <Property Type="Int32" Name="rand_test_count" />
  3949. <Property Type="Int32" Name="rand_test_point_type" />
  3950. <Property Type="Int32" Name="rand_test_point_setid" />
  3951. <Property Type="Int32" Name="display_type" />
  3952. <Property Type="Boolean" Name="isPublishScore" />
  3953. <Property Type="Boolean" Name="isControllable" />
  3954. <Property Type="DateTime" Name="notice_datetime" />
  3955. <Property Type="Int32" Name="relogin_count" />
  3956. <Property Type="Boolean" Name="filled" Nullable="false" />
  3957. <Property Type="DateTime" Name="time_of_filling" />
  3958. <Property Type="Binary" Name="version" MaxLength="8" FixedLength="true" annotation:StoreGeneratedPattern="Computed" />
  3959. <Property Type="Guid" Name="ExamID" Nullable="false" />
  3960. <Property Type="String" Name="SubCode" MaxLength="50" FixedLength="false" Unicode="false" />
  3961. <Property Type="Int32" Name="PassRate" />
  3962. <Property Type="Int32" Name="ExamerState" />
  3963. <Property Type="Boolean" Name="isReadPaper" />
  3964. <Property Type="Guid" Name="EducationMissionClassID" />
  3965. <NavigationProperty Name="ExamResult" Relationship="EMISOnlineContext.FK_EXAMRESU_REFERENCE_TEST_ONL" FromRole="test_onlinetest" ToRole="ExamResult" />
  3966. <NavigationProperty Name="test_onlinetest_manshow" Relationship="EMISOnlineContext.FK_TEST_ONL_REFERENCE_TEST_SHOW" FromRole="test_onlinetest" ToRole="test_onlinetest_manshow" />
  3967. <NavigationProperty Name="test_paper" Relationship="EMISOnlineContext.fk_test_onlinetest_test_paper_id" FromRole="test_onlinetest" ToRole="test_paper" />
  3968. </EntityType>
  3969. <EntityType Name="test_onlinetest_man">
  3970. <Key>
  3971. <PropertyRef Name="ID" />
  3972. <PropertyRef Name="name" />
  3973. <PropertyRef Name="username" />
  3974. <PropertyRef Name="filled" />
  3975. </Key>
  3976. <Property Type="Guid" Name="ID" Nullable="false" />
  3977. <Property Type="Decimal" Name="onlinetest_id" Precision="18" Scale="0" />
  3978. <Property Type="String" Name="user_id" MaxLength="50" FixedLength="false" Unicode="false" />
  3979. <Property Type="String" Name="OrgId" MaxLength="50" FixedLength="false" Unicode="false" />
  3980. <Property Type="String" Name="name" Nullable="false" MaxLength="500" FixedLength="false" Unicode="false" />
  3981. <Property Type="String" Name="username" Nullable="false" MaxLength="500" FixedLength="false" Unicode="false" />
  3982. <Property Type="String" Name="sex" MaxLength="1" FixedLength="true" Unicode="false" />
  3983. <Property Type="String" Name="mobile_num" MaxLength="200" FixedLength="false" Unicode="false" />
  3984. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  3985. <Property Type="DateTime" Name="created_date" />
  3986. <Property Type="Int32" Name="loginCount" />
  3987. <Property Type="DateTime" Name="lastLoginTime" />
  3988. <Property Type="DateTime" Name="beginTime" />
  3989. <Property Type="DateTime" Name="endTime" />
  3990. <Property Type="Int32" Name="limited_minutes" />
  3991. <Property Type="Int32" Name="state" />
  3992. <Property Type="Int32" Name="warning_count" />
  3993. <Property Type="DateTime" Name="lastModified" />
  3994. <Property Type="Int32" Name="relogin_count" />
  3995. <Property Type="DateTime" Name="time_of_filling" />
  3996. <Property Type="Boolean" Name="filled" Nullable="false" />
  3997. </EntityType>
  3998. <EntityType Name="test_onlinetest_manshow">
  3999. <Key>
  4000. <PropertyRef Name="ID" />
  4001. </Key>
  4002. <Property Type="Guid" Name="ID" Nullable="false" />
  4003. <Property Type="Decimal" Name="onlinetest_id" Precision="18" Scale="0" />
  4004. <Property Type="String" Name="user_id" MaxLength="50" FixedLength="false" Unicode="false" />
  4005. <Property Type="String" Name="orgid" MaxLength="50" FixedLength="false" Unicode="false" />
  4006. <Property Type="String" Name="orgname" MaxLength="500" FixedLength="false" Unicode="false" />
  4007. <Property Type="String" Name="username" MaxLength="500" FixedLength="false" Unicode="false" />
  4008. <Property Type="DateTime" Name="created_date" />
  4009. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4010. <NavigationProperty Name="test_onlinetest" Relationship="EMISOnlineContext.FK_TEST_ONL_REFERENCE_TEST_SHOW" FromRole="test_onlinetest_manshow" ToRole="test_onlinetest" />
  4011. </EntityType>
  4012. <EntityType Name="test_paper">
  4013. <Key>
  4014. <PropertyRef Name="test_paper_id" />
  4015. </Key>
  4016. <Property Type="Decimal" Name="test_paper_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4017. <Property Type="String" Name="PaperName" MaxLength="200" FixedLength="false" Unicode="false" />
  4018. <Property Type="String" Name="note" MaxLength="5000" FixedLength="false" Unicode="false" />
  4019. <Property Type="Decimal" Name="knowledge_type_set_id" Precision="18" Scale="0" />
  4020. <Property Type="Decimal" Name="knowledge_point_set_id" Precision="18" Scale="0" />
  4021. <Property Type="Decimal" Name="open_dept_set_id" Precision="18" Scale="0" />
  4022. <Property Type="Boolean" Name="is_open_answer" />
  4023. <Property Type="String" Name="question_libary_set_id" MaxLength="200" FixedLength="false" Unicode="false" />
  4024. <Property Type="Decimal" Name="error_percent" Precision="8" Scale="2" />
  4025. <Property Type="Int32" Name="used_count_min" />
  4026. <Property Type="Int32" Name="used_count_max" />
  4027. <Property Type="Decimal" Name="difficulty_degree_minvalue" Precision="8" Scale="2" />
  4028. <Property Type="Decimal" Name="difficulty_degree_maxvalue" Precision="18" Scale="0" />
  4029. <Property Type="Int16" Name="isTestOrSelfTest" />
  4030. <Property Type="Int16" Name="test_method" />
  4031. <Property Type="DateTime" Name="question_update_date_min" />
  4032. <Property Type="DateTime" Name="question_update_date_max" />
  4033. <Property Type="Boolean" Name="is_vaild" />
  4034. <Property Type="DateTime" Name="vaild_begin_date" />
  4035. <Property Type="DateTime" Name="vaild_end_date" />
  4036. <Property Type="Int32" Name="distributing_option" />
  4037. <Property Type="Int32" Name="Prority" />
  4038. <Property Type="Decimal" Name="paper_score" Precision="8" Scale="2" />
  4039. <Property Type="Boolean" Name="is_converted" />
  4040. <Property Type="Decimal" Name="used_count" Precision="18" Scale="0" />
  4041. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4042. <Property Type="DateTime" Name="created_date" />
  4043. <Property Type="Boolean" Name="is_dynamic" Nullable="false" />
  4044. <Property Type="Boolean" Name="is_autogenerate" />
  4045. <Property Type="String" Name="question_setting" MaxLength="5000" FixedLength="false" Unicode="false" />
  4046. <Property Type="Decimal" Name="test_paper_parent_id" Precision="18" Scale="0" />
  4047. <Property Type="String" Name="question_setting_xml" MaxLength="Max" FixedLength="false" Unicode="true" />
  4048. <NavigationProperty Name="Coursework" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI" FromRole="test_paper" ToRole="Coursework" />
  4049. <NavigationProperty Name="CourseworkResult" Relationship="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI2" FromRole="test_paper" ToRole="CourseworkResult" />
  4050. <NavigationProperty Name="test_onlinetest" Relationship="EMISOnlineContext.fk_test_onlinetest_test_paper_id" FromRole="test_paper" ToRole="test_onlinetest" />
  4051. <NavigationProperty Name="test_paper_question_set" Relationship="EMISOnlineContext.fk_paperquestion_2Paper" FromRole="test_paper" ToRole="test_paper_question_set" />
  4052. </EntityType>
  4053. <EntityType Name="test_paper_guide">
  4054. <Key>
  4055. <PropertyRef Name="test_paper_guide_id" />
  4056. </Key>
  4057. <Property Type="Decimal" Name="test_paper_guide_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4058. <Property Type="String" Name="modal_name" MaxLength="500" FixedLength="false" Unicode="false" />
  4059. <Property Type="String" Name="note" MaxLength="500" FixedLength="false" Unicode="false" />
  4060. <Property Type="Decimal" Name="knowledge_type_set_id" Precision="18" Scale="0" />
  4061. <Property Type="Decimal" Name="knowledge_point_set_id" Precision="18" Scale="0" />
  4062. <Property Type="Decimal" Name="open_dept_set_id" Precision="18" Scale="0" />
  4063. <Property Type="Boolean" Name="is_open_answer" />
  4064. <Property Type="String" Name="question_libary_set_id" MaxLength="200" FixedLength="false" Unicode="false" />
  4065. <Property Type="Decimal" Name="error_percent" Precision="8" Scale="2" />
  4066. <Property Type="Int32" Name="used_count_min" />
  4067. <Property Type="Int32" Name="used_count_max" />
  4068. <Property Type="Decimal" Name="difficulty_degree_minvalue" Precision="18" Scale="0" />
  4069. <Property Type="Decimal" Name="difficulty_degree_maxvalue" Precision="18" Scale="0" />
  4070. <Property Type="Int16" Name="isTestOrSelfTest" />
  4071. <Property Type="Int16" Name="test_method" />
  4072. <Property Type="Int16" Name="get_question_method" />
  4073. <Property Type="DateTime" Name="question_update_date_min" />
  4074. <Property Type="DateTime" Name="question_update_date_max" />
  4075. <Property Type="Boolean" Name="is_vaild" />
  4076. <Property Type="DateTime" Name="vaild_begin_date" />
  4077. <Property Type="DateTime" Name="vaild_end_date" />
  4078. <Property Type="Int32" Name="distributing_option" />
  4079. <Property Type="Int32" Name="Prority" />
  4080. <Property Type="Decimal" Name="paper_score" Precision="8" Scale="2" />
  4081. <Property Type="Boolean" Name="is_converted" />
  4082. <Property Type="Int32" Name="used_count" />
  4083. <Property Type="Boolean" Name="is_dynamic" />
  4084. <Property Type="Boolean" Name="is_autogenerate" />
  4085. <Property Type="DateTime" Name="created_date" />
  4086. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4087. </EntityType>
  4088. <EntityType Name="test_paper_question_set">
  4089. <Key>
  4090. <PropertyRef Name="test_paper_question_set_id" />
  4091. </Key>
  4092. <Property Type="Decimal" Name="test_paper_question_set_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4093. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  4094. <Property Type="String" Name="questionXml" MaxLength="Max" FixedLength="false" Unicode="true" />
  4095. <Property Type="Int32" Name="order" />
  4096. <NavigationProperty Name="test_paper" Relationship="EMISOnlineContext.fk_paperquestion_2Paper" FromRole="test_paper_question_set" ToRole="test_paper" />
  4097. </EntityType>
  4098. <EntityType Name="test_paper_question_set_fortest">
  4099. <Key>
  4100. <PropertyRef Name="test_paper_question_set_id" />
  4101. </Key>
  4102. <Property Type="Decimal" Name="test_paper_question_set_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4103. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  4104. <Property Type="String" Name="questionXml" MaxLength="Max" FixedLength="false" Unicode="true" />
  4105. <Property Type="Int32" Name="order" />
  4106. </EntityType>
  4107. <EntityType Name="test_question">
  4108. <Key>
  4109. <PropertyRef Name="test_question_Id" />
  4110. </Key>
  4111. <Property Type="Decimal" Name="test_question_Id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4112. <Property Type="Decimal" Name="base_question_type_id" Precision="18" Scale="0" />
  4113. <Property Type="String" Name="content" MaxLength="Max" FixedLength="false" Unicode="true" />
  4114. <Property Type="Decimal" Name="question_file_id" Precision="18" Scale="0" />
  4115. <Property Type="Decimal" Name="knowledge_type_id" Precision="18" Scale="0" />
  4116. <Property Type="Decimal" Name="knowledge_point_id" Precision="18" Scale="0" />
  4117. <Property Type="Decimal" Name="difficulty_degree" Precision="8" Scale="2" />
  4118. <Property Type="String" Name="answers" MaxLength="3000" FixedLength="false" Unicode="false" />
  4119. <Property Type="Boolean" Name="is_order" />
  4120. <Property Type="String" Name="answers_note" MaxLength="300" FixedLength="false" Unicode="false" />
  4121. <Property Type="String" Name="note" MaxLength="300" FixedLength="false" Unicode="false" />
  4122. <Property Type="Boolean" Name="KeyWordIsAnd" />
  4123. <Property Type="Decimal" Name="test_question_libary_id" Precision="18" Scale="0" />
  4124. <Property Type="Int64" Name="used_count" />
  4125. <Property Type="Decimal" Name="right_percent" Precision="18" Scale="2" />
  4126. <Property Type="Int64" Name="wrong_count" />
  4127. <Property Type="Boolean" Name="is_vaild" />
  4128. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4129. <Property Type="DateTime" Name="created_date" />
  4130. <Property Type="Decimal" Name="score" Precision="18" Scale="2" />
  4131. <Property Type="Int64" Name="wrong_percent" annotation:StoreGeneratedPattern="Computed" />
  4132. <Property Type="Boolean" Name="filled" Nullable="false" />
  4133. <Property Type="DateTime" Name="time_of_filling" />
  4134. <Property Type="Decimal" Name="test_question_ParentId" Precision="18" Scale="0" />
  4135. <NavigationProperty Name="test_base_question_type" Relationship="EMISOnlineContext.fk_testquestions2questiontype" FromRole="test_question" ToRole="test_base_question_type" />
  4136. <NavigationProperty Name="test_question_file" Relationship="EMISOnlineContext.fk_question_2questionfile" FromRole="test_question" ToRole="test_question_file" />
  4137. <NavigationProperty Name="test_question_provid_answer" Relationship="EMISOnlineContext.FK_TEST_QUE_REFERENCE_TEST_QUE" FromRole="test_question" ToRole="test_question_provid_answer" />
  4138. </EntityType>
  4139. <EntityType Name="test_question_administrator">
  4140. <Key>
  4141. <PropertyRef Name="test_question_administrator_id" />
  4142. </Key>
  4143. <Property Type="Decimal" Name="test_question_administrator_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4144. <Property Type="Decimal" Name="test_question_libary_id" Precision="18" Scale="0" />
  4145. <Property Type="String" Name="userid" MaxLength="50" FixedLength="false" Unicode="false" />
  4146. <Property Type="String" Name="username" MaxLength="50" FixedLength="false" Unicode="true" />
  4147. </EntityType>
  4148. <EntityType Name="test_question_file">
  4149. <Key>
  4150. <PropertyRef Name="file_id" />
  4151. </Key>
  4152. <Property Type="Decimal" Name="file_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4153. <Property Type="String" Name="url" MaxLength="1000" FixedLength="false" Unicode="false" />
  4154. <Property Type="Decimal" Name="width" Precision="19" Scale="2" />
  4155. <Property Type="Decimal" Name="height" Precision="19" Scale="2" />
  4156. <Property Type="String" Name="note" MaxLength="1000" FixedLength="false" Unicode="false" />
  4157. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4158. <Property Type="DateTime" Name="created_date" />
  4159. <NavigationProperty Name="test_question" Relationship="EMISOnlineContext.fk_question_2questionfile" FromRole="test_question_file" ToRole="test_question" />
  4160. <NavigationProperty Name="test_question_provid_answer" Relationship="EMISOnlineContext.fk_answer2questionfile" FromRole="test_question_file" ToRole="test_question_provid_answer" />
  4161. </EntityType>
  4162. <EntityType Name="test_question_keyword">
  4163. <Key>
  4164. <PropertyRef Name="test_question_keyword_id" />
  4165. </Key>
  4166. <Property Type="Decimal" Name="test_question_keyword_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4167. <Property Type="Decimal" Name="test_question_Id" Precision="18" Scale="0" />
  4168. <Property Type="Decimal" Name="test_keyword_id" Precision="18" Scale="0" />
  4169. <NavigationProperty Name="test_keyword" Relationship="EMISOnlineContext.fk_question_type_keyword" FromRole="test_question_keyword" ToRole="test_keyword" />
  4170. </EntityType>
  4171. <EntityType Name="test_question_libary">
  4172. <Key>
  4173. <PropertyRef Name="test_question_libary_id" />
  4174. </Key>
  4175. <Property Type="Decimal" Name="test_question_libary_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4176. <Property Type="String" Name="name" MaxLength="300" FixedLength="false" Unicode="false" />
  4177. <Property Type="String" Name="note" MaxLength="500" FixedLength="false" Unicode="false" />
  4178. <Property Type="Decimal" Name="base_limited_group_id" Precision="18" Scale="0" />
  4179. <Property Type="Decimal" Name="owner_id" Precision="18" Scale="0" />
  4180. <Property Type="Boolean" Name="is_vaild" />
  4181. <Property Type="Decimal" Name="parent_id" Precision="18" Scale="0" />
  4182. <Property Type="String" Name="ancestor_id" MaxLength="300" FixedLength="false" Unicode="false" />
  4183. <Property Type="String" Name="describe" MaxLength="500" FixedLength="false" Unicode="true" />
  4184. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4185. <Property Type="String" Name="userName" MaxLength="30" FixedLength="false" Unicode="true" />
  4186. <Property Type="DateTime" Name="created_date" />
  4187. <Property Type="Boolean" Name="filled" Nullable="false" />
  4188. <Property Type="DateTime" Name="time_of_filling" />
  4189. </EntityType>
  4190. <EntityType Name="test_question_provid_answer">
  4191. <Key>
  4192. <PropertyRef Name="provid_answer_id" />
  4193. </Key>
  4194. <Property Type="Decimal" Name="provid_answer_id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4195. <Property Type="String" Name="answer_name" MaxLength="5000" FixedLength="false" Unicode="false" />
  4196. <Property Type="Int32" Name="order" />
  4197. <Property Type="Decimal" Name="file_id" Precision="18" Scale="0" />
  4198. <Property Type="Decimal" Name="test_question_Id" Precision="18" Scale="0" />
  4199. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4200. <Property Type="DateTime" Name="created_date" />
  4201. <Property Type="Boolean" Name="filled" Nullable="false" />
  4202. <Property Type="DateTime" Name="time_of_filling" />
  4203. <NavigationProperty Name="test_question" Relationship="EMISOnlineContext.FK_TEST_QUE_REFERENCE_TEST_QUE" FromRole="test_question_provid_answer" ToRole="test_question" />
  4204. <NavigationProperty Name="test_question_file" Relationship="EMISOnlineContext.fk_answer2questionfile" FromRole="test_question_provid_answer" ToRole="test_question_file" />
  4205. </EntityType>
  4206. <EntityType Name="v_question">
  4207. <Key>
  4208. <PropertyRef Name="test_question_Id" />
  4209. <PropertyRef Name="order_" />
  4210. </Key>
  4211. <Property Type="String" Name="question_json" MaxLength="Max" FixedLength="false" Unicode="true" />
  4212. <Property Type="Decimal" Name="test_question_Id" Nullable="false" Precision="18" Scale="0" />
  4213. <Property Type="Decimal" Name="base_question_type_id" Precision="18" Scale="0" />
  4214. <Property Type="Decimal" Name="test_paper_id" Precision="18" Scale="0" />
  4215. <Property Type="Int32" Name="order_" Nullable="false" />
  4216. </EntityType>
  4217. <EntityType Name="V_StudentEducationMissionClass">
  4218. <Key>
  4219. <PropertyRef Name="EducationMissionClassID" />
  4220. <PropertyRef Name="CoursematerialID" />
  4221. <PropertyRef Name="CourseName" />
  4222. <PropertyRef Name="UserID" />
  4223. </Key>
  4224. <Property Type="Guid" Name="EducationMissionClassID" Nullable="false" />
  4225. <Property Type="String" Name="EducationMissionClassName" MaxLength="100" FixedLength="false" Unicode="true" />
  4226. <Property Type="Guid" Name="CoursematerialID" Nullable="false" />
  4227. <Property Type="String" Name="CourseName" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
  4228. <Property Type="String" Name="CoverUrl" MaxLength="1024" FixedLength="false" Unicode="false" />
  4229. <Property Type="Guid" Name="UserID" Nullable="false" />
  4230. <Property Type="Guid" Name="SchoolyearID" />
  4231. <Property Type="Guid" Name="TeacherID" />
  4232. </EntityType>
  4233. <EntityType Name="v_test_question">
  4234. <Key>
  4235. <PropertyRef Name="test_question_Id" />
  4236. <PropertyRef Name="filled" />
  4237. </Key>
  4238. <Property Type="Guid" Name="rid" />
  4239. <Property Type="Decimal" Name="test_question_Id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4240. <Property Type="Decimal" Name="base_question_type_id" Precision="18" Scale="0" />
  4241. <Property Type="String" Name="content" MaxLength="Max" FixedLength="false" Unicode="true" />
  4242. <Property Type="Decimal" Name="question_file_id" Precision="18" Scale="0" />
  4243. <Property Type="String" Name="question_type_name" MaxLength="300" FixedLength="false" Unicode="false" />
  4244. <Property Type="String" Name="questione_lib_name" MaxLength="300" FixedLength="false" Unicode="false" />
  4245. <Property Type="Decimal" Name="difficulty_degree" Precision="8" Scale="2" />
  4246. <Property Type="String" Name="answers" MaxLength="3000" FixedLength="false" Unicode="false" />
  4247. <Property Type="Boolean" Name="is_order" />
  4248. <Property Type="String" Name="answers_note" MaxLength="300" FixedLength="false" Unicode="false" />
  4249. <Property Type="String" Name="note" MaxLength="300" FixedLength="false" Unicode="false" />
  4250. <Property Type="Decimal" Name="test_question_libary_id" Precision="18" Scale="0" />
  4251. <Property Type="Int64" Name="used_count" />
  4252. <Property Type="Decimal" Name="right_percent" Precision="18" Scale="2" />
  4253. <Property Type="Boolean" Name="is_vaild" />
  4254. <Property Type="DateTime" Name="created_date" />
  4255. <Property Type="Int64" Name="wrong_count" />
  4256. <Property Type="Decimal" Name="score" Precision="18" Scale="2" />
  4257. <Property Type="Boolean" Name="filled" Nullable="false" />
  4258. <Property Type="DateTime" Name="time_of_filling" />
  4259. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4260. <Property Type="Int64" Name="wrong_percent" />
  4261. </EntityType>
  4262. <EntityType Name="VTestQestion">
  4263. <Key>
  4264. <PropertyRef Name="test_question_Id" />
  4265. <PropertyRef Name="filled" />
  4266. </Key>
  4267. <Property Type="Guid" Name="rid" />
  4268. <Property Type="Decimal" Name="test_question_Id" Nullable="false" Precision="18" Scale="0" annotation:StoreGeneratedPattern="Identity" />
  4269. <Property Type="Decimal" Name="base_question_type_id" Precision="18" Scale="0" />
  4270. <Property Type="String" Name="content" MaxLength="Max" FixedLength="false" Unicode="true" />
  4271. <Property Type="Decimal" Name="question_file_id" Precision="18" Scale="0" />
  4272. <Property Type="String" Name="question_type_name" MaxLength="300" FixedLength="false" Unicode="false" />
  4273. <Property Type="String" Name="questione_lib_name" MaxLength="300" FixedLength="false" Unicode="false" />
  4274. <Property Type="Decimal" Name="difficulty_degree" Precision="8" Scale="2" />
  4275. <Property Type="String" Name="answers" MaxLength="3000" FixedLength="false" Unicode="false" />
  4276. <Property Type="Boolean" Name="is_order" />
  4277. <Property Type="String" Name="answers_note" MaxLength="300" FixedLength="false" Unicode="false" />
  4278. <Property Type="String" Name="note" MaxLength="300" FixedLength="false" Unicode="false" />
  4279. <Property Type="Decimal" Name="test_question_libary_id" Precision="18" Scale="0" />
  4280. <Property Type="Int64" Name="used_count" />
  4281. <Property Type="Decimal" Name="right_percent" Precision="18" Scale="2" />
  4282. <Property Type="Boolean" Name="is_vaild" />
  4283. <Property Type="DateTime" Name="created_date" />
  4284. <Property Type="Int64" Name="wrong_count" />
  4285. <Property Type="Decimal" Name="score" Precision="18" Scale="2" />
  4286. <Property Type="Boolean" Name="filled" Nullable="false" />
  4287. <Property Type="DateTime" Name="time_of_filling" />
  4288. <Property Type="String" Name="created_by" MaxLength="50" FixedLength="false" Unicode="false" />
  4289. <Property Type="Int64" Name="wrong_percent" />
  4290. </EntityType>
  4291. <Association Name="FK_EM_SpecialtyCourse_CF_Department">
  4292. <End Type="EMISOnlineContext.CF_Department" Role="CF_Department" Multiplicity="0..1" />
  4293. <End Type="EMISOnlineContext.EM_SpecialtyCourse" Role="EM_SpecialtyCourse" Multiplicity="*" />
  4294. <ReferentialConstraint>
  4295. <Principal Role="CF_Department">
  4296. <PropertyRef Name="DepartmentID" />
  4297. </Principal>
  4298. <Dependent Role="EM_SpecialtyCourse">
  4299. <PropertyRef Name="DepartmentID" />
  4300. </Dependent>
  4301. </ReferentialConstraint>
  4302. </Association>
  4303. <Association Name="FK_COURSEWO_REFERENCE_COURSEWO">
  4304. <End Type="EMISOnlineContext.Coursework" Role="Coursework" Multiplicity="0..1" />
  4305. <End Type="EMISOnlineContext.CourseworkResult" Role="CourseworkResult" Multiplicity="*" />
  4306. <ReferentialConstraint>
  4307. <Principal Role="Coursework">
  4308. <PropertyRef Name="ID" />
  4309. </Principal>
  4310. <Dependent Role="CourseworkResult">
  4311. <PropertyRef Name="workid" />
  4312. </Dependent>
  4313. </ReferentialConstraint>
  4314. </Association>
  4315. <Association Name="FK_COURSEWO_REFERENCE_COURSEWO333">
  4316. <End Type="EMISOnlineContext.Coursework" Role="Coursework" Multiplicity="0..1" />
  4317. <End Type="EMISOnlineContext.CourseworkAnswer" Role="CourseworkAnswer" Multiplicity="*" />
  4318. <ReferentialConstraint>
  4319. <Principal Role="Coursework">
  4320. <PropertyRef Name="ID" />
  4321. </Principal>
  4322. <Dependent Role="CourseworkAnswer">
  4323. <PropertyRef Name="workid" />
  4324. </Dependent>
  4325. </ReferentialConstraint>
  4326. </Association>
  4327. <Association Name="FK_COURSEWO_REFERENCE_EX_EXAMI">
  4328. <End Type="EMISOnlineContext.test_paper" Role="test_paper" Multiplicity="0..1" />
  4329. <End Type="EMISOnlineContext.Coursework" Role="Coursework" Multiplicity="*" />
  4330. <ReferentialConstraint>
  4331. <Principal Role="test_paper">
  4332. <PropertyRef Name="test_paper_id" />
  4333. </Principal>
  4334. <Dependent Role="Coursework">
  4335. <PropertyRef Name="PaperID" />
  4336. </Dependent>
  4337. </ReferentialConstraint>
  4338. </Association>
  4339. <Association Name="FK_COURSEWO_REFERENCE_EX_EXAMI2">
  4340. <End Type="EMISOnlineContext.test_paper" Role="test_paper" Multiplicity="0..1" />
  4341. <End Type="EMISOnlineContext.CourseworkResult" Role="CourseworkResult" Multiplicity="*" />
  4342. <ReferentialConstraint>
  4343. <Principal Role="test_paper">
  4344. <PropertyRef Name="test_paper_id" />
  4345. </Principal>
  4346. <Dependent Role="CourseworkResult">
  4347. <PropertyRef Name="test_paper_id" />
  4348. </Dependent>
  4349. </ReferentialConstraint>
  4350. </Association>
  4351. <Association Name="FK_EM_COURS_REFERENCE_EM_COURS_Video">
  4352. <End Type="EMISOnlineContext.EM_CourseVideo" Role="EM_CourseVideo" Multiplicity="1" />
  4353. <End Type="EMISOnlineContext.EM_CourseChapter_Video" Role="EM_CourseChapter_Video" Multiplicity="*" />
  4354. <ReferentialConstraint>
  4355. <Principal Role="EM_CourseVideo">
  4356. <PropertyRef Name="CourseVideoID" />
  4357. </Principal>
  4358. <Dependent Role="EM_CourseChapter_Video">
  4359. <PropertyRef Name="CourseVideoID" />
  4360. </Dependent>
  4361. </ReferentialConstraint>
  4362. </Association>
  4363. <Association Name="FK_EM_SPECI_REFERENCE_EM_COURS">
  4364. <End Type="EMISOnlineContext.EM_Coursematerial" Role="EM_Coursematerial" Multiplicity="0..1" />
  4365. <End Type="EMISOnlineContext.EM_SpecialtyCourse" Role="EM_SpecialtyCourse" Multiplicity="*" />
  4366. <ReferentialConstraint>
  4367. <Principal Role="EM_Coursematerial">
  4368. <PropertyRef Name="CoursematerialID" />
  4369. </Principal>
  4370. <Dependent Role="EM_SpecialtyCourse">
  4371. <PropertyRef Name="CoursematerialID" />
  4372. </Dependent>
  4373. </ReferentialConstraint>
  4374. </Association>
  4375. <Association Name="FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo">
  4376. <End Type="EMISOnlineContext.EM_CourseVideo" Role="EM_CourseVideo" Multiplicity="0..1" />
  4377. <End Type="EMISOnlineContext.EM_CourseStudyStatus" Role="EM_CourseStudyStatus" Multiplicity="*" />
  4378. <ReferentialConstraint>
  4379. <Principal Role="EM_CourseVideo">
  4380. <PropertyRef Name="CourseVideoID" />
  4381. </Principal>
  4382. <Dependent Role="EM_CourseStudyStatus">
  4383. <PropertyRef Name="LastCourseVideoID" />
  4384. </Dependent>
  4385. </ReferentialConstraint>
  4386. </Association>
  4387. <Association Name="FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass">
  4388. <End Type="EMISOnlineContext.EM_EducationMissionClass" Role="EM_EducationMissionClass" Multiplicity="0..1" />
  4389. <End Type="EMISOnlineContext.EM_MissionClassTeacher" Role="EM_MissionClassTeacher" Multiplicity="*" />
  4390. <ReferentialConstraint>
  4391. <Principal Role="EM_EducationMissionClass">
  4392. <PropertyRef Name="EducationMissionClassID" />
  4393. </Principal>
  4394. <Dependent Role="EM_MissionClassTeacher">
  4395. <PropertyRef Name="MissionClassID" />
  4396. </Dependent>
  4397. </ReferentialConstraint>
  4398. </Association>
  4399. <Association Name="FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse">
  4400. <End Type="EMISOnlineContext.EM_ExecutableFreeSelectionCouse" Role="EM_ExecutableFreeSelectionCouse" Multiplicity="1" />
  4401. <End Type="EMISOnlineContext.EM_ExecutableFreeSelectionCouseTeachingSetting" Role="EM_ExecutableFreeSelectionCouseTeachingSetting" Multiplicity="0..1" />
  4402. <ReferentialConstraint>
  4403. <Principal Role="EM_ExecutableFreeSelectionCouse">
  4404. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  4405. </Principal>
  4406. <Dependent Role="EM_ExecutableFreeSelectionCouseTeachingSetting">
  4407. <PropertyRef Name="ExecutableFreeSelectionCouseID" />
  4408. </Dependent>
  4409. </ReferentialConstraint>
  4410. </Association>
  4411. <Association Name="FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse">
  4412. <End Type="EMISOnlineContext.EM_ExecutableOptionalCourse" Role="EM_ExecutableOptionalCourse" Multiplicity="1" />
  4413. <End Type="EMISOnlineContext.EM_ExecutableOptionalCourseTeachingSetting" Role="EM_ExecutableOptionalCourseTeachingSetting" Multiplicity="0..1" />
  4414. <ReferentialConstraint>
  4415. <Principal Role="EM_ExecutableOptionalCourse">
  4416. <PropertyRef Name="ExecutableOptionalCourseID" />
  4417. </Principal>
  4418. <Dependent Role="EM_ExecutableOptionalCourseTeachingSetting">
  4419. <PropertyRef Name="ExecutableOptionalCourseID" />
  4420. </Dependent>
  4421. </ReferentialConstraint>
  4422. </Association>
  4423. <Association Name="FK_EM_SPECI_REFERENCE_EM_SPECI">
  4424. <End Type="EMISOnlineContext.EM_SpecialtyCourse" Role="EM_SpecialtyCourse" Multiplicity="1" />
  4425. <End Type="EMISOnlineContext.EM_SpecialtyCourseTeachingSetting" Role="EM_SpecialtyCourseTeachingSetting" Multiplicity="0..1" />
  4426. <ReferentialConstraint>
  4427. <Principal Role="EM_SpecialtyCourse">
  4428. <PropertyRef Name="SpecialtyCourseID" />
  4429. </Principal>
  4430. <Dependent Role="EM_SpecialtyCourseTeachingSetting">
  4431. <PropertyRef Name="SpecialtyCourseID" />
  4432. </Dependent>
  4433. </ReferentialConstraint>
  4434. </Association>
  4435. <Association Name="FK_EXAMRESU_REFERENCE_TEST_ONL">
  4436. <End Type="EMISOnlineContext.test_onlinetest" Role="test_onlinetest" Multiplicity="1" />
  4437. <End Type="EMISOnlineContext.ExamResult" Role="ExamResult" Multiplicity="*" />
  4438. <ReferentialConstraint>
  4439. <Principal Role="test_onlinetest">
  4440. <PropertyRef Name="onlinetest_id" />
  4441. </Principal>
  4442. <Dependent Role="ExamResult">
  4443. <PropertyRef Name="onlinetest_id" />
  4444. </Dependent>
  4445. </ReferentialConstraint>
  4446. </Association>
  4447. <Association Name="FK_SYS_MENU_REFERENCE_SYS_FUNC">
  4448. <End Type="EMISOnlineContext.Sys_FunctionCode" Role="Sys_FunctionCode" Multiplicity="0..1" />
  4449. <End Type="EMISOnlineContext.Sys_Menu" Role="Sys_Menu" Multiplicity="*" />
  4450. <ReferentialConstraint>
  4451. <Principal Role="Sys_FunctionCode">
  4452. <PropertyRef Name="FunctionCode" />
  4453. </Principal>
  4454. <Dependent Role="Sys_Menu">
  4455. <PropertyRef Name="FunctionCode" />
  4456. </Dependent>
  4457. </ReferentialConstraint>
  4458. </Association>
  4459. <Association Name="fk_base_param2baseparent">
  4460. <End Type="EMISOnlineContext.test_base_param_type" Role="test_base_param_type" Multiplicity="0..1" />
  4461. <End Type="EMISOnlineContext.test_base_param" Role="test_base_param" Multiplicity="*" />
  4462. <ReferentialConstraint>
  4463. <Principal Role="test_base_param_type">
  4464. <PropertyRef Name="base_param_parent_id" />
  4465. </Principal>
  4466. <Dependent Role="test_base_param">
  4467. <PropertyRef Name="base_param_parent_id" />
  4468. </Dependent>
  4469. </ReferentialConstraint>
  4470. </Association>
  4471. <Association Name="fk_testquestions2questiontype">
  4472. <End Type="EMISOnlineContext.test_base_question_type" Role="test_base_question_type" Multiplicity="0..1" />
  4473. <End Type="EMISOnlineContext.test_question" Role="test_question" Multiplicity="*" />
  4474. <ReferentialConstraint>
  4475. <Principal Role="test_base_question_type">
  4476. <PropertyRef Name="base_question_type_id" />
  4477. </Principal>
  4478. <Dependent Role="test_question">
  4479. <PropertyRef Name="base_question_type_id" />
  4480. </Dependent>
  4481. </ReferentialConstraint>
  4482. </Association>
  4483. <Association Name="fk_commbaseset2commset">
  4484. <End Type="EMISOnlineContext.test_comm_set" Role="test_comm_set" Multiplicity="0..1" />
  4485. <End Type="EMISOnlineContext.test_comm_param_set" Role="test_comm_param_set" Multiplicity="*" />
  4486. <ReferentialConstraint>
  4487. <Principal Role="test_comm_set">
  4488. <PropertyRef Name="comm_set_id" />
  4489. </Principal>
  4490. <Dependent Role="test_comm_param_set">
  4491. <PropertyRef Name="comm_set_id" />
  4492. </Dependent>
  4493. </ReferentialConstraint>
  4494. </Association>
  4495. <Association Name="fk_question_type_keyword">
  4496. <End Type="EMISOnlineContext.test_keyword" Role="test_keyword" Multiplicity="0..1" />
  4497. <End Type="EMISOnlineContext.test_question_keyword" Role="test_question_keyword" Multiplicity="*" />
  4498. <ReferentialConstraint>
  4499. <Principal Role="test_keyword">
  4500. <PropertyRef Name="test_keyword_id" />
  4501. </Principal>
  4502. <Dependent Role="test_question_keyword">
  4503. <PropertyRef Name="test_keyword_id" />
  4504. </Dependent>
  4505. </ReferentialConstraint>
  4506. </Association>
  4507. <Association Name="FK_TEST_ONL_REFERENCE_TEST_SHOW">
  4508. <End Type="EMISOnlineContext.test_onlinetest" Role="test_onlinetest" Multiplicity="0..1" />
  4509. <End Type="EMISOnlineContext.test_onlinetest_manshow" Role="test_onlinetest_manshow" Multiplicity="*" />
  4510. <ReferentialConstraint>
  4511. <Principal Role="test_onlinetest">
  4512. <PropertyRef Name="onlinetest_id" />
  4513. </Principal>
  4514. <Dependent Role="test_onlinetest_manshow">
  4515. <PropertyRef Name="onlinetest_id" />
  4516. </Dependent>
  4517. </ReferentialConstraint>
  4518. </Association>
  4519. <Association Name="fk_test_onlinetest_test_paper_id">
  4520. <End Type="EMISOnlineContext.test_paper" Role="test_paper" Multiplicity="0..1" />
  4521. <End Type="EMISOnlineContext.test_onlinetest" Role="test_onlinetest" Multiplicity="*" />
  4522. <ReferentialConstraint>
  4523. <Principal Role="test_paper">
  4524. <PropertyRef Name="test_paper_id" />
  4525. </Principal>
  4526. <Dependent Role="test_onlinetest">
  4527. <PropertyRef Name="test_paper_id" />
  4528. </Dependent>
  4529. </ReferentialConstraint>
  4530. </Association>
  4531. <Association Name="fk_paperquestion_2Paper">
  4532. <End Type="EMISOnlineContext.test_paper" Role="test_paper" Multiplicity="0..1" />
  4533. <End Type="EMISOnlineContext.test_paper_question_set" Role="test_paper_question_set" Multiplicity="*" />
  4534. <ReferentialConstraint>
  4535. <Principal Role="test_paper">
  4536. <PropertyRef Name="test_paper_id" />
  4537. </Principal>
  4538. <Dependent Role="test_paper_question_set">
  4539. <PropertyRef Name="test_paper_id" />
  4540. </Dependent>
  4541. </ReferentialConstraint>
  4542. </Association>
  4543. <Association Name="fk_question_2questionfile">
  4544. <End Type="EMISOnlineContext.test_question_file" Role="test_question_file" Multiplicity="0..1" />
  4545. <End Type="EMISOnlineContext.test_question" Role="test_question" Multiplicity="*" />
  4546. <ReferentialConstraint>
  4547. <Principal Role="test_question_file">
  4548. <PropertyRef Name="file_id" />
  4549. </Principal>
  4550. <Dependent Role="test_question">
  4551. <PropertyRef Name="question_file_id" />
  4552. </Dependent>
  4553. </ReferentialConstraint>
  4554. </Association>
  4555. <Association Name="FK_TEST_QUE_REFERENCE_TEST_QUE">
  4556. <End Type="EMISOnlineContext.test_question" Role="test_question" Multiplicity="0..1" />
  4557. <End Type="EMISOnlineContext.test_question_provid_answer" Role="test_question_provid_answer" Multiplicity="*" />
  4558. <ReferentialConstraint>
  4559. <Principal Role="test_question">
  4560. <PropertyRef Name="test_question_Id" />
  4561. </Principal>
  4562. <Dependent Role="test_question_provid_answer">
  4563. <PropertyRef Name="test_question_Id" />
  4564. </Dependent>
  4565. </ReferentialConstraint>
  4566. </Association>
  4567. <Association Name="fk_answer2questionfile">
  4568. <End Type="EMISOnlineContext.test_question_file" Role="test_question_file" Multiplicity="0..1" />
  4569. <End Type="EMISOnlineContext.test_question_provid_answer" Role="test_question_provid_answer" Multiplicity="*" />
  4570. <ReferentialConstraint>
  4571. <Principal Role="test_question_file">
  4572. <PropertyRef Name="file_id" />
  4573. </Principal>
  4574. <Dependent Role="test_question_provid_answer">
  4575. <PropertyRef Name="file_id" />
  4576. </Dependent>
  4577. </ReferentialConstraint>
  4578. </Association>
  4579. <Association Name="Sys_Role_Sys_FunctionCode">
  4580. <End Type="EMISOnlineContext.Sys_FunctionCode" Role="Sys_FunctionCode" Multiplicity="*" />
  4581. <End Type="EMISOnlineContext.Sys_Role" Role="Sys_Role" Multiplicity="*" />
  4582. </Association>
  4583. </Schema>
  4584. </edmx:ConceptualModels>
  4585. <!-- C-S mapping content -->
  4586. <edmx:Mappings>
  4587. <Mapping xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs" Space="C-S">
  4588. <Alias Key="Model" Value="EMISOnlineContext" />
  4589. <Alias Key="Target" Value="EMISOnlineContext.Store" />
  4590. <EntityContainerMapping CdmEntityContainer="EMISOnlineContextContainer" StorageEntityContainer="EMISOnlineContextStoreContainer">
  4591. <EntitySetMapping Name="CF_Campus">
  4592. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Campus">
  4593. <MappingFragment StoreEntitySet="CF_Campus">
  4594. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4595. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4596. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4597. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4598. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4599. <ScalarProperty Name="Remark" ColumnName="Remark" />
  4600. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4601. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  4602. <ScalarProperty Name="Name" ColumnName="Name" />
  4603. <ScalarProperty Name="No" ColumnName="No" />
  4604. <ScalarProperty Name="UniversityID" ColumnName="UniversityID" />
  4605. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  4606. </MappingFragment>
  4607. </EntityTypeMapping>
  4608. </EntitySetMapping>
  4609. <EntitySetMapping Name="CF_Classmajor">
  4610. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Classmajor">
  4611. <MappingFragment StoreEntitySet="CF_Classmajor">
  4612. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  4613. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4614. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4615. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4616. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4617. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4618. <ScalarProperty Name="Fixedclassroom" ColumnName="Fixedclassroom" />
  4619. <ScalarProperty Name="AssistantUserID" ColumnName="AssistantUserID" />
  4620. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4621. <ScalarProperty Name="ClassNum" ColumnName="ClassNum" />
  4622. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4623. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  4624. <ScalarProperty Name="Name" ColumnName="Name" />
  4625. <ScalarProperty Name="No" ColumnName="No" />
  4626. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  4627. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  4628. </MappingFragment>
  4629. </EntityTypeMapping>
  4630. </EntitySetMapping>
  4631. <EntitySetMapping Name="CF_College">
  4632. <EntityTypeMapping TypeName="EMISOnlineContext.CF_College">
  4633. <MappingFragment StoreEntitySet="CF_College">
  4634. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4635. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4636. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4637. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4638. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4639. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  4640. <ScalarProperty Name="HierarchyID" ColumnName="HierarchyID" />
  4641. <ScalarProperty Name="ParentCollegeID" ColumnName="ParentCollegeID" />
  4642. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4643. <ScalarProperty Name="Name" ColumnName="Name" />
  4644. <ScalarProperty Name="No" ColumnName="No" />
  4645. <ScalarProperty Name="CampusID" ColumnName="CampusID" />
  4646. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  4647. </MappingFragment>
  4648. </EntityTypeMapping>
  4649. </EntitySetMapping>
  4650. <EntitySetMapping Name="CF_Department">
  4651. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Department">
  4652. <MappingFragment StoreEntitySet="CF_Department">
  4653. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4654. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4655. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4656. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4657. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4658. <ScalarProperty Name="HierarchyID" ColumnName="HierarchyID" />
  4659. <ScalarProperty Name="ParentDepartmentID" ColumnName="ParentDepartmentID" />
  4660. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4661. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  4662. <ScalarProperty Name="Name" ColumnName="Name" />
  4663. <ScalarProperty Name="No" ColumnName="No" />
  4664. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  4665. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  4666. </MappingFragment>
  4667. </EntityTypeMapping>
  4668. </EntitySetMapping>
  4669. <EntitySetMapping Name="CF_Facultymajor">
  4670. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Facultymajor">
  4671. <MappingFragment StoreEntitySet="CF_Facultymajor">
  4672. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  4673. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4674. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4675. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4676. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4677. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4678. <ScalarProperty Name="TeacherIdentification" ColumnName="TeacherIdentification" />
  4679. <ScalarProperty Name="SetTime" ColumnName="SetTime" />
  4680. <ScalarProperty Name="LearningformID" ColumnName="LearningformID" />
  4681. <ScalarProperty Name="LearningstyleID" ColumnName="LearningstyleID" />
  4682. <ScalarProperty Name="ScienceclassID" ColumnName="ScienceclassID" />
  4683. <ScalarProperty Name="StandardID" ColumnName="StandardID" />
  4684. <ScalarProperty Name="EducationID" ColumnName="EducationID" />
  4685. <ScalarProperty Name="LearnPositionID" ColumnName="LearnPositionID" />
  4686. <ScalarProperty Name="LearnSystem" ColumnName="LearnSystem" />
  4687. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4688. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  4689. <ScalarProperty Name="Name" ColumnName="Name" />
  4690. <ScalarProperty Name="Code" ColumnName="Code" />
  4691. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  4692. <ScalarProperty Name="FacultymajorID" ColumnName="FacultymajorID" />
  4693. </MappingFragment>
  4694. </EntityTypeMapping>
  4695. </EntitySetMapping>
  4696. <EntitySetMapping Name="CF_Grademajor">
  4697. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Grademajor">
  4698. <MappingFragment StoreEntitySet="CF_Grademajor">
  4699. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  4700. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4701. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4702. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4703. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4704. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4705. <ScalarProperty Name="GraduatingSemesterID" ColumnName="GraduatingSemesterID" />
  4706. <ScalarProperty Name="FacultymajorID" ColumnName="FacultymajorID" />
  4707. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  4708. <ScalarProperty Name="Professional" ColumnName="Professional" />
  4709. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  4710. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  4711. <ScalarProperty Name="Name" ColumnName="Name" />
  4712. <ScalarProperty Name="Code" ColumnName="Code" />
  4713. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  4714. </MappingFragment>
  4715. </EntityTypeMapping>
  4716. </EntitySetMapping>
  4717. <EntitySetMapping Name="CF_Recruitstudents">
  4718. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Recruitstudents">
  4719. <MappingFragment StoreEntitySet="CF_Recruitstudents">
  4720. <ScalarProperty Name="AdmissionTicketNo" ColumnName="AdmissionTicketNo" />
  4721. <ScalarProperty Name="EnteringSchoolYearID" ColumnName="EnteringSchoolYearID" />
  4722. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4723. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4724. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4725. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4726. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4727. <ScalarProperty Name="Area" ColumnName="Area" />
  4728. <ScalarProperty Name="Territorial" ColumnName="Territorial" />
  4729. <ScalarProperty Name="Score" ColumnName="Score" />
  4730. <ScalarProperty Name="Features" ColumnName="Features" />
  4731. <ScalarProperty Name="ExamineeType" ColumnName="ExamineeType" />
  4732. <ScalarProperty Name="PlaceBirth" ColumnName="PlaceBirth" />
  4733. <ScalarProperty Name="ExamineeNum" ColumnName="ExamineeNum" />
  4734. <ScalarProperty Name="EntranceWay" ColumnName="EntranceWay" />
  4735. <ScalarProperty Name="EntranceDate" ColumnName="EntranceDate" />
  4736. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4737. </MappingFragment>
  4738. </EntityTypeMapping>
  4739. </EntitySetMapping>
  4740. <EntitySetMapping Name="CF_Schoolyear">
  4741. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Schoolyear">
  4742. <MappingFragment StoreEntitySet="CF_Schoolyear">
  4743. <ScalarProperty Name="Value" ColumnName="Value" />
  4744. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4745. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4746. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4747. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4748. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4749. <ScalarProperty Name="WeekDays" ColumnName="WeekDays" />
  4750. <ScalarProperty Name="IsCurrent" ColumnName="IsCurrent" />
  4751. <ScalarProperty Name="FirstWeek" ColumnName="FirstWeek" />
  4752. <ScalarProperty Name="WeeksNum" ColumnName="WeeksNum" />
  4753. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  4754. <ScalarProperty Name="Years" ColumnName="Years" />
  4755. <ScalarProperty Name="Code" ColumnName="Code" />
  4756. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  4757. </MappingFragment>
  4758. </EntityTypeMapping>
  4759. </EntitySetMapping>
  4760. <EntitySetMapping Name="CF_Staff">
  4761. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Staff">
  4762. <MappingFragment StoreEntitySet="CF_Staff">
  4763. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4764. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4765. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4766. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4767. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4768. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  4769. <ScalarProperty Name="Profile" ColumnName="Profile" />
  4770. <ScalarProperty Name="PhotoUrl" ColumnName="PhotoUrl" />
  4771. <ScalarProperty Name="TeachingDate" ColumnName="TeachingDate" />
  4772. <ScalarProperty Name="ComeSchoolDate" ColumnName="ComeSchoolDate" />
  4773. <ScalarProperty Name="WorkDate" ColumnName="WorkDate" />
  4774. <ScalarProperty Name="Title" ColumnName="Title" />
  4775. <ScalarProperty Name="LearnPosition" ColumnName="LearnPosition" />
  4776. <ScalarProperty Name="DegreeState" ColumnName="DegreeState" />
  4777. <ScalarProperty Name="LiteracyLevels" ColumnName="LiteracyLevels" />
  4778. <ScalarProperty Name="Situation" ColumnName="Situation" />
  4779. <ScalarProperty Name="CertificatesNum" ColumnName="CertificatesNum" />
  4780. <ScalarProperty Name="CertificatesType" ColumnName="CertificatesType" />
  4781. <ScalarProperty Name="IncumbencyState" ColumnName="IncumbencyState" />
  4782. <ScalarProperty Name="TeacherType" ColumnName="TeacherType" />
  4783. <ScalarProperty Name="Sex" ColumnName="Sex" />
  4784. <ScalarProperty Name="BirthDate" ColumnName="BirthDate" />
  4785. <ScalarProperty Name="StaffCode" ColumnName="StaffCode" />
  4786. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  4787. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  4788. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4789. </MappingFragment>
  4790. </EntityTypeMapping>
  4791. </EntitySetMapping>
  4792. <EntitySetMapping Name="CF_StaffProfile">
  4793. <EntityTypeMapping TypeName="EMISOnlineContext.CF_StaffProfile">
  4794. <MappingFragment StoreEntitySet="CF_StaffProfile">
  4795. <ScalarProperty Name="Account" ColumnName="Account" />
  4796. <ScalarProperty Name="Religion" ColumnName="Religion" />
  4797. <ScalarProperty Name="WeChatNum" ColumnName="WeChatNum" />
  4798. <ScalarProperty Name="Speciality" ColumnName="Speciality" />
  4799. <ScalarProperty Name="Residence" ColumnName="Residence" />
  4800. <ScalarProperty Name="NowAddress" ColumnName="NowAddress" />
  4801. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  4802. <ScalarProperty Name="Postcode" ColumnName="Postcode" />
  4803. <ScalarProperty Name="Address" ColumnName="Address" />
  4804. <ScalarProperty Name="HousePhone" ColumnName="HousePhone" />
  4805. <ScalarProperty Name="HealthState" ColumnName="HealthState" />
  4806. <ScalarProperty Name="Nationality" ColumnName="Nationality" />
  4807. <ScalarProperty Name="QQ" ColumnName="QQ" />
  4808. <ScalarProperty Name="Email" ColumnName="Email" />
  4809. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  4810. <ScalarProperty Name="OfficeTelephone" ColumnName="OfficeTelephone" />
  4811. <ScalarProperty Name="Telephone" ColumnName="Telephone" />
  4812. <ScalarProperty Name="EducationCode" ColumnName="EducationCode" />
  4813. <ScalarProperty Name="Place" ColumnName="Place" />
  4814. <ScalarProperty Name="Nation" ColumnName="Nation" />
  4815. <ScalarProperty Name="UsedName" ColumnName="UsedName" />
  4816. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4817. </MappingFragment>
  4818. </EntityTypeMapping>
  4819. </EntitySetMapping>
  4820. <EntitySetMapping Name="CF_Student">
  4821. <EntityTypeMapping TypeName="EMISOnlineContext.CF_Student">
  4822. <MappingFragment StoreEntitySet="CF_Student">
  4823. <ScalarProperty Name="Career" ColumnName="Career" />
  4824. <ScalarProperty Name="IsDreamProject" ColumnName="IsDreamProject" />
  4825. <ScalarProperty Name="GraduateCardNo" ColumnName="GraduateCardNo" />
  4826. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4827. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4828. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4829. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4830. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4831. <ScalarProperty Name="IsProofread" ColumnName="IsProofread" />
  4832. <ScalarProperty Name="InSchoolStatusID" ColumnName="InSchoolStatusID" />
  4833. <ScalarProperty Name="StudentStatus" ColumnName="StudentStatus" />
  4834. <ScalarProperty Name="StudentType" ColumnName="StudentType" />
  4835. <ScalarProperty Name="CultureModel" ColumnName="CultureModel" />
  4836. <ScalarProperty Name="PlanningGraduateDate" ColumnName="PlanningGraduateDate" />
  4837. <ScalarProperty Name="StudentCardNo" ColumnName="StudentCardNo" />
  4838. <ScalarProperty Name="IDNumber" ColumnName="IDNumber" />
  4839. <ScalarProperty Name="CertificatesType" ColumnName="CertificatesType" />
  4840. <ScalarProperty Name="Sex" ColumnName="Sex" />
  4841. <ScalarProperty Name="PhotoUrl" ColumnName="PhotoUrl" />
  4842. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  4843. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4844. </MappingFragment>
  4845. </EntityTypeMapping>
  4846. </EntitySetMapping>
  4847. <EntitySetMapping Name="CF_StudentContact">
  4848. <EntityTypeMapping TypeName="EMISOnlineContext.CF_StudentContact">
  4849. <MappingFragment StoreEntitySet="CF_StudentContact">
  4850. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4851. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4852. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4853. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4854. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4855. <ScalarProperty Name="Dormitory" ColumnName="Dormitory" />
  4856. <ScalarProperty Name="Recipient" ColumnName="Recipient" />
  4857. <ScalarProperty Name="HomeAddress" ColumnName="HomeAddress" />
  4858. <ScalarProperty Name="WorkUnit" ColumnName="WorkUnit" />
  4859. <ScalarProperty Name="Address" ColumnName="Address" />
  4860. <ScalarProperty Name="Zipcode" ColumnName="Zipcode" />
  4861. <ScalarProperty Name="MicroMsgNo" ColumnName="MicroMsgNo" />
  4862. <ScalarProperty Name="Telephone" ColumnName="Telephone" />
  4863. <ScalarProperty Name="Mobile" ColumnName="Mobile" />
  4864. <ScalarProperty Name="QQ" ColumnName="QQ" />
  4865. <ScalarProperty Name="Email" ColumnName="Email" />
  4866. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4867. </MappingFragment>
  4868. </EntityTypeMapping>
  4869. </EntitySetMapping>
  4870. <EntitySetMapping Name="CF_StudentContrast">
  4871. <EntityTypeMapping TypeName="EMISOnlineContext.CF_StudentContrast">
  4872. <MappingFragment StoreEntitySet="CF_StudentContrast">
  4873. <ScalarProperty Name="Career" ColumnName="Career" />
  4874. <ScalarProperty Name="IsDreamProject" ColumnName="IsDreamProject" />
  4875. <ScalarProperty Name="GraduateCardNo" ColumnName="GraduateCardNo" />
  4876. <ScalarProperty Name="AuditComments" ColumnName="AuditComments" />
  4877. <ScalarProperty Name="IP" ColumnName="IP" />
  4878. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4879. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4880. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4881. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4882. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4883. <ScalarProperty Name="InSchoolStatusID" ColumnName="InSchoolStatusID" />
  4884. <ScalarProperty Name="StudentStatus" ColumnName="StudentStatus" />
  4885. <ScalarProperty Name="StudentType" ColumnName="StudentType" />
  4886. <ScalarProperty Name="CultureModel" ColumnName="CultureModel" />
  4887. <ScalarProperty Name="PlanningGraduateDate" ColumnName="PlanningGraduateDate" />
  4888. <ScalarProperty Name="StudentCardNo" ColumnName="StudentCardNo" />
  4889. <ScalarProperty Name="IDNumber" ColumnName="IDNumber" />
  4890. <ScalarProperty Name="CertificatesType" ColumnName="CertificatesType" />
  4891. <ScalarProperty Name="Sex" ColumnName="Sex" />
  4892. <ScalarProperty Name="PhotoUrl" ColumnName="PhotoUrl" />
  4893. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  4894. <ScalarProperty Name="UserID" ColumnName="UserID" />
  4895. <ScalarProperty Name="StudentContrastID" ColumnName="StudentContrastID" />
  4896. </MappingFragment>
  4897. </EntityTypeMapping>
  4898. </EntitySetMapping>
  4899. <EntitySetMapping Name="CF_StudentRole">
  4900. <EntityTypeMapping TypeName="EMISOnlineContext.CF_StudentRole">
  4901. <MappingFragment StoreEntitySet="CF_StudentRole">
  4902. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4903. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4904. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4905. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4906. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4907. <ScalarProperty Name="StudentType" ColumnName="StudentType" />
  4908. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  4909. </MappingFragment>
  4910. </EntityTypeMapping>
  4911. </EntitySetMapping>
  4912. <EntitySetMapping Name="CF_University">
  4913. <EntityTypeMapping TypeName="EMISOnlineContext.CF_University">
  4914. <MappingFragment StoreEntitySet="CF_University">
  4915. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4916. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4917. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4918. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4919. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4920. <ScalarProperty Name="SimpleName" ColumnName="SimpleName" />
  4921. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  4922. <ScalarProperty Name="Name" ColumnName="Name" />
  4923. <ScalarProperty Name="Code" ColumnName="Code" />
  4924. <ScalarProperty Name="UniversityID" ColumnName="UniversityID" />
  4925. </MappingFragment>
  4926. </EntityTypeMapping>
  4927. </EntitySetMapping>
  4928. <EntitySetMapping Name="Coursework">
  4929. <EntityTypeMapping TypeName="EMISOnlineContext.Coursework">
  4930. <MappingFragment StoreEntitySet="Coursework">
  4931. <ScalarProperty Name="ModityContent" ColumnName="ModityContent" />
  4932. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  4933. <ScalarProperty Name="relogin_count" ColumnName="relogin_count" />
  4934. <ScalarProperty Name="isControllable" ColumnName="isControllable" />
  4935. <ScalarProperty Name="isPublishScore" ColumnName="isPublishScore" />
  4936. <ScalarProperty Name="display_type" ColumnName="display_type" />
  4937. <ScalarProperty Name="rand_test_point_setid" ColumnName="rand_test_point_setid" />
  4938. <ScalarProperty Name="rand_test_point_type" ColumnName="rand_test_point_type" />
  4939. <ScalarProperty Name="rand_test_count" ColumnName="rand_test_count" />
  4940. <ScalarProperty Name="rand_Test_time" ColumnName="rand_Test_time" />
  4941. <ScalarProperty Name="isOpenAnswer" ColumnName="isOpenAnswer" />
  4942. <ScalarProperty Name="ISautoBegin" ColumnName="ISautoBegin" />
  4943. <ScalarProperty Name="created_date" ColumnName="created_date" />
  4944. <ScalarProperty Name="created_by" ColumnName="created_by" />
  4945. <ScalarProperty Name="status_id" ColumnName="status_id" />
  4946. <ScalarProperty Name="notice_method_id" ColumnName="notice_method_id" />
  4947. <ScalarProperty Name="test_method_set_id" ColumnName="test_method_set_id" />
  4948. <ScalarProperty Name="breaking_id" ColumnName="breaking_id" />
  4949. <ScalarProperty Name="EndTime" ColumnName="EndTime" />
  4950. <ScalarProperty Name="BeginTime" ColumnName="BeginTime" />
  4951. <ScalarProperty Name="WorkName" ColumnName="WorkName" />
  4952. <ScalarProperty Name="PaperID" ColumnName="PaperID" />
  4953. <ScalarProperty Name="ID" ColumnName="ID" />
  4954. </MappingFragment>
  4955. </EntityTypeMapping>
  4956. </EntitySetMapping>
  4957. <EntitySetMapping Name="CourseworkAnswer">
  4958. <EntityTypeMapping TypeName="EMISOnlineContext.CourseworkAnswer">
  4959. <MappingFragment StoreEntitySet="CourseworkAnswer">
  4960. <ScalarProperty Name="resultXml" ColumnName="resultXml" />
  4961. <ScalarProperty Name="user_id" ColumnName="user_id" />
  4962. <ScalarProperty Name="workid" ColumnName="workid" />
  4963. <ScalarProperty Name="ID" ColumnName="ID" />
  4964. </MappingFragment>
  4965. </EntityTypeMapping>
  4966. </EntitySetMapping>
  4967. <EntitySetMapping Name="CourseworkResult">
  4968. <EntityTypeMapping TypeName="EMISOnlineContext.CourseworkResult">
  4969. <MappingFragment StoreEntitySet="CourseworkResult">
  4970. <ScalarProperty Name="lastLoginTime" ColumnName="lastLoginTime" />
  4971. <ScalarProperty Name="warning_count" ColumnName="warning_count" />
  4972. <ScalarProperty Name="state" ColumnName="state" />
  4973. <ScalarProperty Name="is_auto_read" ColumnName="is_auto_read" />
  4974. <ScalarProperty Name="score" ColumnName="score" />
  4975. <ScalarProperty Name="username" ColumnName="username" />
  4976. <ScalarProperty Name="ExaminationPaperID" ColumnName="ExaminationPaperID" />
  4977. <ScalarProperty Name="workid" ColumnName="workid" />
  4978. <ScalarProperty Name="limited_minutes" ColumnName="limited_minutes" />
  4979. <ScalarProperty Name="test_end_date" ColumnName="test_end_date" />
  4980. <ScalarProperty Name="test_begin_date" ColumnName="test_begin_date" />
  4981. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  4982. <ScalarProperty Name="user_id" ColumnName="user_id" />
  4983. <ScalarProperty Name="ID" ColumnName="ID" />
  4984. </MappingFragment>
  4985. </EntityTypeMapping>
  4986. </EntitySetMapping>
  4987. <EntitySetMapping Name="EM_CourseChapter">
  4988. <EntityTypeMapping TypeName="EMISOnlineContext.EM_CourseChapter">
  4989. <MappingFragment StoreEntitySet="EM_CourseChapter">
  4990. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  4991. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  4992. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  4993. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  4994. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  4995. <ScalarProperty Name="OuterVideoUrl" ColumnName="OuterVideoUrl" />
  4996. <ScalarProperty Name="VideoTypeID" ColumnName="VideoTypeID" />
  4997. <ScalarProperty Name="ParentCourseChapterID" ColumnName="ParentCourseChapterID" />
  4998. <ScalarProperty Name="OrderID" ColumnName="OrderID" />
  4999. <ScalarProperty Name="Name" ColumnName="Name" />
  5000. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5001. <ScalarProperty Name="CourseChapterID" ColumnName="CourseChapterID" />
  5002. </MappingFragment>
  5003. </EntityTypeMapping>
  5004. </EntitySetMapping>
  5005. <EntitySetMapping Name="EM_CourseChapter_Video">
  5006. <EntityTypeMapping TypeName="EMISOnlineContext.EM_CourseChapter_Video">
  5007. <MappingFragment StoreEntitySet="EM_CourseChapter_Video">
  5008. <ScalarProperty Name="CourseChapterID" ColumnName="CourseChapterID" />
  5009. <ScalarProperty Name="CourseVideoID" ColumnName="CourseVideoID" />
  5010. </MappingFragment>
  5011. </EntityTypeMapping>
  5012. </EntitySetMapping>
  5013. <EntitySetMapping Name="EM_Coursematerial">
  5014. <EntityTypeMapping TypeName="EMISOnlineContext.EM_Coursematerial">
  5015. <MappingFragment StoreEntitySet="EM_Coursematerial">
  5016. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5017. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5018. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5019. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5020. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5021. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5022. <ScalarProperty Name="CourseScienceID" ColumnName="CourseScienceID" />
  5023. <ScalarProperty Name="CourseLevelID" ColumnName="CourseLevelID" />
  5024. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  5025. <ScalarProperty Name="CourseReserve" ColumnName="CourseReserve" />
  5026. <ScalarProperty Name="CourseSynopsis" ColumnName="CourseSynopsis" />
  5027. <ScalarProperty Name="CourseEdition" ColumnName="CourseEdition" />
  5028. <ScalarProperty Name="StandardName" ColumnName="StandardName" />
  5029. <ScalarProperty Name="EnglishName" ColumnName="EnglishName" />
  5030. <ScalarProperty Name="Abbreviation" ColumnName="Abbreviation" />
  5031. <ScalarProperty Name="CourseName" ColumnName="CourseName" />
  5032. <ScalarProperty Name="CourseCode" ColumnName="CourseCode" />
  5033. <ScalarProperty Name="ClassGroupingID" ColumnName="ClassGroupingID" />
  5034. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5035. </MappingFragment>
  5036. </EntityTypeMapping>
  5037. </EntitySetMapping>
  5038. <EntitySetMapping Name="EM_CoursematerialExtend">
  5039. <EntityTypeMapping TypeName="EMISOnlineContext.EM_CoursematerialExtend">
  5040. <MappingFragment StoreEntitySet="EM_CoursematerialExtend">
  5041. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5042. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5043. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5044. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5045. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5046. <ScalarProperty Name="CoverUrl" ColumnName="CoverUrl" />
  5047. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5048. </MappingFragment>
  5049. </EntityTypeMapping>
  5050. </EntitySetMapping>
  5051. <EntitySetMapping Name="EM_CourseStudyStatus">
  5052. <EntityTypeMapping TypeName="EMISOnlineContext.EM_CourseStudyStatus">
  5053. <MappingFragment StoreEntitySet="EM_CourseStudyStatus">
  5054. <ScalarProperty Name="LastOuterVideoUrl" ColumnName="LastOuterVideoUrl" />
  5055. <ScalarProperty Name="LastCourseVideoLength" ColumnName="LastCourseVideoLength" />
  5056. <ScalarProperty Name="LastCourseVideoID" ColumnName="LastCourseVideoID" />
  5057. <ScalarProperty Name="LastVideoTypeID" ColumnName="LastVideoTypeID" />
  5058. <ScalarProperty Name="ContinuousTime" ColumnName="ContinuousTime" />
  5059. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5060. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5061. <ScalarProperty Name="CourseStudyStatusID" ColumnName="CourseStudyStatusID" />
  5062. </MappingFragment>
  5063. </EntityTypeMapping>
  5064. </EntitySetMapping>
  5065. <EntitySetMapping Name="EM_CourseVideo">
  5066. <EntityTypeMapping TypeName="EMISOnlineContext.EM_CourseVideo">
  5067. <MappingFragment StoreEntitySet="EM_CourseVideo">
  5068. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5069. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5070. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5071. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5072. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5073. <ScalarProperty Name="PlayUrl" ColumnName="PlayUrl" />
  5074. <ScalarProperty Name="UploadUrl" ColumnName="UploadUrl" />
  5075. <ScalarProperty Name="Name" ColumnName="Name" />
  5076. <ScalarProperty Name="CourseVideoID" ColumnName="CourseVideoID" />
  5077. </MappingFragment>
  5078. </EntityTypeMapping>
  5079. </EntitySetMapping>
  5080. <EntitySetMapping Name="EM_EducationMission">
  5081. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationMission">
  5082. <MappingFragment StoreEntitySet="EM_EducationMission">
  5083. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5084. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5085. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5086. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5087. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5088. <ScalarProperty Name="ClassName" ColumnName="ClassName" />
  5089. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5090. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5091. <ScalarProperty Name="CollegeID" ColumnName="CollegeID" />
  5092. <ScalarProperty Name="EducationMissionID" ColumnName="EducationMissionID" />
  5093. </MappingFragment>
  5094. </EntityTypeMapping>
  5095. </EntitySetMapping>
  5096. <EntitySetMapping Name="EM_EducationMissionClass">
  5097. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationMissionClass">
  5098. <MappingFragment StoreEntitySet="EM_EducationMissionClass">
  5099. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5100. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5101. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5102. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5103. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5104. <ScalarProperty Name="Remark" ColumnName="Remark" />
  5105. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5106. <ScalarProperty Name="IsNeedMaterial" ColumnName="IsNeedMaterial" />
  5107. <ScalarProperty Name="HandleModeID" ColumnName="HandleModeID" />
  5108. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5109. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5110. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5111. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5112. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5113. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5114. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5115. <ScalarProperty Name="ClassroomID" ColumnName="ClassroomID" />
  5116. <ScalarProperty Name="ClassroomTypeID" ColumnName="ClassroomTypeID" />
  5117. <ScalarProperty Name="OptionalCourseTypeID" ColumnName="OptionalCourseTypeID" />
  5118. <ScalarProperty Name="TeachingModeID" ColumnName="TeachingModeID" />
  5119. <ScalarProperty Name="Name" ColumnName="Name" />
  5120. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  5121. <ScalarProperty Name="MainScheduleClassID" ColumnName="MainScheduleClassID" />
  5122. <ScalarProperty Name="EducationMissionID" ColumnName="EducationMissionID" />
  5123. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  5124. </MappingFragment>
  5125. </EntityTypeMapping>
  5126. </EntitySetMapping>
  5127. <EntitySetMapping Name="EM_EducationMissionClass_CF_Classmajor">
  5128. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationMissionClass_CF_Classmajor">
  5129. <MappingFragment StoreEntitySet="EM_EducationMissionClass_CF_Classmajor">
  5130. <ScalarProperty Name="ClassmajorID" ColumnName="ClassmajorID" />
  5131. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  5132. </MappingFragment>
  5133. </EntityTypeMapping>
  5134. </EntitySetMapping>
  5135. <EntitySetMapping Name="EM_EducationMissionClassTeachingSetting">
  5136. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationMissionClassTeachingSetting">
  5137. <MappingFragment StoreEntitySet="EM_EducationMissionClassTeachingSetting">
  5138. <ScalarProperty Name="WeeklyHours" ColumnName="WeeklyHours" />
  5139. <ScalarProperty Name="EndWeeklyNum" ColumnName="EndWeeklyNum" />
  5140. <ScalarProperty Name="StartWeeklyNum" ColumnName="StartWeeklyNum" />
  5141. <ScalarProperty Name="TrialWeeklyNum" ColumnName="TrialWeeklyNum" />
  5142. <ScalarProperty Name="PracticeWeeklyNum" ColumnName="PracticeWeeklyNum" />
  5143. <ScalarProperty Name="TheoryWeeklyNum" ColumnName="TheoryWeeklyNum" />
  5144. <ScalarProperty Name="WeeklyNum" ColumnName="WeeklyNum" />
  5145. <ScalarProperty Name="Trialhours" ColumnName="Trialhours" />
  5146. <ScalarProperty Name="Practicehours" ColumnName="Practicehours" />
  5147. <ScalarProperty Name="TheoryCourse" ColumnName="TheoryCourse" />
  5148. <ScalarProperty Name="Credit" ColumnName="Credit" />
  5149. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  5150. </MappingFragment>
  5151. </EntityTypeMapping>
  5152. </EntitySetMapping>
  5153. <EntitySetMapping Name="EM_EducationSchedulingClass">
  5154. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationSchedulingClass">
  5155. <MappingFragment StoreEntitySet="EM_EducationSchedulingClass">
  5156. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5157. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5158. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5159. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5160. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5161. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5162. <ScalarProperty Name="TaskGroupName" ColumnName="TaskGroupName" />
  5163. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  5164. <ScalarProperty Name="EducationSchedulingClassID" ColumnName="EducationSchedulingClassID" />
  5165. </MappingFragment>
  5166. </EntityTypeMapping>
  5167. </EntitySetMapping>
  5168. <EntitySetMapping Name="EM_EducationSchedulingClass_CF_Student">
  5169. <EntityTypeMapping TypeName="EMISOnlineContext.EM_EducationSchedulingClass_CF_Student">
  5170. <MappingFragment StoreEntitySet="EM_EducationSchedulingClass_CF_Student">
  5171. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5172. <ScalarProperty Name="EducationSchedulingClassID" ColumnName="EducationSchedulingClassID" />
  5173. </MappingFragment>
  5174. </EntityTypeMapping>
  5175. </EntitySetMapping>
  5176. <EntitySetMapping Name="EM_ExecutableFreeSelectionCouse">
  5177. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutableFreeSelectionCouse">
  5178. <MappingFragment StoreEntitySet="EM_ExecutableFreeSelectionCouse">
  5179. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5180. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5181. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5182. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5183. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5184. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5185. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5186. <ScalarProperty Name="IsOpened" ColumnName="IsOpened" />
  5187. <ScalarProperty Name="HandleModeID" ColumnName="HandleModeID" />
  5188. <ScalarProperty Name="PeopleNumlimit" ColumnName="PeopleNumlimit" />
  5189. <ScalarProperty Name="PeopleNumlower" ColumnName="PeopleNumlower" />
  5190. <ScalarProperty Name="IsNeedMaterial" ColumnName="IsNeedMaterial" />
  5191. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5192. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5193. <ScalarProperty Name="PracticeTypeID" ColumnName="PracticeTypeID" />
  5194. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5195. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5196. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5197. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5198. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5199. <ScalarProperty Name="DefaultClassName" ColumnName="DefaultClassName" />
  5200. <ScalarProperty Name="FreeSelectionCouseID" ColumnName="FreeSelectionCouseID" />
  5201. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5202. <ScalarProperty Name="ExecutableFreeSelectionCouseID" ColumnName="ExecutableFreeSelectionCouseID" />
  5203. </MappingFragment>
  5204. </EntityTypeMapping>
  5205. </EntitySetMapping>
  5206. <EntitySetMapping Name="EM_ExecutableFreeSelectionCouseTeachingSetting">
  5207. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutableFreeSelectionCouseTeachingSetting">
  5208. <MappingFragment StoreEntitySet="EM_ExecutableFreeSelectionCouseTeachingSetting">
  5209. <ScalarProperty Name="WeeklyHours" ColumnName="WeeklyHours" />
  5210. <ScalarProperty Name="EndWeeklyNum" ColumnName="EndWeeklyNum" />
  5211. <ScalarProperty Name="StartWeeklyNum" ColumnName="StartWeeklyNum" />
  5212. <ScalarProperty Name="TrialWeeklyNum" ColumnName="TrialWeeklyNum" />
  5213. <ScalarProperty Name="PracticeWeeklyNum" ColumnName="PracticeWeeklyNum" />
  5214. <ScalarProperty Name="TheoryWeeklyNum" ColumnName="TheoryWeeklyNum" />
  5215. <ScalarProperty Name="WeeklyNum" ColumnName="WeeklyNum" />
  5216. <ScalarProperty Name="Trialhours" ColumnName="Trialhours" />
  5217. <ScalarProperty Name="Practicehours" ColumnName="Practicehours" />
  5218. <ScalarProperty Name="TheoryCourse" ColumnName="TheoryCourse" />
  5219. <ScalarProperty Name="Credit" ColumnName="Credit" />
  5220. <ScalarProperty Name="ExecutableFreeSelectionCouseID" ColumnName="ExecutableFreeSelectionCouseID" />
  5221. </MappingFragment>
  5222. </EntityTypeMapping>
  5223. </EntitySetMapping>
  5224. <EntitySetMapping Name="EM_ExecutableOptionalCourse">
  5225. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutableOptionalCourse">
  5226. <MappingFragment StoreEntitySet="EM_ExecutableOptionalCourse">
  5227. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5228. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5229. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5230. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5231. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5232. <ScalarProperty Name="IsOpened" ColumnName="IsOpened" />
  5233. <ScalarProperty Name="PeopleNumlimit" ColumnName="PeopleNumlimit" />
  5234. <ScalarProperty Name="PeopleNumlower" ColumnName="PeopleNumlower" />
  5235. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5236. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5237. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  5238. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5239. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5240. <ScalarProperty Name="PracticeTypeID" ColumnName="PracticeTypeID" />
  5241. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5242. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5243. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5244. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5245. <ScalarProperty Name="DefaultClassName" ColumnName="DefaultClassName" />
  5246. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5247. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  5248. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5249. <ScalarProperty Name="OptionalCourseID" ColumnName="OptionalCourseID" />
  5250. <ScalarProperty Name="ExecutableOptionalCourseID" ColumnName="ExecutableOptionalCourseID" />
  5251. </MappingFragment>
  5252. </EntityTypeMapping>
  5253. </EntitySetMapping>
  5254. <EntitySetMapping Name="EM_ExecutableOptionalCourseTeachingSetting">
  5255. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutableOptionalCourseTeachingSetting">
  5256. <MappingFragment StoreEntitySet="EM_ExecutableOptionalCourseTeachingSetting">
  5257. <ScalarProperty Name="WeeklyHours" ColumnName="WeeklyHours" />
  5258. <ScalarProperty Name="EndWeeklyNum" ColumnName="EndWeeklyNum" />
  5259. <ScalarProperty Name="StartWeeklyNum" ColumnName="StartWeeklyNum" />
  5260. <ScalarProperty Name="TrialWeeklyNum" ColumnName="TrialWeeklyNum" />
  5261. <ScalarProperty Name="PracticeWeeklyNum" ColumnName="PracticeWeeklyNum" />
  5262. <ScalarProperty Name="TheoryWeeklyNum" ColumnName="TheoryWeeklyNum" />
  5263. <ScalarProperty Name="WeeklyNum" ColumnName="WeeklyNum" />
  5264. <ScalarProperty Name="Trialhours" ColumnName="Trialhours" />
  5265. <ScalarProperty Name="Practicehours" ColumnName="Practicehours" />
  5266. <ScalarProperty Name="TheoryCourse" ColumnName="TheoryCourse" />
  5267. <ScalarProperty Name="Credit" ColumnName="Credit" />
  5268. <ScalarProperty Name="ExecutableOptionalCourseID" ColumnName="ExecutableOptionalCourseID" />
  5269. </MappingFragment>
  5270. </EntityTypeMapping>
  5271. </EntitySetMapping>
  5272. <EntitySetMapping Name="EM_ExecutablePlan">
  5273. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutablePlan">
  5274. <MappingFragment StoreEntitySet="EM_ExecutablePlan">
  5275. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5276. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5277. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5278. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5279. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5280. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5281. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5282. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5283. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5284. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5285. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5286. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5287. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5288. <ScalarProperty Name="IsNeedMaterial" ColumnName="IsNeedMaterial" />
  5289. <ScalarProperty Name="DefaultClassName" ColumnName="DefaultClassName" />
  5290. <ScalarProperty Name="SpecialtyPlanID" ColumnName="SpecialtyPlanID" />
  5291. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5292. <ScalarProperty Name="GrademajorID" ColumnName="GrademajorID" />
  5293. <ScalarProperty Name="HandleModeID" ColumnName="HandleModeID" />
  5294. <ScalarProperty Name="SourceTypeID" ColumnName="SourceTypeID" />
  5295. <ScalarProperty Name="ExecutablePlanID" ColumnName="ExecutablePlanID" />
  5296. </MappingFragment>
  5297. </EntityTypeMapping>
  5298. </EntitySetMapping>
  5299. <EntitySetMapping Name="EM_ExecutablePlanTeachingSetting">
  5300. <EntityTypeMapping TypeName="EMISOnlineContext.EM_ExecutablePlanTeachingSetting">
  5301. <MappingFragment StoreEntitySet="EM_ExecutablePlanTeachingSetting">
  5302. <ScalarProperty Name="WeeklyHours" ColumnName="WeeklyHours" />
  5303. <ScalarProperty Name="EndWeeklyNum" ColumnName="EndWeeklyNum" />
  5304. <ScalarProperty Name="StartWeeklyNum" ColumnName="StartWeeklyNum" />
  5305. <ScalarProperty Name="TrialWeeklyNum" ColumnName="TrialWeeklyNum" />
  5306. <ScalarProperty Name="PracticeWeeklyNum" ColumnName="PracticeWeeklyNum" />
  5307. <ScalarProperty Name="TheoryWeeklyNum" ColumnName="TheoryWeeklyNum" />
  5308. <ScalarProperty Name="WeeklyNum" ColumnName="WeeklyNum" />
  5309. <ScalarProperty Name="Trialhours" ColumnName="Trialhours" />
  5310. <ScalarProperty Name="Practicehours" ColumnName="Practicehours" />
  5311. <ScalarProperty Name="TheoryCourse" ColumnName="TheoryCourse" />
  5312. <ScalarProperty Name="Credit" ColumnName="Credit" />
  5313. <ScalarProperty Name="ExecutablePlanID" ColumnName="ExecutablePlanID" />
  5314. </MappingFragment>
  5315. </EntityTypeMapping>
  5316. </EntitySetMapping>
  5317. <EntitySetMapping Name="EM_FreeSelectionCouse">
  5318. <EntityTypeMapping TypeName="EMISOnlineContext.EM_FreeSelectionCouse">
  5319. <MappingFragment StoreEntitySet="EM_FreeSelectionCouse">
  5320. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5321. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5322. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5323. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5324. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5325. <ScalarProperty Name="Remark" ColumnName="Remark" />
  5326. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5327. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  5328. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  5329. <ScalarProperty Name="SchoolyearNumID" ColumnName="SchoolyearNumID" />
  5330. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5331. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5332. <ScalarProperty Name="PracticeTypeID" ColumnName="PracticeTypeID" />
  5333. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5334. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5335. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5336. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5337. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5338. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5339. <ScalarProperty Name="FreeSelectionCouseID" ColumnName="FreeSelectionCouseID" />
  5340. </MappingFragment>
  5341. </EntityTypeMapping>
  5342. </EntitySetMapping>
  5343. <EntitySetMapping Name="EM_FTPVideo">
  5344. <EntityTypeMapping TypeName="EMISOnlineContext.EM_FTPVideo">
  5345. <MappingFragment StoreEntitySet="EM_FTPVideo">
  5346. <ScalarProperty Name="Status" ColumnName="Status" />
  5347. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5348. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5349. <ScalarProperty Name="M3u8Path" ColumnName="M3u8Path" />
  5350. <ScalarProperty Name="M3u8Url" ColumnName="M3u8Url" />
  5351. <ScalarProperty Name="FTPUrl" ColumnName="FTPUrl" />
  5352. <ScalarProperty Name="FTPPath" ColumnName="FTPPath" />
  5353. <ScalarProperty Name="Name" ColumnName="Name" />
  5354. <ScalarProperty Name="FTPVideoID" ColumnName="FTPVideoID" />
  5355. </MappingFragment>
  5356. </EntityTypeMapping>
  5357. </EntitySetMapping>
  5358. <EntitySetMapping Name="EM_MissionClassTeacher">
  5359. <EntityTypeMapping TypeName="EMISOnlineContext.EM_MissionClassTeacher">
  5360. <MappingFragment StoreEntitySet="EM_MissionClassTeacher">
  5361. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5362. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5363. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5364. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5365. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5366. <ScalarProperty Name="TeachType" ColumnName="TeachType" />
  5367. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5368. <ScalarProperty Name="MissionClassID" ColumnName="MissionClassID" />
  5369. <ScalarProperty Name="MissionClassTeacherID" ColumnName="MissionClassTeacherID" />
  5370. </MappingFragment>
  5371. </EntityTypeMapping>
  5372. </EntitySetMapping>
  5373. <EntitySetMapping Name="EM_OptionalCoursePlan">
  5374. <EntityTypeMapping TypeName="EMISOnlineContext.EM_OptionalCoursePlan">
  5375. <MappingFragment StoreEntitySet="EM_OptionalCoursePlan">
  5376. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5377. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5378. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5379. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5380. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5381. <ScalarProperty Name="IsOpened" ColumnName="IsOpened" />
  5382. <ScalarProperty Name="PeopleNumlimit" ColumnName="PeopleNumlimit" />
  5383. <ScalarProperty Name="PeopleNumlower" ColumnName="PeopleNumlower" />
  5384. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5385. <ScalarProperty Name="ResultTypeID" ColumnName="ResultTypeID" />
  5386. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  5387. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  5388. <ScalarProperty Name="SchoolyearNumID" ColumnName="SchoolyearNumID" />
  5389. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5390. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5391. <ScalarProperty Name="PracticeTypeID" ColumnName="PracticeTypeID" />
  5392. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5393. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5394. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5395. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5396. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5397. <ScalarProperty Name="SpecialtyID" ColumnName="SpecialtyID" />
  5398. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5399. <ScalarProperty Name="OptionalCourseID" ColumnName="OptionalCourseID" />
  5400. </MappingFragment>
  5401. </EntityTypeMapping>
  5402. </EntitySetMapping>
  5403. <EntitySetMapping Name="EM_SpecialtyCourse">
  5404. <EntityTypeMapping TypeName="EMISOnlineContext.EM_SpecialtyCourse">
  5405. <MappingFragment StoreEntitySet="EM_SpecialtyCourse">
  5406. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5407. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5408. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5409. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5410. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5411. <ScalarProperty Name="Remarks" ColumnName="Remarks" />
  5412. <ScalarProperty Name="IsEnable" ColumnName="IsEnable" />
  5413. <ScalarProperty Name="IsMainCourse" ColumnName="IsMainCourse" />
  5414. <ScalarProperty Name="IsNetworkCourse" ColumnName="IsNetworkCourse" />
  5415. <ScalarProperty Name="IsElective" ColumnName="IsElective" />
  5416. <ScalarProperty Name="IsRequired" ColumnName="IsRequired" />
  5417. <ScalarProperty Name="IsCooperation" ColumnName="IsCooperation" />
  5418. <ScalarProperty Name="IsSpecialtycore" ColumnName="IsSpecialtycore" />
  5419. <ScalarProperty Name="CourseFineID" ColumnName="CourseFineID" />
  5420. <ScalarProperty Name="SchoolcodeID" ColumnName="SchoolcodeID" />
  5421. <ScalarProperty Name="SchoolyearNumID" ColumnName="SchoolyearNumID" />
  5422. <ScalarProperty Name="TeachinglanguageID" ColumnName="TeachinglanguageID" />
  5423. <ScalarProperty Name="ExaminationModeID" ColumnName="ExaminationModeID" />
  5424. <ScalarProperty Name="PracticeTypeID" ColumnName="PracticeTypeID" />
  5425. <ScalarProperty Name="CourseQualityID" ColumnName="CourseQualityID" />
  5426. <ScalarProperty Name="CourseTypeID" ColumnName="CourseTypeID" />
  5427. <ScalarProperty Name="CourseCategoryID" ColumnName="CourseCategoryID" />
  5428. <ScalarProperty Name="CourseStructureID" ColumnName="CourseStructureID" />
  5429. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5430. <ScalarProperty Name="SpecialtyID" ColumnName="SpecialtyID" />
  5431. <ScalarProperty Name="DepartmentID" ColumnName="DepartmentID" />
  5432. <ScalarProperty Name="SpecialtyCourseID" ColumnName="SpecialtyCourseID" />
  5433. </MappingFragment>
  5434. </EntityTypeMapping>
  5435. </EntitySetMapping>
  5436. <EntitySetMapping Name="EM_SpecialtyCourseTeachingSetting">
  5437. <EntityTypeMapping TypeName="EMISOnlineContext.EM_SpecialtyCourseTeachingSetting">
  5438. <MappingFragment StoreEntitySet="EM_SpecialtyCourseTeachingSetting">
  5439. <ScalarProperty Name="WeeklyHours" ColumnName="WeeklyHours" />
  5440. <ScalarProperty Name="EndWeeklyNum" ColumnName="EndWeeklyNum" />
  5441. <ScalarProperty Name="StartWeeklyNum" ColumnName="StartWeeklyNum" />
  5442. <ScalarProperty Name="TrialWeeklyNum" ColumnName="TrialWeeklyNum" />
  5443. <ScalarProperty Name="PracticeWeeklyNum" ColumnName="PracticeWeeklyNum" />
  5444. <ScalarProperty Name="TheoryWeeklyNum" ColumnName="TheoryWeeklyNum" />
  5445. <ScalarProperty Name="WeeklyNum" ColumnName="WeeklyNum" />
  5446. <ScalarProperty Name="Trialhours" ColumnName="Trialhours" />
  5447. <ScalarProperty Name="Practicehours" ColumnName="Practicehours" />
  5448. <ScalarProperty Name="TheoryCourse" ColumnName="TheoryCourse" />
  5449. <ScalarProperty Name="Credit" ColumnName="Credit" />
  5450. <ScalarProperty Name="SpecialtyCourseID" ColumnName="SpecialtyCourseID" />
  5451. </MappingFragment>
  5452. </EntityTypeMapping>
  5453. </EntitySetMapping>
  5454. <EntitySetMapping Name="ER_ScoreRule">
  5455. <EntityTypeMapping TypeName="EMISOnlineContext.ER_ScoreRule">
  5456. <MappingFragment StoreEntitySet="ER_ScoreRule">
  5457. <ScalarProperty Name="TeacherScore" ColumnName="TeacherScore" />
  5458. <ScalarProperty Name="HomeworkMax" ColumnName="HomeworkMax" />
  5459. <ScalarProperty Name="CoursewareEachTime" ColumnName="CoursewareEachTime" />
  5460. <ScalarProperty Name="CoursewareContinueMinite" ColumnName="CoursewareContinueMinite" />
  5461. <ScalarProperty Name="CoursewareMax" ColumnName="CoursewareMax" />
  5462. <ScalarProperty Name="LoginEachTime" ColumnName="LoginEachTime" />
  5463. <ScalarProperty Name="LoginMax" ColumnName="LoginMax" />
  5464. <ScalarProperty Name="ScoreRuleID" ColumnName="ScoreRuleID" />
  5465. </MappingFragment>
  5466. </EntityTypeMapping>
  5467. </EntitySetMapping>
  5468. <EntitySetMapping Name="ER_TeacherScore">
  5469. <EntityTypeMapping TypeName="EMISOnlineContext.ER_TeacherScore">
  5470. <MappingFragment StoreEntitySet="ER_TeacherScore">
  5471. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5472. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5473. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5474. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5475. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5476. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5477. <ScalarProperty Name="Score" ColumnName="Score" />
  5478. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5479. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  5480. <ScalarProperty Name="TeacherScoreID" ColumnName="TeacherScoreID" />
  5481. </MappingFragment>
  5482. </EntityTypeMapping>
  5483. </EntitySetMapping>
  5484. <EntitySetMapping Name="Exam_Log">
  5485. <EntityTypeMapping TypeName="EMISOnlineContext.Exam_Log">
  5486. <MappingFragment StoreEntitySet="Exam_Log">
  5487. <ScalarProperty Name="Exception" ColumnName="Exception" />
  5488. <ScalarProperty Name="Message" ColumnName="Message" />
  5489. <ScalarProperty Name="Level" ColumnName="Level" />
  5490. <ScalarProperty Name="Thread" ColumnName="Thread" />
  5491. <ScalarProperty Name="Date" ColumnName="Date" />
  5492. <ScalarProperty Name="Id" ColumnName="Id" />
  5493. </MappingFragment>
  5494. </EntityTypeMapping>
  5495. </EntitySetMapping>
  5496. <EntitySetMapping Name="ExamineeAnswer">
  5497. <EntityTypeMapping TypeName="EMISOnlineContext.ExamineeAnswer">
  5498. <MappingFragment StoreEntitySet="ExamineeAnswer">
  5499. <ScalarProperty Name="filled" ColumnName="filled" />
  5500. <ScalarProperty Name="resultXml" ColumnName="resultXml" />
  5501. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5502. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5503. <ScalarProperty Name="ID" ColumnName="ID" />
  5504. </MappingFragment>
  5505. </EntityTypeMapping>
  5506. </EntitySetMapping>
  5507. <EntitySetMapping Name="ExamPaper">
  5508. <EntityTypeMapping TypeName="EMISOnlineContext.ExamPaper">
  5509. <MappingFragment StoreEntitySet="ExamPaper">
  5510. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  5511. <ScalarProperty Name="filled" ColumnName="filled" />
  5512. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  5513. <ScalarProperty Name="answer_order" ColumnName="answer_order" />
  5514. <ScalarProperty Name="display_order" ColumnName="display_order" />
  5515. <ScalarProperty Name="test_questions_Id" ColumnName="test_questions_Id" />
  5516. <ScalarProperty Name="Sign" ColumnName="Sign" />
  5517. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5518. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5519. <ScalarProperty Name="ID" ColumnName="ID" />
  5520. </MappingFragment>
  5521. </EntityTypeMapping>
  5522. </EntitySetMapping>
  5523. <EntitySetMapping Name="ExamResult">
  5524. <EntityTypeMapping TypeName="EMISOnlineContext.ExamResult">
  5525. <MappingFragment StoreEntitySet="ExamResult">
  5526. <ScalarProperty Name="lastLoginTime" ColumnName="lastLoginTime" />
  5527. <ScalarProperty Name="filled" ColumnName="filled" />
  5528. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  5529. <ScalarProperty Name="relogin_count" ColumnName="relogin_count" />
  5530. <ScalarProperty Name="lastModified" ColumnName="lastModified" />
  5531. <ScalarProperty Name="warning_count" ColumnName="warning_count" />
  5532. <ScalarProperty Name="state" ColumnName="state" />
  5533. <ScalarProperty Name="last_examination" ColumnName="last_examination" />
  5534. <ScalarProperty Name="is_man_read" ColumnName="is_man_read" />
  5535. <ScalarProperty Name="visible" ColumnName="visible" />
  5536. <ScalarProperty Name="is_auto_read" ColumnName="is_auto_read" />
  5537. <ScalarProperty Name="modifiy_sore" ColumnName="modifiy_sore" />
  5538. <ScalarProperty Name="score" ColumnName="score" />
  5539. <ScalarProperty Name="username" ColumnName="username" />
  5540. <ScalarProperty Name="OrgId" ColumnName="OrgId" />
  5541. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5542. <ScalarProperty Name="test_address" ColumnName="test_address" />
  5543. <ScalarProperty Name="limited_minutes" ColumnName="limited_minutes" />
  5544. <ScalarProperty Name="test_end_date" ColumnName="test_end_date" />
  5545. <ScalarProperty Name="test_begin_date" ColumnName="test_begin_date" />
  5546. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  5547. <ScalarProperty Name="test_name" ColumnName="test_name" />
  5548. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5549. <ScalarProperty Name="ID" ColumnName="ID" />
  5550. </MappingFragment>
  5551. </EntityTypeMapping>
  5552. </EntitySetMapping>
  5553. <EntitySetMapping Name="ExamResult_backup_20120913">
  5554. <EntityTypeMapping TypeName="EMISOnlineContext.ExamResult_backup_20120913">
  5555. <MappingFragment StoreEntitySet="ExamResult_backup_20120913">
  5556. <ScalarProperty Name="last_examination" ColumnName="last_examination" />
  5557. <ScalarProperty Name="is_man_read" ColumnName="is_man_read" />
  5558. <ScalarProperty Name="visible" ColumnName="visible" />
  5559. <ScalarProperty Name="is_auto_read" ColumnName="is_auto_read" />
  5560. <ScalarProperty Name="modifiy_sore" ColumnName="modifiy_sore" />
  5561. <ScalarProperty Name="score" ColumnName="score" />
  5562. <ScalarProperty Name="username" ColumnName="username" />
  5563. <ScalarProperty Name="OrgId" ColumnName="OrgId" />
  5564. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5565. <ScalarProperty Name="test_address" ColumnName="test_address" />
  5566. <ScalarProperty Name="limited_minutes" ColumnName="limited_minutes" />
  5567. <ScalarProperty Name="test_end_date" ColumnName="test_end_date" />
  5568. <ScalarProperty Name="test_begin_date" ColumnName="test_begin_date" />
  5569. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  5570. <ScalarProperty Name="test_name" ColumnName="test_name" />
  5571. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5572. <ScalarProperty Name="ID" ColumnName="ID" />
  5573. </MappingFragment>
  5574. </EntityTypeMapping>
  5575. </EntitySetMapping>
  5576. <EntitySetMapping Name="ExamSetting_Examiner">
  5577. <EntityTypeMapping TypeName="EMISOnlineContext.ExamSetting_Examiner">
  5578. <MappingFragment StoreEntitySet="ExamSetting_Examiner">
  5579. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  5580. <ScalarProperty Name="filled" ColumnName="filled" />
  5581. <ScalarProperty Name="UserType" ColumnName="UserType" />
  5582. <ScalarProperty Name="UserName" ColumnName="UserName" />
  5583. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5584. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5585. <ScalarProperty Name="ID" ColumnName="ID" />
  5586. </MappingFragment>
  5587. </EntityTypeMapping>
  5588. </EntitySetMapping>
  5589. <EntitySetMapping Name="ExamWarning">
  5590. <EntityTypeMapping TypeName="EMISOnlineContext.ExamWarning">
  5591. <MappingFragment StoreEntitySet="ExamWarning">
  5592. <ScalarProperty Name="AlertType" ColumnName="AlertType" />
  5593. <ScalarProperty Name="Modified" ColumnName="Modified" />
  5594. <ScalarProperty Name="CreatorName" ColumnName="CreatorName" />
  5595. <ScalarProperty Name="Creator" ColumnName="Creator" />
  5596. <ScalarProperty Name="Message" ColumnName="Message" />
  5597. <ScalarProperty Name="WarningCount" ColumnName="WarningCount" />
  5598. <ScalarProperty Name="ID" ColumnName="ID" />
  5599. </MappingFragment>
  5600. </EntityTypeMapping>
  5601. </EntitySetMapping>
  5602. <EntitySetMapping Name="MSreplication_objects">
  5603. <EntityTypeMapping TypeName="EMISOnlineContext.MSreplication_objects">
  5604. <MappingFragment StoreEntitySet="MSreplication_objects">
  5605. <ScalarProperty Name="article" ColumnName="article" />
  5606. <ScalarProperty Name="object_type" ColumnName="object_type" />
  5607. <ScalarProperty Name="object_name" ColumnName="object_name" />
  5608. <ScalarProperty Name="publication" ColumnName="publication" />
  5609. <ScalarProperty Name="publisher_db" ColumnName="publisher_db" />
  5610. <ScalarProperty Name="publisher" ColumnName="publisher" />
  5611. </MappingFragment>
  5612. </EntityTypeMapping>
  5613. </EntitySetMapping>
  5614. <EntitySetMapping Name="MSreplication_subscriptions">
  5615. <EntityTypeMapping TypeName="EMISOnlineContext.MSreplication_subscriptions">
  5616. <MappingFragment StoreEntitySet="MSreplication_subscriptions">
  5617. <ScalarProperty Name="immediate_sync" ColumnName="immediate_sync" />
  5618. <ScalarProperty Name="subid" ColumnName="subid" />
  5619. <ScalarProperty Name="subscription_guid" ColumnName="subscription_guid" />
  5620. <ScalarProperty Name="agent_id" ColumnName="agent_id" />
  5621. <ScalarProperty Name="update_mode" ColumnName="update_mode" />
  5622. <ScalarProperty Name="transaction_timestamp" ColumnName="transaction_timestamp" />
  5623. <ScalarProperty Name="description" ColumnName="description" />
  5624. <ScalarProperty Name="time" ColumnName="time" />
  5625. <ScalarProperty Name="distribution_agent" ColumnName="distribution_agent" />
  5626. <ScalarProperty Name="subscription_type" ColumnName="subscription_type" />
  5627. <ScalarProperty Name="independent_agent" ColumnName="independent_agent" />
  5628. <ScalarProperty Name="publication" ColumnName="publication" />
  5629. <ScalarProperty Name="publisher_db" ColumnName="publisher_db" />
  5630. <ScalarProperty Name="publisher" ColumnName="publisher" />
  5631. </MappingFragment>
  5632. </EntityTypeMapping>
  5633. </EntitySetMapping>
  5634. <EntitySetMapping Name="MSsavedforeignkeycolumns">
  5635. <EntityTypeMapping TypeName="EMISOnlineContext.MSsavedforeignkeycolumns">
  5636. <MappingFragment StoreEntitySet="MSsavedforeignkeycolumns">
  5637. <ScalarProperty Name="timestamp" ColumnName="timestamp" />
  5638. <ScalarProperty Name="referenced_column_name" ColumnName="referenced_column_name" />
  5639. <ScalarProperty Name="referencing_column_name" ColumnName="referencing_column_name" />
  5640. <ScalarProperty Name="constraint_column_id" ColumnName="constraint_column_id" />
  5641. <ScalarProperty Name="parent_schema" ColumnName="parent_schema" />
  5642. <ScalarProperty Name="constraint_name" ColumnName="constraint_name" />
  5643. <ScalarProperty Name="program_name" ColumnName="program_name" />
  5644. </MappingFragment>
  5645. </EntityTypeMapping>
  5646. </EntitySetMapping>
  5647. <EntitySetMapping Name="MSsavedforeignkeyextendedproperties">
  5648. <EntityTypeMapping TypeName="EMISOnlineContext.MSsavedforeignkeyextendedproperties">
  5649. <MappingFragment StoreEntitySet="MSsavedforeignkeyextendedproperties">
  5650. <ScalarProperty Name="timestamp" ColumnName="timestamp" />
  5651. <ScalarProperty Name="property_name" ColumnName="property_name" />
  5652. <ScalarProperty Name="parent_schema" ColumnName="parent_schema" />
  5653. <ScalarProperty Name="constraint_name" ColumnName="constraint_name" />
  5654. <ScalarProperty Name="program_name" ColumnName="program_name" />
  5655. </MappingFragment>
  5656. </EntityTypeMapping>
  5657. </EntitySetMapping>
  5658. <EntitySetMapping Name="MSsavedforeignkeys">
  5659. <EntityTypeMapping TypeName="EMISOnlineContext.MSsavedforeignkeys">
  5660. <MappingFragment StoreEntitySet="MSsavedforeignkeys">
  5661. <ScalarProperty Name="timestamp" ColumnName="timestamp" />
  5662. <ScalarProperty Name="update_referential_action" ColumnName="update_referential_action" />
  5663. <ScalarProperty Name="delete_referential_action" ColumnName="delete_referential_action" />
  5664. <ScalarProperty Name="is_not_trusted" ColumnName="is_not_trusted" />
  5665. <ScalarProperty Name="is_not_for_replication" ColumnName="is_not_for_replication" />
  5666. <ScalarProperty Name="is_disabled" ColumnName="is_disabled" />
  5667. <ScalarProperty Name="referenced_object_name" ColumnName="referenced_object_name" />
  5668. <ScalarProperty Name="referenced_object_schema" ColumnName="referenced_object_schema" />
  5669. <ScalarProperty Name="parent_name" ColumnName="parent_name" />
  5670. <ScalarProperty Name="parent_schema" ColumnName="parent_schema" />
  5671. <ScalarProperty Name="constraint_name" ColumnName="constraint_name" />
  5672. <ScalarProperty Name="program_name" ColumnName="program_name" />
  5673. </MappingFragment>
  5674. </EntityTypeMapping>
  5675. </EntitySetMapping>
  5676. <EntitySetMapping Name="MSsnapshotdeliveryprogress">
  5677. <EntityTypeMapping TypeName="EMISOnlineContext.MSsnapshotdeliveryprogress">
  5678. <MappingFragment StoreEntitySet="MSsnapshotdeliveryprogress">
  5679. <ScalarProperty Name="progress_timestamp" ColumnName="progress_timestamp" />
  5680. <ScalarProperty Name="progress_token" ColumnName="progress_token" />
  5681. <ScalarProperty Name="progress_token_hash" ColumnName="progress_token_hash" />
  5682. <ScalarProperty Name="session_token" ColumnName="session_token" />
  5683. </MappingFragment>
  5684. </EntityTypeMapping>
  5685. </EntitySetMapping>
  5686. <EntitySetMapping Name="MSsubscription_agents">
  5687. <EntityTypeMapping TypeName="EMISOnlineContext.MSsubscription_agents">
  5688. <MappingFragment StoreEntitySet="MSsubscription_agents">
  5689. <ScalarProperty Name="queue_server" ColumnName="queue_server" />
  5690. <ScalarProperty Name="last_sync_time" ColumnName="last_sync_time" />
  5691. <ScalarProperty Name="last_sync_summary" ColumnName="last_sync_summary" />
  5692. <ScalarProperty Name="last_sync_status" ColumnName="last_sync_status" />
  5693. <ScalarProperty Name="attach_version" ColumnName="attach_version" />
  5694. <ScalarProperty Name="attach_state" ColumnName="attach_state" />
  5695. <ScalarProperty Name="allow_subscription_copy" ColumnName="allow_subscription_copy" />
  5696. <ScalarProperty Name="login_time" ColumnName="login_time" />
  5697. <ScalarProperty Name="spid" ColumnName="spid" />
  5698. <ScalarProperty Name="failover_mode" ColumnName="failover_mode" />
  5699. <ScalarProperty Name="update_mode" ColumnName="update_mode" />
  5700. <ScalarProperty Name="queue_id" ColumnName="queue_id" />
  5701. <ScalarProperty Name="subscription_type" ColumnName="subscription_type" />
  5702. <ScalarProperty Name="publication" ColumnName="publication" />
  5703. <ScalarProperty Name="publisher_db" ColumnName="publisher_db" />
  5704. <ScalarProperty Name="publisher" ColumnName="publisher" />
  5705. <ScalarProperty Name="id" ColumnName="id" />
  5706. </MappingFragment>
  5707. </EntityTypeMapping>
  5708. </EntitySetMapping>
  5709. <EntitySetMapping Name="Sys_Dictionary">
  5710. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_Dictionary">
  5711. <MappingFragment StoreEntitySet="Sys_Dictionary">
  5712. <ScalarProperty Name="IsEditable" ColumnName="IsEditable" />
  5713. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5714. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  5715. <ScalarProperty Name="Name" ColumnName="Name" />
  5716. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  5717. </MappingFragment>
  5718. </EntityTypeMapping>
  5719. </EntitySetMapping>
  5720. <EntitySetMapping Name="Sys_DictionaryItem">
  5721. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_DictionaryItem">
  5722. <MappingFragment StoreEntitySet="Sys_DictionaryItem">
  5723. <ScalarProperty Name="IsEditable" ColumnName="IsEditable" />
  5724. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5725. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  5726. <ScalarProperty Name="Name" ColumnName="Name" />
  5727. <ScalarProperty Name="Value" ColumnName="Value" />
  5728. <ScalarProperty Name="DictionaryCode" ColumnName="DictionaryCode" />
  5729. <ScalarProperty Name="Code" ColumnName="Code" />
  5730. <ScalarProperty Name="DictionaryItemID" ColumnName="DictionaryItemID" />
  5731. </MappingFragment>
  5732. </EntityTypeMapping>
  5733. </EntitySetMapping>
  5734. <EntitySetMapping Name="Sys_FunctionCode">
  5735. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_FunctionCode">
  5736. <MappingFragment StoreEntitySet="Sys_FunctionCode">
  5737. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  5738. <ScalarProperty Name="ParentFunctionCode" ColumnName="ParentFunctionCode" />
  5739. <ScalarProperty Name="FunctionName" ColumnName="FunctionName" />
  5740. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  5741. </MappingFragment>
  5742. </EntityTypeMapping>
  5743. </EntitySetMapping>
  5744. <EntitySetMapping Name="Sys_LoginCount">
  5745. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_LoginCount">
  5746. <MappingFragment StoreEntitySet="Sys_LoginCount">
  5747. <ScalarProperty Name="lastLoginTime" ColumnName="lastLoginTime" />
  5748. <ScalarProperty Name="LoginCount" ColumnName="LoginCount" />
  5749. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  5750. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5751. </MappingFragment>
  5752. </EntityTypeMapping>
  5753. </EntitySetMapping>
  5754. <EntitySetMapping Name="Sys_MailVerifyCode">
  5755. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_MailVerifyCode">
  5756. <MappingFragment StoreEntitySet="Sys_MailVerifyCode">
  5757. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5758. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5759. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5760. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5761. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5762. <ScalarProperty Name="VerifyCode" ColumnName="VerifyCode" />
  5763. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5764. </MappingFragment>
  5765. </EntityTypeMapping>
  5766. </EntitySetMapping>
  5767. <EntitySetMapping Name="Sys_Menu">
  5768. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_Menu">
  5769. <MappingFragment StoreEntitySet="Sys_Menu">
  5770. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5771. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  5772. <ScalarProperty Name="IsLeaf" ColumnName="IsLeaf" />
  5773. <ScalarProperty Name="IsVisible" ColumnName="IsVisible" />
  5774. <ScalarProperty Name="IsTopMenu" ColumnName="IsTopMenu" />
  5775. <ScalarProperty Name="Description" ColumnName="Description" />
  5776. <ScalarProperty Name="ParentMenuNo" ColumnName="ParentMenuNo" />
  5777. <ScalarProperty Name="Url" ColumnName="Url" />
  5778. <ScalarProperty Name="Icon" ColumnName="Icon" />
  5779. <ScalarProperty Name="MenuName" ColumnName="MenuName" />
  5780. <ScalarProperty Name="OrderNo" ColumnName="OrderNo" />
  5781. <ScalarProperty Name="MenuNo" ColumnName="MenuNo" />
  5782. </MappingFragment>
  5783. </EntityTypeMapping>
  5784. </EntitySetMapping>
  5785. <EntitySetMapping Name="Sys_Role">
  5786. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_Role">
  5787. <MappingFragment StoreEntitySet="Sys_Role">
  5788. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5789. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5790. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5791. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5792. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5793. <ScalarProperty Name="DefaultDataRange" ColumnName="DefaultDataRange" />
  5794. <ScalarProperty Name="SystemRoleType" ColumnName="SystemRoleType" />
  5795. <ScalarProperty Name="IsSystemRole" ColumnName="IsSystemRole" />
  5796. <ScalarProperty Name="Description" ColumnName="Description" />
  5797. <ScalarProperty Name="RoleName" ColumnName="RoleName" />
  5798. <ScalarProperty Name="TypeID" ColumnName="TypeID" />
  5799. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  5800. </MappingFragment>
  5801. </EntityTypeMapping>
  5802. </EntitySetMapping>
  5803. <EntitySetMapping Name="Sys_User">
  5804. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_User">
  5805. <MappingFragment StoreEntitySet="Sys_User">
  5806. <ScalarProperty Name="ModifyTime" ColumnName="ModifyTime" />
  5807. <ScalarProperty Name="ModifyUserID" ColumnName="ModifyUserID" />
  5808. <ScalarProperty Name="CreateTime" ColumnName="CreateTime" />
  5809. <ScalarProperty Name="CreateUserID" ColumnName="CreateUserID" />
  5810. <ScalarProperty Name="RecordStatus" ColumnName="RecordStatus" />
  5811. <ScalarProperty Name="Name" ColumnName="Name" />
  5812. <ScalarProperty Name="Password" ColumnName="Password" />
  5813. <ScalarProperty Name="LoginID" ColumnName="LoginID" />
  5814. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5815. </MappingFragment>
  5816. </EntityTypeMapping>
  5817. </EntitySetMapping>
  5818. <EntitySetMapping Name="Sys_User_Sys_Role">
  5819. <EntityTypeMapping TypeName="EMISOnlineContext.Sys_User_Sys_Role">
  5820. <MappingFragment StoreEntitySet="Sys_User_Sys_Role">
  5821. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  5822. <ScalarProperty Name="UserID" ColumnName="UserID" />
  5823. </MappingFragment>
  5824. </EntityTypeMapping>
  5825. </EntitySetMapping>
  5826. <EntitySetMapping Name="test_base_param">
  5827. <EntityTypeMapping TypeName="EMISOnlineContext.test_base_param">
  5828. <MappingFragment StoreEntitySet="test_base_param">
  5829. <ScalarProperty Name="IsSystem" ColumnName="IsSystem" />
  5830. <ScalarProperty Name="isvaild" ColumnName="isvaild" />
  5831. <ScalarProperty Name="order_by" ColumnName="order_by" />
  5832. <ScalarProperty Name="base_param_parent_id" ColumnName="base_param_parent_id" />
  5833. <ScalarProperty Name="name" ColumnName="name" />
  5834. <ScalarProperty Name="base_param_id" ColumnName="base_param_id" />
  5835. </MappingFragment>
  5836. </EntityTypeMapping>
  5837. </EntitySetMapping>
  5838. <EntitySetMapping Name="test_base_param_type">
  5839. <EntityTypeMapping TypeName="EMISOnlineContext.test_base_param_type">
  5840. <MappingFragment StoreEntitySet="test_base_param_type">
  5841. <ScalarProperty Name="order_by" ColumnName="order_by" />
  5842. <ScalarProperty Name="name" ColumnName="name" />
  5843. <ScalarProperty Name="base_param_parent_id" ColumnName="base_param_parent_id" />
  5844. </MappingFragment>
  5845. </EntityTypeMapping>
  5846. </EntitySetMapping>
  5847. <EntitySetMapping Name="test_base_question_type">
  5848. <EntityTypeMapping TypeName="EMISOnlineContext.test_base_question_type">
  5849. <MappingFragment StoreEntitySet="test_base_question_type">
  5850. <ScalarProperty Name="diplay_order" ColumnName="diplay_order" />
  5851. <ScalarProperty Name="type_id" ColumnName="type_id" />
  5852. <ScalarProperty Name="Name" ColumnName="Name" />
  5853. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  5854. </MappingFragment>
  5855. </EntityTypeMapping>
  5856. </EntitySetMapping>
  5857. <EntitySetMapping Name="test_comm_param_set">
  5858. <EntityTypeMapping TypeName="EMISOnlineContext.test_comm_param_set">
  5859. <MappingFragment StoreEntitySet="test_comm_param_set">
  5860. <ScalarProperty Name="var_id" ColumnName="var_id" />
  5861. <ScalarProperty Name="comm_set_id" ColumnName="comm_set_id" />
  5862. <ScalarProperty Name="comm_param_set_id" ColumnName="comm_param_set_id" />
  5863. </MappingFragment>
  5864. </EntityTypeMapping>
  5865. </EntitySetMapping>
  5866. <EntitySetMapping Name="test_comm_set">
  5867. <EntityTypeMapping TypeName="EMISOnlineContext.test_comm_set">
  5868. <MappingFragment StoreEntitySet="test_comm_set">
  5869. <ScalarProperty Name="note" ColumnName="note" />
  5870. <ScalarProperty Name="comm_set_id" ColumnName="comm_set_id" />
  5871. </MappingFragment>
  5872. </EntityTypeMapping>
  5873. </EntitySetMapping>
  5874. <EntitySetMapping Name="test_exchange">
  5875. <EntityTypeMapping TypeName="EMISOnlineContext.test_exchange">
  5876. <MappingFragment StoreEntitySet="test_exchange">
  5877. <ScalarProperty Name="ExamEndState" ColumnName="ExamEndState" />
  5878. <ScalarProperty Name="sendTime" ColumnName="sendTime" />
  5879. <ScalarProperty Name="handled" ColumnName="handled" />
  5880. <ScalarProperty Name="extendStringData" ColumnName="extendStringData" />
  5881. <ScalarProperty Name="extendIntData" ColumnName="extendIntData" />
  5882. <ScalarProperty Name="content" ColumnName="content" />
  5883. <ScalarProperty Name="receiver" ColumnName="receiver" />
  5884. <ScalarProperty Name="receiveType" ColumnName="receiveType" />
  5885. <ScalarProperty Name="type" ColumnName="type" />
  5886. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5887. <ScalarProperty Name="id" ColumnName="id" />
  5888. </MappingFragment>
  5889. </EntityTypeMapping>
  5890. </EntitySetMapping>
  5891. <EntitySetMapping Name="test_keyword">
  5892. <EntityTypeMapping TypeName="EMISOnlineContext.test_keyword">
  5893. <MappingFragment StoreEntitySet="test_keyword">
  5894. <ScalarProperty Name="other_vaild_values" ColumnName="other_vaild_values" />
  5895. <ScalarProperty Name="name" ColumnName="name" />
  5896. <ScalarProperty Name="test_keyword_id" ColumnName="test_keyword_id" />
  5897. </MappingFragment>
  5898. </EntityTypeMapping>
  5899. </EntitySetMapping>
  5900. <EntitySetMapping Name="test_onlinetest">
  5901. <EntityTypeMapping TypeName="EMISOnlineContext.test_onlinetest">
  5902. <MappingFragment StoreEntitySet="test_onlinetest">
  5903. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  5904. <ScalarProperty Name="isReadPaper" ColumnName="isReadPaper" />
  5905. <ScalarProperty Name="ExamerState" ColumnName="ExamerState" />
  5906. <ScalarProperty Name="PassRate" ColumnName="PassRate" />
  5907. <ScalarProperty Name="SubCode" ColumnName="SubCode" />
  5908. <ScalarProperty Name="ExamID" ColumnName="ExamID" />
  5909. <ScalarProperty Name="version" ColumnName="version" />
  5910. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  5911. <ScalarProperty Name="filled" ColumnName="filled" />
  5912. <ScalarProperty Name="relogin_count" ColumnName="relogin_count" />
  5913. <ScalarProperty Name="notice_datetime" ColumnName="notice_datetime" />
  5914. <ScalarProperty Name="isControllable" ColumnName="isControllable" />
  5915. <ScalarProperty Name="isPublishScore" ColumnName="isPublishScore" />
  5916. <ScalarProperty Name="display_type" ColumnName="display_type" />
  5917. <ScalarProperty Name="rand_test_point_setid" ColumnName="rand_test_point_setid" />
  5918. <ScalarProperty Name="rand_test_point_type" ColumnName="rand_test_point_type" />
  5919. <ScalarProperty Name="rand_test_count" ColumnName="rand_test_count" />
  5920. <ScalarProperty Name="rand_Test_time" ColumnName="rand_Test_time" />
  5921. <ScalarProperty Name="isOpenAnswer" ColumnName="isOpenAnswer" />
  5922. <ScalarProperty Name="ISautoBegin" ColumnName="ISautoBegin" />
  5923. <ScalarProperty Name="ModityContent" ColumnName="ModityContent" />
  5924. <ScalarProperty Name="subjectiveQAutoRead" ColumnName="subjectiveQAutoRead" />
  5925. <ScalarProperty Name="created_date" ColumnName="created_date" />
  5926. <ScalarProperty Name="created_by" ColumnName="created_by" />
  5927. <ScalarProperty Name="test_code" ColumnName="test_code" />
  5928. <ScalarProperty Name="status_id" ColumnName="status_id" />
  5929. <ScalarProperty Name="notice_method_id" ColumnName="notice_method_id" />
  5930. <ScalarProperty Name="test_method_set_id" ColumnName="test_method_set_id" />
  5931. <ScalarProperty Name="breaking_id" ColumnName="breaking_id" />
  5932. <ScalarProperty Name="test_address" ColumnName="test_address" />
  5933. <ScalarProperty Name="limited_minutes" ColumnName="limited_minutes" />
  5934. <ScalarProperty Name="test_end_date" ColumnName="test_end_date" />
  5935. <ScalarProperty Name="test_begin_date" ColumnName="test_begin_date" />
  5936. <ScalarProperty Name="test_name" ColumnName="test_name" />
  5937. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  5938. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5939. </MappingFragment>
  5940. </EntityTypeMapping>
  5941. </EntitySetMapping>
  5942. <EntitySetMapping Name="test_onlinetest_man">
  5943. <EntityTypeMapping TypeName="EMISOnlineContext.test_onlinetest_man">
  5944. <MappingFragment StoreEntitySet="test_onlinetest_man">
  5945. <ScalarProperty Name="filled" ColumnName="filled" />
  5946. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  5947. <ScalarProperty Name="relogin_count" ColumnName="relogin_count" />
  5948. <ScalarProperty Name="lastModified" ColumnName="lastModified" />
  5949. <ScalarProperty Name="warning_count" ColumnName="warning_count" />
  5950. <ScalarProperty Name="state" ColumnName="state" />
  5951. <ScalarProperty Name="limited_minutes" ColumnName="limited_minutes" />
  5952. <ScalarProperty Name="endTime" ColumnName="endTime" />
  5953. <ScalarProperty Name="beginTime" ColumnName="beginTime" />
  5954. <ScalarProperty Name="lastLoginTime" ColumnName="lastLoginTime" />
  5955. <ScalarProperty Name="loginCount" ColumnName="loginCount" />
  5956. <ScalarProperty Name="created_date" ColumnName="created_date" />
  5957. <ScalarProperty Name="created_by" ColumnName="created_by" />
  5958. <ScalarProperty Name="mobile_num" ColumnName="mobile_num" />
  5959. <ScalarProperty Name="sex" ColumnName="sex" />
  5960. <ScalarProperty Name="username" ColumnName="username" />
  5961. <ScalarProperty Name="name" ColumnName="name" />
  5962. <ScalarProperty Name="OrgId" ColumnName="OrgId" />
  5963. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5964. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5965. <ScalarProperty Name="ID" ColumnName="ID" />
  5966. </MappingFragment>
  5967. </EntityTypeMapping>
  5968. </EntitySetMapping>
  5969. <EntitySetMapping Name="test_onlinetest_manshow">
  5970. <EntityTypeMapping TypeName="EMISOnlineContext.test_onlinetest_manshow">
  5971. <MappingFragment StoreEntitySet="test_onlinetest_manshow">
  5972. <ScalarProperty Name="created_by" ColumnName="created_by" />
  5973. <ScalarProperty Name="created_date" ColumnName="created_date" />
  5974. <ScalarProperty Name="username" ColumnName="username" />
  5975. <ScalarProperty Name="orgname" ColumnName="orgname" />
  5976. <ScalarProperty Name="orgid" ColumnName="orgid" />
  5977. <ScalarProperty Name="user_id" ColumnName="user_id" />
  5978. <ScalarProperty Name="onlinetest_id" ColumnName="onlinetest_id" />
  5979. <ScalarProperty Name="ID" ColumnName="ID" />
  5980. </MappingFragment>
  5981. </EntityTypeMapping>
  5982. </EntitySetMapping>
  5983. <EntitySetMapping Name="test_paper">
  5984. <EntityTypeMapping TypeName="EMISOnlineContext.test_paper">
  5985. <MappingFragment StoreEntitySet="test_paper">
  5986. <ScalarProperty Name="question_setting_xml" ColumnName="question_setting_xml" />
  5987. <ScalarProperty Name="test_paper_parent_id" ColumnName="test_paper_parent_id" />
  5988. <ScalarProperty Name="question_setting" ColumnName="question_setting" />
  5989. <ScalarProperty Name="is_autogenerate" ColumnName="is_autogenerate" />
  5990. <ScalarProperty Name="is_dynamic" ColumnName="is_dynamic" />
  5991. <ScalarProperty Name="created_date" ColumnName="created_date" />
  5992. <ScalarProperty Name="created_by" ColumnName="created_by" />
  5993. <ScalarProperty Name="used_count" ColumnName="used_count" />
  5994. <ScalarProperty Name="is_converted" ColumnName="is_converted" />
  5995. <ScalarProperty Name="paper_score" ColumnName="paper_score" />
  5996. <ScalarProperty Name="Prority" ColumnName="Prority" />
  5997. <ScalarProperty Name="distributing_option" ColumnName="distributing_option" />
  5998. <ScalarProperty Name="vaild_end_date" ColumnName="vaild_end_date" />
  5999. <ScalarProperty Name="vaild_begin_date" ColumnName="vaild_begin_date" />
  6000. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6001. <ScalarProperty Name="question_update_date_max" ColumnName="question_update_date_max" />
  6002. <ScalarProperty Name="question_update_date_min" ColumnName="question_update_date_min" />
  6003. <ScalarProperty Name="test_method" ColumnName="test_method" />
  6004. <ScalarProperty Name="isTestOrSelfTest" ColumnName="isTestOrSelfTest" />
  6005. <ScalarProperty Name="difficulty_degree_maxvalue" ColumnName="difficulty_degree_maxvalue" />
  6006. <ScalarProperty Name="difficulty_degree_minvalue" ColumnName="difficulty_degree_minvalue" />
  6007. <ScalarProperty Name="used_count_max" ColumnName="used_count_max" />
  6008. <ScalarProperty Name="used_count_min" ColumnName="used_count_min" />
  6009. <ScalarProperty Name="error_percent" ColumnName="error_percent" />
  6010. <ScalarProperty Name="question_libary_set_id" ColumnName="question_libary_set_id" />
  6011. <ScalarProperty Name="is_open_answer" ColumnName="is_open_answer" />
  6012. <ScalarProperty Name="open_dept_set_id" ColumnName="open_dept_set_id" />
  6013. <ScalarProperty Name="knowledge_point_set_id" ColumnName="knowledge_point_set_id" />
  6014. <ScalarProperty Name="knowledge_type_set_id" ColumnName="knowledge_type_set_id" />
  6015. <ScalarProperty Name="note" ColumnName="note" />
  6016. <ScalarProperty Name="PaperName" ColumnName="PaperName" />
  6017. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  6018. </MappingFragment>
  6019. </EntityTypeMapping>
  6020. </EntitySetMapping>
  6021. <EntitySetMapping Name="test_paper_guide">
  6022. <EntityTypeMapping TypeName="EMISOnlineContext.test_paper_guide">
  6023. <MappingFragment StoreEntitySet="test_paper_guide">
  6024. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6025. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6026. <ScalarProperty Name="is_autogenerate" ColumnName="is_autogenerate" />
  6027. <ScalarProperty Name="is_dynamic" ColumnName="is_dynamic" />
  6028. <ScalarProperty Name="used_count" ColumnName="used_count" />
  6029. <ScalarProperty Name="is_converted" ColumnName="is_converted" />
  6030. <ScalarProperty Name="paper_score" ColumnName="paper_score" />
  6031. <ScalarProperty Name="Prority" ColumnName="Prority" />
  6032. <ScalarProperty Name="distributing_option" ColumnName="distributing_option" />
  6033. <ScalarProperty Name="vaild_end_date" ColumnName="vaild_end_date" />
  6034. <ScalarProperty Name="vaild_begin_date" ColumnName="vaild_begin_date" />
  6035. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6036. <ScalarProperty Name="question_update_date_max" ColumnName="question_update_date_max" />
  6037. <ScalarProperty Name="question_update_date_min" ColumnName="question_update_date_min" />
  6038. <ScalarProperty Name="get_question_method" ColumnName="get_question_method" />
  6039. <ScalarProperty Name="test_method" ColumnName="test_method" />
  6040. <ScalarProperty Name="isTestOrSelfTest" ColumnName="isTestOrSelfTest" />
  6041. <ScalarProperty Name="difficulty_degree_maxvalue" ColumnName="difficulty_degree_maxvalue" />
  6042. <ScalarProperty Name="difficulty_degree_minvalue" ColumnName="difficulty_degree_minvalue" />
  6043. <ScalarProperty Name="used_count_max" ColumnName="used_count_max" />
  6044. <ScalarProperty Name="used_count_min" ColumnName="used_count_min" />
  6045. <ScalarProperty Name="error_percent" ColumnName="error_percent" />
  6046. <ScalarProperty Name="question_libary_set_id" ColumnName="question_libary_set_id" />
  6047. <ScalarProperty Name="is_open_answer" ColumnName="is_open_answer" />
  6048. <ScalarProperty Name="open_dept_set_id" ColumnName="open_dept_set_id" />
  6049. <ScalarProperty Name="knowledge_point_set_id" ColumnName="knowledge_point_set_id" />
  6050. <ScalarProperty Name="knowledge_type_set_id" ColumnName="knowledge_type_set_id" />
  6051. <ScalarProperty Name="note" ColumnName="note" />
  6052. <ScalarProperty Name="modal_name" ColumnName="modal_name" />
  6053. <ScalarProperty Name="test_paper_guide_id" ColumnName="test_paper_guide_id" />
  6054. </MappingFragment>
  6055. </EntityTypeMapping>
  6056. </EntitySetMapping>
  6057. <EntitySetMapping Name="test_paper_question_set">
  6058. <EntityTypeMapping TypeName="EMISOnlineContext.test_paper_question_set">
  6059. <MappingFragment StoreEntitySet="test_paper_question_set">
  6060. <ScalarProperty Name="order" ColumnName="order" />
  6061. <ScalarProperty Name="questionXml" ColumnName="questionXml" />
  6062. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  6063. <ScalarProperty Name="test_paper_question_set_id" ColumnName="test_paper_question_set_id" />
  6064. </MappingFragment>
  6065. </EntityTypeMapping>
  6066. </EntitySetMapping>
  6067. <EntitySetMapping Name="test_paper_question_set_fortest">
  6068. <EntityTypeMapping TypeName="EMISOnlineContext.test_paper_question_set_fortest">
  6069. <MappingFragment StoreEntitySet="test_paper_question_set_fortest">
  6070. <ScalarProperty Name="order" ColumnName="order" />
  6071. <ScalarProperty Name="questionXml" ColumnName="questionXml" />
  6072. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  6073. <ScalarProperty Name="test_paper_question_set_id" ColumnName="test_paper_question_set_id" />
  6074. </MappingFragment>
  6075. </EntityTypeMapping>
  6076. </EntitySetMapping>
  6077. <EntitySetMapping Name="test_question">
  6078. <EntityTypeMapping TypeName="EMISOnlineContext.test_question">
  6079. <MappingFragment StoreEntitySet="test_question">
  6080. <ScalarProperty Name="test_question_ParentId" ColumnName="test_question_ParentId" />
  6081. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  6082. <ScalarProperty Name="filled" ColumnName="filled" />
  6083. <ScalarProperty Name="wrong_percent" ColumnName="wrong_percent" />
  6084. <ScalarProperty Name="score" ColumnName="score" />
  6085. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6086. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6087. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6088. <ScalarProperty Name="wrong_count" ColumnName="wrong_count" />
  6089. <ScalarProperty Name="right_percent" ColumnName="right_percent" />
  6090. <ScalarProperty Name="used_count" ColumnName="used_count" />
  6091. <ScalarProperty Name="test_question_libary_id" ColumnName="test_question_libary_id" />
  6092. <ScalarProperty Name="KeyWordIsAnd" ColumnName="KeyWordIsAnd" />
  6093. <ScalarProperty Name="note" ColumnName="note" />
  6094. <ScalarProperty Name="answers_note" ColumnName="answers_note" />
  6095. <ScalarProperty Name="is_order" ColumnName="is_order" />
  6096. <ScalarProperty Name="answers" ColumnName="answers" />
  6097. <ScalarProperty Name="difficulty_degree" ColumnName="difficulty_degree" />
  6098. <ScalarProperty Name="knowledge_point_id" ColumnName="knowledge_point_id" />
  6099. <ScalarProperty Name="knowledge_type_id" ColumnName="knowledge_type_id" />
  6100. <ScalarProperty Name="question_file_id" ColumnName="question_file_id" />
  6101. <ScalarProperty Name="content" ColumnName="content" />
  6102. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  6103. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6104. </MappingFragment>
  6105. </EntityTypeMapping>
  6106. </EntitySetMapping>
  6107. <EntitySetMapping Name="test_question_administrator">
  6108. <EntityTypeMapping TypeName="EMISOnlineContext.test_question_administrator">
  6109. <MappingFragment StoreEntitySet="test_question_administrator">
  6110. <ScalarProperty Name="username" ColumnName="username" />
  6111. <ScalarProperty Name="userid" ColumnName="userid" />
  6112. <ScalarProperty Name="test_question_libary_id" ColumnName="test_question_libary_id" />
  6113. <ScalarProperty Name="test_question_administrator_id" ColumnName="test_question_administrator_id" />
  6114. </MappingFragment>
  6115. </EntityTypeMapping>
  6116. </EntitySetMapping>
  6117. <EntitySetMapping Name="test_question_file">
  6118. <EntityTypeMapping TypeName="EMISOnlineContext.test_question_file">
  6119. <MappingFragment StoreEntitySet="test_question_file">
  6120. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6121. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6122. <ScalarProperty Name="note" ColumnName="note" />
  6123. <ScalarProperty Name="height" ColumnName="height" />
  6124. <ScalarProperty Name="width" ColumnName="width" />
  6125. <ScalarProperty Name="url" ColumnName="url" />
  6126. <ScalarProperty Name="file_id" ColumnName="file_id" />
  6127. </MappingFragment>
  6128. </EntityTypeMapping>
  6129. </EntitySetMapping>
  6130. <EntitySetMapping Name="test_question_keyword">
  6131. <EntityTypeMapping TypeName="EMISOnlineContext.test_question_keyword">
  6132. <MappingFragment StoreEntitySet="test_question_keyword">
  6133. <ScalarProperty Name="test_keyword_id" ColumnName="test_keyword_id" />
  6134. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6135. <ScalarProperty Name="test_question_keyword_id" ColumnName="test_question_keyword_id" />
  6136. </MappingFragment>
  6137. </EntityTypeMapping>
  6138. </EntitySetMapping>
  6139. <EntitySetMapping Name="test_question_libary">
  6140. <EntityTypeMapping TypeName="EMISOnlineContext.test_question_libary">
  6141. <MappingFragment StoreEntitySet="test_question_libary">
  6142. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  6143. <ScalarProperty Name="filled" ColumnName="filled" />
  6144. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6145. <ScalarProperty Name="userName" ColumnName="userName" />
  6146. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6147. <ScalarProperty Name="describe" ColumnName="describe" />
  6148. <ScalarProperty Name="ancestor_id" ColumnName="ancestor_id" />
  6149. <ScalarProperty Name="parent_id" ColumnName="parent_id" />
  6150. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6151. <ScalarProperty Name="owner_id" ColumnName="owner_id" />
  6152. <ScalarProperty Name="base_limited_group_id" ColumnName="base_limited_group_id" />
  6153. <ScalarProperty Name="note" ColumnName="note" />
  6154. <ScalarProperty Name="name" ColumnName="name" />
  6155. <ScalarProperty Name="test_question_libary_id" ColumnName="test_question_libary_id" />
  6156. </MappingFragment>
  6157. </EntityTypeMapping>
  6158. </EntitySetMapping>
  6159. <EntitySetMapping Name="test_question_provid_answer">
  6160. <EntityTypeMapping TypeName="EMISOnlineContext.test_question_provid_answer">
  6161. <MappingFragment StoreEntitySet="test_question_provid_answer">
  6162. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  6163. <ScalarProperty Name="filled" ColumnName="filled" />
  6164. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6165. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6166. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6167. <ScalarProperty Name="file_id" ColumnName="file_id" />
  6168. <ScalarProperty Name="order" ColumnName="order" />
  6169. <ScalarProperty Name="answer_name" ColumnName="answer_name" />
  6170. <ScalarProperty Name="provid_answer_id" ColumnName="provid_answer_id" />
  6171. </MappingFragment>
  6172. </EntityTypeMapping>
  6173. </EntitySetMapping>
  6174. <EntitySetMapping Name="v_question">
  6175. <EntityTypeMapping TypeName="EMISOnlineContext.v_question">
  6176. <MappingFragment StoreEntitySet="v_question">
  6177. <ScalarProperty Name="order_" ColumnName="order " />
  6178. <ScalarProperty Name="test_paper_id" ColumnName="test_paper_id" />
  6179. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  6180. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6181. <ScalarProperty Name="question_json" ColumnName="question_json" />
  6182. </MappingFragment>
  6183. </EntityTypeMapping>
  6184. </EntitySetMapping>
  6185. <EntitySetMapping Name="V_StudentEducationMissionClass">
  6186. <EntityTypeMapping TypeName="EMISOnlineContext.V_StudentEducationMissionClass">
  6187. <MappingFragment StoreEntitySet="V_StudentEducationMissionClass">
  6188. <ScalarProperty Name="TeacherID" ColumnName="TeacherID" />
  6189. <ScalarProperty Name="SchoolyearID" ColumnName="SchoolyearID" />
  6190. <ScalarProperty Name="UserID" ColumnName="UserID" />
  6191. <ScalarProperty Name="CoverUrl" ColumnName="CoverUrl" />
  6192. <ScalarProperty Name="CourseName" ColumnName="CourseName" />
  6193. <ScalarProperty Name="CoursematerialID" ColumnName="CoursematerialID" />
  6194. <ScalarProperty Name="EducationMissionClassName" ColumnName="EducationMissionClassName" />
  6195. <ScalarProperty Name="EducationMissionClassID" ColumnName="EducationMissionClassID" />
  6196. </MappingFragment>
  6197. </EntityTypeMapping>
  6198. </EntitySetMapping>
  6199. <EntitySetMapping Name="v_test_question">
  6200. <EntityTypeMapping TypeName="EMISOnlineContext.v_test_question">
  6201. <MappingFragment StoreEntitySet="v_test_question">
  6202. <ScalarProperty Name="wrong_percent" ColumnName="wrong_percent" />
  6203. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6204. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  6205. <ScalarProperty Name="filled" ColumnName="filled" />
  6206. <ScalarProperty Name="score" ColumnName="score" />
  6207. <ScalarProperty Name="wrong_count" ColumnName="wrong_count" />
  6208. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6209. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6210. <ScalarProperty Name="right_percent" ColumnName="right_percent" />
  6211. <ScalarProperty Name="used_count" ColumnName="used_count" />
  6212. <ScalarProperty Name="test_question_libary_id" ColumnName="test_question_libary_id" />
  6213. <ScalarProperty Name="note" ColumnName="note" />
  6214. <ScalarProperty Name="answers_note" ColumnName="answers_note" />
  6215. <ScalarProperty Name="is_order" ColumnName="is_order" />
  6216. <ScalarProperty Name="answers" ColumnName="answers" />
  6217. <ScalarProperty Name="difficulty_degree" ColumnName="difficulty_degree" />
  6218. <ScalarProperty Name="questione_lib_name" ColumnName="questione_lib_name" />
  6219. <ScalarProperty Name="question_type_name" ColumnName="question_type_name" />
  6220. <ScalarProperty Name="question_file_id" ColumnName="question_file_id" />
  6221. <ScalarProperty Name="content" ColumnName="content" />
  6222. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  6223. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6224. <ScalarProperty Name="rid" ColumnName="rid" />
  6225. </MappingFragment>
  6226. </EntityTypeMapping>
  6227. </EntitySetMapping>
  6228. <EntitySetMapping Name="VTestQestion">
  6229. <EntityTypeMapping TypeName="EMISOnlineContext.VTestQestion">
  6230. <MappingFragment StoreEntitySet="VTestQestion">
  6231. <ScalarProperty Name="wrong_percent" ColumnName="wrong_percent" />
  6232. <ScalarProperty Name="created_by" ColumnName="created_by" />
  6233. <ScalarProperty Name="time_of_filling" ColumnName="time_of_filling" />
  6234. <ScalarProperty Name="filled" ColumnName="filled" />
  6235. <ScalarProperty Name="score" ColumnName="score" />
  6236. <ScalarProperty Name="wrong_count" ColumnName="wrong_count" />
  6237. <ScalarProperty Name="created_date" ColumnName="created_date" />
  6238. <ScalarProperty Name="is_vaild" ColumnName="is_vaild" />
  6239. <ScalarProperty Name="right_percent" ColumnName="right_percent" />
  6240. <ScalarProperty Name="used_count" ColumnName="used_count" />
  6241. <ScalarProperty Name="test_question_libary_id" ColumnName="test_question_libary_id" />
  6242. <ScalarProperty Name="note" ColumnName="note" />
  6243. <ScalarProperty Name="answers_note" ColumnName="answers_note" />
  6244. <ScalarProperty Name="is_order" ColumnName="is_order" />
  6245. <ScalarProperty Name="answers" ColumnName="answers" />
  6246. <ScalarProperty Name="difficulty_degree" ColumnName="difficulty_degree" />
  6247. <ScalarProperty Name="questione_lib_name" ColumnName="questione_lib_name" />
  6248. <ScalarProperty Name="question_type_name" ColumnName="question_type_name" />
  6249. <ScalarProperty Name="question_file_id" ColumnName="question_file_id" />
  6250. <ScalarProperty Name="content" ColumnName="content" />
  6251. <ScalarProperty Name="base_question_type_id" ColumnName="base_question_type_id" />
  6252. <ScalarProperty Name="test_question_Id" ColumnName="test_question_Id" />
  6253. <ScalarProperty Name="rid" ColumnName="rid" />
  6254. </MappingFragment>
  6255. </EntityTypeMapping>
  6256. </EntitySetMapping>
  6257. <AssociationSetMapping Name="Sys_Role_Sys_FunctionCode" TypeName="EMISOnlineContext.Sys_Role_Sys_FunctionCode" StoreEntitySet="Sys_Role_Sys_FunctionCode">
  6258. <EndProperty Name="Sys_Role">
  6259. <ScalarProperty Name="RoleID" ColumnName="RoleID" />
  6260. </EndProperty>
  6261. <EndProperty Name="Sys_FunctionCode">
  6262. <ScalarProperty Name="FunctionCode" ColumnName="FunctionCode" />
  6263. </EndProperty>
  6264. </AssociationSetMapping>
  6265. </EntityContainerMapping>
  6266. </Mapping>
  6267. </edmx:Mappings>
  6268. </edmx:Runtime>
  6269. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  6270. <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2008/10/edmx">
  6271. <edmx:Connection>
  6272. <DesignerInfoPropertySet>
  6273. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  6274. </DesignerInfoPropertySet>
  6275. </edmx:Connection>
  6276. <edmx:Options>
  6277. <DesignerInfoPropertySet>
  6278. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  6279. <DesignerProperty Name="EnablePluralization" Value="False" />
  6280. <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
  6281. <DesignerProperty Name="ProcessDependentTemplatesOnSave" Value="True" />
  6282. <DesignerProperty Name="CodeGenerationStrategy" Value="无" />
  6283. </DesignerInfoPropertySet>
  6284. </edmx:Options>
  6285. <!-- Diagram content (shape and connector positions) -->
  6286. <edmx:Diagrams>
  6287. <Diagram Name="EMISOnlineContext" ZoomLevel="55" >
  6288. <EntityTypeShape EntityType="EMISOnlineContext.CF_Campus" Width="1.5" PointX="7.75" PointY="2.375" Height="3.2137866210937318" />
  6289. <EntityTypeShape EntityType="EMISOnlineContext.CF_Classmajor" Width="1.5" PointX="7.75" PointY="13.375" Height="3.9529630533854174" />
  6290. <EntityTypeShape EntityType="EMISOnlineContext.CF_College" Width="1.5" PointX="7.75" PointY="18.375" Height="3.3985807291666674" />
  6291. <EntityTypeShape EntityType="EMISOnlineContext.CF_Department" Width="1.5" PointX="10.75" PointY="12.25" Height="3.583374837239603" />
  6292. <EntityTypeShape EntityType="EMISOnlineContext.CF_Facultymajor" Width="1.5" PointX="12.75" PointY="18.375" Height="4.8769335937499818" />
  6293. <EntityTypeShape EntityType="EMISOnlineContext.CF_Grademajor" Width="1.5" PointX="0.75" PointY="23.375" Height="3.7681689453124818" />
  6294. <EntityTypeShape EntityType="EMISOnlineContext.CF_Recruitstudents" Width="1.5" PointX="2.75" PointY="23.375" Height="4.137757161458353" />
  6295. <EntityTypeShape EntityType="EMISOnlineContext.CF_Schoolyear" Width="1.5" PointX="22.75" PointY="9.375" Height="3.583374837239603" />
  6296. <EntityTypeShape EntityType="EMISOnlineContext.CF_Staff" Width="1.5" PointX="10.75" PointY="24.375" Height="5.800904134114603" />
  6297. <EntityTypeShape EntityType="EMISOnlineContext.CF_StaffProfile" Width="1.5" PointX="12.75" PointY="24.375" Height="5.0617277018229174" />
  6298. <EntityTypeShape EntityType="EMISOnlineContext.CF_Student" Width="1.5" PointX="14.75" PointY="24.375" Height="4.8769335937499818" />
  6299. <EntityTypeShape EntityType="EMISOnlineContext.CF_StudentContact" Width="1.5" PointX="4.75" PointY="25.375" Height="4.137757161458353" />
  6300. <EntityTypeShape EntityType="EMISOnlineContext.CF_StudentContrast" Width="1.5" PointX="24.75" PointY="8.375" Height="5.246521809895853" />
  6301. <EntityTypeShape EntityType="EMISOnlineContext.CF_StudentRole" Width="1.5" PointX="6.75" PointY="26.375" Height="2.2898160807291674" />
  6302. <EntityTypeShape EntityType="EMISOnlineContext.CF_University" Width="1.5" PointX="16.75" PointY="26.375" Height="2.8441984049479174" />
  6303. <EntityTypeShape EntityType="EMISOnlineContext.Coursework" Width="1.5" PointX="3" PointY="3.75" Height="5.8009041341146039" />
  6304. <EntityTypeShape EntityType="EMISOnlineContext.CourseworkAnswer" Width="1.5" PointX="5.25" PointY="5.75" Height="1.920227864583353" />
  6305. <EntityTypeShape EntityType="EMISOnlineContext.CourseworkResult" Width="1.5" PointX="8.25" PointY="8.25" Height="3.9529630533854174" />
  6306. <EntityTypeShape EntityType="EMISOnlineContext.EM_CourseChapter" Width="1.5" PointX="25.75" PointY="14.375" Height="3.2137866210937318" />
  6307. <EntityTypeShape EntityType="EMISOnlineContext.EM_CourseChapter_Video" Width="1.5" PointX="20" PointY="2.625" Height="1.5506396484374818" />
  6308. <EntityTypeShape EntityType="EMISOnlineContext.EM_Coursematerial" Width="1.5" PointX="10.75" PointY="16.625" Height="4.692139485677103" />
  6309. <EntityTypeShape EntityType="EMISOnlineContext.EM_CoursematerialExtend" Width="1.5" PointX="25.75" PointY="18.375" Height="2.2898160807291674" />
  6310. <EntityTypeShape EntityType="EMISOnlineContext.EM_CourseStudyStatus" Width="1.5" PointX="20" PointY="5" Height="2.6594042968749818" />
  6311. <EntityTypeShape EntityType="EMISOnlineContext.EM_CourseVideo" Width="1.5" PointX="17.75" PointY="3.625" Height="3.028992513020853" />
  6312. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationMission" Width="1.5" PointX="25.75" PointY="22.375" Height="2.8441984049479174" />
  6313. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationMissionClass" Width="1.5" PointX="20.75" PointY="15.75" Height="5.800904134114603" />
  6314. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationMissionClass_CF_Classmajor" Width="1.5" PointX="14.75" PointY="18.375" Height="1.365845540364603" />
  6315. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationMissionClassTeachingSetting" Width="1.5" PointX="25.75" PointY="26.375" Height="3.2137866210937318" />
  6316. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationSchedulingClass" Width="1.5" PointX="0.75" PointY="28.375" Height="2.6594042968749818" />
  6317. <EntityTypeShape EntityType="EMISOnlineContext.EM_EducationSchedulingClass_CF_Student" Width="1.5" PointX="17.75" PointY="15.375" Height="1.365845540364603" />
  6318. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutableFreeSelectionCouse" Width="1.5" PointX="22.75" PointY="2.75" Height="5.61611002604161" />
  6319. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutableFreeSelectionCouseTeachingSetting" Width="1.5" PointX="25" PointY="3.75" Height="3.3985807291666106" />
  6320. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutableOptionalCourse" Width="1.5" PointX="20.75" PointY="22.75" Height="5.6161100260416106" />
  6321. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutableOptionalCourseTeachingSetting" Width="1.5" PointX="23" PointY="23.75" Height="3.3985807291666106" />
  6322. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutablePlan" Width="1.5" PointX="26.75" PointY="8.375" Height="4.8769335937499818" />
  6323. <EntityTypeShape EntityType="EMISOnlineContext.EM_ExecutablePlanTeachingSetting" Width="1.5" PointX="22.75" PointY="28.375" Height="3.2137866210937318" />
  6324. <EntityTypeShape EntityType="EMISOnlineContext.EM_FreeSelectionCouse" Width="1.5" PointX="27.75" PointY="2.375" Height="4.692139485677103" />
  6325. <EntityTypeShape EntityType="EMISOnlineContext.EM_FTPVideo" Width="1.5" PointX="27.75" PointY="14.375" Height="2.6594042968749818" />
  6326. <EntityTypeShape EntityType="EMISOnlineContext.EM_MissionClassTeacher" Width="1.5" PointX="23" PointY="17.125" Height="2.8441984049478606" />
  6327. <EntityTypeShape EntityType="EMISOnlineContext.EM_OptionalCoursePlan" Width="1.5" PointX="27.75" PointY="18.375" Height="5.4313159179687318" />
  6328. <EntityTypeShape EntityType="EMISOnlineContext.EM_SpecialtyCourse" Width="1.5" PointX="13" PointY="10.75" Height="6.5400805664062318" />
  6329. <EntityTypeShape EntityType="EMISOnlineContext.EM_SpecialtyCourseTeachingSetting" Width="1.5" PointX="15.25" PointY="12.375" Height="3.3985807291666106" />
  6330. <EntityTypeShape EntityType="EMISOnlineContext.ER_ScoreRule" Width="1.5" PointX="18.75" PointY="29.375" Height="2.474610188802103" />
  6331. <EntityTypeShape EntityType="EMISOnlineContext.ER_TeacherScore" Width="1.5" PointX="27.75" PointY="25.375" Height="2.8441984049479174" />
  6332. <EntityTypeShape EntityType="EMISOnlineContext.Exam_Log" Width="1.5" PointX="27.75" PointY="29.375" Height="2.1050219726562318" />
  6333. <EntityTypeShape EntityType="EMISOnlineContext.ExamineeAnswer" Width="1.5" PointX="22.75" PointY="14.375" Height="1.920227864583353" />
  6334. <EntityTypeShape EntityType="EMISOnlineContext.ExamPaper" Width="1.5" PointX="2.75" PointY="30.375" Height="2.8441984049479174" />
  6335. <EntityTypeShape EntityType="EMISOnlineContext.ExamResult" Width="1.5" PointX="5.25" PointY="10.375" Height="5.6161100260416106" />
  6336. <EntityTypeShape EntityType="EMISOnlineContext.ExamResult_backup_20120913" Width="1.5" PointX="4.75" PointY="30.375" Height="4.137757161458353" />
  6337. <EntityTypeShape EntityType="EMISOnlineContext.ExamSetting_Examiner" Width="1.5" PointX="28.75" PointY="8.375" Height="2.2898160807291674" />
  6338. <EntityTypeShape EntityType="EMISOnlineContext.ExamWarning" Width="1.5" PointX="6.75" PointY="30.375" Height="2.2898160807291674" />
  6339. <EntityTypeShape EntityType="EMISOnlineContext.MSreplication_objects" Width="1.5" PointX="12.75" PointY="30.375" Height="2.1050219726562318" />
  6340. <EntityTypeShape EntityType="EMISOnlineContext.MSreplication_subscriptions" Width="1.5" PointX="14.75" PointY="30.375" Height="3.583374837239603" />
  6341. <EntityTypeShape EntityType="EMISOnlineContext.MSsavedforeignkeycolumns" Width="1.5" PointX="24.75" PointY="30.375" Height="2.2898160807291674" />
  6342. <EntityTypeShape EntityType="EMISOnlineContext.MSsavedforeignkeyextendedproperties" Width="1.5" PointX="29.75" PointY="2.375" Height="1.920227864583353" />
  6343. <EntityTypeShape EntityType="EMISOnlineContext.MSsavedforeignkeys" Width="1.5" PointX="8.75" PointY="31.375" Height="3.2137866210937318" />
  6344. <EntityTypeShape EntityType="EMISOnlineContext.MSsnapshotdeliveryprogress" Width="1.5" PointX="29.75" PointY="5.375" Height="1.7354337565104174" />
  6345. <EntityTypeShape EntityType="EMISOnlineContext.MSsubscription_agents" Width="1.5" PointX="29.75" PointY="12.375" Height="4.137757161458353" />
  6346. <EntityTypeShape EntityType="EMISOnlineContext.Sys_Dictionary" Width="1.5" PointX="29.75" PointY="17.375" Height="1.920227864583353" />
  6347. <EntityTypeShape EntityType="EMISOnlineContext.Sys_DictionaryItem" Width="1.5" PointX="29.75" PointY="20.375" Height="2.474610188802103" />
  6348. <EntityTypeShape EntityType="EMISOnlineContext.Sys_FunctionCode" Width="1.5" PointX="15.75" PointY="20.5" Height="2.1050219726562318" />
  6349. <EntityTypeShape EntityType="EMISOnlineContext.Sys_LoginCount" Width="1.5" PointX="29.75" PointY="24.375" Height="1.7354337565104174" />
  6350. <EntityTypeShape EntityType="EMISOnlineContext.Sys_MailVerifyCode" Width="1.5" PointX="29.75" PointY="27.375" Height="2.2898160807291674" />
  6351. <EntityTypeShape EntityType="EMISOnlineContext.Sys_Menu" Width="1.5" PointX="18" PointY="17.75" Height="3.3985807291666106" />
  6352. <EntityTypeShape EntityType="EMISOnlineContext.Sys_Role" Width="1.5" PointX="18" PointY="22" Height="3.3985807291666106" />
  6353. <EntityTypeShape EntityType="EMISOnlineContext.Sys_User" Width="1.5" PointX="29.75" PointY="31.375" Height="2.6594042968749818" />
  6354. <EntityTypeShape EntityType="EMISOnlineContext.Sys_User_Sys_Role" Width="1.5" PointX="22.75" PointY="21.375" Height="1.365845540364603" />
  6355. <EntityTypeShape EntityType="EMISOnlineContext.test_base_param" Width="1.5" PointX="8" PointY="22.5" Height="2.2898160807291106" />
  6356. <EntityTypeShape EntityType="EMISOnlineContext.test_base_param_type" Width="1.5" PointX="5.75" PointY="22.75" Height="1.7354337565103606" />
  6357. <EntityTypeShape EntityType="EMISOnlineContext.test_base_question_type" Width="1.5" PointX="10.75" PointY="0.75" Height="1.920227864583353" />
  6358. <EntityTypeShape EntityType="EMISOnlineContext.test_comm_param_set" Width="1.5" PointX="20" PointY="12.5" Height="1.7354337565103606" />
  6359. <EntityTypeShape EntityType="EMISOnlineContext.test_comm_set" Width="1.5" PointX="17.75" PointY="12.625" Height="1.5506396484374818" />
  6360. <EntityTypeShape EntityType="EMISOnlineContext.test_exchange" Width="1.5" PointX="30.75" PointY="8.375" Height="3.028992513020853" />
  6361. <EntityTypeShape EntityType="EMISOnlineContext.test_keyword" Width="1.5" PointX="15.75" PointY="9.5" Height="1.7354337565103606" />
  6362. <EntityTypeShape EntityType="EMISOnlineContext.test_onlinetest" Width="1.5" PointX="3" PointY="10.75" Height="8.2032275390624783" />
  6363. <EntityTypeShape EntityType="EMISOnlineContext.test_onlinetest_man" Width="1.5" PointX="20.75" PointY="32.375" Height="4.8769335937499818" />
  6364. <EntityTypeShape EntityType="EMISOnlineContext.test_onlinetest_manshow" Width="1.5" PointX="5.25" PointY="16.75" Height="2.6594042968749818" />
  6365. <EntityTypeShape EntityType="EMISOnlineContext.test_paper" Width="1.5" PointX="0.75" PointY="9.125" Height="7.6488452148437887" />
  6366. <EntityTypeShape EntityType="EMISOnlineContext.test_paper_guide" Width="1.5" PointX="26.75" PointY="32.375" Height="6.5400805664063455" />
  6367. <EntityTypeShape EntityType="EMISOnlineContext.test_paper_question_set" Width="1.5" PointX="3" PointY="20.125" Height="1.920227864583353" />
  6368. <EntityTypeShape EntityType="EMISOnlineContext.test_paper_question_set_fortest" Width="1.5" PointX="31.75" PointY="2.375" Height="1.7354337565103606" />
  6369. <EntityTypeShape EntityType="EMISOnlineContext.test_question" Width="1.5" PointX="13" PointY="2.75" Height="5.9856982421875955" />
  6370. <EntityTypeShape EntityType="EMISOnlineContext.test_question_administrator" Width="1.5" PointX="31.75" PointY="5.375" Height="1.7354337565104743" />
  6371. <EntityTypeShape EntityType="EMISOnlineContext.test_question_file" Width="1.5" PointX="10.75" PointY="4.375" Height="2.6594042968749818" />
  6372. <EntityTypeShape EntityType="EMISOnlineContext.test_question_keyword" Width="1.5" PointX="18" PointY="9.5" Height="1.7354337565104743" />
  6373. <EntityTypeShape EntityType="EMISOnlineContext.test_question_libary" Width="1.5" PointX="31.75" PointY="12.375" Height="3.583374837239603" />
  6374. <EntityTypeShape EntityType="EMISOnlineContext.test_question_provid_answer" Width="1.5" PointX="15.25" PointY="4.25" Height="3.028992513020853" />
  6375. <EntityTypeShape EntityType="EMISOnlineContext.v_question" Width="1.5" PointX="10.75" PointY="33.375" Height="1.920227864583353" />
  6376. <EntityTypeShape EntityType="EMISOnlineContext.V_StudentEducationMissionClass" Width="1.5" PointX="31.75" PointY="17.375" Height="2.474610188802103" />
  6377. <EntityTypeShape EntityType="EMISOnlineContext.v_test_question" Width="1.5" PointX="16.75" PointY="33.375" Height="5.246521809895853" />
  6378. <EntityTypeShape EntityType="EMISOnlineContext.VTestQestion" Width="1.5" PointX="31.75" PointY="21.375" Height="5.246521809895853" />
  6379. <AssociationConnector Association="EMISOnlineContext.FK_EM_SpecialtyCourse_CF_Department" >
  6380. <ConnectorPoint PointX="12.25" PointY="14.041687418619802" />
  6381. <ConnectorPoint PointX="13" PointY="14.041687418619802" />
  6382. </AssociationConnector>
  6383. <AssociationConnector Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO" >
  6384. <ConnectorPoint PointX="4.5" PointY="8.9004520670573015" />
  6385. <ConnectorPoint PointX="8.25" PointY="8.9004520670573015" />
  6386. </AssociationConnector>
  6387. <AssociationConnector Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_COURSEWO333" >
  6388. <ConnectorPoint PointX="4.5" PointY="6.7101139322916765" />
  6389. <ConnectorPoint PointX="5.25" PointY="6.7101139322916765" />
  6390. </AssociationConnector>
  6391. <AssociationConnector Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI" >
  6392. <ConnectorPoint PointX="2.25" PointY="9.3379520670573015" />
  6393. <ConnectorPoint PointX="3" PointY="9.3379520670573015" />
  6394. </AssociationConnector>
  6395. <AssociationConnector Association="EMISOnlineContext.FK_COURSEWO_REFERENCE_EX_EXAMI2" >
  6396. <ConnectorPoint PointX="2.25" PointY="9.9629520670573015" />
  6397. <ConnectorPoint PointX="8.25" PointY="9.9629520670573015" />
  6398. </AssociationConnector>
  6399. <AssociationConnector Association="EMISOnlineContext.FK_EM_COURS_REFERENCE_EM_COURS_Video" >
  6400. <ConnectorPoint PointX="19.25" PointY="3.9003198242187409" />
  6401. <ConnectorPoint PointX="20" PointY="3.9003198242187409" />
  6402. </AssociationConnector>
  6403. <AssociationConnector Association="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_COURS" >
  6404. <ConnectorPoint PointX="12.25" PointY="16.957540283203116" />
  6405. <ConnectorPoint PointX="13" PointY="16.957540283203116" />
  6406. </AssociationConnector>
  6407. <AssociationConnector Association="EMISOnlineContext.FK_EM_CourseStudyStatus_REFERENCE_EM_CourseVideo" >
  6408. <ConnectorPoint PointX="19.25" PointY="5.8269962565104265" />
  6409. <ConnectorPoint PointX="20" PointY="5.8269962565104265" />
  6410. </AssociationConnector>
  6411. <AssociationConnector Association="EMISOnlineContext.FK_EM_MissionClassTeacher_REFERENCE_EM_EducationMissionClass" >
  6412. <ConnectorPoint PointX="22.25" PointY="18.54709920247393" />
  6413. <ConnectorPoint PointX="23" PointY="18.54709920247393" />
  6414. </AssociationConnector>
  6415. <AssociationConnector Association="EMISOnlineContext.FK_EM_ExecutableFreeSelectionCouseTeachingSetting_REFERENCE_EM_ExecutableFreeSelectionCouse" >
  6416. <ConnectorPoint PointX="24.25" PointY="5.4492903645833053" />
  6417. <ConnectorPoint PointX="25" PointY="5.4492903645833053" />
  6418. </AssociationConnector>
  6419. <AssociationConnector Association="EMISOnlineContext.FK_EM_ExecutableOptionalCourseTeachingSetting_REFERENCE_EM_ExecutableOptionalCourse" >
  6420. <ConnectorPoint PointX="22.25" PointY="25.449290364583305" />
  6421. <ConnectorPoint PointX="23" PointY="25.449290364583305" />
  6422. </AssociationConnector>
  6423. <AssociationConnector Association="EMISOnlineContext.FK_EM_SPECI_REFERENCE_EM_SPECI" >
  6424. <ConnectorPoint PointX="14.5" PointY="14.074290364583305" />
  6425. <ConnectorPoint PointX="15.25" PointY="14.074290364583305" />
  6426. </AssociationConnector>
  6427. <AssociationConnector Association="EMISOnlineContext.FK_EXAMRESU_REFERENCE_TEST_ONL" >
  6428. <ConnectorPoint PointX="4.5" PointY="13.370555013020805" />
  6429. <ConnectorPoint PointX="5.25" PointY="13.370555013020805" />
  6430. </AssociationConnector>
  6431. <AssociationConnector Association="EMISOnlineContext.FK_SYS_MENU_REFERENCE_SYS_FUNC" >
  6432. <ConnectorPoint PointX="17.25" PointY="20.824290364583305" />
  6433. <ConnectorPoint PointX="18" PointY="20.824290364583305" />
  6434. </AssociationConnector>
  6435. <AssociationConnector Association="EMISOnlineContext.fk_base_param2baseparent" >
  6436. <ConnectorPoint PointX="7.25" PointY="23.61771687825518" />
  6437. <ConnectorPoint PointX="8" PointY="23.61771687825518" />
  6438. </AssociationConnector>
  6439. <AssociationConnector Association="EMISOnlineContext.fk_testquestions2questiontype" >
  6440. <ConnectorPoint PointX="12.25" PointY="1.7101139322916765" />
  6441. <ConnectorPoint PointX="13.75" PointY="1.7101139322916765" />
  6442. <ConnectorPoint PointX="13.75" PointY="2.75" />
  6443. </AssociationConnector>
  6444. <AssociationConnector Association="EMISOnlineContext.fk_commbaseset2commset" >
  6445. <ConnectorPoint PointX="19.25" PointY="13.400319824218741" />
  6446. <ConnectorPoint PointX="20" PointY="13.400319824218741" />
  6447. </AssociationConnector>
  6448. <AssociationConnector Association="EMISOnlineContext.fk_question_type_keyword" >
  6449. <ConnectorPoint PointX="17.25" PointY="10.36771687825518" />
  6450. <ConnectorPoint PointX="18" PointY="10.36771687825518" />
  6451. </AssociationConnector>
  6452. <AssociationConnector Association="EMISOnlineContext.FK_TEST_ONL_REFERENCE_TEST_SHOW" >
  6453. <ConnectorPoint PointX="4.5" PointY="17.851613769531241" />
  6454. <ConnectorPoint PointX="5.25" PointY="17.851613769531241" />
  6455. </AssociationConnector>
  6456. <AssociationConnector Association="EMISOnlineContext.fk_test_onlinetest_test_paper_id" >
  6457. <ConnectorPoint PointX="2.25" PointY="13.761922607421894" />
  6458. <ConnectorPoint PointX="3" PointY="13.761922607421894" />
  6459. </AssociationConnector>
  6460. <AssociationConnector Association="EMISOnlineContext.fk_paperquestion_2Paper" >
  6461. <ConnectorPoint PointX="1.5" PointY="16.773845214843789" />
  6462. <ConnectorPoint PointX="1.5" PointY="21.085113932291677" />
  6463. <ConnectorPoint PointX="3" PointY="21.085113932291677" />
  6464. </AssociationConnector>
  6465. <AssociationConnector Association="EMISOnlineContext.fk_question_2questionfile" >
  6466. <ConnectorPoint PointX="12.25" PointY="5.7047021484374909" />
  6467. <ConnectorPoint PointX="13" PointY="5.7047021484374909" />
  6468. </AssociationConnector>
  6469. <AssociationConnector Association="EMISOnlineContext.FK_TEST_QUE_REFERENCE_TEST_QUE" >
  6470. <ConnectorPoint PointX="14.5" PointY="5.7644962565104265" />
  6471. <ConnectorPoint PointX="15.25" PointY="5.7644962565104265" />
  6472. </AssociationConnector>
  6473. <AssociationConnector Association="EMISOnlineContext.fk_answer2questionfile" >
  6474. <ConnectorPoint PointX="12.25" PointY="5.0085990742186954" />
  6475. <ConnectorPoint PointX="12.75" PointY="5.0085990742186954" />
  6476. <ConnectorPoint PointX="12.75" PointY="2.5" />
  6477. <ConnectorPoint PointX="13.666666666666666" PointY="2.4999999999999996" />
  6478. <ConnectorPoint PointX="13.833333333333334" PointY="2.5" />
  6479. <ConnectorPoint PointX="16" PointY="2.5" />
  6480. <ConnectorPoint PointX="16" PointY="4.25" />
  6481. </AssociationConnector>
  6482. <AssociationConnector Association="EMISOnlineContext.Sys_Role_Sys_FunctionCode" >
  6483. <ConnectorPoint PointX="17.25" PointY="22.302510986328116" />
  6484. <ConnectorPoint PointX="18" PointY="22.302510986328116" />
  6485. </AssociationConnector>
  6486. </Diagram>
  6487. </edmx:Diagrams>
  6488. </edmx:Designer>
  6489. </edmx:Edmx>