| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353 |
- <?xml version="1.0" encoding="utf-8"?>
- <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
- <!-- EF Runtime content -->
- <edmx:Runtime>
- <!-- SSDL content -->
- <edmx:StorageModels>
- <Schema Namespace="DataCenterModel.Store" Alias="Self" Provider="MySql.Data.MySqlClient" ProviderManifestToken="5.5" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
- <EntityContainer Name="DataCenterModelStoreContainer">
- <EntitySet Name="t_account" EntityType="DataCenterModel.Store.t_account" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_account_active_code" EntityType="DataCenterModel.Store.t_account_active_code" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_account_login_auth_response_cookie" EntityType="DataCenterModel.Store.t_account_login_auth_response_cookie" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_account_tutorial_status_info" EntityType="DataCenterModel.Store.t_account_tutorial_status_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_active_code" EntityType="DataCenterModel.Store.t_active_code" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_attribute" EntityType="DataCenterModel.Store.t_attribute" store:Type="Tables" store:Schema="tanghai" store:Name="t_attribute">
- <DefiningQuery>SELECT
- `t_attribute`.`guid`,
- `t_attribute`.`id`,
- `t_attribute`.`sub_id`,
- `t_attribute`.`value`,
- `t_attribute`.`attr_type`,
- `t_attribute`.`create_time`,
- `t_attribute`.`modify_time`
- FROM `t_attribute` AS `t_attribute`</DefiningQuery>
- </EntitySet>
- <EntitySet Name="t_auction_item" EntityType="DataCenterModel.Store.t_auction_item" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_available_map" EntityType="DataCenterModel.Store.t_available_map" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_battle_gameover_statistic" EntityType="DataCenterModel.Store.t_battle_gameover_statistic" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_battle_kill_detail" EntityType="DataCenterModel.Store.t_battle_kill_detail" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_battle_summary" EntityType="DataCenterModel.Store.t_battle_summary" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_beginner_group_config" EntityType="DataCenterModel.Store.t_beginner_group_config" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_beginner_group_cong" EntityType="DataCenterModel.Store.t_beginner_group_cong" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_beginner_group_event" EntityType="DataCenterModel.Store.t_beginner_group_event" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_celebration_reward" EntityType="DataCenterModel.Store.t_celebration_reward" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_activity" EntityType="DataCenterModel.Store.t_challenge_activity" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_activity_schedule" EntityType="DataCenterModel.Store.t_challenge_activity_schedule" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_character_elect_hero" EntityType="DataCenterModel.Store.t_challenge_character_elect_hero" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_elect_hero_stat" EntityType="DataCenterModel.Store.t_challenge_elect_hero_stat" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_exp_buff" EntityType="DataCenterModel.Store.t_challenge_exp_buff" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_game_player" EntityType="DataCenterModel.Store.t_challenge_game_player" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_guess_game_over" EntityType="DataCenterModel.Store.t_challenge_guess_game_over" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_guess_reward" EntityType="DataCenterModel.Store.t_challenge_guess_reward" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_kfz_hero" EntityType="DataCenterModel.Store.t_challenge_kfz_hero" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_statue_info" EntityType="DataCenterModel.Store.t_challenge_statue_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_challenge_task_reward" EntityType="DataCenterModel.Store.t_challenge_task_reward" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character" EntityType="DataCenterModel.Store.t_character" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_achievement" EntityType="DataCenterModel.Store.t_character_achievement" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_appearance" EntityType="DataCenterModel.Store.t_character_appearance" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_assets" EntityType="DataCenterModel.Store.t_character_assets" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_default_fighting_options" EntityType="DataCenterModel.Store.t_character_default_fighting_options" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_info" EntityType="DataCenterModel.Store.t_character_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_item" EntityType="DataCenterModel.Store.t_character_item" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_options" EntityType="DataCenterModel.Store.t_character_options" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_character_questionnaire" EntityType="DataCenterModel.Store.t_character_questionnaire" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_charge_list" EntityType="DataCenterModel.Store.t_charge_list" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_city_buff" EntityType="DataCenterModel.Store.t_city_buff" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_city_position" EntityType="DataCenterModel.Store.t_city_position" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_city_task_finish_sub_state" EntityType="DataCenterModel.Store.t_city_task_finish_sub_state" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_city_task_info" EntityType="DataCenterModel.Store.t_city_task_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_client_config" EntityType="DataCenterModel.Store.t_client_config" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_common_spell" EntityType="DataCenterModel.Store.t_common_spell" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_daily_online_time" EntityType="DataCenterModel.Store.t_daily_online_time" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_employ_notice_status" EntityType="DataCenterModel.Store.t_employ_notice_status" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_employ_relation" EntityType="DataCenterModel.Store.t_employ_relation" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_employee_info" EntityType="DataCenterModel.Store.t_employee_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_employee_notice" EntityType="DataCenterModel.Store.t_employee_notice" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_employer_notice" EntityType="DataCenterModel.Store.t_employer_notice" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_fighting_evaluation_info" EntityType="DataCenterModel.Store.t_fighting_evaluation_info" store:Type="Tables" store:Schema="tanghai" store:Name="t_fighting_evaluation_info">
- <DefiningQuery>SELECT
- `t_fighting_evaluation_info`.`character_guid`,
- `t_fighting_evaluation_info`.`evaluate_player_guid`,
- `t_fighting_evaluation_info`.`evaluate_type`,
- `t_fighting_evaluation_info`.`evaluate_time`,
- `t_fighting_evaluation_info`.`create_time`,
- `t_fighting_evaluation_info`.`modify_time`
- FROM `t_fighting_evaluation_info` AS `t_fighting_evaluation_info`</DefiningQuery>
- </EntitySet>
- <EntitySet Name="t_friend" EntityType="DataCenterModel.Store.t_friend" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_friend_group" EntityType="DataCenterModel.Store.t_friend_group" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_game_hero_use_info" EntityType="DataCenterModel.Store.t_game_hero_use_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_game_info" EntityType="DataCenterModel.Store.t_game_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_gs_code" EntityType="DataCenterModel.Store.t_gs_code" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_color_scheme" EntityType="DataCenterModel.Store.t_hero_color_scheme" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_level_state" EntityType="DataCenterModel.Store.t_hero_level_state" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_pet" EntityType="DataCenterModel.Store.t_hero_pet" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_suggest_equipment" EntityType="DataCenterModel.Store.t_hero_suggest_equipment" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_talent_info" EntityType="DataCenterModel.Store.t_hero_talent_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_talent_info_sub_state" EntityType="DataCenterModel.Store.t_hero_talent_info_sub_state" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_hero_unlock_hero" EntityType="DataCenterModel.Store.t_hero_unlock_hero" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_illegal_term_rules" EntityType="DataCenterModel.Store.t_illegal_term_rules" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_item_roll_list" EntityType="DataCenterModel.Store.t_item_roll_list" store:Type="Tables" store:Schema="tanghai" store:Name="t_item_roll_list">
- <DefiningQuery>SELECT
- `t_item_roll_list`.`item_roll_guid`,
- `t_item_roll_list`.`character_guid`,
- `t_item_roll_list`.`item_guid`,
- `t_item_roll_list`.`item_id`,
- `t_item_roll_list`.`item_name`,
- `t_item_roll_list`.`source`,
- `t_item_roll_list`.`is_bound`,
- `t_item_roll_list`.`attributes`,
- `t_item_roll_list`.`buy_time`,
- `t_item_roll_list`.`expire_time`,
- `t_item_roll_list`.`buy_type`,
- `t_item_roll_list`.`pay_type`,
- `t_item_roll_list`.`pay_yuanbao`,
- `t_item_roll_list`.`free_yuanbao`,
- `t_item_roll_list`.`previous_count`,
- `t_item_roll_list`.`previous_location`,
- `t_item_roll_list`.`count`,
- `t_item_roll_list`.`location`,
- `t_item_roll_list`.`change_type`,
- `t_item_roll_list`.`billing_state`,
- `t_item_roll_list`.`charge_gold_balance`,
- `t_item_roll_list`.`free_gold_balance`,
- `t_item_roll_list`.`modify_time`,
- `t_item_roll_list`.`create_time`
- FROM `t_item_roll_list` AS `t_item_roll_list`</DefiningQuery>
- </EntitySet>
- <EntitySet Name="t_login_reward" EntityType="DataCenterModel.Store.t_login_reward" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_mail" EntityType="DataCenterModel.Store.t_mail" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_mail_item" EntityType="DataCenterModel.Store.t_mail_item" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_mall_items_sales_count" EntityType="DataCenterModel.Store.t_mall_items_sales_count" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_map_play_info" EntityType="DataCenterModel.Store.t_map_play_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_meta" EntityType="DataCenterModel.Store.t_meta" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_offline_message" EntityType="DataCenterModel.Store.t_offline_message" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_player_offline_message" EntityType="DataCenterModel.Store.t_player_offline_message" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_pve_equipment_scheme" EntityType="DataCenterModel.Store.t_pve_equipment_scheme" store:Type="Tables" store:Schema="tanghai" store:Name="t_pve_equipment_scheme">
- <DefiningQuery>SELECT
- `t_pve_equipment_scheme`.`character_guid`,
- `t_pve_equipment_scheme`.`scheme_id`,
- `t_pve_equipment_scheme`.`scheme_name`,
- `t_pve_equipment_scheme`.`slot0_item_guid`,
- `t_pve_equipment_scheme`.`slot1_item_guid`,
- `t_pve_equipment_scheme`.`slot2_item_guid`,
- `t_pve_equipment_scheme`.`slot3_item_guid`,
- `t_pve_equipment_scheme`.`slot4_item_guid`,
- `t_pve_equipment_scheme`.`slot5_item_guid`,
- `t_pve_equipment_scheme`.`slot6_item_guid`,
- `t_pve_equipment_scheme`.`slot7_item_guid`,
- `t_pve_equipment_scheme`.`slot8_item_guid`,
- `t_pve_equipment_scheme`.`slot9_item_guid`,
- `t_pve_equipment_scheme`.`create_time`,
- `t_pve_equipment_scheme`.`modify_time`
- FROM `t_pve_equipment_scheme` AS `t_pve_equipment_scheme`</DefiningQuery>
- </EntitySet>
- <EntitySet Name="t_pve_equipment_strength" EntityType="DataCenterModel.Store.t_pve_equipment_strength" store:Type="Tables" store:Schema="tanghai" store:Name="t_pve_equipment_strength">
- <DefiningQuery>SELECT
- `t_pve_equipment_strength`.`guid`,
- `t_pve_equipment_strength`.`strength_lv`,
- `t_pve_equipment_strength`.`strength_value`,
- `t_pve_equipment_strength`.`create_time`,
- `t_pve_equipment_strength`.`modify_time`
- FROM `t_pve_equipment_strength` AS `t_pve_equipment_strength`</DefiningQuery>
- </EntitySet>
- <EntitySet Name="t_questionnaire" EntityType="DataCenterModel.Store.t_questionnaire" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_roll_log" EntityType="DataCenterModel.Store.t_roll_log" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_rune_scheme" EntityType="DataCenterModel.Store.t_rune_scheme" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_social_group_basic" EntityType="DataCenterModel.Store.t_social_group_basic" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_social_group_manager" EntityType="DataCenterModel.Store.t_social_group_manager" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_social_group_member" EntityType="DataCenterModel.Store.t_social_group_member" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_title_info" EntityType="DataCenterModel.Store.t_title_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_tran_log" EntityType="DataCenterModel.Store.t_tran_log" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_tutorial" EntityType="DataCenterModel.Store.t_tutorial" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_tutorial_status_info" EntityType="DataCenterModel.Store.t_tutorial_status_info" store:Type="Tables" Schema="tanghai" />
- <EntitySet Name="t_world_character" EntityType="DataCenterModel.Store.t_world_character" store:Type="Tables" Schema="tanghai" />
- </EntityContainer>
- <EntityType Name="t_account">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="account_guid" Type="ubigint" />
- <Property Name="sessionkey" Type="blob" />
- <Property Name="v" Type="varchar" MaxLength="100" />
- <Property Name="s" Type="varchar" MaxLength="100" />
- <Property Name="active_code" Type="varchar" MaxLength="100" />
- <Property Name="active_code_used" Type="bool" />
- <Property Name="first_char_guid" Type="ubigint" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- <Property Name="gm_level" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="t_account_active_code">
- <Key>
- <PropertyRef Name="account" />
- <PropertyRef Name="gain_active_codes" />
- </Key>
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="gain_active_codes" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_account_login_auth_response_cookie">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="aid" Type="varchar" MaxLength="100" />
- <Property Name="ssn" Type="varchar" MaxLength="100" />
- <Property Name="gamepoint" Type="varchar" MaxLength="10" />
- <Property Name="balance" Type="varchar" MaxLength="10" />
- <Property Name="sn" Type="varchar" MaxLength="40" />
- <Property Name="user_type" Type="varchar" MaxLength="5" />
- <Property Name="otpstat" Type="varchar" MaxLength="5" />
- <Property Name="otpuptime" Type="varchar" MaxLength="20" />
- <Property Name="infosafe" Type="varchar" MaxLength="5" />
- <Property Name="phonestat" Type="varchar" MaxLength="5" />
- <Property Name="ppcstat" Type="varchar" MaxLength="5" />
- <Property Name="ppccoord" Type="varchar" MaxLength="20" />
- <Property Name="mppstat" Type="varchar" MaxLength="5" />
- <Property Name="rnstat" Type="varchar" MaxLength="10" />
- <Property Name="regtime" Type="varchar" MaxLength="10" />
- <Property Name="mobileno" Type="varchar" MaxLength="20" />
- <Property Name="need_activate_game" Type="varchar" MaxLength="5" />
- <Property Name="game_flag" Type="varchar" MaxLength="5" />
- <Property Name="deactivated" Type="varchar" MaxLength="5" />
- <Property Name="uidcount" Type="varchar" MaxLength="5" />
- <Property Name="newtm" Type="varchar" MaxLength="20" />
- <Property Name="vipstatus" Type="varchar" MaxLength="5" />
- <Property Name="is_vip_phone_trusty" Type="varchar" MaxLength="5" />
- <Property Name="is_vip_addr_trusty" Type="varchar" MaxLength="5" />
- <Property Name="real_name_flag" Type="varchar" MaxLength="5" />
- <Property Name="mobileisactivated" Type="varchar" MaxLength="5" />
- <Property Name="secu_info_ready" Type="varchar" MaxLength="5" />
- <Property Name="secu_info_pin_ma" Type="varchar" MaxLength="5" />
- <Property Name="secu_info_id_num" Type="varchar" MaxLength="20" />
- <Property Name="id_num" Type="varchar" MaxLength="20" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_account_tutorial_status_info">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="max_level" Type="int" />
- <Property Name="beginner_map_win_count" Type="int" />
- <Property Name="match_count" Type="int" />
- <Property Name="quick_match_count" Type="int" />
- <Property Name="is_close_notify_tutorial" Type="bool" />
- <Property Name="is_close_notify_mini_tutorial" Type="bool" />
- <Property Name="composite_hero_token_count" Type="int" />
- <Property Name="is_close_merge_tutorial" Type="bool" />
- <Property Name="create_ai_map_room_count" Type="int" />
- <Property Name="is_close_ai_map_room_tutorial" Type="bool" />
- <Property Name="is_get_beginner_map_bonus" Type="bool" />
- <Property Name="got_new_player_survey" Type="bool" />
- <Property Name="player_level" Type="int" />
- <Property Name="is_notify_common_skill" Type="bool" />
- <Property Name="is_first_open_rune_panel" Type="bool" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_active_code">
- <Key>
- <PropertyRef Name="active_code" />
- </Key>
- <Property Name="active_code" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="code_type" Type="int" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="grant_type" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <!--生成过程中发现错误:
- 警告 6002: 表/视图“def.tanghai.t_attribute”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
- -->
- <EntityType Name="t_attribute">
- <Key>
- <PropertyRef Name="guid" />
- <PropertyRef Name="id" />
- <PropertyRef Name="sub_id" />
- <PropertyRef Name="value" />
- <PropertyRef Name="attr_type" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="guid" Type="ubigint" Nullable="false" />
- <Property Name="id" Type="int" Nullable="false" />
- <Property Name="sub_id" Type="int" Nullable="false" />
- <Property Name="value" Type="double" Nullable="false" />
- <Property Name="attr_type" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_auction_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- <Property Name="seller_guid" Type="ubigint" Nullable="false" />
- <Property Name="seller_name" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="seller_ip" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="auction_class" Type="smallint" Nullable="false" />
- <Property Name="item_name" Type="varchar" Nullable="false" MaxLength="128" />
- <Property Name="item_id" Type="int" Nullable="false" />
- <Property Name="assets_type" Type="smallint" Nullable="false" />
- <Property Name="deposit" Type="int" Nullable="false" />
- <Property Name="sum_price" Type="int" Nullable="false" />
- <Property Name="unit_price" Type="float" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="tran_guid" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_available_map">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="map_type" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="80" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_gameover_statistic">
- <Key>
- <PropertyRef Name="battle_guid" />
- </Key>
- <Property Name="battle_guid" Type="ubigint" Nullable="false" />
- <Property Name="gameover_statistic" Type="blob" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_kill_detail">
- <Key>
- <PropertyRef Name="kill_id" />
- </Key>
- <Property Name="kill_id" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="battle_guid" Type="ubigint" Nullable="false" />
- <Property Name="kill_type" Type="uint" Nullable="false" />
- <Property Name="kill_name" Type="varchar" MaxLength="50" />
- <Property Name="kill_guid" Type="ubigint" />
- <Property Name="assist_name" Type="varchar" MaxLength="200" />
- <Property Name="kill_time" Type="int" />
- <Property Name="killed_name" Type="varchar" MaxLength="50" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_summary">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="battle_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="battle_guid" Type="ubigint" Nullable="false" />
- <Property Name="pvp_or_pve" Type="bool" />
- <Property Name="is_win" Type="bool" />
- <Property Name="is_mvp" Type="bool" />
- <Property Name="is_most_kill_person" Type="bool" />
- <Property Name="is_most_assist" Type="bool" />
- <Property Name="is_most_money" Type="bool" />
- <Property Name="is_down_tower" Type="bool" />
- <Property Name="is_most_kill_friend" Type="bool" />
- <Property Name="is_lost_mvp" Type="bool" />
- <Property Name="is_s_pve_map" Type="bool" />
- <Property Name="is_first_blood" Type="bool" />
- <Property Name="is_pve_most_kill_boss" Type="bool" />
- <Property Name="is_pve_most_take_damage" Type="bool" />
- <Property Name="is_pve_most_healing" Type="bool" />
- <Property Name="is_pve_most_damage" Type="bool" />
- <Property Name="map_type" Type="varchar" MaxLength="20" />
- <Property Name="battle_date" Type="varchar" MaxLength="30" />
- <Property Name="battle_time" Type="int" />
- <Property Name="is_escape" Type="bool" />
- <Property Name="hero_id" Type="int" />
- <Property Name="match_type" Type="int" />
- <Property Name="is_reinforce" Type="bool" />
- <Property Name="pvp_kill_count" Type="int" />
- <Property Name="pvp_assist_count" Type="int" />
- <Property Name="pvp_dead_count" Type="int" />
- <Property Name="pvp_most_continuous_kill_number" Type="int" />
- <Property Name="pvp_score" Type="int" />
- <Property Name="pve_boss_kill" Type="int" />
- <Property Name="pve_kill_hostile_soldier" Type="int" />
- <Property Name="pve_total_money" Type="int" />
- <Property Name="pve_get_level" Type="int" />
- <Property Name="is_employ_battle" Type="bool" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_config">
- <Key>
- <PropertyRef Name="aid" />
- </Key>
- <Property Name="aid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="max_group_id" Type="int" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_cong">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_level" Type="int" Nullable="false" />
- <Property Name="cong_guid_list" Type="blob" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_event">
- <Key>
- <PropertyRef Name="event_guid" />
- </Key>
- <Property Name="event_guid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="beginner_group_guid" Type="ubigint" Nullable="false" />
- <Property Name="event_id" Type="int" Nullable="false" />
- <Property Name="event_content" Type="blob" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_celebration_reward">
- <Key>
- <PropertyRef Name="account" />
- <PropertyRef Name="reward_type" />
- </Key>
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
- <Property Name="reward_type" Type="int" Nullable="false" />
- <Property Name="tel_number" Type="varchar" MaxLength="50" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_activity">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="activity_status" Type="int" Nullable="false" />
- <Property Name="start_time" Type="datetime" Nullable="false" />
- <Property Name="battle_id" Type="ubigint" Nullable="false" />
- <Property Name="challenger_win" Type="bool" Nullable="false" />
- <Property Name="kfz_best_hero" Type="int" Nullable="false" />
- <Property Name="game_over_time" Type="datetime" />
- <Property Name="challenger_win_bet" Type="bigint" Nullable="false" />
- <Property Name="challenger_lose_bet" Type="bigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_activity_schedule">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="elect_from_time" Type="datetime" Nullable="false" />
- <Property Name="elect_to_time" Type="datetime" Nullable="false" />
- <Property Name="guess_from_time" Type="datetime" Nullable="false" />
- <Property Name="guess_to_time" Type="datetime" Nullable="false" />
- <Property Name="reward_from_time" Type="datetime" Nullable="false" />
- <Property Name="reward_to_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_character_elect_hero">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_elect_hero_stat">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="game_position" Type="int" Nullable="false" />
- <Property Name="vote_count" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_exp_buff">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="time_year" />
- <PropertyRef Name="time_year_day" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="time_year" Type="int" Nullable="false" />
- <Property Name="time_year_day" Type="int" Nullable="false" />
- <Property Name="buff_guid" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_game_player">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_win" Type="bool" Nullable="false" />
- <Property Name="faction" Type="int" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="title" Type="varchar" MaxLength="64" />
- <Property Name="platform_title_id" Type="int" Nullable="false" />
- <Property Name="character_name" Type="varchar" MaxLength="64" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_guess_game_over">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="challenger_win" Type="bool" Nullable="false" />
- <Property Name="challenger_win_bet" Type="int" Nullable="false" />
- <Property Name="kfz_best_hero" Type="int" Nullable="false" />
- <Property Name="kfz_best_hero_bet" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_guess_reward">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="winner_guess_silver" Type="int" Nullable="false" />
- <Property Name="best_hero_guess_silver" Type="int" Nullable="false" />
- <Property Name="is_taked" Type="bool" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_kfz_hero">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="game_position" Type="int" Nullable="false" />
- <Property Name="best_bet" Type="bigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_statue_info">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="from_time" Type="datetime" Nullable="false" />
- <Property Name="to_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_task_reward">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="reward_type" />
- </Key>
- <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="reward_type" Type="int" Nullable="false" />
- <Property Name="task_id" Type="int" Nullable="false" />
- <Property Name="is_taked" Type="bool" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="general_class" Type="int" Nullable="false" />
- <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="128" />
- <Property Name="sex" Type="int" Nullable="false" />
- <Property Name="account_id" Type="ubigint" Nullable="false" />
- <Property Name="playing_map_server_key" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="room_guid" Type="ubigint" Nullable="false" />
- <Property Name="general_ghost" Type="int" Nullable="false" />
- <Property Name="kingdom" Type="int" Nullable="false" />
- <Property Name="create_ip" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="area_id" Type="int" Nullable="false" />
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="default_display_id" Type="int" Nullable="false" />
- <Property Name="selected_title_type" Type="int" Nullable="false" />
- <Property Name="last_login_time" Type="bigint" Nullable="false" />
- <Property Name="login_ip" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="is_first_login" Type="bool" Nullable="false" />
- <Property Name="has_newly_mail" Type="bool" Nullable="false" />
- <Property Name="location" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="history_silver" Type="bigint" Nullable="false" />
- <Property Name="history_charge_gold" Type="bigint" Nullable="false" />
- <Property Name="history_free_gold" Type="bigint" Nullable="false" />
- <Property Name="rank_bonus_title_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="recent_flee_buff_id" Type="int" Nullable="false" />
- <Property Name="add_buff_yday" Type="int" Nullable="false" />
- <Property Name="need_rename" Type="tinyint" Nullable="false" />
- <Property Name="can_gain_active_code_item" Type="bool" Nullable="false" />
- <Property Name="total_online_seconds" Type="bigint" Nullable="false" />
- <Property Name="city_server_name" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="last_login_realtime" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="anti_addiction_online_time" Type="int" Nullable="false" />
- <Property Name="anti_addiction_offline_time" Type="int" Nullable="false" />
- <Property Name="gs_active_code" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="ban_login_expired_time" Type="bigint" />
- <Property Name="ban_chat_expired_time" Type="bigint" />
- <Property Name="pve_equipment_max_strengthen_level" Type="int" Nullable="false" />
- <Property Name="pve_equipment_active_scheme_id" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_achievement">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="achievement_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="achievement_id" Type="int" Nullable="false" />
- <Property Name="event_count" Type="int" />
- <Property Name="is_accomplished" Type="bool" Nullable="false" />
- <Property Name="accomplish_time" Type="datetime" />
- <Property Name="hero_id" Type="int" />
- <Property Name="battle_guid" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_character_appearance">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="appearance_type" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="appearance_type" Type="int" Nullable="false" />
- <Property Name="headdress" Type="ubigint" Nullable="false" />
- <Property Name="wing" Type="ubigint" Nullable="false" />
- <Property Name="clothes" Type="ubigint" Nullable="false" />
- <Property Name="weapon" Type="ubigint" Nullable="false" />
- <Property Name="magic_weapon" Type="ubigint" Nullable="false" />
- <Property Name="mounts" Type="ubigint" Nullable="false" />
- <Property Name="face" Type="ubigint" Nullable="false" />
- <Property Name="riding_status" Type="int" Nullable="false" />
- <Property Name="color1" Type="bigint" Nullable="false" />
- <Property Name="color2" Type="bigint" Nullable="false" />
- <Property Name="color3" Type="bigint" Nullable="false" />
- <Property Name="color4" Type="bigint" Nullable="false" />
- <Property Name="color5" Type="bigint" Nullable="false" />
- <Property Name="default_visual" Type="int" Nullable="false" />
- <Property Name="default_face" Type="int" Nullable="false" />
- <Property Name="default_headdress" Type="int" Nullable="false" />
- <Property Name="color_scheme_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_assets">
- <Key>
- <PropertyRef Name="assets_id" />
- </Key>
- <Property Name="assets_id" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="assets_type" Type="smallint" Nullable="false" />
- <Property Name="balance" Type="bigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_default_fighting_options">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="last_common_spell_series_id" Type="int" Nullable="false" />
- <Property Name="last_rune_scheme_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_info">
- <Key>
- <PropertyRef Name="tid" />
- </Key>
- <Property Name="tid" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- <Property Name="item_id" Type="int" Nullable="false" />
- <Property Name="slot" Type="int" Nullable="false" />
- <Property Name="item_count" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="source" Type="int" Nullable="false" />
- <Property Name="is_bound" Type="bool" Nullable="false" />
- <Property Name="location" Type="int" Nullable="false" />
- <Property Name="attributes" Type="blob" Nullable="false" />
- <Property Name="buy_time" Type="datetime" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="buy_type" Type="int" Nullable="false" />
- <Property Name="pay_type" Type="int" Nullable="false" />
- <Property Name="pay_yuanbao" Type="int" Nullable="false" />
- <Property Name="free_yuanbao" Type="int" Nullable="false" />
- <Property Name="reiki_count" Type="int" Nullable="false" />
- <Property Name="durability_count" Type="int" Nullable="false" />
- <Property Name="recast_count" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_options">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="rune_not_show_binding_tips" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_questionnaire">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="questionnaire_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="questionnaire_id" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_charge_list">
- <Key>
- <PropertyRef Name="charge_listid" />
- </Key>
- <Property Name="charge_listid" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="charge_sn" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="account" Type="varchar" Nullable="false" MaxLength="128" />
- <Property Name="ip" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="pay_points" Type="int" Nullable="false" />
- <Property Name="charge_yuanbao" Type="int" Nullable="false" />
- <Property Name="free_yuanbao" Type="int" Nullable="false" />
- <Property Name="url_parameters" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="charge_state" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="retry_times" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_buff">
- <Key>
- <PropertyRef Name="buff_guid" />
- </Key>
- <Property Name="buff_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="buff_id" Type="int" Nullable="false" />
- <Property Name="buff_time" Type="int" Nullable="false" />
- <Property Name="stack" Type="int" Nullable="false" />
- <Property Name="buff_values" Type="blob" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_position">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="city_name" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="city_name" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="x" Type="float" Nullable="false" />
- <Property Name="y" Type="float" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_task_finish_sub_state">
- <Key>
- <PropertyRef Name="task_guid" />
- <PropertyRef Name="city_task_sub_state_type" />
- </Key>
- <Property Name="task_guid" Type="ubigint" Nullable="false" />
- <Property Name="city_task_sub_state_type" Type="int" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="total_count" Type="int" Nullable="false" />
- <Property Name="finish_count" Type="int" Nullable="false" />
- <Property Name="detail" Type="varchar" Nullable="false" MaxLength="1024" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_task_info">
- <Key>
- <PropertyRef Name="task_guid" />
- </Key>
- <Property Name="task_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="task_id" Type="int" Nullable="false" />
- <Property Name="state" Type="int" Nullable="false" />
- <Property Name="finish_timestamp" Type="ubigint" Nullable="false" />
- <Property Name="accept_time" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_client_config">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="80" />
- <Property Name="key_setting" Type="varchar" Nullable="false" MaxLength="2048" />
- <Property Name="use_dota_key" Type="bool" Nullable="false" />
- <Property Name="shop_using_price_classify" Type="bool" Nullable="false" />
- <Property Name="client_config_str" Type="blob" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_common_spell">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="common_spell_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="common_spell_id" Type="int" Nullable="false" />
- <Property Name="common_spell_series" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_daily_online_time">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="login_date" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="login_date" Type="char" Nullable="false" MaxLength="32" />
- <Property Name="online_time" Type="int" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employ_notice_status">
- <Key>
- <PropertyRef Name="employ_notice_status_id" />
- </Key>
- <Property Name="employ_notice_status_id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="publisher_guid" Type="ubigint" Nullable="false" />
- <Property Name="applicant_guid" Type="ubigint" Nullable="false" />
- <Property Name="status" Type="ubigint" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employ_relation">
- <Key>
- <PropertyRef Name="employ_relation_id" />
- </Key>
- <Property Name="employ_relation_id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="employer_guid" Type="ubigint" Nullable="false" />
- <Property Name="employee_guid" Type="ubigint" Nullable="false" />
- <Property Name="assets_type" Type="int" Nullable="false" />
- <Property Name="price" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employee_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="employee_experience" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employee_notice">
- <Key>
- <PropertyRef Name="employee_guid" />
- </Key>
- <Property Name="employee_guid" Type="ubigint" Nullable="false" />
- <Property Name="apply_type" Type="int" Nullable="false" />
- <Property Name="assets_type" Type="int" Nullable="false" />
- <Property Name="price" Type="int" Nullable="false" />
- <Property Name="publish_time" Type="datetime" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="success" Type="bool" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employer_notice">
- <Key>
- <PropertyRef Name="employer_guid" />
- </Key>
- <Property Name="employer_guid" Type="ubigint" Nullable="false" />
- <Property Name="want_type" Type="int" Nullable="false" />
- <Property Name="employee_level_condition" Type="int" Nullable="false" />
- <Property Name="player_level_condition" Type="int" Nullable="false" />
- <Property Name="player_pvp_score_condition" Type="int" Nullable="false" />
- <Property Name="assets_type" Type="int" Nullable="false" />
- <Property Name="price" Type="int" Nullable="false" />
- <Property Name="publish_time" Type="datetime" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="success" Type="bool" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- </EntityType>
- <!--生成过程中发现错误:
- 警告 6002: 表/视图“def.tanghai.t_fighting_evaluation_info”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
- -->
- <EntityType Name="t_fighting_evaluation_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="evaluate_player_guid" />
- <PropertyRef Name="evaluate_type" />
- <PropertyRef Name="evaluate_time" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="evaluate_player_guid" Type="ubigint" Nullable="false" />
- <Property Name="evaluate_type" Type="int" Nullable="false" />
- <Property Name="evaluate_time" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_friend">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="friend_guid" />
- <PropertyRef Name="group_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="friend_guid" Type="ubigint" Nullable="false" />
- <Property Name="group_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_friend_group">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="group_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="group_id" Type="int" Nullable="false" />
- <Property Name="group_name" Type="varchar" Nullable="false" MaxLength="128" />
- <Property Name="is_sys_group" Type="tinyint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_game_hero_use_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="use_count" Type="int" Nullable="false" />
- <Property Name="pvp_score" Type="int" Nullable="false" />
- <Property Name="pvp_score_uptime" Type="uint" Nullable="false" />
- <Property Name="mvp_count" Type="int" Nullable="false" />
- <Property Name="mvp_count_uptime" Type="uint" Nullable="false" />
- <Property Name="achievement" Type="int" Nullable="false" />
- <Property Name="achievement_uptime" Type="uint" Nullable="false" />
- <Property Name="loser_mvp_count" Type="int" Nullable="false" />
- <Property Name="loser_mvp_count_uptime" Type="uint" Nullable="false" />
- <Property Name="daily_kill_count" Type="int" Nullable="false" />
- <Property Name="daily_kill_count_uptime" Type="uint" Nullable="false" />
- <Property Name="daily_dead_count" Type="int" Nullable="false" />
- <Property Name="daily_dead_count_uptime" Type="uint" Nullable="false" />
- <Property Name="daily_assist_count" Type="int" Nullable="false" />
- <Property Name="daily_assist_count_uptime" Type="uint" Nullable="false" />
- <Property Name="daily_total_money" Type="int" Nullable="false" />
- <Property Name="daily_total_money_uptime" Type="uint" Nullable="false" />
- <Property Name="daily_kill_friend_soldier" Type="int" Nullable="false" />
- <Property Name="daily_kill_friend_soldier_uptime" Type="uint" Nullable="false" />
- <Property Name="win_count" Type="int" Nullable="false" />
- <Property Name="trueskill" Type="double" Nullable="false" />
- <Property Name="total_kill_count" Type="bigint" Nullable="false" />
- <Property Name="total_assist_count" Type="bigint" Nullable="false" />
- <Property Name="total_dead_count" Type="bigint" Nullable="false" />
- <Property Name="total_first_blood" Type="bigint" Nullable="false" />
- <Property Name="total_killed_by_first_blood" Type="bigint" Nullable="false" />
- <Property Name="total_get_money" Type="bigint" Nullable="false" />
- <Property Name="total_kill_hostile_soldier" Type="bigint" Nullable="false" />
- <Property Name="total_kill_friend_soldier" Type="bigint" Nullable="false" />
- <Property Name="total_destroy_hostile_tower" Type="bigint" Nullable="false" />
- <Property Name="total_destroy_friend_tower" Type="bigint" Nullable="false" />
- <Property Name="total_kill_monster_number" Type="bigint" Nullable="false" />
- <Property Name="most_continuous_kill_number" Type="bigint" Nullable="false" />
- <Property Name="total_physics_damage" Type="bigint" Nullable="false" />
- <Property Name="total_magic_damage" Type="bigint" Nullable="false" />
- <Property Name="max_kill_hostile_soldier_times" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="score_update_count" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="t_game_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="50" />
- <Property Name="register_area" Type="int" Nullable="false" />
- <Property Name="character_level" Type="int" Nullable="false" />
- <Property Name="experience" Type="int" Nullable="false" />
- <Property Name="experience_uptime" Type="uint" Nullable="false" />
- <Property Name="stage_score" Type="int" Nullable="false" />
- <Property Name="stage_score_uptime" Type="uint" Nullable="false" />
- <Property Name="win_count" Type="int" Nullable="false" />
- <Property Name="lose_count" Type="int" Nullable="false" />
- <Property Name="flee_count" Type="int" Nullable="false" />
- <Property Name="max_kill_games" Type="int" Nullable="false" />
- <Property Name="max_assist_games" Type="int" Nullable="false" />
- <Property Name="max_destroy_hostile_towner_games" Type="int" Nullable="false" />
- <Property Name="first_blood_games" Type="int" Nullable="false" />
- <Property Name="max_money_games" Type="int" Nullable="false" />
- <Property Name="kill_boss_count" Type="int" Nullable="false" />
- <Property Name="kill_boss_count_uptime" Type="uint" Nullable="false" />
- <Property Name="max_money" Type="int" Nullable="false" />
- <Property Name="max_assist" Type="int" Nullable="false" />
- <Property Name="max_kill" Type="int" Nullable="false" />
- <Property Name="exploit_value" Type="int" Nullable="false" />
- <Property Name="pass_level_count" Type="int" Nullable="false" />
- <Property Name="lose_level_count" Type="int" Nullable="false" />
- <Property Name="get_s_count" Type="int" Nullable="false" />
- <Property Name="last_level_up_time" Type="bigint" Nullable="false" />
- <Property Name="mean" Type="double" Nullable="false" />
- <Property Name="deviation" Type="double" Nullable="false" />
- <Property Name="total_kill_boss_number" Type="ubigint" Nullable="false" />
- <Property Name="played_time" Type="ubigint" Nullable="false" />
- <Property Name="in_city_time" Type="ubigint" Nullable="false" />
- <Property Name="in_match_time" Type="ubigint" Nullable="false" />
- <Property Name="in_room_time" Type="ubigint" Nullable="false" />
- <Property Name="arena_match_score" Type="int" Nullable="false" />
- <Property Name="funny_match_score" Type="int" Nullable="false" />
- <Property Name="good_reputation_count" Type="int" Nullable="false" />
- <Property Name="wujiangshilian_play_time" Type="int" Nullable="false" />
- <Property Name="youzhou_last_play_soldier_count" Type="int" Nullable="false" />
- <Property Name="youzhou_last_play_soldier_level" Type="int" Nullable="false" />
- <Property Name="vip_exp" Type="int" Nullable="false" />
- <Property Name="vip_exp_accumulate" Type="int" />
- <Property Name="last_vip_exp_up_time" Type="bigint" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_gs_code">
- <Key>
- <PropertyRef Name="active_code" />
- </Key>
- <Property Name="active_code" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="32" />
- <Property Name="invitee_guid" Type="ubigint" Nullable="false" />
- <Property Name="notify_inviter" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_color_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="color_scheme_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="color_scheme_id" Type="int" Nullable="false" />
- <Property Name="color1" Type="bigint" Nullable="false" />
- <Property Name="color2" Type="bigint" Nullable="false" />
- <Property Name="color3" Type="bigint" Nullable="false" />
- <Property Name="color4" Type="bigint" Nullable="false" />
- <Property Name="color5" Type="bigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_level_state">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="level" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="level" Type="int" Nullable="false" />
- <Property Name="selected_free_hero" Type="bool" />
- <Property Name="selected_discount_hero" Type="bool" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_pet">
- <Key>
- <PropertyRef Name="guid" />
- </Key>
- <Property Name="guid" Type="ubigint" Nullable="false" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="name" Type="varchar" Nullable="false" MaxLength="128" />
- <Property Name="location" Type="int" Nullable="false" />
- <Property Name="level" Type="int" Nullable="false" />
- <Property Name="expr" Type="int" Nullable="false" />
- <Property Name="closeness" Type="int" Nullable="false" />
- <Property Name="closeness_up_fail" Type="int" Nullable="false" />
- <Property Name="merge_count" Type="int" Nullable="false" />
- <Property Name="merge_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_suggest_equipment">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="plan_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="plan_id" Type="int" Nullable="false" />
- <Property Name="plan_description" Type="varchar" MaxLength="256" />
- <Property Name="item_id0" Type="int" />
- <Property Name="item_id1" Type="int" />
- <Property Name="item_id2" Type="int" />
- <Property Name="item_id3" Type="int" />
- <Property Name="item_id4" Type="int" />
- <Property Name="item_id5" Type="int" />
- <Property Name="is_deleted" Type="bool" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_talent_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="total_used_hero_experience" Type="int" />
- <Property Name="enable_branch" Type="int" />
- <Property Name="this_branch_point" Type="int" />
- <Property Name="available_experience" Type="int" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_talent_info_sub_state">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="talent_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="talent_id" Type="int" Nullable="false" />
- <Property Name="point" Type="int" />
- <Property Name="is_full_point" Type="bool" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_unlock_hero">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="hero_id" Type="int" Nullable="false" />
- <Property Name="is_activated" Type="bool" />
- <Property Name="cur_color_scheme_id" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_illegal_term_rules">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="regex" Type="blob" Nullable="false" />
- <Property Name="id" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
- </EntityType>
- <!--生成过程中发现错误:
- 警告 6002: 表/视图“def.tanghai.t_item_roll_list”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
- -->
- <EntityType Name="t_item_roll_list">
- <Key>
- <PropertyRef Name="item_roll_guid" />
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="item_guid" />
- <PropertyRef Name="item_id" />
- <PropertyRef Name="item_name" />
- <PropertyRef Name="source" />
- <PropertyRef Name="is_bound" />
- <PropertyRef Name="attributes" />
- <PropertyRef Name="buy_time" />
- <PropertyRef Name="expire_time" />
- <PropertyRef Name="buy_type" />
- <PropertyRef Name="pay_type" />
- <PropertyRef Name="pay_yuanbao" />
- <PropertyRef Name="free_yuanbao" />
- <PropertyRef Name="previous_count" />
- <PropertyRef Name="previous_location" />
- <PropertyRef Name="count" />
- <PropertyRef Name="location" />
- <PropertyRef Name="change_type" />
- <PropertyRef Name="billing_state" />
- <PropertyRef Name="charge_gold_balance" />
- <PropertyRef Name="free_gold_balance" />
- <PropertyRef Name="modify_time" />
- <PropertyRef Name="create_time" />
- </Key>
- <Property Name="item_roll_guid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="item_guid" Type="ubigint" Nullable="false" />
- <Property Name="item_id" Type="uint" Nullable="false" />
- <Property Name="item_name" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="source" Type="int" Nullable="false" />
- <Property Name="is_bound" Type="int" Nullable="false" />
- <Property Name="attributes" Type="blob" Nullable="false" />
- <Property Name="buy_time" Type="datetime" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="buy_type" Type="int" Nullable="false" />
- <Property Name="pay_type" Type="int" Nullable="false" />
- <Property Name="pay_yuanbao" Type="int" Nullable="false" />
- <Property Name="free_yuanbao" Type="int" Nullable="false" />
- <Property Name="previous_count" Type="int" Nullable="false" />
- <Property Name="previous_location" Type="int" Nullable="false" />
- <Property Name="count" Type="int" Nullable="false" />
- <Property Name="location" Type="int" Nullable="false" />
- <Property Name="change_type" Type="int" Nullable="false" />
- <Property Name="billing_state" Type="int" Nullable="false" />
- <Property Name="charge_gold_balance" Type="int" Nullable="false" />
- <Property Name="free_gold_balance" Type="int" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_login_reward">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="year_day" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="year_day" Type="int" Nullable="false" />
- <Property Name="reward_id" Type="int" Nullable="false" />
- <Property Name="is_deleted" Type="tinyint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mail">
- <Key>
- <PropertyRef Name="mail_guid" />
- </Key>
- <Property Name="mail_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- <Property Name="checked" Type="bool" Nullable="false" />
- <Property Name="is_read" Type="bool" Nullable="false" />
- <Property Name="is_system_mail" Type="bool" Nullable="false" />
- <Property Name="sender_guid" Type="ubigint" Nullable="false" />
- <Property Name="sender_name" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="receiver_guid" Type="ubigint" Nullable="false" />
- <Property Name="receiver_name" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="mail_subject" Type="varchar" Nullable="false" MaxLength="256" />
- <Property Name="mail_body" Type="text" Nullable="false" />
- <Property Name="silver" Type="int" Nullable="false" />
- <Property Name="charge_gold" Type="int" Nullable="false" />
- <Property Name="money_is_taked" Type="bool" Nullable="false" />
- <Property Name="item_count" Type="int" Nullable="false" />
- <Property Name="expire_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mail_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="ubigint" Nullable="false" />
- <Property Name="mail_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_taked" Type="bool" Nullable="false" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mall_items_sales_count">
- <Key>
- <PropertyRef Name="item_id" />
- </Key>
- <Property Name="item_id" Type="int" Nullable="false" />
- <Property Name="sale_count" Type="int" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_map_play_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="map_type" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="play_count" Type="int" Nullable="false" />
- <Property Name="win_count" Type="int" Nullable="false" />
- <Property Name="last_play_date" Type="ubigint" Nullable="false" />
- <Property Name="total_play_time" Type="ubigint" Nullable="false" />
- <Property Name="today_play_time" Type="int" Nullable="false" />
- <Property Name="current_level" Type="int" Nullable="false" />
- <Property Name="max_score" Type="int" Nullable="false" />
- <Property Name="kill_boss_count" Type="int" Nullable="false" />
- <Property Name="kill_hostile_soldier" Type="bigint" Nullable="false" />
- <Property Name="max_total_damage" Type="int" Nullable="false" />
- <Property Name="max_total_suffer_damage" Type="int" Nullable="false" />
- <Property Name="max_total_heal" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_meta">
- <Key>
- <PropertyRef Name="meta_key" />
- </Key>
- <Property Name="meta_key" Type="varchar" Nullable="false" MaxLength="64" />
- <Property Name="meta_value" Type="varchar" MaxLength="255" />
- </EntityType>
- <EntityType Name="t_offline_message">
- <Key>
- <PropertyRef Name="fid" />
- </Key>
- <Property Name="fid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="proto_name" Type="varchar" Nullable="false" MaxLength="80" />
- <Property Name="content" Type="longtext" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="is_deleted" Type="tinyint" Nullable="false" />
- </EntityType>
- <EntityType Name="t_player_offline_message">
- <Key>
- <PropertyRef Name="fid" />
- </Key>
- <Property Name="fid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="opcode" Type="int" Nullable="false" />
- <Property Name="content" Type="blob" Nullable="false" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- <Property Name="is_deleted" Type="bool" Nullable="false" />
- </EntityType>
- <!--生成过程中发现错误:
- 警告 6002: 表/视图“def.tanghai.t_pve_equipment_scheme”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
- -->
- <EntityType Name="t_pve_equipment_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="scheme_id" />
- <PropertyRef Name="slot0_item_guid" />
- <PropertyRef Name="slot1_item_guid" />
- <PropertyRef Name="slot2_item_guid" />
- <PropertyRef Name="slot3_item_guid" />
- <PropertyRef Name="slot4_item_guid" />
- <PropertyRef Name="slot5_item_guid" />
- <PropertyRef Name="slot6_item_guid" />
- <PropertyRef Name="slot7_item_guid" />
- <PropertyRef Name="slot8_item_guid" />
- <PropertyRef Name="slot9_item_guid" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="scheme_id" Type="int" Nullable="false" />
- <Property Name="scheme_name" Type="varchar" MaxLength="64" />
- <Property Name="slot0_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot1_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot2_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot3_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot4_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot5_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot6_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot7_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot8_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot9_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <!--生成过程中发现错误:
- 警告 6002: 表/视图“def.tanghai.t_pve_equipment_strength”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
- -->
- <EntityType Name="t_pve_equipment_strength">
- <Key>
- <PropertyRef Name="guid" />
- <PropertyRef Name="strength_lv" />
- <PropertyRef Name="strength_value" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="guid" Type="ubigint" Nullable="false" />
- <Property Name="strength_lv" Type="int" Nullable="false" />
- <Property Name="strength_value" Type="double" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_questionnaire">
- <Key>
- <PropertyRef Name="questionnaire_id" />
- </Key>
- <Property Name="questionnaire_id" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="content" Type="text" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_roll_log">
- <Key>
- <PropertyRef Name="roll_listid" />
- </Key>
- <Property Name="roll_listid" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="bill_listid" Type="varchar" MaxLength="40" />
- <Property Name="character_guid" Type="ubigint" />
- <Property Name="vs_guid" Type="ubigint" />
- <Property Name="roll_type" Type="smallint" />
- <Property Name="assets_type" Type="smallint" />
- <Property Name="amount" Type="int" />
- <Property Name="balance" Type="bigint" />
- <Property Name="ip" Type="varchar" MaxLength="32" />
- <Property Name="memo" Type="varchar" MaxLength="255" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_rune_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="scheme_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="scheme_id" Type="int" Nullable="false" />
- <Property Name="scheme_name" Type="varchar" Nullable="false" MaxLength="50" />
- <Property Name="slot0_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot1_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot2_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot3_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot4_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot5_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot6_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot7_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot8_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot9_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot10_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot11_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot12_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot13_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="slot14_item_guid" Type="ubigint" Nullable="false" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_social_group_basic">
- <Key>
- <PropertyRef Name="group_guid" />
- </Key>
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="group_name" Type="char" Nullable="false" MaxLength="128" />
- <Property Name="group_type" Type="int" Nullable="false" />
- <Property Name="owner_guid" Type="ubigint" Nullable="false" />
- <Property Name="owner_name" Type="char" Nullable="false" MaxLength="128" />
- <Property Name="member_size" Type="int" Nullable="false" />
- <Property Name="manager_size" Type="int" Nullable="false" />
- <Property Name="bulletin" Type="text" />
- <Property Name="join_rule" Type="int" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_social_group_manager">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="manager_guid" />
- </Key>
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="manager_guid" Type="ubigint" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_social_group_member">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="member_guid" />
- </Key>
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="member_guid" Type="ubigint" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_title_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="title_id" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="title_id" Type="int" Nullable="false" />
- <Property Name="new_title" Type="bool" />
- <Property Name="valid_time" Type="int" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_tran_log">
- <Key>
- <PropertyRef Name="tran_listid" />
- </Key>
- <Property Name="tran_listid" Type="varchar" Nullable="false" MaxLength="40" />
- <Property Name="buyer_guid" Type="ubigint" />
- <Property Name="buyer_account" Type="varchar" MaxLength="100" />
- <Property Name="seller_guid" Type="ubigint" />
- <Property Name="seller_account" Type="varchar" MaxLength="100" />
- <Property Name="assets_type" Type="smallint" />
- <Property Name="pay_amount" Type="int" />
- <Property Name="bill_listid" Type="varchar" MaxLength="32" />
- <Property Name="ip" Type="varchar" MaxLength="32" />
- <Property Name="memo" Type="varchar" MaxLength="255" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_tutorial">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="is_first_login" Type="tinyint" />
- <Property Name="close_beginner_map_guide" Type="bool" />
- <Property Name="match_count" Type="int" />
- <Property Name="quick_match_count" Type="int" />
- <Property Name="close_compound_hero_guide" Type="bool" />
- <Property Name="gain_hero_pet_item" Type="bool" />
- <Property Name="create_time" Type="datetime" />
- <Property Name="modify_time" Type="datetime" />
- </EntityType>
- <EntityType Name="t_tutorial_status_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="beginner_map_win_count" Type="int" Nullable="false" />
- <Property Name="match_count" Type="int" Nullable="false" />
- <Property Name="quick_match_count" Type="int" Nullable="false" />
- <Property Name="is_close_notify_tutorial" Type="tinyint" Nullable="false" />
- <Property Name="is_close_notify_mini_tutorial" Type="tinyint" Nullable="false" />
- <Property Name="create_time" Type="datetime" Nullable="false" />
- <Property Name="modify_time" Type="datetime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_world_character">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="ubigint" Nullable="false" />
- <Property Name="group_guid" Type="ubigint" Nullable="false" />
- <Property Name="room_guid" Type="ubigint" Nullable="false" />
- </EntityType>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="DataCenterModel" Alias="Self" p1:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:p1="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
- <EntityContainer Name="DataCenterEntities" p1:LazyLoadingEnabled="true">
- <EntitySet Name="t_account" EntityType="DataCenterModel.t_account" />
- <EntitySet Name="t_account_active_code" EntityType="DataCenterModel.t_account_active_code" />
- <EntitySet Name="t_account_login_auth_response_cookie" EntityType="DataCenterModel.t_account_login_auth_response_cookie" />
- <EntitySet Name="t_account_tutorial_status_info" EntityType="DataCenterModel.t_account_tutorial_status_info" />
- <EntitySet Name="t_active_code" EntityType="DataCenterModel.t_active_code" />
- <EntitySet Name="t_attribute" EntityType="DataCenterModel.t_attribute" />
- <EntitySet Name="t_auction_item" EntityType="DataCenterModel.t_auction_item" />
- <EntitySet Name="t_available_map" EntityType="DataCenterModel.t_available_map" />
- <EntitySet Name="t_battle_gameover_statistic" EntityType="DataCenterModel.t_battle_gameover_statistic" />
- <EntitySet Name="t_battle_kill_detail" EntityType="DataCenterModel.t_battle_kill_detail" />
- <EntitySet Name="t_battle_summary" EntityType="DataCenterModel.t_battle_summary" />
- <EntitySet Name="t_beginner_group_config" EntityType="DataCenterModel.t_beginner_group_config" />
- <EntitySet Name="t_beginner_group_cong" EntityType="DataCenterModel.t_beginner_group_cong" />
- <EntitySet Name="t_beginner_group_event" EntityType="DataCenterModel.t_beginner_group_event" />
- <EntitySet Name="t_celebration_reward" EntityType="DataCenterModel.t_celebration_reward" />
- <EntitySet Name="t_challenge_activity" EntityType="DataCenterModel.t_challenge_activity" />
- <EntitySet Name="t_challenge_activity_schedule" EntityType="DataCenterModel.t_challenge_activity_schedule" />
- <EntitySet Name="t_challenge_character_elect_hero" EntityType="DataCenterModel.t_challenge_character_elect_hero" />
- <EntitySet Name="t_challenge_elect_hero_stat" EntityType="DataCenterModel.t_challenge_elect_hero_stat" />
- <EntitySet Name="t_challenge_exp_buff" EntityType="DataCenterModel.t_challenge_exp_buff" />
- <EntitySet Name="t_challenge_game_player" EntityType="DataCenterModel.t_challenge_game_player" />
- <EntitySet Name="t_challenge_guess_game_over" EntityType="DataCenterModel.t_challenge_guess_game_over" />
- <EntitySet Name="t_challenge_guess_reward" EntityType="DataCenterModel.t_challenge_guess_reward" />
- <EntitySet Name="t_challenge_kfz_hero" EntityType="DataCenterModel.t_challenge_kfz_hero" />
- <EntitySet Name="t_challenge_statue_info" EntityType="DataCenterModel.t_challenge_statue_info" />
- <EntitySet Name="t_challenge_task_reward" EntityType="DataCenterModel.t_challenge_task_reward" />
- <EntitySet Name="t_character" EntityType="DataCenterModel.t_character" />
- <EntitySet Name="t_character_achievement" EntityType="DataCenterModel.t_character_achievement" />
- <EntitySet Name="t_character_appearance" EntityType="DataCenterModel.t_character_appearance" />
- <EntitySet Name="t_character_assets" EntityType="DataCenterModel.t_character_assets" />
- <EntitySet Name="t_character_default_fighting_options" EntityType="DataCenterModel.t_character_default_fighting_options" />
- <EntitySet Name="t_character_info" EntityType="DataCenterModel.t_character_info" />
- <EntitySet Name="t_character_item" EntityType="DataCenterModel.t_character_item" />
- <EntitySet Name="t_character_options" EntityType="DataCenterModel.t_character_options" />
- <EntitySet Name="t_character_questionnaire" EntityType="DataCenterModel.t_character_questionnaire" />
- <EntitySet Name="t_charge_list" EntityType="DataCenterModel.t_charge_list" />
- <EntitySet Name="t_city_buff" EntityType="DataCenterModel.t_city_buff" />
- <EntitySet Name="t_city_position" EntityType="DataCenterModel.t_city_position" />
- <EntitySet Name="t_city_task_finish_sub_state" EntityType="DataCenterModel.t_city_task_finish_sub_state" />
- <EntitySet Name="t_city_task_info" EntityType="DataCenterModel.t_city_task_info" />
- <EntitySet Name="t_client_config" EntityType="DataCenterModel.t_client_config" />
- <EntitySet Name="t_common_spell" EntityType="DataCenterModel.t_common_spell" />
- <EntitySet Name="t_daily_online_time" EntityType="DataCenterModel.t_daily_online_time" />
- <EntitySet Name="t_employ_notice_status" EntityType="DataCenterModel.t_employ_notice_status" />
- <EntitySet Name="t_employ_relation" EntityType="DataCenterModel.t_employ_relation" />
- <EntitySet Name="t_employee_info" EntityType="DataCenterModel.t_employee_info" />
- <EntitySet Name="t_employee_notice" EntityType="DataCenterModel.t_employee_notice" />
- <EntitySet Name="t_employer_notice" EntityType="DataCenterModel.t_employer_notice" />
- <EntitySet Name="t_fighting_evaluation_info" EntityType="DataCenterModel.t_fighting_evaluation_info" />
- <EntitySet Name="t_friend" EntityType="DataCenterModel.t_friend" />
- <EntitySet Name="t_friend_group" EntityType="DataCenterModel.t_friend_group" />
- <EntitySet Name="t_game_hero_use_info" EntityType="DataCenterModel.t_game_hero_use_info" />
- <EntitySet Name="t_game_info" EntityType="DataCenterModel.t_game_info" />
- <EntitySet Name="t_gs_code" EntityType="DataCenterModel.t_gs_code" />
- <EntitySet Name="t_hero_color_scheme" EntityType="DataCenterModel.t_hero_color_scheme" />
- <EntitySet Name="t_hero_level_state" EntityType="DataCenterModel.t_hero_level_state" />
- <EntitySet Name="t_hero_pet" EntityType="DataCenterModel.t_hero_pet" />
- <EntitySet Name="t_hero_suggest_equipment" EntityType="DataCenterModel.t_hero_suggest_equipment" />
- <EntitySet Name="t_hero_talent_info" EntityType="DataCenterModel.t_hero_talent_info" />
- <EntitySet Name="t_hero_talent_info_sub_state" EntityType="DataCenterModel.t_hero_talent_info_sub_state" />
- <EntitySet Name="t_hero_unlock_hero" EntityType="DataCenterModel.t_hero_unlock_hero" />
- <EntitySet Name="t_illegal_term_rules" EntityType="DataCenterModel.t_illegal_term_rules" />
- <EntitySet Name="t_item_roll_list" EntityType="DataCenterModel.t_item_roll_list" />
- <EntitySet Name="t_login_reward" EntityType="DataCenterModel.t_login_reward" />
- <EntitySet Name="t_mail" EntityType="DataCenterModel.t_mail" />
- <EntitySet Name="t_mail_item" EntityType="DataCenterModel.t_mail_item" />
- <EntitySet Name="t_mall_items_sales_count" EntityType="DataCenterModel.t_mall_items_sales_count" />
- <EntitySet Name="t_map_play_info" EntityType="DataCenterModel.t_map_play_info" />
- <EntitySet Name="t_meta" EntityType="DataCenterModel.t_meta" />
- <EntitySet Name="t_offline_message" EntityType="DataCenterModel.t_offline_message" />
- <EntitySet Name="t_player_offline_message" EntityType="DataCenterModel.t_player_offline_message" />
- <EntitySet Name="t_pve_equipment_scheme" EntityType="DataCenterModel.t_pve_equipment_scheme" />
- <EntitySet Name="t_pve_equipment_strength" EntityType="DataCenterModel.t_pve_equipment_strength" />
- <EntitySet Name="t_questionnaire" EntityType="DataCenterModel.t_questionnaire" />
- <EntitySet Name="t_roll_log" EntityType="DataCenterModel.t_roll_log" />
- <EntitySet Name="t_rune_scheme" EntityType="DataCenterModel.t_rune_scheme" />
- <EntitySet Name="t_social_group_basic" EntityType="DataCenterModel.t_social_group_basic" />
- <EntitySet Name="t_social_group_manager" EntityType="DataCenterModel.t_social_group_manager" />
- <EntitySet Name="t_social_group_member" EntityType="DataCenterModel.t_social_group_member" />
- <EntitySet Name="t_title_info" EntityType="DataCenterModel.t_title_info" />
- <EntitySet Name="t_tran_log" EntityType="DataCenterModel.t_tran_log" />
- <EntitySet Name="t_tutorial" EntityType="DataCenterModel.t_tutorial" />
- <EntitySet Name="t_tutorial_status_info" EntityType="DataCenterModel.t_tutorial_status_info" />
- <EntitySet Name="t_world_character" EntityType="DataCenterModel.t_world_character" />
- </EntityContainer>
- <EntityType Name="t_account">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="account_guid" Type="Decimal" />
- <Property Name="sessionkey" Type="Binary" MaxLength="Max" FixedLength="false" />
- <Property Name="v" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="s" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="active_code" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="active_code_used" Type="Boolean" />
- <Property Name="first_char_guid" Type="Decimal" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- <Property Name="gm_level" Type="Int32" Nullable="false" />
- </EntityType>
- <EntityType Name="t_account_active_code">
- <Key>
- <PropertyRef Name="account" />
- <PropertyRef Name="gain_active_codes" />
- </Key>
- <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="gain_active_codes" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_account_login_auth_response_cookie">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="aid" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="ssn" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="gamepoint" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
- <Property Name="balance" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
- <Property Name="sn" Type="String" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="user_type" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="otpstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="otpuptime" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="infosafe" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="phonestat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="ppcstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="ppccoord" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="mppstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="rnstat" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
- <Property Name="regtime" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
- <Property Name="mobileno" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="need_activate_game" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="game_flag" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="deactivated" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="uidcount" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="newtm" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="vipstatus" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="is_vip_phone_trusty" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="is_vip_addr_trusty" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="real_name_flag" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="mobileisactivated" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="secu_info_ready" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="secu_info_pin_ma" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
- <Property Name="secu_info_id_num" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="id_num" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_account_tutorial_status_info">
- <Key>
- <PropertyRef Name="account" />
- </Key>
- <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="max_level" Type="Int32" />
- <Property Name="beginner_map_win_count" Type="Int32" />
- <Property Name="match_count" Type="Int32" />
- <Property Name="quick_match_count" Type="Int32" />
- <Property Name="is_close_notify_tutorial" Type="Boolean" />
- <Property Name="is_close_notify_mini_tutorial" Type="Boolean" />
- <Property Name="composite_hero_token_count" Type="Int32" />
- <Property Name="is_close_merge_tutorial" Type="Boolean" />
- <Property Name="create_ai_map_room_count" Type="Int32" />
- <Property Name="is_close_ai_map_room_tutorial" Type="Boolean" />
- <Property Name="is_get_beginner_map_bonus" Type="Boolean" />
- <Property Name="got_new_player_survey" Type="Boolean" />
- <Property Name="player_level" Type="Int32" />
- <Property Name="is_notify_common_skill" Type="Boolean" />
- <Property Name="is_first_open_rune_panel" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_active_code">
- <Key>
- <PropertyRef Name="active_code" />
- </Key>
- <Property Name="active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="code_type" Type="Int32" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="grant_type" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_attribute">
- <Key>
- <PropertyRef Name="guid" />
- <PropertyRef Name="id" />
- <PropertyRef Name="sub_id" />
- <PropertyRef Name="value" />
- <PropertyRef Name="attr_type" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="guid" Type="Decimal" Nullable="false" />
- <Property Name="id" Type="Int32" Nullable="false" />
- <Property Name="sub_id" Type="Int32" Nullable="false" />
- <Property Name="value" Type="Double" Nullable="false" />
- <Property Name="attr_type" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_auction_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- <Property Name="seller_guid" Type="Decimal" Nullable="false" />
- <Property Name="seller_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="seller_ip" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="auction_class" Type="Int16" Nullable="false" />
- <Property Name="item_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="item_id" Type="Int32" Nullable="false" />
- <Property Name="assets_type" Type="Int16" Nullable="false" />
- <Property Name="deposit" Type="Int32" Nullable="false" />
- <Property Name="sum_price" Type="Int32" Nullable="false" />
- <Property Name="unit_price" Type="Single" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="tran_guid" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_available_map">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="map_type" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="map_type" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_gameover_statistic">
- <Key>
- <PropertyRef Name="battle_guid" />
- </Key>
- <Property Name="battle_guid" Type="Decimal" Nullable="false" />
- <Property Name="gameover_statistic" Type="Binary" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_kill_detail">
- <Key>
- <PropertyRef Name="kill_id" />
- </Key>
- <Property Name="kill_id" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="battle_guid" Type="Decimal" Nullable="false" />
- <Property Name="kill_type" Type="Int64" Nullable="false" />
- <Property Name="kill_name" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
- <Property Name="kill_guid" Type="Decimal" />
- <Property Name="assist_name" Type="String" MaxLength="200" Unicode="false" FixedLength="false" />
- <Property Name="kill_time" Type="Int32" />
- <Property Name="killed_name" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_battle_summary">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="battle_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="battle_guid" Type="Decimal" Nullable="false" />
- <Property Name="pvp_or_pve" Type="Boolean" />
- <Property Name="is_win" Type="Boolean" />
- <Property Name="is_mvp" Type="Boolean" />
- <Property Name="is_most_kill_person" Type="Boolean" />
- <Property Name="is_most_assist" Type="Boolean" />
- <Property Name="is_most_money" Type="Boolean" />
- <Property Name="is_down_tower" Type="Boolean" />
- <Property Name="is_most_kill_friend" Type="Boolean" />
- <Property Name="is_lost_mvp" Type="Boolean" />
- <Property Name="is_s_pve_map" Type="Boolean" />
- <Property Name="is_first_blood" Type="Boolean" />
- <Property Name="is_pve_most_kill_boss" Type="Boolean" />
- <Property Name="is_pve_most_take_damage" Type="Boolean" />
- <Property Name="is_pve_most_healing" Type="Boolean" />
- <Property Name="is_pve_most_damage" Type="Boolean" />
- <Property Name="map_type" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
- <Property Name="battle_date" Type="String" MaxLength="30" Unicode="false" FixedLength="false" />
- <Property Name="battle_time" Type="Int32" />
- <Property Name="is_escape" Type="Boolean" />
- <Property Name="hero_id" Type="Int32" />
- <Property Name="match_type" Type="Int32" />
- <Property Name="is_reinforce" Type="Boolean" />
- <Property Name="pvp_kill_count" Type="Int32" />
- <Property Name="pvp_assist_count" Type="Int32" />
- <Property Name="pvp_dead_count" Type="Int32" />
- <Property Name="pvp_most_continuous_kill_number" Type="Int32" />
- <Property Name="pvp_score" Type="Int32" />
- <Property Name="pve_boss_kill" Type="Int32" />
- <Property Name="pve_kill_hostile_soldier" Type="Int32" />
- <Property Name="pve_total_money" Type="Int32" />
- <Property Name="pve_get_level" Type="Int32" />
- <Property Name="is_employ_battle" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_config">
- <Key>
- <PropertyRef Name="aid" />
- </Key>
- <Property Name="aid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="max_group_id" Type="Int32" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_cong">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_level" Type="Int32" Nullable="false" />
- <Property Name="cong_guid_list" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_beginner_group_event">
- <Key>
- <PropertyRef Name="event_guid" />
- </Key>
- <Property Name="event_guid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="beginner_group_guid" Type="Decimal" Nullable="false" />
- <Property Name="event_id" Type="Int32" Nullable="false" />
- <Property Name="event_content" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_celebration_reward">
- <Key>
- <PropertyRef Name="account" />
- <PropertyRef Name="reward_type" />
- </Key>
- <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="reward_type" Type="Int32" Nullable="false" />
- <Property Name="tel_number" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_activity">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="activity_status" Type="Int32" Nullable="false" />
- <Property Name="start_time" Type="DateTime" Nullable="false" />
- <Property Name="battle_id" Type="Decimal" Nullable="false" />
- <Property Name="challenger_win" Type="Boolean" Nullable="false" />
- <Property Name="kfz_best_hero" Type="Int32" Nullable="false" />
- <Property Name="game_over_time" Type="DateTime" />
- <Property Name="challenger_win_bet" Type="Int64" Nullable="false" />
- <Property Name="challenger_lose_bet" Type="Int64" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_activity_schedule">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="elect_from_time" Type="DateTime" Nullable="false" />
- <Property Name="elect_to_time" Type="DateTime" Nullable="false" />
- <Property Name="guess_from_time" Type="DateTime" Nullable="false" />
- <Property Name="guess_to_time" Type="DateTime" Nullable="false" />
- <Property Name="reward_from_time" Type="DateTime" Nullable="false" />
- <Property Name="reward_to_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_character_elect_hero">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_elect_hero_stat">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="game_position" Type="Int32" Nullable="false" />
- <Property Name="vote_count" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_exp_buff">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="time_year" />
- <PropertyRef Name="time_year_day" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="time_year" Type="Int32" Nullable="false" />
- <Property Name="time_year_day" Type="Int32" Nullable="false" />
- <Property Name="buff_guid" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_game_player">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_win" Type="Boolean" Nullable="false" />
- <Property Name="faction" Type="Int32" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="title" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="platform_title_id" Type="Int32" Nullable="false" />
- <Property Name="character_name" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_guess_game_over">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="challenger_win" Type="Boolean" Nullable="false" />
- <Property Name="challenger_win_bet" Type="Int32" Nullable="false" />
- <Property Name="kfz_best_hero" Type="Int32" Nullable="false" />
- <Property Name="kfz_best_hero_bet" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_guess_reward">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="winner_guess_silver" Type="Int32" Nullable="false" />
- <Property Name="best_hero_guess_silver" Type="Int32" Nullable="false" />
- <Property Name="is_taked" Type="Boolean" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_kfz_hero">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="game_position" Type="Int32" Nullable="false" />
- <Property Name="best_bet" Type="Int64" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_statue_info">
- <Key>
- <PropertyRef Name="activity_id" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="from_time" Type="DateTime" Nullable="false" />
- <Property Name="to_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_challenge_task_reward">
- <Key>
- <PropertyRef Name="activity_id" />
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="reward_type" />
- </Key>
- <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="reward_type" Type="Int32" Nullable="false" />
- <Property Name="task_id" Type="Int32" Nullable="false" />
- <Property Name="is_taked" Type="Boolean" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="general_class" Type="Int32" Nullable="false" />
- <Property Name="character_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="sex" Type="Int32" Nullable="false" />
- <Property Name="account_id" Type="Decimal" Nullable="false" />
- <Property Name="playing_map_server_key" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="room_guid" Type="Decimal" Nullable="false" />
- <Property Name="general_ghost" Type="Int32" Nullable="false" />
- <Property Name="kingdom" Type="Int32" Nullable="false" />
- <Property Name="create_ip" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="area_id" Type="Int32" Nullable="false" />
- <Property Name="account" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="default_display_id" Type="Int32" Nullable="false" />
- <Property Name="selected_title_type" Type="Int32" Nullable="false" />
- <Property Name="last_login_time" Type="Int64" Nullable="false" />
- <Property Name="login_ip" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="is_first_login" Type="Boolean" Nullable="false" />
- <Property Name="has_newly_mail" Type="Boolean" Nullable="false" />
- <Property Name="location" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="history_silver" Type="Int64" Nullable="false" />
- <Property Name="history_charge_gold" Type="Int64" Nullable="false" />
- <Property Name="history_free_gold" Type="Int64" Nullable="false" />
- <Property Name="rank_bonus_title_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="recent_flee_buff_id" Type="Int32" Nullable="false" />
- <Property Name="add_buff_yday" Type="Int32" Nullable="false" />
- <Property Name="need_rename" Type="SByte" Nullable="false" />
- <Property Name="can_gain_active_code_item" Type="Boolean" Nullable="false" />
- <Property Name="total_online_seconds" Type="Int64" Nullable="false" />
- <Property Name="city_server_name" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="last_login_realtime" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="anti_addiction_online_time" Type="Int32" Nullable="false" />
- <Property Name="anti_addiction_offline_time" Type="Int32" Nullable="false" />
- <Property Name="gs_active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="ban_login_expired_time" Type="Int64" />
- <Property Name="ban_chat_expired_time" Type="Int64" />
- <Property Name="pve_equipment_max_strengthen_level" Type="Int32" Nullable="false" />
- <Property Name="pve_equipment_active_scheme_id" Type="Int32" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_achievement">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="achievement_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="achievement_id" Type="Int32" Nullable="false" />
- <Property Name="event_count" Type="Int32" />
- <Property Name="is_accomplished" Type="Boolean" Nullable="false" />
- <Property Name="accomplish_time" Type="DateTime" />
- <Property Name="hero_id" Type="Int32" />
- <Property Name="battle_guid" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_character_appearance">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="appearance_type" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="appearance_type" Type="Int32" Nullable="false" />
- <Property Name="headdress" Type="Decimal" Nullable="false" />
- <Property Name="wing" Type="Decimal" Nullable="false" />
- <Property Name="clothes" Type="Decimal" Nullable="false" />
- <Property Name="weapon" Type="Decimal" Nullable="false" />
- <Property Name="magic_weapon" Type="Decimal" Nullable="false" />
- <Property Name="mounts" Type="Decimal" Nullable="false" />
- <Property Name="face" Type="Decimal" Nullable="false" />
- <Property Name="riding_status" Type="Int32" Nullable="false" />
- <Property Name="color1" Type="Int64" Nullable="false" />
- <Property Name="color2" Type="Int64" Nullable="false" />
- <Property Name="color3" Type="Int64" Nullable="false" />
- <Property Name="color4" Type="Int64" Nullable="false" />
- <Property Name="color5" Type="Int64" Nullable="false" />
- <Property Name="default_visual" Type="Int32" Nullable="false" />
- <Property Name="default_face" Type="Int32" Nullable="false" />
- <Property Name="default_headdress" Type="Int32" Nullable="false" />
- <Property Name="color_scheme_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_assets">
- <Key>
- <PropertyRef Name="assets_id" />
- </Key>
- <Property Name="assets_id" Type="Int64" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="assets_type" Type="Int16" Nullable="false" />
- <Property Name="balance" Type="Int64" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_default_fighting_options">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="last_common_spell_series_id" Type="Int32" Nullable="false" />
- <Property Name="last_rune_scheme_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_info">
- <Key>
- <PropertyRef Name="tid" />
- </Key>
- <Property Name="tid" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- <Property Name="item_id" Type="Int32" Nullable="false" />
- <Property Name="slot" Type="Int32" Nullable="false" />
- <Property Name="item_count" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="source" Type="Int32" Nullable="false" />
- <Property Name="is_bound" Type="Boolean" Nullable="false" />
- <Property Name="location" Type="Int32" Nullable="false" />
- <Property Name="attributes" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="buy_time" Type="DateTime" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="buy_type" Type="Int32" Nullable="false" />
- <Property Name="pay_type" Type="Int32" Nullable="false" />
- <Property Name="pay_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="reiki_count" Type="Int32" Nullable="false" />
- <Property Name="durability_count" Type="Int32" Nullable="false" />
- <Property Name="recast_count" Type="Int32" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_options">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="rune_not_show_binding_tips" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_character_questionnaire">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="questionnaire_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="questionnaire_id" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_charge_list">
- <Key>
- <PropertyRef Name="charge_listid" />
- </Key>
- <Property Name="charge_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="charge_sn" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="account" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="ip" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="pay_points" Type="Int32" Nullable="false" />
- <Property Name="charge_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="url_parameters" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="charge_state" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="retry_times" Type="Int32" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_buff">
- <Key>
- <PropertyRef Name="buff_guid" />
- </Key>
- <Property Name="buff_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="buff_id" Type="Int32" Nullable="false" />
- <Property Name="buff_time" Type="Int32" Nullable="false" />
- <Property Name="stack" Type="Int32" Nullable="false" />
- <Property Name="buff_values" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_position">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="city_name" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="city_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="x" Type="Single" Nullable="false" />
- <Property Name="y" Type="Single" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_task_finish_sub_state">
- <Key>
- <PropertyRef Name="task_guid" />
- <PropertyRef Name="city_task_sub_state_type" />
- </Key>
- <Property Name="task_guid" Type="Decimal" Nullable="false" />
- <Property Name="city_task_sub_state_type" Type="Int32" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="total_count" Type="Int32" Nullable="false" />
- <Property Name="finish_count" Type="Int32" Nullable="false" />
- <Property Name="detail" Type="String" Nullable="false" MaxLength="1024" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_city_task_info">
- <Key>
- <PropertyRef Name="task_guid" />
- </Key>
- <Property Name="task_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="task_id" Type="Int32" Nullable="false" />
- <Property Name="state" Type="Int32" Nullable="false" />
- <Property Name="finish_timestamp" Type="Decimal" Nullable="false" />
- <Property Name="accept_time" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_client_config">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="map_type" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
- <Property Name="key_setting" Type="String" Nullable="false" MaxLength="2048" Unicode="false" FixedLength="false" />
- <Property Name="use_dota_key" Type="Boolean" Nullable="false" />
- <Property Name="shop_using_price_classify" Type="Boolean" Nullable="false" />
- <Property Name="client_config_str" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_common_spell">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="common_spell_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="common_spell_id" Type="Int32" Nullable="false" />
- <Property Name="common_spell_series" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_daily_online_time">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="login_date" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="login_date" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="online_time" Type="Int32" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employ_notice_status">
- <Key>
- <PropertyRef Name="employ_notice_status_id" />
- </Key>
- <Property Name="employ_notice_status_id" Type="Int32" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="publisher_guid" Type="Decimal" Nullable="false" />
- <Property Name="applicant_guid" Type="Decimal" Nullable="false" />
- <Property Name="status" Type="Decimal" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employ_relation">
- <Key>
- <PropertyRef Name="employ_relation_id" />
- </Key>
- <Property Name="employ_relation_id" Type="Int32" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="employer_guid" Type="Decimal" Nullable="false" />
- <Property Name="employee_guid" Type="Decimal" Nullable="false" />
- <Property Name="assets_type" Type="Int32" Nullable="false" />
- <Property Name="price" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employee_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="employee_experience" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employee_notice">
- <Key>
- <PropertyRef Name="employee_guid" />
- </Key>
- <Property Name="employee_guid" Type="Decimal" Nullable="false" />
- <Property Name="apply_type" Type="Int32" Nullable="false" />
- <Property Name="assets_type" Type="Int32" Nullable="false" />
- <Property Name="price" Type="Int32" Nullable="false" />
- <Property Name="publish_time" Type="DateTime" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="success" Type="Boolean" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- </EntityType>
- <EntityType Name="t_employer_notice">
- <Key>
- <PropertyRef Name="employer_guid" />
- </Key>
- <Property Name="employer_guid" Type="Decimal" Nullable="false" />
- <Property Name="want_type" Type="Int32" Nullable="false" />
- <Property Name="employee_level_condition" Type="Int32" Nullable="false" />
- <Property Name="player_level_condition" Type="Int32" Nullable="false" />
- <Property Name="player_pvp_score_condition" Type="Int32" Nullable="false" />
- <Property Name="assets_type" Type="Int32" Nullable="false" />
- <Property Name="price" Type="Int32" Nullable="false" />
- <Property Name="publish_time" Type="DateTime" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="success" Type="Boolean" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- </EntityType>
- <EntityType Name="t_fighting_evaluation_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="evaluate_player_guid" />
- <PropertyRef Name="evaluate_type" />
- <PropertyRef Name="evaluate_time" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="evaluate_player_guid" Type="Decimal" Nullable="false" />
- <Property Name="evaluate_type" Type="Int32" Nullable="false" />
- <Property Name="evaluate_time" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_friend">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="friend_guid" />
- <PropertyRef Name="group_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="friend_guid" Type="Decimal" Nullable="false" />
- <Property Name="group_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_friend_group">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="group_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="group_id" Type="Int32" Nullable="false" />
- <Property Name="group_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="is_sys_group" Type="SByte" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_game_hero_use_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="use_count" Type="Int32" Nullable="false" />
- <Property Name="pvp_score" Type="Int32" Nullable="false" />
- <Property Name="pvp_score_uptime" Type="Int64" Nullable="false" />
- <Property Name="mvp_count" Type="Int32" Nullable="false" />
- <Property Name="mvp_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="achievement" Type="Int32" Nullable="false" />
- <Property Name="achievement_uptime" Type="Int64" Nullable="false" />
- <Property Name="loser_mvp_count" Type="Int32" Nullable="false" />
- <Property Name="loser_mvp_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="daily_kill_count" Type="Int32" Nullable="false" />
- <Property Name="daily_kill_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="daily_dead_count" Type="Int32" Nullable="false" />
- <Property Name="daily_dead_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="daily_assist_count" Type="Int32" Nullable="false" />
- <Property Name="daily_assist_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="daily_total_money" Type="Int32" Nullable="false" />
- <Property Name="daily_total_money_uptime" Type="Int64" Nullable="false" />
- <Property Name="daily_kill_friend_soldier" Type="Int32" Nullable="false" />
- <Property Name="daily_kill_friend_soldier_uptime" Type="Int64" Nullable="false" />
- <Property Name="win_count" Type="Int32" Nullable="false" />
- <Property Name="trueskill" Type="Double" Nullable="false" />
- <Property Name="total_kill_count" Type="Int64" Nullable="false" />
- <Property Name="total_assist_count" Type="Int64" Nullable="false" />
- <Property Name="total_dead_count" Type="Int64" Nullable="false" />
- <Property Name="total_first_blood" Type="Int64" Nullable="false" />
- <Property Name="total_killed_by_first_blood" Type="Int64" Nullable="false" />
- <Property Name="total_get_money" Type="Int64" Nullable="false" />
- <Property Name="total_kill_hostile_soldier" Type="Int64" Nullable="false" />
- <Property Name="total_kill_friend_soldier" Type="Int64" Nullable="false" />
- <Property Name="total_destroy_hostile_tower" Type="Int64" Nullable="false" />
- <Property Name="total_destroy_friend_tower" Type="Int64" Nullable="false" />
- <Property Name="total_kill_monster_number" Type="Int64" Nullable="false" />
- <Property Name="most_continuous_kill_number" Type="Int64" Nullable="false" />
- <Property Name="total_physics_damage" Type="Int64" Nullable="false" />
- <Property Name="total_magic_damage" Type="Int64" Nullable="false" />
- <Property Name="max_kill_hostile_soldier_times" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="score_update_count" Type="Int32" Nullable="false" />
- </EntityType>
- <EntityType Name="t_game_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_name" Type="String" Nullable="false" MaxLength="50" Unicode="false" FixedLength="false" />
- <Property Name="register_area" Type="Int32" Nullable="false" />
- <Property Name="character_level" Type="Int32" Nullable="false" />
- <Property Name="experience" Type="Int32" Nullable="false" />
- <Property Name="experience_uptime" Type="Int64" Nullable="false" />
- <Property Name="stage_score" Type="Int32" Nullable="false" />
- <Property Name="stage_score_uptime" Type="Int64" Nullable="false" />
- <Property Name="win_count" Type="Int32" Nullable="false" />
- <Property Name="lose_count" Type="Int32" Nullable="false" />
- <Property Name="flee_count" Type="Int32" Nullable="false" />
- <Property Name="max_kill_games" Type="Int32" Nullable="false" />
- <Property Name="max_assist_games" Type="Int32" Nullable="false" />
- <Property Name="max_destroy_hostile_towner_games" Type="Int32" Nullable="false" />
- <Property Name="first_blood_games" Type="Int32" Nullable="false" />
- <Property Name="max_money_games" Type="Int32" Nullable="false" />
- <Property Name="kill_boss_count" Type="Int32" Nullable="false" />
- <Property Name="kill_boss_count_uptime" Type="Int64" Nullable="false" />
- <Property Name="max_money" Type="Int32" Nullable="false" />
- <Property Name="max_assist" Type="Int32" Nullable="false" />
- <Property Name="max_kill" Type="Int32" Nullable="false" />
- <Property Name="exploit_value" Type="Int32" Nullable="false" />
- <Property Name="pass_level_count" Type="Int32" Nullable="false" />
- <Property Name="lose_level_count" Type="Int32" Nullable="false" />
- <Property Name="get_s_count" Type="Int32" Nullable="false" />
- <Property Name="last_level_up_time" Type="Int64" Nullable="false" />
- <Property Name="mean" Type="Double" Nullable="false" />
- <Property Name="deviation" Type="Double" Nullable="false" />
- <Property Name="total_kill_boss_number" Type="Decimal" Nullable="false" />
- <Property Name="played_time" Type="Decimal" Nullable="false" />
- <Property Name="in_city_time" Type="Decimal" Nullable="false" />
- <Property Name="in_match_time" Type="Decimal" Nullable="false" />
- <Property Name="in_room_time" Type="Decimal" Nullable="false" />
- <Property Name="arena_match_score" Type="Int32" Nullable="false" />
- <Property Name="funny_match_score" Type="Int32" Nullable="false" />
- <Property Name="good_reputation_count" Type="Int32" Nullable="false" />
- <Property Name="wujiangshilian_play_time" Type="Int32" Nullable="false" />
- <Property Name="youzhou_last_play_soldier_count" Type="Int32" Nullable="false" />
- <Property Name="youzhou_last_play_soldier_level" Type="Int32" Nullable="false" />
- <Property Name="vip_exp" Type="Int32" Nullable="false" />
- <Property Name="vip_exp_accumulate" Type="Int32" />
- <Property Name="last_vip_exp_up_time" Type="Int64" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_gs_code">
- <Key>
- <PropertyRef Name="active_code" />
- </Key>
- <Property Name="active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="character_name" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="invitee_guid" Type="Decimal" Nullable="false" />
- <Property Name="notify_inviter" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_color_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="color_scheme_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="color_scheme_id" Type="Int32" Nullable="false" />
- <Property Name="color1" Type="Int64" Nullable="false" />
- <Property Name="color2" Type="Int64" Nullable="false" />
- <Property Name="color3" Type="Int64" Nullable="false" />
- <Property Name="color4" Type="Int64" Nullable="false" />
- <Property Name="color5" Type="Int64" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_level_state">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="level" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="level" Type="Int32" Nullable="false" />
- <Property Name="selected_free_hero" Type="Boolean" />
- <Property Name="selected_discount_hero" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_pet">
- <Key>
- <PropertyRef Name="guid" />
- </Key>
- <Property Name="guid" Type="Decimal" Nullable="false" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="location" Type="Int32" Nullable="false" />
- <Property Name="level" Type="Int32" Nullable="false" />
- <Property Name="expr" Type="Int32" Nullable="false" />
- <Property Name="closeness" Type="Int32" Nullable="false" />
- <Property Name="closeness_up_fail" Type="Int32" Nullable="false" />
- <Property Name="merge_count" Type="Int32" Nullable="false" />
- <Property Name="merge_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_suggest_equipment">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="plan_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="plan_id" Type="Int32" Nullable="false" />
- <Property Name="plan_description" Type="String" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="item_id0" Type="Int32" />
- <Property Name="item_id1" Type="Int32" />
- <Property Name="item_id2" Type="Int32" />
- <Property Name="item_id3" Type="Int32" />
- <Property Name="item_id4" Type="Int32" />
- <Property Name="item_id5" Type="Int32" />
- <Property Name="is_deleted" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_talent_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="total_used_hero_experience" Type="Int32" />
- <Property Name="enable_branch" Type="Int32" />
- <Property Name="this_branch_point" Type="Int32" />
- <Property Name="available_experience" Type="Int32" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_talent_info_sub_state">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- <PropertyRef Name="talent_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="talent_id" Type="Int32" Nullable="false" />
- <Property Name="point" Type="Int32" />
- <Property Name="is_full_point" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_hero_unlock_hero">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="hero_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="hero_id" Type="Int32" Nullable="false" />
- <Property Name="is_activated" Type="Boolean" />
- <Property Name="cur_color_scheme_id" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_illegal_term_rules">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="regex" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="id" Type="Int64" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- </EntityType>
- <EntityType Name="t_item_roll_list">
- <Key>
- <PropertyRef Name="item_roll_guid" />
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="item_guid" />
- <PropertyRef Name="item_id" />
- <PropertyRef Name="item_name" />
- <PropertyRef Name="source" />
- <PropertyRef Name="is_bound" />
- <PropertyRef Name="attributes" />
- <PropertyRef Name="buy_time" />
- <PropertyRef Name="expire_time" />
- <PropertyRef Name="buy_type" />
- <PropertyRef Name="pay_type" />
- <PropertyRef Name="pay_yuanbao" />
- <PropertyRef Name="free_yuanbao" />
- <PropertyRef Name="previous_count" />
- <PropertyRef Name="previous_location" />
- <PropertyRef Name="count" />
- <PropertyRef Name="location" />
- <PropertyRef Name="change_type" />
- <PropertyRef Name="billing_state" />
- <PropertyRef Name="charge_gold_balance" />
- <PropertyRef Name="free_gold_balance" />
- <PropertyRef Name="modify_time" />
- <PropertyRef Name="create_time" />
- </Key>
- <Property Name="item_roll_guid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="item_guid" Type="Decimal" Nullable="false" />
- <Property Name="item_id" Type="Int64" Nullable="false" />
- <Property Name="item_name" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="source" Type="Int32" Nullable="false" />
- <Property Name="is_bound" Type="Int32" Nullable="false" />
- <Property Name="attributes" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="buy_time" Type="DateTime" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="buy_type" Type="Int32" Nullable="false" />
- <Property Name="pay_type" Type="Int32" Nullable="false" />
- <Property Name="pay_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
- <Property Name="previous_count" Type="Int32" Nullable="false" />
- <Property Name="previous_location" Type="Int32" Nullable="false" />
- <Property Name="count" Type="Int32" Nullable="false" />
- <Property Name="location" Type="Int32" Nullable="false" />
- <Property Name="change_type" Type="Int32" Nullable="false" />
- <Property Name="billing_state" Type="Int32" Nullable="false" />
- <Property Name="charge_gold_balance" Type="Int32" Nullable="false" />
- <Property Name="free_gold_balance" Type="Int32" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_login_reward">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="year_day" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="year_day" Type="Int32" Nullable="false" />
- <Property Name="reward_id" Type="Int32" Nullable="false" />
- <Property Name="is_deleted" Type="SByte" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mail">
- <Key>
- <PropertyRef Name="mail_guid" />
- </Key>
- <Property Name="mail_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- <Property Name="checked" Type="Boolean" Nullable="false" />
- <Property Name="is_read" Type="Boolean" Nullable="false" />
- <Property Name="is_system_mail" Type="Boolean" Nullable="false" />
- <Property Name="sender_guid" Type="Decimal" Nullable="false" />
- <Property Name="sender_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="receiver_guid" Type="Decimal" Nullable="false" />
- <Property Name="receiver_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="mail_subject" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
- <Property Name="mail_body" Type="String" Nullable="false" MaxLength="65535" Unicode="false" FixedLength="false" />
- <Property Name="silver" Type="Int32" Nullable="false" />
- <Property Name="charge_gold" Type="Int32" Nullable="false" />
- <Property Name="money_is_taked" Type="Boolean" Nullable="false" />
- <Property Name="item_count" Type="Int32" Nullable="false" />
- <Property Name="expire_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mail_item">
- <Key>
- <PropertyRef Name="item_guid" />
- </Key>
- <Property Name="item_guid" Type="Decimal" Nullable="false" />
- <Property Name="mail_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_taked" Type="Boolean" Nullable="false" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_mall_items_sales_count">
- <Key>
- <PropertyRef Name="item_id" />
- </Key>
- <Property Name="item_id" Type="Int32" Nullable="false" />
- <Property Name="sale_count" Type="Int32" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_map_play_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="map_type" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="map_type" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="play_count" Type="Int32" Nullable="false" />
- <Property Name="win_count" Type="Int32" Nullable="false" />
- <Property Name="last_play_date" Type="Decimal" Nullable="false" />
- <Property Name="total_play_time" Type="Decimal" Nullable="false" />
- <Property Name="today_play_time" Type="Int32" Nullable="false" />
- <Property Name="current_level" Type="Int32" Nullable="false" />
- <Property Name="max_score" Type="Int32" Nullable="false" />
- <Property Name="kill_boss_count" Type="Int32" Nullable="false" />
- <Property Name="kill_hostile_soldier" Type="Int64" Nullable="false" />
- <Property Name="max_total_damage" Type="Int32" Nullable="false" />
- <Property Name="max_total_suffer_damage" Type="Int32" Nullable="false" />
- <Property Name="max_total_heal" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_meta">
- <Key>
- <PropertyRef Name="meta_key" />
- </Key>
- <Property Name="meta_key" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="meta_value" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
- </EntityType>
- <EntityType Name="t_offline_message">
- <Key>
- <PropertyRef Name="fid" />
- </Key>
- <Property Name="fid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="proto_name" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
- <Property Name="content" Type="String" Nullable="false" MaxLength="1073741823" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="is_deleted" Type="SByte" Nullable="false" />
- </EntityType>
- <EntityType Name="t_player_offline_message">
- <Key>
- <PropertyRef Name="fid" />
- </Key>
- <Property Name="fid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="opcode" Type="Int32" Nullable="false" />
- <Property Name="content" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- <Property Name="is_deleted" Type="Boolean" Nullable="false" />
- </EntityType>
- <EntityType Name="t_pve_equipment_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="scheme_id" />
- <PropertyRef Name="slot0_item_guid" />
- <PropertyRef Name="slot1_item_guid" />
- <PropertyRef Name="slot2_item_guid" />
- <PropertyRef Name="slot3_item_guid" />
- <PropertyRef Name="slot4_item_guid" />
- <PropertyRef Name="slot5_item_guid" />
- <PropertyRef Name="slot6_item_guid" />
- <PropertyRef Name="slot7_item_guid" />
- <PropertyRef Name="slot8_item_guid" />
- <PropertyRef Name="slot9_item_guid" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="scheme_id" Type="Int32" Nullable="false" />
- <Property Name="scheme_name" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
- <Property Name="slot0_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot1_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot2_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot3_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot4_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot5_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot6_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot7_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot8_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot9_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_pve_equipment_strength">
- <Key>
- <PropertyRef Name="guid" />
- <PropertyRef Name="strength_lv" />
- <PropertyRef Name="strength_value" />
- <PropertyRef Name="create_time" />
- <PropertyRef Name="modify_time" />
- </Key>
- <Property Name="guid" Type="Decimal" Nullable="false" />
- <Property Name="strength_lv" Type="Int32" Nullable="false" />
- <Property Name="strength_value" Type="Double" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_questionnaire">
- <Key>
- <PropertyRef Name="questionnaire_id" />
- </Key>
- <Property Name="questionnaire_id" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
- <Property Name="content" Type="String" MaxLength="65535" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_roll_log">
- <Key>
- <PropertyRef Name="roll_listid" />
- </Key>
- <Property Name="roll_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="bill_listid" Type="String" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="character_guid" Type="Decimal" />
- <Property Name="vs_guid" Type="Decimal" />
- <Property Name="roll_type" Type="Int16" />
- <Property Name="assets_type" Type="Int16" />
- <Property Name="amount" Type="Int32" />
- <Property Name="balance" Type="Int64" />
- <Property Name="ip" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="memo" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_rune_scheme">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="scheme_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="scheme_id" Type="Int32" Nullable="false" />
- <Property Name="scheme_name" Type="String" Nullable="false" MaxLength="50" Unicode="false" FixedLength="false" />
- <Property Name="slot0_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot1_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot2_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot3_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot4_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot5_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot6_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot7_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot8_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot9_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot10_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot11_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot12_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot13_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="slot14_item_guid" Type="Decimal" Nullable="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_social_group_basic">
- <Key>
- <PropertyRef Name="group_guid" />
- </Key>
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="group_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="group_type" Type="Int32" Nullable="false" />
- <Property Name="owner_guid" Type="Decimal" Nullable="false" />
- <Property Name="owner_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
- <Property Name="member_size" Type="Int32" Nullable="false" />
- <Property Name="manager_size" Type="Int32" Nullable="false" />
- <Property Name="bulletin" Type="String" MaxLength="65535" Unicode="false" FixedLength="false" />
- <Property Name="join_rule" Type="Int32" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_social_group_manager">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="manager_guid" />
- </Key>
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="manager_guid" Type="Decimal" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_social_group_member">
- <Key>
- <PropertyRef Name="group_guid" />
- <PropertyRef Name="member_guid" />
- </Key>
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="member_guid" Type="Decimal" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_title_info">
- <Key>
- <PropertyRef Name="character_guid" />
- <PropertyRef Name="title_id" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="title_id" Type="Int32" Nullable="false" />
- <Property Name="new_title" Type="Boolean" />
- <Property Name="valid_time" Type="Int32" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_tran_log">
- <Key>
- <PropertyRef Name="tran_listid" />
- </Key>
- <Property Name="tran_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
- <Property Name="buyer_guid" Type="Decimal" />
- <Property Name="buyer_account" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="seller_guid" Type="Decimal" />
- <Property Name="seller_account" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
- <Property Name="assets_type" Type="Int16" />
- <Property Name="pay_amount" Type="Int32" />
- <Property Name="bill_listid" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="ip" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
- <Property Name="memo" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_tutorial">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="is_first_login" Type="SByte" />
- <Property Name="close_beginner_map_guide" Type="Boolean" />
- <Property Name="match_count" Type="Int32" />
- <Property Name="quick_match_count" Type="Int32" />
- <Property Name="close_compound_hero_guide" Type="Boolean" />
- <Property Name="gain_hero_pet_item" Type="Boolean" />
- <Property Name="create_time" Type="DateTime" />
- <Property Name="modify_time" Type="DateTime" />
- </EntityType>
- <EntityType Name="t_tutorial_status_info">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="beginner_map_win_count" Type="Int32" Nullable="false" />
- <Property Name="match_count" Type="Int32" Nullable="false" />
- <Property Name="quick_match_count" Type="Int32" Nullable="false" />
- <Property Name="is_close_notify_tutorial" Type="SByte" Nullable="false" />
- <Property Name="is_close_notify_mini_tutorial" Type="SByte" Nullable="false" />
- <Property Name="create_time" Type="DateTime" Nullable="false" />
- <Property Name="modify_time" Type="DateTime" Nullable="false" />
- </EntityType>
- <EntityType Name="t_world_character">
- <Key>
- <PropertyRef Name="character_guid" />
- </Key>
- <Property Name="character_guid" Type="Decimal" Nullable="false" />
- <Property Name="group_guid" Type="Decimal" Nullable="false" />
- <Property Name="room_guid" Type="Decimal" Nullable="false" />
- </EntityType>
- </Schema>
- </edmx:ConceptualModels>
- <!-- C-S mapping content -->
- <edmx:Mappings>
- <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
- <EntityContainerMapping StorageEntityContainer="DataCenterModelStoreContainer" CdmEntityContainer="DataCenterEntities">
- <EntitySetMapping Name="t_account">
- <EntityTypeMapping TypeName="DataCenterModel.t_account">
- <MappingFragment StoreEntitySet="t_account">
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="account_guid" ColumnName="account_guid" />
- <ScalarProperty Name="sessionkey" ColumnName="sessionkey" />
- <ScalarProperty Name="v" ColumnName="v" />
- <ScalarProperty Name="s" ColumnName="s" />
- <ScalarProperty Name="active_code" ColumnName="active_code" />
- <ScalarProperty Name="active_code_used" ColumnName="active_code_used" />
- <ScalarProperty Name="first_char_guid" ColumnName="first_char_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="gm_level" ColumnName="gm_level" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_account_active_code">
- <EntityTypeMapping TypeName="DataCenterModel.t_account_active_code">
- <MappingFragment StoreEntitySet="t_account_active_code">
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="gain_active_codes" ColumnName="gain_active_codes" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_account_login_auth_response_cookie">
- <EntityTypeMapping TypeName="DataCenterModel.t_account_login_auth_response_cookie">
- <MappingFragment StoreEntitySet="t_account_login_auth_response_cookie">
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="aid" ColumnName="aid" />
- <ScalarProperty Name="ssn" ColumnName="ssn" />
- <ScalarProperty Name="gamepoint" ColumnName="gamepoint" />
- <ScalarProperty Name="balance" ColumnName="balance" />
- <ScalarProperty Name="sn" ColumnName="sn" />
- <ScalarProperty Name="user_type" ColumnName="user_type" />
- <ScalarProperty Name="otpstat" ColumnName="otpstat" />
- <ScalarProperty Name="otpuptime" ColumnName="otpuptime" />
- <ScalarProperty Name="infosafe" ColumnName="infosafe" />
- <ScalarProperty Name="phonestat" ColumnName="phonestat" />
- <ScalarProperty Name="ppcstat" ColumnName="ppcstat" />
- <ScalarProperty Name="ppccoord" ColumnName="ppccoord" />
- <ScalarProperty Name="mppstat" ColumnName="mppstat" />
- <ScalarProperty Name="rnstat" ColumnName="rnstat" />
- <ScalarProperty Name="regtime" ColumnName="regtime" />
- <ScalarProperty Name="mobileno" ColumnName="mobileno" />
- <ScalarProperty Name="need_activate_game" ColumnName="need_activate_game" />
- <ScalarProperty Name="game_flag" ColumnName="game_flag" />
- <ScalarProperty Name="deactivated" ColumnName="deactivated" />
- <ScalarProperty Name="uidcount" ColumnName="uidcount" />
- <ScalarProperty Name="newtm" ColumnName="newtm" />
- <ScalarProperty Name="vipstatus" ColumnName="vipstatus" />
- <ScalarProperty Name="is_vip_phone_trusty" ColumnName="is_vip_phone_trusty" />
- <ScalarProperty Name="is_vip_addr_trusty" ColumnName="is_vip_addr_trusty" />
- <ScalarProperty Name="real_name_flag" ColumnName="real_name_flag" />
- <ScalarProperty Name="mobileisactivated" ColumnName="mobileisactivated" />
- <ScalarProperty Name="secu_info_ready" ColumnName="secu_info_ready" />
- <ScalarProperty Name="secu_info_pin_ma" ColumnName="secu_info_pin_ma" />
- <ScalarProperty Name="secu_info_id_num" ColumnName="secu_info_id_num" />
- <ScalarProperty Name="id_num" ColumnName="id_num" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_account_tutorial_status_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_account_tutorial_status_info">
- <MappingFragment StoreEntitySet="t_account_tutorial_status_info">
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="max_level" ColumnName="max_level" />
- <ScalarProperty Name="beginner_map_win_count" ColumnName="beginner_map_win_count" />
- <ScalarProperty Name="match_count" ColumnName="match_count" />
- <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
- <ScalarProperty Name="is_close_notify_tutorial" ColumnName="is_close_notify_tutorial" />
- <ScalarProperty Name="is_close_notify_mini_tutorial" ColumnName="is_close_notify_mini_tutorial" />
- <ScalarProperty Name="composite_hero_token_count" ColumnName="composite_hero_token_count" />
- <ScalarProperty Name="is_close_merge_tutorial" ColumnName="is_close_merge_tutorial" />
- <ScalarProperty Name="create_ai_map_room_count" ColumnName="create_ai_map_room_count" />
- <ScalarProperty Name="is_close_ai_map_room_tutorial" ColumnName="is_close_ai_map_room_tutorial" />
- <ScalarProperty Name="is_get_beginner_map_bonus" ColumnName="is_get_beginner_map_bonus" />
- <ScalarProperty Name="got_new_player_survey" ColumnName="got_new_player_survey" />
- <ScalarProperty Name="player_level" ColumnName="player_level" />
- <ScalarProperty Name="is_notify_common_skill" ColumnName="is_notify_common_skill" />
- <ScalarProperty Name="is_first_open_rune_panel" ColumnName="is_first_open_rune_panel" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_active_code">
- <EntityTypeMapping TypeName="DataCenterModel.t_active_code">
- <MappingFragment StoreEntitySet="t_active_code">
- <ScalarProperty Name="active_code" ColumnName="active_code" />
- <ScalarProperty Name="code_type" ColumnName="code_type" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="grant_type" ColumnName="grant_type" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_attribute">
- <EntityTypeMapping TypeName="DataCenterModel.t_attribute">
- <MappingFragment StoreEntitySet="t_attribute">
- <ScalarProperty Name="guid" ColumnName="guid" />
- <ScalarProperty Name="id" ColumnName="id" />
- <ScalarProperty Name="sub_id" ColumnName="sub_id" />
- <ScalarProperty Name="value" ColumnName="value" />
- <ScalarProperty Name="attr_type" ColumnName="attr_type" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_auction_item">
- <EntityTypeMapping TypeName="DataCenterModel.t_auction_item">
- <MappingFragment StoreEntitySet="t_auction_item">
- <ScalarProperty Name="item_guid" ColumnName="item_guid" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="seller_guid" ColumnName="seller_guid" />
- <ScalarProperty Name="seller_name" ColumnName="seller_name" />
- <ScalarProperty Name="seller_ip" ColumnName="seller_ip" />
- <ScalarProperty Name="auction_class" ColumnName="auction_class" />
- <ScalarProperty Name="item_name" ColumnName="item_name" />
- <ScalarProperty Name="item_id" ColumnName="item_id" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="deposit" ColumnName="deposit" />
- <ScalarProperty Name="sum_price" ColumnName="sum_price" />
- <ScalarProperty Name="unit_price" ColumnName="unit_price" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="tran_guid" ColumnName="tran_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_available_map">
- <EntityTypeMapping TypeName="DataCenterModel.t_available_map">
- <MappingFragment StoreEntitySet="t_available_map">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="map_type" ColumnName="map_type" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_battle_gameover_statistic">
- <EntityTypeMapping TypeName="DataCenterModel.t_battle_gameover_statistic">
- <MappingFragment StoreEntitySet="t_battle_gameover_statistic">
- <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
- <ScalarProperty Name="gameover_statistic" ColumnName="gameover_statistic" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_battle_kill_detail">
- <EntityTypeMapping TypeName="DataCenterModel.t_battle_kill_detail">
- <MappingFragment StoreEntitySet="t_battle_kill_detail">
- <ScalarProperty Name="kill_id" ColumnName="kill_id" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
- <ScalarProperty Name="kill_type" ColumnName="kill_type" />
- <ScalarProperty Name="kill_name" ColumnName="kill_name" />
- <ScalarProperty Name="kill_guid" ColumnName="kill_guid" />
- <ScalarProperty Name="assist_name" ColumnName="assist_name" />
- <ScalarProperty Name="kill_time" ColumnName="kill_time" />
- <ScalarProperty Name="killed_name" ColumnName="killed_name" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_battle_summary">
- <EntityTypeMapping TypeName="DataCenterModel.t_battle_summary">
- <MappingFragment StoreEntitySet="t_battle_summary">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
- <ScalarProperty Name="pvp_or_pve" ColumnName="pvp_or_pve" />
- <ScalarProperty Name="is_win" ColumnName="is_win" />
- <ScalarProperty Name="is_mvp" ColumnName="is_mvp" />
- <ScalarProperty Name="is_most_kill_person" ColumnName="is_most_kill_person" />
- <ScalarProperty Name="is_most_assist" ColumnName="is_most_assist" />
- <ScalarProperty Name="is_most_money" ColumnName="is_most_money" />
- <ScalarProperty Name="is_down_tower" ColumnName="is_down_tower" />
- <ScalarProperty Name="is_most_kill_friend" ColumnName="is_most_kill_friend" />
- <ScalarProperty Name="is_lost_mvp" ColumnName="is_lost_mvp" />
- <ScalarProperty Name="is_s_pve_map" ColumnName="is_s_pve_map" />
- <ScalarProperty Name="is_first_blood" ColumnName="is_first_blood" />
- <ScalarProperty Name="is_pve_most_kill_boss" ColumnName="is_pve_most_kill_boss" />
- <ScalarProperty Name="is_pve_most_take_damage" ColumnName="is_pve_most_take_damage" />
- <ScalarProperty Name="is_pve_most_healing" ColumnName="is_pve_most_healing" />
- <ScalarProperty Name="is_pve_most_damage" ColumnName="is_pve_most_damage" />
- <ScalarProperty Name="map_type" ColumnName="map_type" />
- <ScalarProperty Name="battle_date" ColumnName="battle_date" />
- <ScalarProperty Name="battle_time" ColumnName="battle_time" />
- <ScalarProperty Name="is_escape" ColumnName="is_escape" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="match_type" ColumnName="match_type" />
- <ScalarProperty Name="is_reinforce" ColumnName="is_reinforce" />
- <ScalarProperty Name="pvp_kill_count" ColumnName="pvp_kill_count" />
- <ScalarProperty Name="pvp_assist_count" ColumnName="pvp_assist_count" />
- <ScalarProperty Name="pvp_dead_count" ColumnName="pvp_dead_count" />
- <ScalarProperty Name="pvp_most_continuous_kill_number" ColumnName="pvp_most_continuous_kill_number" />
- <ScalarProperty Name="pvp_score" ColumnName="pvp_score" />
- <ScalarProperty Name="pve_boss_kill" ColumnName="pve_boss_kill" />
- <ScalarProperty Name="pve_kill_hostile_soldier" ColumnName="pve_kill_hostile_soldier" />
- <ScalarProperty Name="pve_total_money" ColumnName="pve_total_money" />
- <ScalarProperty Name="pve_get_level" ColumnName="pve_get_level" />
- <ScalarProperty Name="is_employ_battle" ColumnName="is_employ_battle" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_beginner_group_config">
- <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_config">
- <MappingFragment StoreEntitySet="t_beginner_group_config">
- <ScalarProperty Name="aid" ColumnName="aid" />
- <ScalarProperty Name="max_group_id" ColumnName="max_group_id" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_beginner_group_cong">
- <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_cong">
- <MappingFragment StoreEntitySet="t_beginner_group_cong">
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="character_level" ColumnName="character_level" />
- <ScalarProperty Name="cong_guid_list" ColumnName="cong_guid_list" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_beginner_group_event">
- <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_event">
- <MappingFragment StoreEntitySet="t_beginner_group_event">
- <ScalarProperty Name="event_guid" ColumnName="event_guid" />
- <ScalarProperty Name="beginner_group_guid" ColumnName="beginner_group_guid" />
- <ScalarProperty Name="event_id" ColumnName="event_id" />
- <ScalarProperty Name="event_content" ColumnName="event_content" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_celebration_reward">
- <EntityTypeMapping TypeName="DataCenterModel.t_celebration_reward">
- <MappingFragment StoreEntitySet="t_celebration_reward">
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="reward_type" ColumnName="reward_type" />
- <ScalarProperty Name="tel_number" ColumnName="tel_number" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_activity">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_activity">
- <MappingFragment StoreEntitySet="t_challenge_activity">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="activity_status" ColumnName="activity_status" />
- <ScalarProperty Name="start_time" ColumnName="start_time" />
- <ScalarProperty Name="battle_id" ColumnName="battle_id" />
- <ScalarProperty Name="challenger_win" ColumnName="challenger_win" />
- <ScalarProperty Name="kfz_best_hero" ColumnName="kfz_best_hero" />
- <ScalarProperty Name="game_over_time" ColumnName="game_over_time" />
- <ScalarProperty Name="challenger_win_bet" ColumnName="challenger_win_bet" />
- <ScalarProperty Name="challenger_lose_bet" ColumnName="challenger_lose_bet" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_activity_schedule">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_activity_schedule">
- <MappingFragment StoreEntitySet="t_challenge_activity_schedule">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="elect_from_time" ColumnName="elect_from_time" />
- <ScalarProperty Name="elect_to_time" ColumnName="elect_to_time" />
- <ScalarProperty Name="guess_from_time" ColumnName="guess_from_time" />
- <ScalarProperty Name="guess_to_time" ColumnName="guess_to_time" />
- <ScalarProperty Name="reward_from_time" ColumnName="reward_from_time" />
- <ScalarProperty Name="reward_to_time" ColumnName="reward_to_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_character_elect_hero">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_character_elect_hero">
- <MappingFragment StoreEntitySet="t_challenge_character_elect_hero">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_elect_hero_stat">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_elect_hero_stat">
- <MappingFragment StoreEntitySet="t_challenge_elect_hero_stat">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="game_position" ColumnName="game_position" />
- <ScalarProperty Name="vote_count" ColumnName="vote_count" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_exp_buff">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_exp_buff">
- <MappingFragment StoreEntitySet="t_challenge_exp_buff">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="time_year" ColumnName="time_year" />
- <ScalarProperty Name="time_year_day" ColumnName="time_year_day" />
- <ScalarProperty Name="buff_guid" ColumnName="buff_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_game_player">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_game_player">
- <MappingFragment StoreEntitySet="t_challenge_game_player">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="is_win" ColumnName="is_win" />
- <ScalarProperty Name="faction" ColumnName="faction" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="title" ColumnName="title" />
- <ScalarProperty Name="platform_title_id" ColumnName="platform_title_id" />
- <ScalarProperty Name="character_name" ColumnName="character_name" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_guess_game_over">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_guess_game_over">
- <MappingFragment StoreEntitySet="t_challenge_guess_game_over">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="challenger_win" ColumnName="challenger_win" />
- <ScalarProperty Name="challenger_win_bet" ColumnName="challenger_win_bet" />
- <ScalarProperty Name="kfz_best_hero" ColumnName="kfz_best_hero" />
- <ScalarProperty Name="kfz_best_hero_bet" ColumnName="kfz_best_hero_bet" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_guess_reward">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_guess_reward">
- <MappingFragment StoreEntitySet="t_challenge_guess_reward">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="winner_guess_silver" ColumnName="winner_guess_silver" />
- <ScalarProperty Name="best_hero_guess_silver" ColumnName="best_hero_guess_silver" />
- <ScalarProperty Name="is_taked" ColumnName="is_taked" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_kfz_hero">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_kfz_hero">
- <MappingFragment StoreEntitySet="t_challenge_kfz_hero">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="game_position" ColumnName="game_position" />
- <ScalarProperty Name="best_bet" ColumnName="best_bet" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_statue_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_statue_info">
- <MappingFragment StoreEntitySet="t_challenge_statue_info">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="from_time" ColumnName="from_time" />
- <ScalarProperty Name="to_time" ColumnName="to_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_challenge_task_reward">
- <EntityTypeMapping TypeName="DataCenterModel.t_challenge_task_reward">
- <MappingFragment StoreEntitySet="t_challenge_task_reward">
- <ScalarProperty Name="activity_id" ColumnName="activity_id" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="reward_type" ColumnName="reward_type" />
- <ScalarProperty Name="task_id" ColumnName="task_id" />
- <ScalarProperty Name="is_taked" ColumnName="is_taked" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character">
- <EntityTypeMapping TypeName="DataCenterModel.t_character">
- <MappingFragment StoreEntitySet="t_character">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="general_class" ColumnName="general_class" />
- <ScalarProperty Name="character_name" ColumnName="character_name" />
- <ScalarProperty Name="sex" ColumnName="sex" />
- <ScalarProperty Name="account_id" ColumnName="account_id" />
- <ScalarProperty Name="playing_map_server_key" ColumnName="playing_map_server_key" />
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="room_guid" ColumnName="room_guid" />
- <ScalarProperty Name="general_ghost" ColumnName="general_ghost" />
- <ScalarProperty Name="kingdom" ColumnName="kingdom" />
- <ScalarProperty Name="create_ip" ColumnName="create_ip" />
- <ScalarProperty Name="area_id" ColumnName="area_id" />
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="default_display_id" ColumnName="default_display_id" />
- <ScalarProperty Name="selected_title_type" ColumnName="selected_title_type" />
- <ScalarProperty Name="last_login_time" ColumnName="last_login_time" />
- <ScalarProperty Name="login_ip" ColumnName="login_ip" />
- <ScalarProperty Name="is_first_login" ColumnName="is_first_login" />
- <ScalarProperty Name="has_newly_mail" ColumnName="has_newly_mail" />
- <ScalarProperty Name="location" ColumnName="location" />
- <ScalarProperty Name="history_silver" ColumnName="history_silver" />
- <ScalarProperty Name="history_charge_gold" ColumnName="history_charge_gold" />
- <ScalarProperty Name="history_free_gold" ColumnName="history_free_gold" />
- <ScalarProperty Name="rank_bonus_title_id" ColumnName="rank_bonus_title_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="recent_flee_buff_id" ColumnName="recent_flee_buff_id" />
- <ScalarProperty Name="add_buff_yday" ColumnName="add_buff_yday" />
- <ScalarProperty Name="need_rename" ColumnName="need_rename" />
- <ScalarProperty Name="can_gain_active_code_item" ColumnName="can_gain_active_code_item" />
- <ScalarProperty Name="total_online_seconds" ColumnName="total_online_seconds" />
- <ScalarProperty Name="city_server_name" ColumnName="city_server_name" />
- <ScalarProperty Name="last_login_realtime" ColumnName="last_login_realtime" />
- <ScalarProperty Name="anti_addiction_online_time" ColumnName="anti_addiction_online_time" />
- <ScalarProperty Name="anti_addiction_offline_time" ColumnName="anti_addiction_offline_time" />
- <ScalarProperty Name="gs_active_code" ColumnName="gs_active_code" />
- <ScalarProperty Name="ban_login_expired_time" ColumnName="ban_login_expired_time" />
- <ScalarProperty Name="ban_chat_expired_time" ColumnName="ban_chat_expired_time" />
- <ScalarProperty Name="pve_equipment_max_strengthen_level" ColumnName="pve_equipment_max_strengthen_level" />
- <ScalarProperty Name="pve_equipment_active_scheme_id" ColumnName="pve_equipment_active_scheme_id" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_achievement">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_achievement">
- <MappingFragment StoreEntitySet="t_character_achievement">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="achievement_id" ColumnName="achievement_id" />
- <ScalarProperty Name="event_count" ColumnName="event_count" />
- <ScalarProperty Name="is_accomplished" ColumnName="is_accomplished" />
- <ScalarProperty Name="accomplish_time" ColumnName="accomplish_time" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_appearance">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_appearance">
- <MappingFragment StoreEntitySet="t_character_appearance">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="appearance_type" ColumnName="appearance_type" />
- <ScalarProperty Name="headdress" ColumnName="headdress" />
- <ScalarProperty Name="wing" ColumnName="wing" />
- <ScalarProperty Name="clothes" ColumnName="clothes" />
- <ScalarProperty Name="weapon" ColumnName="weapon" />
- <ScalarProperty Name="magic_weapon" ColumnName="magic_weapon" />
- <ScalarProperty Name="mounts" ColumnName="mounts" />
- <ScalarProperty Name="face" ColumnName="face" />
- <ScalarProperty Name="riding_status" ColumnName="riding_status" />
- <ScalarProperty Name="color1" ColumnName="color1" />
- <ScalarProperty Name="color2" ColumnName="color2" />
- <ScalarProperty Name="color3" ColumnName="color3" />
- <ScalarProperty Name="color4" ColumnName="color4" />
- <ScalarProperty Name="color5" ColumnName="color5" />
- <ScalarProperty Name="default_visual" ColumnName="default_visual" />
- <ScalarProperty Name="default_face" ColumnName="default_face" />
- <ScalarProperty Name="default_headdress" ColumnName="default_headdress" />
- <ScalarProperty Name="color_scheme_id" ColumnName="color_scheme_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_assets">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_assets">
- <MappingFragment StoreEntitySet="t_character_assets">
- <ScalarProperty Name="assets_id" ColumnName="assets_id" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="balance" ColumnName="balance" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_default_fighting_options">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_default_fighting_options">
- <MappingFragment StoreEntitySet="t_character_default_fighting_options">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="last_common_spell_series_id" ColumnName="last_common_spell_series_id" />
- <ScalarProperty Name="last_rune_scheme_id" ColumnName="last_rune_scheme_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_info">
- <MappingFragment StoreEntitySet="t_character_info">
- <ScalarProperty Name="tid" ColumnName="tid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_item">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_item">
- <MappingFragment StoreEntitySet="t_character_item">
- <ScalarProperty Name="item_guid" ColumnName="item_guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="item_id" ColumnName="item_id" />
- <ScalarProperty Name="slot" ColumnName="slot" />
- <ScalarProperty Name="item_count" ColumnName="item_count" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="source" ColumnName="source" />
- <ScalarProperty Name="is_bound" ColumnName="is_bound" />
- <ScalarProperty Name="location" ColumnName="location" />
- <ScalarProperty Name="attributes" ColumnName="attributes" />
- <ScalarProperty Name="buy_time" ColumnName="buy_time" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="buy_type" ColumnName="buy_type" />
- <ScalarProperty Name="pay_type" ColumnName="pay_type" />
- <ScalarProperty Name="pay_yuanbao" ColumnName="pay_yuanbao" />
- <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
- <ScalarProperty Name="reiki_count" ColumnName="reiki_count" />
- <ScalarProperty Name="durability_count" ColumnName="durability_count" />
- <ScalarProperty Name="recast_count" ColumnName="recast_count" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_options">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_options">
- <MappingFragment StoreEntitySet="t_character_options">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="rune_not_show_binding_tips" ColumnName="rune_not_show_binding_tips" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_character_questionnaire">
- <EntityTypeMapping TypeName="DataCenterModel.t_character_questionnaire">
- <MappingFragment StoreEntitySet="t_character_questionnaire">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="questionnaire_id" ColumnName="questionnaire_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_charge_list">
- <EntityTypeMapping TypeName="DataCenterModel.t_charge_list">
- <MappingFragment StoreEntitySet="t_charge_list">
- <ScalarProperty Name="charge_listid" ColumnName="charge_listid" />
- <ScalarProperty Name="charge_sn" ColumnName="charge_sn" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="account" ColumnName="account" />
- <ScalarProperty Name="ip" ColumnName="ip" />
- <ScalarProperty Name="pay_points" ColumnName="pay_points" />
- <ScalarProperty Name="charge_yuanbao" ColumnName="charge_yuanbao" />
- <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
- <ScalarProperty Name="url_parameters" ColumnName="url_parameters" />
- <ScalarProperty Name="charge_state" ColumnName="charge_state" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="retry_times" ColumnName="retry_times" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_city_buff">
- <EntityTypeMapping TypeName="DataCenterModel.t_city_buff">
- <MappingFragment StoreEntitySet="t_city_buff">
- <ScalarProperty Name="buff_guid" ColumnName="buff_guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="buff_id" ColumnName="buff_id" />
- <ScalarProperty Name="buff_time" ColumnName="buff_time" />
- <ScalarProperty Name="stack" ColumnName="stack" />
- <ScalarProperty Name="buff_values" ColumnName="buff_values" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_city_position">
- <EntityTypeMapping TypeName="DataCenterModel.t_city_position">
- <MappingFragment StoreEntitySet="t_city_position">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="city_name" ColumnName="city_name" />
- <ScalarProperty Name="x" ColumnName="x" />
- <ScalarProperty Name="y" ColumnName="y" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_city_task_finish_sub_state">
- <EntityTypeMapping TypeName="DataCenterModel.t_city_task_finish_sub_state">
- <MappingFragment StoreEntitySet="t_city_task_finish_sub_state">
- <ScalarProperty Name="task_guid" ColumnName="task_guid" />
- <ScalarProperty Name="city_task_sub_state_type" ColumnName="city_task_sub_state_type" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="total_count" ColumnName="total_count" />
- <ScalarProperty Name="finish_count" ColumnName="finish_count" />
- <ScalarProperty Name="detail" ColumnName="detail" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_city_task_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_city_task_info">
- <MappingFragment StoreEntitySet="t_city_task_info">
- <ScalarProperty Name="task_guid" ColumnName="task_guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="task_id" ColumnName="task_id" />
- <ScalarProperty Name="state" ColumnName="state" />
- <ScalarProperty Name="finish_timestamp" ColumnName="finish_timestamp" />
- <ScalarProperty Name="accept_time" ColumnName="accept_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_client_config">
- <EntityTypeMapping TypeName="DataCenterModel.t_client_config">
- <MappingFragment StoreEntitySet="t_client_config">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="map_type" ColumnName="map_type" />
- <ScalarProperty Name="key_setting" ColumnName="key_setting" />
- <ScalarProperty Name="use_dota_key" ColumnName="use_dota_key" />
- <ScalarProperty Name="shop_using_price_classify" ColumnName="shop_using_price_classify" />
- <ScalarProperty Name="client_config_str" ColumnName="client_config_str" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_common_spell">
- <EntityTypeMapping TypeName="DataCenterModel.t_common_spell">
- <MappingFragment StoreEntitySet="t_common_spell">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="common_spell_id" ColumnName="common_spell_id" />
- <ScalarProperty Name="common_spell_series" ColumnName="common_spell_series" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_daily_online_time">
- <EntityTypeMapping TypeName="DataCenterModel.t_daily_online_time">
- <MappingFragment StoreEntitySet="t_daily_online_time">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="login_date" ColumnName="login_date" />
- <ScalarProperty Name="online_time" ColumnName="online_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_employ_notice_status">
- <EntityTypeMapping TypeName="DataCenterModel.t_employ_notice_status">
- <MappingFragment StoreEntitySet="t_employ_notice_status">
- <ScalarProperty Name="employ_notice_status_id" ColumnName="employ_notice_status_id" />
- <ScalarProperty Name="publisher_guid" ColumnName="publisher_guid" />
- <ScalarProperty Name="applicant_guid" ColumnName="applicant_guid" />
- <ScalarProperty Name="status" ColumnName="status" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_employ_relation">
- <EntityTypeMapping TypeName="DataCenterModel.t_employ_relation">
- <MappingFragment StoreEntitySet="t_employ_relation">
- <ScalarProperty Name="employ_relation_id" ColumnName="employ_relation_id" />
- <ScalarProperty Name="employer_guid" ColumnName="employer_guid" />
- <ScalarProperty Name="employee_guid" ColumnName="employee_guid" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="price" ColumnName="price" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_employee_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_employee_info">
- <MappingFragment StoreEntitySet="t_employee_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="employee_experience" ColumnName="employee_experience" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_employee_notice">
- <EntityTypeMapping TypeName="DataCenterModel.t_employee_notice">
- <MappingFragment StoreEntitySet="t_employee_notice">
- <ScalarProperty Name="employee_guid" ColumnName="employee_guid" />
- <ScalarProperty Name="apply_type" ColumnName="apply_type" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="price" ColumnName="price" />
- <ScalarProperty Name="publish_time" ColumnName="publish_time" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="success" ColumnName="success" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_employer_notice">
- <EntityTypeMapping TypeName="DataCenterModel.t_employer_notice">
- <MappingFragment StoreEntitySet="t_employer_notice">
- <ScalarProperty Name="employer_guid" ColumnName="employer_guid" />
- <ScalarProperty Name="want_type" ColumnName="want_type" />
- <ScalarProperty Name="employee_level_condition" ColumnName="employee_level_condition" />
- <ScalarProperty Name="player_level_condition" ColumnName="player_level_condition" />
- <ScalarProperty Name="player_pvp_score_condition" ColumnName="player_pvp_score_condition" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="price" ColumnName="price" />
- <ScalarProperty Name="publish_time" ColumnName="publish_time" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="success" ColumnName="success" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_fighting_evaluation_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_fighting_evaluation_info">
- <MappingFragment StoreEntitySet="t_fighting_evaluation_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="evaluate_player_guid" ColumnName="evaluate_player_guid" />
- <ScalarProperty Name="evaluate_type" ColumnName="evaluate_type" />
- <ScalarProperty Name="evaluate_time" ColumnName="evaluate_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_friend">
- <EntityTypeMapping TypeName="DataCenterModel.t_friend">
- <MappingFragment StoreEntitySet="t_friend">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="friend_guid" ColumnName="friend_guid" />
- <ScalarProperty Name="group_id" ColumnName="group_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_friend_group">
- <EntityTypeMapping TypeName="DataCenterModel.t_friend_group">
- <MappingFragment StoreEntitySet="t_friend_group">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="group_id" ColumnName="group_id" />
- <ScalarProperty Name="group_name" ColumnName="group_name" />
- <ScalarProperty Name="is_sys_group" ColumnName="is_sys_group" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_game_hero_use_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_game_hero_use_info">
- <MappingFragment StoreEntitySet="t_game_hero_use_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="use_count" ColumnName="use_count" />
- <ScalarProperty Name="pvp_score" ColumnName="pvp_score" />
- <ScalarProperty Name="pvp_score_uptime" ColumnName="pvp_score_uptime" />
- <ScalarProperty Name="mvp_count" ColumnName="mvp_count" />
- <ScalarProperty Name="mvp_count_uptime" ColumnName="mvp_count_uptime" />
- <ScalarProperty Name="achievement" ColumnName="achievement" />
- <ScalarProperty Name="achievement_uptime" ColumnName="achievement_uptime" />
- <ScalarProperty Name="loser_mvp_count" ColumnName="loser_mvp_count" />
- <ScalarProperty Name="loser_mvp_count_uptime" ColumnName="loser_mvp_count_uptime" />
- <ScalarProperty Name="daily_kill_count" ColumnName="daily_kill_count" />
- <ScalarProperty Name="daily_kill_count_uptime" ColumnName="daily_kill_count_uptime" />
- <ScalarProperty Name="daily_dead_count" ColumnName="daily_dead_count" />
- <ScalarProperty Name="daily_dead_count_uptime" ColumnName="daily_dead_count_uptime" />
- <ScalarProperty Name="daily_assist_count" ColumnName="daily_assist_count" />
- <ScalarProperty Name="daily_assist_count_uptime" ColumnName="daily_assist_count_uptime" />
- <ScalarProperty Name="daily_total_money" ColumnName="daily_total_money" />
- <ScalarProperty Name="daily_total_money_uptime" ColumnName="daily_total_money_uptime" />
- <ScalarProperty Name="daily_kill_friend_soldier" ColumnName="daily_kill_friend_soldier" />
- <ScalarProperty Name="daily_kill_friend_soldier_uptime" ColumnName="daily_kill_friend_soldier_uptime" />
- <ScalarProperty Name="win_count" ColumnName="win_count" />
- <ScalarProperty Name="trueskill" ColumnName="trueskill" />
- <ScalarProperty Name="total_kill_count" ColumnName="total_kill_count" />
- <ScalarProperty Name="total_assist_count" ColumnName="total_assist_count" />
- <ScalarProperty Name="total_dead_count" ColumnName="total_dead_count" />
- <ScalarProperty Name="total_first_blood" ColumnName="total_first_blood" />
- <ScalarProperty Name="total_killed_by_first_blood" ColumnName="total_killed_by_first_blood" />
- <ScalarProperty Name="total_get_money" ColumnName="total_get_money" />
- <ScalarProperty Name="total_kill_hostile_soldier" ColumnName="total_kill_hostile_soldier" />
- <ScalarProperty Name="total_kill_friend_soldier" ColumnName="total_kill_friend_soldier" />
- <ScalarProperty Name="total_destroy_hostile_tower" ColumnName="total_destroy_hostile_tower" />
- <ScalarProperty Name="total_destroy_friend_tower" ColumnName="total_destroy_friend_tower" />
- <ScalarProperty Name="total_kill_monster_number" ColumnName="total_kill_monster_number" />
- <ScalarProperty Name="most_continuous_kill_number" ColumnName="most_continuous_kill_number" />
- <ScalarProperty Name="total_physics_damage" ColumnName="total_physics_damage" />
- <ScalarProperty Name="total_magic_damage" ColumnName="total_magic_damage" />
- <ScalarProperty Name="max_kill_hostile_soldier_times" ColumnName="max_kill_hostile_soldier_times" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="score_update_count" ColumnName="score_update_count" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_game_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_game_info">
- <MappingFragment StoreEntitySet="t_game_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="character_name" ColumnName="character_name" />
- <ScalarProperty Name="register_area" ColumnName="register_area" />
- <ScalarProperty Name="character_level" ColumnName="character_level" />
- <ScalarProperty Name="experience" ColumnName="experience" />
- <ScalarProperty Name="experience_uptime" ColumnName="experience_uptime" />
- <ScalarProperty Name="stage_score" ColumnName="stage_score" />
- <ScalarProperty Name="stage_score_uptime" ColumnName="stage_score_uptime" />
- <ScalarProperty Name="win_count" ColumnName="win_count" />
- <ScalarProperty Name="lose_count" ColumnName="lose_count" />
- <ScalarProperty Name="flee_count" ColumnName="flee_count" />
- <ScalarProperty Name="max_kill_games" ColumnName="max_kill_games" />
- <ScalarProperty Name="max_assist_games" ColumnName="max_assist_games" />
- <ScalarProperty Name="max_destroy_hostile_towner_games" ColumnName="max_destroy_hostile_towner_games" />
- <ScalarProperty Name="first_blood_games" ColumnName="first_blood_games" />
- <ScalarProperty Name="max_money_games" ColumnName="max_money_games" />
- <ScalarProperty Name="kill_boss_count" ColumnName="kill_boss_count" />
- <ScalarProperty Name="kill_boss_count_uptime" ColumnName="kill_boss_count_uptime" />
- <ScalarProperty Name="max_money" ColumnName="max_money" />
- <ScalarProperty Name="max_assist" ColumnName="max_assist" />
- <ScalarProperty Name="max_kill" ColumnName="max_kill" />
- <ScalarProperty Name="exploit_value" ColumnName="exploit_value" />
- <ScalarProperty Name="pass_level_count" ColumnName="pass_level_count" />
- <ScalarProperty Name="lose_level_count" ColumnName="lose_level_count" />
- <ScalarProperty Name="get_s_count" ColumnName="get_s_count" />
- <ScalarProperty Name="last_level_up_time" ColumnName="last_level_up_time" />
- <ScalarProperty Name="mean" ColumnName="mean" />
- <ScalarProperty Name="deviation" ColumnName="deviation" />
- <ScalarProperty Name="total_kill_boss_number" ColumnName="total_kill_boss_number" />
- <ScalarProperty Name="played_time" ColumnName="played_time" />
- <ScalarProperty Name="in_city_time" ColumnName="in_city_time" />
- <ScalarProperty Name="in_match_time" ColumnName="in_match_time" />
- <ScalarProperty Name="in_room_time" ColumnName="in_room_time" />
- <ScalarProperty Name="arena_match_score" ColumnName="arena_match_score" />
- <ScalarProperty Name="funny_match_score" ColumnName="funny_match_score" />
- <ScalarProperty Name="good_reputation_count" ColumnName="good_reputation_count" />
- <ScalarProperty Name="wujiangshilian_play_time" ColumnName="wujiangshilian_play_time" />
- <ScalarProperty Name="youzhou_last_play_soldier_count" ColumnName="youzhou_last_play_soldier_count" />
- <ScalarProperty Name="youzhou_last_play_soldier_level" ColumnName="youzhou_last_play_soldier_level" />
- <ScalarProperty Name="vip_exp" ColumnName="vip_exp" />
- <ScalarProperty Name="vip_exp_accumulate" ColumnName="vip_exp_accumulate" />
- <ScalarProperty Name="last_vip_exp_up_time" ColumnName="last_vip_exp_up_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_gs_code">
- <EntityTypeMapping TypeName="DataCenterModel.t_gs_code">
- <MappingFragment StoreEntitySet="t_gs_code">
- <ScalarProperty Name="active_code" ColumnName="active_code" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="character_name" ColumnName="character_name" />
- <ScalarProperty Name="invitee_guid" ColumnName="invitee_guid" />
- <ScalarProperty Name="notify_inviter" ColumnName="notify_inviter" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_color_scheme">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_color_scheme">
- <MappingFragment StoreEntitySet="t_hero_color_scheme">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="color_scheme_id" ColumnName="color_scheme_id" />
- <ScalarProperty Name="color1" ColumnName="color1" />
- <ScalarProperty Name="color2" ColumnName="color2" />
- <ScalarProperty Name="color3" ColumnName="color3" />
- <ScalarProperty Name="color4" ColumnName="color4" />
- <ScalarProperty Name="color5" ColumnName="color5" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_level_state">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_level_state">
- <MappingFragment StoreEntitySet="t_hero_level_state">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="level" ColumnName="level" />
- <ScalarProperty Name="selected_free_hero" ColumnName="selected_free_hero" />
- <ScalarProperty Name="selected_discount_hero" ColumnName="selected_discount_hero" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_pet">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_pet">
- <MappingFragment StoreEntitySet="t_hero_pet">
- <ScalarProperty Name="guid" ColumnName="guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="name" ColumnName="name" />
- <ScalarProperty Name="location" ColumnName="location" />
- <ScalarProperty Name="level" ColumnName="level" />
- <ScalarProperty Name="expr" ColumnName="expr" />
- <ScalarProperty Name="closeness" ColumnName="closeness" />
- <ScalarProperty Name="closeness_up_fail" ColumnName="closeness_up_fail" />
- <ScalarProperty Name="merge_count" ColumnName="merge_count" />
- <ScalarProperty Name="merge_time" ColumnName="merge_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_suggest_equipment">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_suggest_equipment">
- <MappingFragment StoreEntitySet="t_hero_suggest_equipment">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="plan_id" ColumnName="plan_id" />
- <ScalarProperty Name="plan_description" ColumnName="plan_description" />
- <ScalarProperty Name="item_id0" ColumnName="item_id0" />
- <ScalarProperty Name="item_id1" ColumnName="item_id1" />
- <ScalarProperty Name="item_id2" ColumnName="item_id2" />
- <ScalarProperty Name="item_id3" ColumnName="item_id3" />
- <ScalarProperty Name="item_id4" ColumnName="item_id4" />
- <ScalarProperty Name="item_id5" ColumnName="item_id5" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_talent_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_talent_info">
- <MappingFragment StoreEntitySet="t_hero_talent_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="total_used_hero_experience" ColumnName="total_used_hero_experience" />
- <ScalarProperty Name="enable_branch" ColumnName="enable_branch" />
- <ScalarProperty Name="this_branch_point" ColumnName="this_branch_point" />
- <ScalarProperty Name="available_experience" ColumnName="available_experience" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_talent_info_sub_state">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_talent_info_sub_state">
- <MappingFragment StoreEntitySet="t_hero_talent_info_sub_state">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="talent_id" ColumnName="talent_id" />
- <ScalarProperty Name="point" ColumnName="point" />
- <ScalarProperty Name="is_full_point" ColumnName="is_full_point" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_hero_unlock_hero">
- <EntityTypeMapping TypeName="DataCenterModel.t_hero_unlock_hero">
- <MappingFragment StoreEntitySet="t_hero_unlock_hero">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="hero_id" ColumnName="hero_id" />
- <ScalarProperty Name="is_activated" ColumnName="is_activated" />
- <ScalarProperty Name="cur_color_scheme_id" ColumnName="cur_color_scheme_id" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_illegal_term_rules">
- <EntityTypeMapping TypeName="DataCenterModel.t_illegal_term_rules">
- <MappingFragment StoreEntitySet="t_illegal_term_rules">
- <ScalarProperty Name="regex" ColumnName="regex" />
- <ScalarProperty Name="id" ColumnName="id" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_item_roll_list">
- <EntityTypeMapping TypeName="DataCenterModel.t_item_roll_list">
- <MappingFragment StoreEntitySet="t_item_roll_list">
- <ScalarProperty Name="item_roll_guid" ColumnName="item_roll_guid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="item_guid" ColumnName="item_guid" />
- <ScalarProperty Name="item_id" ColumnName="item_id" />
- <ScalarProperty Name="item_name" ColumnName="item_name" />
- <ScalarProperty Name="source" ColumnName="source" />
- <ScalarProperty Name="is_bound" ColumnName="is_bound" />
- <ScalarProperty Name="attributes" ColumnName="attributes" />
- <ScalarProperty Name="buy_time" ColumnName="buy_time" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="buy_type" ColumnName="buy_type" />
- <ScalarProperty Name="pay_type" ColumnName="pay_type" />
- <ScalarProperty Name="pay_yuanbao" ColumnName="pay_yuanbao" />
- <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
- <ScalarProperty Name="previous_count" ColumnName="previous_count" />
- <ScalarProperty Name="previous_location" ColumnName="previous_location" />
- <ScalarProperty Name="count" ColumnName="count" />
- <ScalarProperty Name="location" ColumnName="location" />
- <ScalarProperty Name="change_type" ColumnName="change_type" />
- <ScalarProperty Name="billing_state" ColumnName="billing_state" />
- <ScalarProperty Name="charge_gold_balance" ColumnName="charge_gold_balance" />
- <ScalarProperty Name="free_gold_balance" ColumnName="free_gold_balance" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_login_reward">
- <EntityTypeMapping TypeName="DataCenterModel.t_login_reward">
- <MappingFragment StoreEntitySet="t_login_reward">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="year_day" ColumnName="year_day" />
- <ScalarProperty Name="reward_id" ColumnName="reward_id" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_mail">
- <EntityTypeMapping TypeName="DataCenterModel.t_mail">
- <MappingFragment StoreEntitySet="t_mail">
- <ScalarProperty Name="mail_guid" ColumnName="mail_guid" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="checked" ColumnName="checked" />
- <ScalarProperty Name="is_read" ColumnName="is_read" />
- <ScalarProperty Name="is_system_mail" ColumnName="is_system_mail" />
- <ScalarProperty Name="sender_guid" ColumnName="sender_guid" />
- <ScalarProperty Name="sender_name" ColumnName="sender_name" />
- <ScalarProperty Name="receiver_guid" ColumnName="receiver_guid" />
- <ScalarProperty Name="receiver_name" ColumnName="receiver_name" />
- <ScalarProperty Name="mail_subject" ColumnName="mail_subject" />
- <ScalarProperty Name="mail_body" ColumnName="mail_body" />
- <ScalarProperty Name="silver" ColumnName="silver" />
- <ScalarProperty Name="charge_gold" ColumnName="charge_gold" />
- <ScalarProperty Name="money_is_taked" ColumnName="money_is_taked" />
- <ScalarProperty Name="item_count" ColumnName="item_count" />
- <ScalarProperty Name="expire_time" ColumnName="expire_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_mail_item">
- <EntityTypeMapping TypeName="DataCenterModel.t_mail_item">
- <MappingFragment StoreEntitySet="t_mail_item">
- <ScalarProperty Name="item_guid" ColumnName="item_guid" />
- <ScalarProperty Name="mail_guid" ColumnName="mail_guid" />
- <ScalarProperty Name="is_taked" ColumnName="is_taked" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_mall_items_sales_count">
- <EntityTypeMapping TypeName="DataCenterModel.t_mall_items_sales_count">
- <MappingFragment StoreEntitySet="t_mall_items_sales_count">
- <ScalarProperty Name="item_id" ColumnName="item_id" />
- <ScalarProperty Name="sale_count" ColumnName="sale_count" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_map_play_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_map_play_info">
- <MappingFragment StoreEntitySet="t_map_play_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="map_type" ColumnName="map_type" />
- <ScalarProperty Name="play_count" ColumnName="play_count" />
- <ScalarProperty Name="win_count" ColumnName="win_count" />
- <ScalarProperty Name="last_play_date" ColumnName="last_play_date" />
- <ScalarProperty Name="total_play_time" ColumnName="total_play_time" />
- <ScalarProperty Name="today_play_time" ColumnName="today_play_time" />
- <ScalarProperty Name="current_level" ColumnName="current_level" />
- <ScalarProperty Name="max_score" ColumnName="max_score" />
- <ScalarProperty Name="kill_boss_count" ColumnName="kill_boss_count" />
- <ScalarProperty Name="kill_hostile_soldier" ColumnName="kill_hostile_soldier" />
- <ScalarProperty Name="max_total_damage" ColumnName="max_total_damage" />
- <ScalarProperty Name="max_total_suffer_damage" ColumnName="max_total_suffer_damage" />
- <ScalarProperty Name="max_total_heal" ColumnName="max_total_heal" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_meta">
- <EntityTypeMapping TypeName="DataCenterModel.t_meta">
- <MappingFragment StoreEntitySet="t_meta">
- <ScalarProperty Name="meta_key" ColumnName="meta_key" />
- <ScalarProperty Name="meta_value" ColumnName="meta_value" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_offline_message">
- <EntityTypeMapping TypeName="DataCenterModel.t_offline_message">
- <MappingFragment StoreEntitySet="t_offline_message">
- <ScalarProperty Name="fid" ColumnName="fid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="proto_name" ColumnName="proto_name" />
- <ScalarProperty Name="content" ColumnName="content" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_player_offline_message">
- <EntityTypeMapping TypeName="DataCenterModel.t_player_offline_message">
- <MappingFragment StoreEntitySet="t_player_offline_message">
- <ScalarProperty Name="fid" ColumnName="fid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="opcode" ColumnName="opcode" />
- <ScalarProperty Name="content" ColumnName="content" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_pve_equipment_scheme">
- <EntityTypeMapping TypeName="DataCenterModel.t_pve_equipment_scheme">
- <MappingFragment StoreEntitySet="t_pve_equipment_scheme">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="scheme_id" ColumnName="scheme_id" />
- <ScalarProperty Name="scheme_name" ColumnName="scheme_name" />
- <ScalarProperty Name="slot0_item_guid" ColumnName="slot0_item_guid" />
- <ScalarProperty Name="slot1_item_guid" ColumnName="slot1_item_guid" />
- <ScalarProperty Name="slot2_item_guid" ColumnName="slot2_item_guid" />
- <ScalarProperty Name="slot3_item_guid" ColumnName="slot3_item_guid" />
- <ScalarProperty Name="slot4_item_guid" ColumnName="slot4_item_guid" />
- <ScalarProperty Name="slot5_item_guid" ColumnName="slot5_item_guid" />
- <ScalarProperty Name="slot6_item_guid" ColumnName="slot6_item_guid" />
- <ScalarProperty Name="slot7_item_guid" ColumnName="slot7_item_guid" />
- <ScalarProperty Name="slot8_item_guid" ColumnName="slot8_item_guid" />
- <ScalarProperty Name="slot9_item_guid" ColumnName="slot9_item_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_pve_equipment_strength">
- <EntityTypeMapping TypeName="DataCenterModel.t_pve_equipment_strength">
- <MappingFragment StoreEntitySet="t_pve_equipment_strength">
- <ScalarProperty Name="guid" ColumnName="guid" />
- <ScalarProperty Name="strength_lv" ColumnName="strength_lv" />
- <ScalarProperty Name="strength_value" ColumnName="strength_value" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_questionnaire">
- <EntityTypeMapping TypeName="DataCenterModel.t_questionnaire">
- <MappingFragment StoreEntitySet="t_questionnaire">
- <ScalarProperty Name="questionnaire_id" ColumnName="questionnaire_id" />
- <ScalarProperty Name="content" ColumnName="content" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_roll_log">
- <EntityTypeMapping TypeName="DataCenterModel.t_roll_log">
- <MappingFragment StoreEntitySet="t_roll_log">
- <ScalarProperty Name="roll_listid" ColumnName="roll_listid" />
- <ScalarProperty Name="bill_listid" ColumnName="bill_listid" />
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="vs_guid" ColumnName="vs_guid" />
- <ScalarProperty Name="roll_type" ColumnName="roll_type" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="amount" ColumnName="amount" />
- <ScalarProperty Name="balance" ColumnName="balance" />
- <ScalarProperty Name="ip" ColumnName="ip" />
- <ScalarProperty Name="memo" ColumnName="memo" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_rune_scheme">
- <EntityTypeMapping TypeName="DataCenterModel.t_rune_scheme">
- <MappingFragment StoreEntitySet="t_rune_scheme">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="scheme_id" ColumnName="scheme_id" />
- <ScalarProperty Name="scheme_name" ColumnName="scheme_name" />
- <ScalarProperty Name="slot0_item_guid" ColumnName="slot0_item_guid" />
- <ScalarProperty Name="slot1_item_guid" ColumnName="slot1_item_guid" />
- <ScalarProperty Name="slot2_item_guid" ColumnName="slot2_item_guid" />
- <ScalarProperty Name="slot3_item_guid" ColumnName="slot3_item_guid" />
- <ScalarProperty Name="slot4_item_guid" ColumnName="slot4_item_guid" />
- <ScalarProperty Name="slot5_item_guid" ColumnName="slot5_item_guid" />
- <ScalarProperty Name="slot6_item_guid" ColumnName="slot6_item_guid" />
- <ScalarProperty Name="slot7_item_guid" ColumnName="slot7_item_guid" />
- <ScalarProperty Name="slot8_item_guid" ColumnName="slot8_item_guid" />
- <ScalarProperty Name="slot9_item_guid" ColumnName="slot9_item_guid" />
- <ScalarProperty Name="slot10_item_guid" ColumnName="slot10_item_guid" />
- <ScalarProperty Name="slot11_item_guid" ColumnName="slot11_item_guid" />
- <ScalarProperty Name="slot12_item_guid" ColumnName="slot12_item_guid" />
- <ScalarProperty Name="slot13_item_guid" ColumnName="slot13_item_guid" />
- <ScalarProperty Name="slot14_item_guid" ColumnName="slot14_item_guid" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_social_group_basic">
- <EntityTypeMapping TypeName="DataCenterModel.t_social_group_basic">
- <MappingFragment StoreEntitySet="t_social_group_basic">
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="group_name" ColumnName="group_name" />
- <ScalarProperty Name="group_type" ColumnName="group_type" />
- <ScalarProperty Name="owner_guid" ColumnName="owner_guid" />
- <ScalarProperty Name="owner_name" ColumnName="owner_name" />
- <ScalarProperty Name="member_size" ColumnName="member_size" />
- <ScalarProperty Name="manager_size" ColumnName="manager_size" />
- <ScalarProperty Name="bulletin" ColumnName="bulletin" />
- <ScalarProperty Name="join_rule" ColumnName="join_rule" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_social_group_manager">
- <EntityTypeMapping TypeName="DataCenterModel.t_social_group_manager">
- <MappingFragment StoreEntitySet="t_social_group_manager">
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="manager_guid" ColumnName="manager_guid" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_social_group_member">
- <EntityTypeMapping TypeName="DataCenterModel.t_social_group_member">
- <MappingFragment StoreEntitySet="t_social_group_member">
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="member_guid" ColumnName="member_guid" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_title_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_title_info">
- <MappingFragment StoreEntitySet="t_title_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="title_id" ColumnName="title_id" />
- <ScalarProperty Name="new_title" ColumnName="new_title" />
- <ScalarProperty Name="valid_time" ColumnName="valid_time" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_tran_log">
- <EntityTypeMapping TypeName="DataCenterModel.t_tran_log">
- <MappingFragment StoreEntitySet="t_tran_log">
- <ScalarProperty Name="tran_listid" ColumnName="tran_listid" />
- <ScalarProperty Name="buyer_guid" ColumnName="buyer_guid" />
- <ScalarProperty Name="buyer_account" ColumnName="buyer_account" />
- <ScalarProperty Name="seller_guid" ColumnName="seller_guid" />
- <ScalarProperty Name="seller_account" ColumnName="seller_account" />
- <ScalarProperty Name="assets_type" ColumnName="assets_type" />
- <ScalarProperty Name="pay_amount" ColumnName="pay_amount" />
- <ScalarProperty Name="bill_listid" ColumnName="bill_listid" />
- <ScalarProperty Name="ip" ColumnName="ip" />
- <ScalarProperty Name="memo" ColumnName="memo" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_tutorial">
- <EntityTypeMapping TypeName="DataCenterModel.t_tutorial">
- <MappingFragment StoreEntitySet="t_tutorial">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="is_first_login" ColumnName="is_first_login" />
- <ScalarProperty Name="close_beginner_map_guide" ColumnName="close_beginner_map_guide" />
- <ScalarProperty Name="match_count" ColumnName="match_count" />
- <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
- <ScalarProperty Name="close_compound_hero_guide" ColumnName="close_compound_hero_guide" />
- <ScalarProperty Name="gain_hero_pet_item" ColumnName="gain_hero_pet_item" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_tutorial_status_info">
- <EntityTypeMapping TypeName="DataCenterModel.t_tutorial_status_info">
- <MappingFragment StoreEntitySet="t_tutorial_status_info">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="beginner_map_win_count" ColumnName="beginner_map_win_count" />
- <ScalarProperty Name="match_count" ColumnName="match_count" />
- <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
- <ScalarProperty Name="is_close_notify_tutorial" ColumnName="is_close_notify_tutorial" />
- <ScalarProperty Name="is_close_notify_mini_tutorial" ColumnName="is_close_notify_mini_tutorial" />
- <ScalarProperty Name="create_time" ColumnName="create_time" />
- <ScalarProperty Name="modify_time" ColumnName="modify_time" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="t_world_character">
- <EntityTypeMapping TypeName="DataCenterModel.t_world_character">
- <MappingFragment StoreEntitySet="t_world_character">
- <ScalarProperty Name="character_guid" ColumnName="character_guid" />
- <ScalarProperty Name="group_guid" ColumnName="group_guid" />
- <ScalarProperty Name="room_guid" ColumnName="room_guid" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- </EntityContainerMapping>
- </Mapping>
- </edmx:Mappings>
- </edmx:Runtime>
- <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
- <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
- <Connection>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
- </DesignerInfoPropertySet>
- </Connection>
- <Options>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="ValidateOnBuild" Value="true" />
- <DesignerProperty Name="EnablePluralization" Value="False" />
- <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
- <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
- </DesignerInfoPropertySet>
- </Options>
- <!-- Diagram content (shape and connector positions) -->
- <Diagrams></Diagrams>
- </Designer>
- </edmx:Edmx>
|