DataCenter.edmx 276 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <Schema Namespace="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">
  8. <EntityContainer Name="DataCenterModelStoreContainer">
  9. <EntitySet Name="t_account" EntityType="DataCenterModel.Store.t_account" store:Type="Tables" Schema="tanghai" />
  10. <EntitySet Name="t_account_active_code" EntityType="DataCenterModel.Store.t_account_active_code" store:Type="Tables" Schema="tanghai" />
  11. <EntitySet Name="t_account_login_auth_response_cookie" EntityType="DataCenterModel.Store.t_account_login_auth_response_cookie" store:Type="Tables" Schema="tanghai" />
  12. <EntitySet Name="t_account_tutorial_status_info" EntityType="DataCenterModel.Store.t_account_tutorial_status_info" store:Type="Tables" Schema="tanghai" />
  13. <EntitySet Name="t_active_code" EntityType="DataCenterModel.Store.t_active_code" store:Type="Tables" Schema="tanghai" />
  14. <EntitySet Name="t_attribute" EntityType="DataCenterModel.Store.t_attribute" store:Type="Tables" store:Schema="tanghai" store:Name="t_attribute">
  15. <DefiningQuery>SELECT
  16. `t_attribute`.`guid`,
  17. `t_attribute`.`id`,
  18. `t_attribute`.`sub_id`,
  19. `t_attribute`.`value`,
  20. `t_attribute`.`attr_type`,
  21. `t_attribute`.`create_time`,
  22. `t_attribute`.`modify_time`
  23. FROM `t_attribute` AS `t_attribute`</DefiningQuery>
  24. </EntitySet>
  25. <EntitySet Name="t_auction_item" EntityType="DataCenterModel.Store.t_auction_item" store:Type="Tables" Schema="tanghai" />
  26. <EntitySet Name="t_available_map" EntityType="DataCenterModel.Store.t_available_map" store:Type="Tables" Schema="tanghai" />
  27. <EntitySet Name="t_battle_gameover_statistic" EntityType="DataCenterModel.Store.t_battle_gameover_statistic" store:Type="Tables" Schema="tanghai" />
  28. <EntitySet Name="t_battle_kill_detail" EntityType="DataCenterModel.Store.t_battle_kill_detail" store:Type="Tables" Schema="tanghai" />
  29. <EntitySet Name="t_battle_summary" EntityType="DataCenterModel.Store.t_battle_summary" store:Type="Tables" Schema="tanghai" />
  30. <EntitySet Name="t_beginner_group_config" EntityType="DataCenterModel.Store.t_beginner_group_config" store:Type="Tables" Schema="tanghai" />
  31. <EntitySet Name="t_beginner_group_cong" EntityType="DataCenterModel.Store.t_beginner_group_cong" store:Type="Tables" Schema="tanghai" />
  32. <EntitySet Name="t_beginner_group_event" EntityType="DataCenterModel.Store.t_beginner_group_event" store:Type="Tables" Schema="tanghai" />
  33. <EntitySet Name="t_celebration_reward" EntityType="DataCenterModel.Store.t_celebration_reward" store:Type="Tables" Schema="tanghai" />
  34. <EntitySet Name="t_challenge_activity" EntityType="DataCenterModel.Store.t_challenge_activity" store:Type="Tables" Schema="tanghai" />
  35. <EntitySet Name="t_challenge_activity_schedule" EntityType="DataCenterModel.Store.t_challenge_activity_schedule" store:Type="Tables" Schema="tanghai" />
  36. <EntitySet Name="t_challenge_character_elect_hero" EntityType="DataCenterModel.Store.t_challenge_character_elect_hero" store:Type="Tables" Schema="tanghai" />
  37. <EntitySet Name="t_challenge_elect_hero_stat" EntityType="DataCenterModel.Store.t_challenge_elect_hero_stat" store:Type="Tables" Schema="tanghai" />
  38. <EntitySet Name="t_challenge_exp_buff" EntityType="DataCenterModel.Store.t_challenge_exp_buff" store:Type="Tables" Schema="tanghai" />
  39. <EntitySet Name="t_challenge_game_player" EntityType="DataCenterModel.Store.t_challenge_game_player" store:Type="Tables" Schema="tanghai" />
  40. <EntitySet Name="t_challenge_guess_game_over" EntityType="DataCenterModel.Store.t_challenge_guess_game_over" store:Type="Tables" Schema="tanghai" />
  41. <EntitySet Name="t_challenge_guess_reward" EntityType="DataCenterModel.Store.t_challenge_guess_reward" store:Type="Tables" Schema="tanghai" />
  42. <EntitySet Name="t_challenge_kfz_hero" EntityType="DataCenterModel.Store.t_challenge_kfz_hero" store:Type="Tables" Schema="tanghai" />
  43. <EntitySet Name="t_challenge_statue_info" EntityType="DataCenterModel.Store.t_challenge_statue_info" store:Type="Tables" Schema="tanghai" />
  44. <EntitySet Name="t_challenge_task_reward" EntityType="DataCenterModel.Store.t_challenge_task_reward" store:Type="Tables" Schema="tanghai" />
  45. <EntitySet Name="t_character" EntityType="DataCenterModel.Store.t_character" store:Type="Tables" Schema="tanghai" />
  46. <EntitySet Name="t_character_achievement" EntityType="DataCenterModel.Store.t_character_achievement" store:Type="Tables" Schema="tanghai" />
  47. <EntitySet Name="t_character_appearance" EntityType="DataCenterModel.Store.t_character_appearance" store:Type="Tables" Schema="tanghai" />
  48. <EntitySet Name="t_character_assets" EntityType="DataCenterModel.Store.t_character_assets" store:Type="Tables" Schema="tanghai" />
  49. <EntitySet Name="t_character_default_fighting_options" EntityType="DataCenterModel.Store.t_character_default_fighting_options" store:Type="Tables" Schema="tanghai" />
  50. <EntitySet Name="t_character_info" EntityType="DataCenterModel.Store.t_character_info" store:Type="Tables" Schema="tanghai" />
  51. <EntitySet Name="t_character_item" EntityType="DataCenterModel.Store.t_character_item" store:Type="Tables" Schema="tanghai" />
  52. <EntitySet Name="t_character_options" EntityType="DataCenterModel.Store.t_character_options" store:Type="Tables" Schema="tanghai" />
  53. <EntitySet Name="t_character_questionnaire" EntityType="DataCenterModel.Store.t_character_questionnaire" store:Type="Tables" Schema="tanghai" />
  54. <EntitySet Name="t_charge_list" EntityType="DataCenterModel.Store.t_charge_list" store:Type="Tables" Schema="tanghai" />
  55. <EntitySet Name="t_city_buff" EntityType="DataCenterModel.Store.t_city_buff" store:Type="Tables" Schema="tanghai" />
  56. <EntitySet Name="t_city_position" EntityType="DataCenterModel.Store.t_city_position" store:Type="Tables" Schema="tanghai" />
  57. <EntitySet Name="t_city_task_finish_sub_state" EntityType="DataCenterModel.Store.t_city_task_finish_sub_state" store:Type="Tables" Schema="tanghai" />
  58. <EntitySet Name="t_city_task_info" EntityType="DataCenterModel.Store.t_city_task_info" store:Type="Tables" Schema="tanghai" />
  59. <EntitySet Name="t_client_config" EntityType="DataCenterModel.Store.t_client_config" store:Type="Tables" Schema="tanghai" />
  60. <EntitySet Name="t_common_spell" EntityType="DataCenterModel.Store.t_common_spell" store:Type="Tables" Schema="tanghai" />
  61. <EntitySet Name="t_daily_online_time" EntityType="DataCenterModel.Store.t_daily_online_time" store:Type="Tables" Schema="tanghai" />
  62. <EntitySet Name="t_employ_notice_status" EntityType="DataCenterModel.Store.t_employ_notice_status" store:Type="Tables" Schema="tanghai" />
  63. <EntitySet Name="t_employ_relation" EntityType="DataCenterModel.Store.t_employ_relation" store:Type="Tables" Schema="tanghai" />
  64. <EntitySet Name="t_employee_info" EntityType="DataCenterModel.Store.t_employee_info" store:Type="Tables" Schema="tanghai" />
  65. <EntitySet Name="t_employee_notice" EntityType="DataCenterModel.Store.t_employee_notice" store:Type="Tables" Schema="tanghai" />
  66. <EntitySet Name="t_employer_notice" EntityType="DataCenterModel.Store.t_employer_notice" store:Type="Tables" Schema="tanghai" />
  67. <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">
  68. <DefiningQuery>SELECT
  69. `t_fighting_evaluation_info`.`character_guid`,
  70. `t_fighting_evaluation_info`.`evaluate_player_guid`,
  71. `t_fighting_evaluation_info`.`evaluate_type`,
  72. `t_fighting_evaluation_info`.`evaluate_time`,
  73. `t_fighting_evaluation_info`.`create_time`,
  74. `t_fighting_evaluation_info`.`modify_time`
  75. FROM `t_fighting_evaluation_info` AS `t_fighting_evaluation_info`</DefiningQuery>
  76. </EntitySet>
  77. <EntitySet Name="t_friend" EntityType="DataCenterModel.Store.t_friend" store:Type="Tables" Schema="tanghai" />
  78. <EntitySet Name="t_friend_group" EntityType="DataCenterModel.Store.t_friend_group" store:Type="Tables" Schema="tanghai" />
  79. <EntitySet Name="t_game_hero_use_info" EntityType="DataCenterModel.Store.t_game_hero_use_info" store:Type="Tables" Schema="tanghai" />
  80. <EntitySet Name="t_game_info" EntityType="DataCenterModel.Store.t_game_info" store:Type="Tables" Schema="tanghai" />
  81. <EntitySet Name="t_gs_code" EntityType="DataCenterModel.Store.t_gs_code" store:Type="Tables" Schema="tanghai" />
  82. <EntitySet Name="t_hero_color_scheme" EntityType="DataCenterModel.Store.t_hero_color_scheme" store:Type="Tables" Schema="tanghai" />
  83. <EntitySet Name="t_hero_level_state" EntityType="DataCenterModel.Store.t_hero_level_state" store:Type="Tables" Schema="tanghai" />
  84. <EntitySet Name="t_hero_pet" EntityType="DataCenterModel.Store.t_hero_pet" store:Type="Tables" Schema="tanghai" />
  85. <EntitySet Name="t_hero_suggest_equipment" EntityType="DataCenterModel.Store.t_hero_suggest_equipment" store:Type="Tables" Schema="tanghai" />
  86. <EntitySet Name="t_hero_talent_info" EntityType="DataCenterModel.Store.t_hero_talent_info" store:Type="Tables" Schema="tanghai" />
  87. <EntitySet Name="t_hero_talent_info_sub_state" EntityType="DataCenterModel.Store.t_hero_talent_info_sub_state" store:Type="Tables" Schema="tanghai" />
  88. <EntitySet Name="t_hero_unlock_hero" EntityType="DataCenterModel.Store.t_hero_unlock_hero" store:Type="Tables" Schema="tanghai" />
  89. <EntitySet Name="t_illegal_term_rules" EntityType="DataCenterModel.Store.t_illegal_term_rules" store:Type="Tables" Schema="tanghai" />
  90. <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">
  91. <DefiningQuery>SELECT
  92. `t_item_roll_list`.`item_roll_guid`,
  93. `t_item_roll_list`.`character_guid`,
  94. `t_item_roll_list`.`item_guid`,
  95. `t_item_roll_list`.`item_id`,
  96. `t_item_roll_list`.`item_name`,
  97. `t_item_roll_list`.`source`,
  98. `t_item_roll_list`.`is_bound`,
  99. `t_item_roll_list`.`attributes`,
  100. `t_item_roll_list`.`buy_time`,
  101. `t_item_roll_list`.`expire_time`,
  102. `t_item_roll_list`.`buy_type`,
  103. `t_item_roll_list`.`pay_type`,
  104. `t_item_roll_list`.`pay_yuanbao`,
  105. `t_item_roll_list`.`free_yuanbao`,
  106. `t_item_roll_list`.`previous_count`,
  107. `t_item_roll_list`.`previous_location`,
  108. `t_item_roll_list`.`count`,
  109. `t_item_roll_list`.`location`,
  110. `t_item_roll_list`.`change_type`,
  111. `t_item_roll_list`.`billing_state`,
  112. `t_item_roll_list`.`charge_gold_balance`,
  113. `t_item_roll_list`.`free_gold_balance`,
  114. `t_item_roll_list`.`modify_time`,
  115. `t_item_roll_list`.`create_time`
  116. FROM `t_item_roll_list` AS `t_item_roll_list`</DefiningQuery>
  117. </EntitySet>
  118. <EntitySet Name="t_login_reward" EntityType="DataCenterModel.Store.t_login_reward" store:Type="Tables" Schema="tanghai" />
  119. <EntitySet Name="t_mail" EntityType="DataCenterModel.Store.t_mail" store:Type="Tables" Schema="tanghai" />
  120. <EntitySet Name="t_mail_item" EntityType="DataCenterModel.Store.t_mail_item" store:Type="Tables" Schema="tanghai" />
  121. <EntitySet Name="t_mall_items_sales_count" EntityType="DataCenterModel.Store.t_mall_items_sales_count" store:Type="Tables" Schema="tanghai" />
  122. <EntitySet Name="t_map_play_info" EntityType="DataCenterModel.Store.t_map_play_info" store:Type="Tables" Schema="tanghai" />
  123. <EntitySet Name="t_meta" EntityType="DataCenterModel.Store.t_meta" store:Type="Tables" Schema="tanghai" />
  124. <EntitySet Name="t_offline_message" EntityType="DataCenterModel.Store.t_offline_message" store:Type="Tables" Schema="tanghai" />
  125. <EntitySet Name="t_player_offline_message" EntityType="DataCenterModel.Store.t_player_offline_message" store:Type="Tables" Schema="tanghai" />
  126. <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">
  127. <DefiningQuery>SELECT
  128. `t_pve_equipment_scheme`.`character_guid`,
  129. `t_pve_equipment_scheme`.`scheme_id`,
  130. `t_pve_equipment_scheme`.`scheme_name`,
  131. `t_pve_equipment_scheme`.`slot0_item_guid`,
  132. `t_pve_equipment_scheme`.`slot1_item_guid`,
  133. `t_pve_equipment_scheme`.`slot2_item_guid`,
  134. `t_pve_equipment_scheme`.`slot3_item_guid`,
  135. `t_pve_equipment_scheme`.`slot4_item_guid`,
  136. `t_pve_equipment_scheme`.`slot5_item_guid`,
  137. `t_pve_equipment_scheme`.`slot6_item_guid`,
  138. `t_pve_equipment_scheme`.`slot7_item_guid`,
  139. `t_pve_equipment_scheme`.`slot8_item_guid`,
  140. `t_pve_equipment_scheme`.`slot9_item_guid`,
  141. `t_pve_equipment_scheme`.`create_time`,
  142. `t_pve_equipment_scheme`.`modify_time`
  143. FROM `t_pve_equipment_scheme` AS `t_pve_equipment_scheme`</DefiningQuery>
  144. </EntitySet>
  145. <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">
  146. <DefiningQuery>SELECT
  147. `t_pve_equipment_strength`.`guid`,
  148. `t_pve_equipment_strength`.`strength_lv`,
  149. `t_pve_equipment_strength`.`strength_value`,
  150. `t_pve_equipment_strength`.`create_time`,
  151. `t_pve_equipment_strength`.`modify_time`
  152. FROM `t_pve_equipment_strength` AS `t_pve_equipment_strength`</DefiningQuery>
  153. </EntitySet>
  154. <EntitySet Name="t_questionnaire" EntityType="DataCenterModel.Store.t_questionnaire" store:Type="Tables" Schema="tanghai" />
  155. <EntitySet Name="t_roll_log" EntityType="DataCenterModel.Store.t_roll_log" store:Type="Tables" Schema="tanghai" />
  156. <EntitySet Name="t_rune_scheme" EntityType="DataCenterModel.Store.t_rune_scheme" store:Type="Tables" Schema="tanghai" />
  157. <EntitySet Name="t_social_group_basic" EntityType="DataCenterModel.Store.t_social_group_basic" store:Type="Tables" Schema="tanghai" />
  158. <EntitySet Name="t_social_group_manager" EntityType="DataCenterModel.Store.t_social_group_manager" store:Type="Tables" Schema="tanghai" />
  159. <EntitySet Name="t_social_group_member" EntityType="DataCenterModel.Store.t_social_group_member" store:Type="Tables" Schema="tanghai" />
  160. <EntitySet Name="t_title_info" EntityType="DataCenterModel.Store.t_title_info" store:Type="Tables" Schema="tanghai" />
  161. <EntitySet Name="t_tran_log" EntityType="DataCenterModel.Store.t_tran_log" store:Type="Tables" Schema="tanghai" />
  162. <EntitySet Name="t_tutorial" EntityType="DataCenterModel.Store.t_tutorial" store:Type="Tables" Schema="tanghai" />
  163. <EntitySet Name="t_tutorial_status_info" EntityType="DataCenterModel.Store.t_tutorial_status_info" store:Type="Tables" Schema="tanghai" />
  164. <EntitySet Name="t_world_character" EntityType="DataCenterModel.Store.t_world_character" store:Type="Tables" Schema="tanghai" />
  165. </EntityContainer>
  166. <EntityType Name="t_account">
  167. <Key>
  168. <PropertyRef Name="account" />
  169. </Key>
  170. <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
  171. <Property Name="account_guid" Type="ubigint" />
  172. <Property Name="sessionkey" Type="blob" />
  173. <Property Name="v" Type="varchar" MaxLength="100" />
  174. <Property Name="s" Type="varchar" MaxLength="100" />
  175. <Property Name="active_code" Type="varchar" MaxLength="100" />
  176. <Property Name="active_code_used" Type="bool" />
  177. <Property Name="first_char_guid" Type="ubigint" />
  178. <Property Name="create_time" Type="datetime" />
  179. <Property Name="modify_time" Type="datetime" />
  180. <Property Name="gm_level" Type="int" Nullable="false" />
  181. </EntityType>
  182. <EntityType Name="t_account_active_code">
  183. <Key>
  184. <PropertyRef Name="account" />
  185. <PropertyRef Name="gain_active_codes" />
  186. </Key>
  187. <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
  188. <Property Name="gain_active_codes" Type="varchar" Nullable="false" MaxLength="100" />
  189. <Property Name="create_time" Type="datetime" />
  190. <Property Name="modify_time" Type="datetime" />
  191. </EntityType>
  192. <EntityType Name="t_account_login_auth_response_cookie">
  193. <Key>
  194. <PropertyRef Name="account" />
  195. </Key>
  196. <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
  197. <Property Name="aid" Type="varchar" MaxLength="100" />
  198. <Property Name="ssn" Type="varchar" MaxLength="100" />
  199. <Property Name="gamepoint" Type="varchar" MaxLength="10" />
  200. <Property Name="balance" Type="varchar" MaxLength="10" />
  201. <Property Name="sn" Type="varchar" MaxLength="40" />
  202. <Property Name="user_type" Type="varchar" MaxLength="5" />
  203. <Property Name="otpstat" Type="varchar" MaxLength="5" />
  204. <Property Name="otpuptime" Type="varchar" MaxLength="20" />
  205. <Property Name="infosafe" Type="varchar" MaxLength="5" />
  206. <Property Name="phonestat" Type="varchar" MaxLength="5" />
  207. <Property Name="ppcstat" Type="varchar" MaxLength="5" />
  208. <Property Name="ppccoord" Type="varchar" MaxLength="20" />
  209. <Property Name="mppstat" Type="varchar" MaxLength="5" />
  210. <Property Name="rnstat" Type="varchar" MaxLength="10" />
  211. <Property Name="regtime" Type="varchar" MaxLength="10" />
  212. <Property Name="mobileno" Type="varchar" MaxLength="20" />
  213. <Property Name="need_activate_game" Type="varchar" MaxLength="5" />
  214. <Property Name="game_flag" Type="varchar" MaxLength="5" />
  215. <Property Name="deactivated" Type="varchar" MaxLength="5" />
  216. <Property Name="uidcount" Type="varchar" MaxLength="5" />
  217. <Property Name="newtm" Type="varchar" MaxLength="20" />
  218. <Property Name="vipstatus" Type="varchar" MaxLength="5" />
  219. <Property Name="is_vip_phone_trusty" Type="varchar" MaxLength="5" />
  220. <Property Name="is_vip_addr_trusty" Type="varchar" MaxLength="5" />
  221. <Property Name="real_name_flag" Type="varchar" MaxLength="5" />
  222. <Property Name="mobileisactivated" Type="varchar" MaxLength="5" />
  223. <Property Name="secu_info_ready" Type="varchar" MaxLength="5" />
  224. <Property Name="secu_info_pin_ma" Type="varchar" MaxLength="5" />
  225. <Property Name="secu_info_id_num" Type="varchar" MaxLength="20" />
  226. <Property Name="id_num" Type="varchar" MaxLength="20" />
  227. <Property Name="create_time" Type="datetime" />
  228. <Property Name="modify_time" Type="datetime" />
  229. </EntityType>
  230. <EntityType Name="t_account_tutorial_status_info">
  231. <Key>
  232. <PropertyRef Name="account" />
  233. </Key>
  234. <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
  235. <Property Name="max_level" Type="int" />
  236. <Property Name="beginner_map_win_count" Type="int" />
  237. <Property Name="match_count" Type="int" />
  238. <Property Name="quick_match_count" Type="int" />
  239. <Property Name="is_close_notify_tutorial" Type="bool" />
  240. <Property Name="is_close_notify_mini_tutorial" Type="bool" />
  241. <Property Name="composite_hero_token_count" Type="int" />
  242. <Property Name="is_close_merge_tutorial" Type="bool" />
  243. <Property Name="create_ai_map_room_count" Type="int" />
  244. <Property Name="is_close_ai_map_room_tutorial" Type="bool" />
  245. <Property Name="is_get_beginner_map_bonus" Type="bool" />
  246. <Property Name="got_new_player_survey" Type="bool" />
  247. <Property Name="player_level" Type="int" />
  248. <Property Name="is_notify_common_skill" Type="bool" />
  249. <Property Name="is_first_open_rune_panel" Type="bool" />
  250. <Property Name="create_time" Type="datetime" />
  251. <Property Name="modify_time" Type="datetime" />
  252. </EntityType>
  253. <EntityType Name="t_active_code">
  254. <Key>
  255. <PropertyRef Name="active_code" />
  256. </Key>
  257. <Property Name="active_code" Type="varchar" Nullable="false" MaxLength="32" />
  258. <Property Name="code_type" Type="int" Nullable="false" />
  259. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  260. <Property Name="grant_type" Type="int" Nullable="false" />
  261. <Property Name="create_time" Type="datetime" Nullable="false" />
  262. <Property Name="modify_time" Type="datetime" Nullable="false" />
  263. </EntityType>
  264. <!--生成过程中发现错误:
  265. 警告 6002: 表/视图“def.tanghai.t_attribute”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  266. -->
  267. <EntityType Name="t_attribute">
  268. <Key>
  269. <PropertyRef Name="guid" />
  270. <PropertyRef Name="id" />
  271. <PropertyRef Name="sub_id" />
  272. <PropertyRef Name="value" />
  273. <PropertyRef Name="attr_type" />
  274. <PropertyRef Name="create_time" />
  275. <PropertyRef Name="modify_time" />
  276. </Key>
  277. <Property Name="guid" Type="ubigint" Nullable="false" />
  278. <Property Name="id" Type="int" Nullable="false" />
  279. <Property Name="sub_id" Type="int" Nullable="false" />
  280. <Property Name="value" Type="double" Nullable="false" />
  281. <Property Name="attr_type" Type="int" Nullable="false" />
  282. <Property Name="create_time" Type="datetime" Nullable="false" />
  283. <Property Name="modify_time" Type="datetime" Nullable="false" />
  284. </EntityType>
  285. <EntityType Name="t_auction_item">
  286. <Key>
  287. <PropertyRef Name="item_guid" />
  288. </Key>
  289. <Property Name="item_guid" Type="ubigint" Nullable="false" />
  290. <Property Name="is_deleted" Type="bool" Nullable="false" />
  291. <Property Name="seller_guid" Type="ubigint" Nullable="false" />
  292. <Property Name="seller_name" Type="varchar" Nullable="false" MaxLength="64" />
  293. <Property Name="seller_ip" Type="varchar" Nullable="false" MaxLength="32" />
  294. <Property Name="auction_class" Type="smallint" Nullable="false" />
  295. <Property Name="item_name" Type="varchar" Nullable="false" MaxLength="128" />
  296. <Property Name="item_id" Type="int" Nullable="false" />
  297. <Property Name="assets_type" Type="smallint" Nullable="false" />
  298. <Property Name="deposit" Type="int" Nullable="false" />
  299. <Property Name="sum_price" Type="int" Nullable="false" />
  300. <Property Name="unit_price" Type="float" Nullable="false" />
  301. <Property Name="expire_time" Type="datetime" Nullable="false" />
  302. <Property Name="tran_guid" Type="ubigint" Nullable="false" />
  303. <Property Name="create_time" Type="datetime" Nullable="false" />
  304. <Property Name="modify_time" Type="datetime" Nullable="false" />
  305. </EntityType>
  306. <EntityType Name="t_available_map">
  307. <Key>
  308. <PropertyRef Name="character_guid" />
  309. <PropertyRef Name="map_type" />
  310. </Key>
  311. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  312. <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="80" />
  313. <Property Name="create_time" Type="datetime" Nullable="false" />
  314. <Property Name="modify_time" Type="datetime" Nullable="false" />
  315. </EntityType>
  316. <EntityType Name="t_battle_gameover_statistic">
  317. <Key>
  318. <PropertyRef Name="battle_guid" />
  319. </Key>
  320. <Property Name="battle_guid" Type="ubigint" Nullable="false" />
  321. <Property Name="gameover_statistic" Type="blob" />
  322. <Property Name="create_time" Type="datetime" Nullable="false" />
  323. <Property Name="modify_time" Type="datetime" Nullable="false" />
  324. </EntityType>
  325. <EntityType Name="t_battle_kill_detail">
  326. <Key>
  327. <PropertyRef Name="kill_id" />
  328. </Key>
  329. <Property Name="kill_id" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  330. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  331. <Property Name="battle_guid" Type="ubigint" Nullable="false" />
  332. <Property Name="kill_type" Type="uint" Nullable="false" />
  333. <Property Name="kill_name" Type="varchar" MaxLength="50" />
  334. <Property Name="kill_guid" Type="ubigint" />
  335. <Property Name="assist_name" Type="varchar" MaxLength="200" />
  336. <Property Name="kill_time" Type="int" />
  337. <Property Name="killed_name" Type="varchar" MaxLength="50" />
  338. <Property Name="create_time" Type="datetime" Nullable="false" />
  339. <Property Name="modify_time" Type="datetime" Nullable="false" />
  340. </EntityType>
  341. <EntityType Name="t_battle_summary">
  342. <Key>
  343. <PropertyRef Name="character_guid" />
  344. <PropertyRef Name="battle_guid" />
  345. </Key>
  346. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  347. <Property Name="battle_guid" Type="ubigint" Nullable="false" />
  348. <Property Name="pvp_or_pve" Type="bool" />
  349. <Property Name="is_win" Type="bool" />
  350. <Property Name="is_mvp" Type="bool" />
  351. <Property Name="is_most_kill_person" Type="bool" />
  352. <Property Name="is_most_assist" Type="bool" />
  353. <Property Name="is_most_money" Type="bool" />
  354. <Property Name="is_down_tower" Type="bool" />
  355. <Property Name="is_most_kill_friend" Type="bool" />
  356. <Property Name="is_lost_mvp" Type="bool" />
  357. <Property Name="is_s_pve_map" Type="bool" />
  358. <Property Name="is_first_blood" Type="bool" />
  359. <Property Name="is_pve_most_kill_boss" Type="bool" />
  360. <Property Name="is_pve_most_take_damage" Type="bool" />
  361. <Property Name="is_pve_most_healing" Type="bool" />
  362. <Property Name="is_pve_most_damage" Type="bool" />
  363. <Property Name="map_type" Type="varchar" MaxLength="20" />
  364. <Property Name="battle_date" Type="varchar" MaxLength="30" />
  365. <Property Name="battle_time" Type="int" />
  366. <Property Name="is_escape" Type="bool" />
  367. <Property Name="hero_id" Type="int" />
  368. <Property Name="match_type" Type="int" />
  369. <Property Name="is_reinforce" Type="bool" />
  370. <Property Name="pvp_kill_count" Type="int" />
  371. <Property Name="pvp_assist_count" Type="int" />
  372. <Property Name="pvp_dead_count" Type="int" />
  373. <Property Name="pvp_most_continuous_kill_number" Type="int" />
  374. <Property Name="pvp_score" Type="int" />
  375. <Property Name="pve_boss_kill" Type="int" />
  376. <Property Name="pve_kill_hostile_soldier" Type="int" />
  377. <Property Name="pve_total_money" Type="int" />
  378. <Property Name="pve_get_level" Type="int" />
  379. <Property Name="is_employ_battle" Type="bool" />
  380. <Property Name="create_time" Type="datetime" Nullable="false" />
  381. <Property Name="modify_time" Type="datetime" Nullable="false" />
  382. </EntityType>
  383. <EntityType Name="t_beginner_group_config">
  384. <Key>
  385. <PropertyRef Name="aid" />
  386. </Key>
  387. <Property Name="aid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  388. <Property Name="max_group_id" Type="int" />
  389. <Property Name="modify_time" Type="datetime" Nullable="false" />
  390. <Property Name="create_time" Type="datetime" Nullable="false" />
  391. </EntityType>
  392. <EntityType Name="t_beginner_group_cong">
  393. <Key>
  394. <PropertyRef Name="group_guid" />
  395. <PropertyRef Name="character_guid" />
  396. </Key>
  397. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  398. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  399. <Property Name="character_level" Type="int" Nullable="false" />
  400. <Property Name="cong_guid_list" Type="blob" Nullable="false" />
  401. <Property Name="create_time" Type="datetime" Nullable="false" />
  402. <Property Name="modify_time" Type="datetime" Nullable="false" />
  403. </EntityType>
  404. <EntityType Name="t_beginner_group_event">
  405. <Key>
  406. <PropertyRef Name="event_guid" />
  407. </Key>
  408. <Property Name="event_guid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  409. <Property Name="beginner_group_guid" Type="ubigint" Nullable="false" />
  410. <Property Name="event_id" Type="int" Nullable="false" />
  411. <Property Name="event_content" Type="blob" Nullable="false" />
  412. <Property Name="create_time" Type="datetime" Nullable="false" />
  413. <Property Name="modify_time" Type="datetime" Nullable="false" />
  414. </EntityType>
  415. <EntityType Name="t_celebration_reward">
  416. <Key>
  417. <PropertyRef Name="account" />
  418. <PropertyRef Name="reward_type" />
  419. </Key>
  420. <Property Name="account" Type="varchar" Nullable="false" MaxLength="100" />
  421. <Property Name="reward_type" Type="int" Nullable="false" />
  422. <Property Name="tel_number" Type="varchar" MaxLength="50" />
  423. <Property Name="create_time" Type="datetime" Nullable="false" />
  424. <Property Name="modify_time" Type="datetime" Nullable="false" />
  425. </EntityType>
  426. <EntityType Name="t_challenge_activity">
  427. <Key>
  428. <PropertyRef Name="activity_id" />
  429. </Key>
  430. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  431. <Property Name="activity_status" Type="int" Nullable="false" />
  432. <Property Name="start_time" Type="datetime" Nullable="false" />
  433. <Property Name="battle_id" Type="ubigint" Nullable="false" />
  434. <Property Name="challenger_win" Type="bool" Nullable="false" />
  435. <Property Name="kfz_best_hero" Type="int" Nullable="false" />
  436. <Property Name="game_over_time" Type="datetime" />
  437. <Property Name="challenger_win_bet" Type="bigint" Nullable="false" />
  438. <Property Name="challenger_lose_bet" Type="bigint" Nullable="false" />
  439. <Property Name="create_time" Type="datetime" Nullable="false" />
  440. <Property Name="modify_time" Type="datetime" Nullable="false" />
  441. </EntityType>
  442. <EntityType Name="t_challenge_activity_schedule">
  443. <Key>
  444. <PropertyRef Name="activity_id" />
  445. </Key>
  446. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  447. <Property Name="elect_from_time" Type="datetime" Nullable="false" />
  448. <Property Name="elect_to_time" Type="datetime" Nullable="false" />
  449. <Property Name="guess_from_time" Type="datetime" Nullable="false" />
  450. <Property Name="guess_to_time" Type="datetime" Nullable="false" />
  451. <Property Name="reward_from_time" Type="datetime" Nullable="false" />
  452. <Property Name="reward_to_time" Type="datetime" Nullable="false" />
  453. <Property Name="create_time" Type="datetime" Nullable="false" />
  454. <Property Name="modify_time" Type="datetime" Nullable="false" />
  455. </EntityType>
  456. <EntityType Name="t_challenge_character_elect_hero">
  457. <Key>
  458. <PropertyRef Name="character_guid" />
  459. <PropertyRef Name="activity_id" />
  460. <PropertyRef Name="hero_id" />
  461. </Key>
  462. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  463. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  464. <Property Name="hero_id" Type="int" Nullable="false" />
  465. <Property Name="create_time" Type="datetime" Nullable="false" />
  466. <Property Name="modify_time" Type="datetime" Nullable="false" />
  467. </EntityType>
  468. <EntityType Name="t_challenge_elect_hero_stat">
  469. <Key>
  470. <PropertyRef Name="activity_id" />
  471. <PropertyRef Name="hero_id" />
  472. </Key>
  473. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  474. <Property Name="hero_id" Type="int" Nullable="false" />
  475. <Property Name="game_position" Type="int" Nullable="false" />
  476. <Property Name="vote_count" Type="int" Nullable="false" />
  477. <Property Name="create_time" Type="datetime" Nullable="false" />
  478. <Property Name="modify_time" Type="datetime" Nullable="false" />
  479. </EntityType>
  480. <EntityType Name="t_challenge_exp_buff">
  481. <Key>
  482. <PropertyRef Name="character_guid" />
  483. <PropertyRef Name="time_year" />
  484. <PropertyRef Name="time_year_day" />
  485. </Key>
  486. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  487. <Property Name="time_year" Type="int" Nullable="false" />
  488. <Property Name="time_year_day" Type="int" Nullable="false" />
  489. <Property Name="buff_guid" Type="ubigint" Nullable="false" />
  490. <Property Name="create_time" Type="datetime" Nullable="false" />
  491. <Property Name="modify_time" Type="datetime" Nullable="false" />
  492. </EntityType>
  493. <EntityType Name="t_challenge_game_player">
  494. <Key>
  495. <PropertyRef Name="activity_id" />
  496. <PropertyRef Name="character_guid" />
  497. </Key>
  498. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  499. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  500. <Property Name="is_win" Type="bool" Nullable="false" />
  501. <Property Name="faction" Type="int" Nullable="false" />
  502. <Property Name="hero_id" Type="int" Nullable="false" />
  503. <Property Name="title" Type="varchar" MaxLength="64" />
  504. <Property Name="platform_title_id" Type="int" Nullable="false" />
  505. <Property Name="character_name" Type="varchar" MaxLength="64" />
  506. <Property Name="create_time" Type="datetime" Nullable="false" />
  507. <Property Name="modify_time" Type="datetime" Nullable="false" />
  508. </EntityType>
  509. <EntityType Name="t_challenge_guess_game_over">
  510. <Key>
  511. <PropertyRef Name="character_guid" />
  512. <PropertyRef Name="activity_id" />
  513. </Key>
  514. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  515. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  516. <Property Name="challenger_win" Type="bool" Nullable="false" />
  517. <Property Name="challenger_win_bet" Type="int" Nullable="false" />
  518. <Property Name="kfz_best_hero" Type="int" Nullable="false" />
  519. <Property Name="kfz_best_hero_bet" Type="int" Nullable="false" />
  520. <Property Name="create_time" Type="datetime" Nullable="false" />
  521. <Property Name="modify_time" Type="datetime" Nullable="false" />
  522. </EntityType>
  523. <EntityType Name="t_challenge_guess_reward">
  524. <Key>
  525. <PropertyRef Name="activity_id" />
  526. <PropertyRef Name="character_guid" />
  527. </Key>
  528. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  529. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  530. <Property Name="winner_guess_silver" Type="int" Nullable="false" />
  531. <Property Name="best_hero_guess_silver" Type="int" Nullable="false" />
  532. <Property Name="is_taked" Type="bool" Nullable="false" />
  533. <Property Name="create_time" Type="datetime" Nullable="false" />
  534. <Property Name="modify_time" Type="datetime" Nullable="false" />
  535. </EntityType>
  536. <EntityType Name="t_challenge_kfz_hero">
  537. <Key>
  538. <PropertyRef Name="activity_id" />
  539. <PropertyRef Name="hero_id" />
  540. </Key>
  541. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  542. <Property Name="hero_id" Type="int" Nullable="false" />
  543. <Property Name="game_position" Type="int" Nullable="false" />
  544. <Property Name="best_bet" Type="bigint" Nullable="false" />
  545. <Property Name="create_time" Type="datetime" Nullable="false" />
  546. <Property Name="modify_time" Type="datetime" Nullable="false" />
  547. </EntityType>
  548. <EntityType Name="t_challenge_statue_info">
  549. <Key>
  550. <PropertyRef Name="activity_id" />
  551. </Key>
  552. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  553. <Property Name="from_time" Type="datetime" Nullable="false" />
  554. <Property Name="to_time" Type="datetime" Nullable="false" />
  555. <Property Name="create_time" Type="datetime" Nullable="false" />
  556. <Property Name="modify_time" Type="datetime" Nullable="false" />
  557. </EntityType>
  558. <EntityType Name="t_challenge_task_reward">
  559. <Key>
  560. <PropertyRef Name="activity_id" />
  561. <PropertyRef Name="character_guid" />
  562. <PropertyRef Name="reward_type" />
  563. </Key>
  564. <Property Name="activity_id" Type="varchar" Nullable="false" MaxLength="40" />
  565. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  566. <Property Name="reward_type" Type="int" Nullable="false" />
  567. <Property Name="task_id" Type="int" Nullable="false" />
  568. <Property Name="is_taked" Type="bool" Nullable="false" />
  569. <Property Name="create_time" Type="datetime" Nullable="false" />
  570. <Property Name="modify_time" Type="datetime" Nullable="false" />
  571. </EntityType>
  572. <EntityType Name="t_character">
  573. <Key>
  574. <PropertyRef Name="character_guid" />
  575. </Key>
  576. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  577. <Property Name="general_class" Type="int" Nullable="false" />
  578. <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="128" />
  579. <Property Name="sex" Type="int" Nullable="false" />
  580. <Property Name="account_id" Type="ubigint" Nullable="false" />
  581. <Property Name="playing_map_server_key" Type="varchar" Nullable="false" MaxLength="256" />
  582. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  583. <Property Name="room_guid" Type="ubigint" Nullable="false" />
  584. <Property Name="general_ghost" Type="int" Nullable="false" />
  585. <Property Name="kingdom" Type="int" Nullable="false" />
  586. <Property Name="create_ip" Type="varchar" Nullable="false" MaxLength="64" />
  587. <Property Name="area_id" Type="int" Nullable="false" />
  588. <Property Name="account" Type="varchar" Nullable="false" MaxLength="256" />
  589. <Property Name="default_display_id" Type="int" Nullable="false" />
  590. <Property Name="selected_title_type" Type="int" Nullable="false" />
  591. <Property Name="last_login_time" Type="bigint" Nullable="false" />
  592. <Property Name="login_ip" Type="varchar" Nullable="false" MaxLength="64" />
  593. <Property Name="is_first_login" Type="bool" Nullable="false" />
  594. <Property Name="has_newly_mail" Type="bool" Nullable="false" />
  595. <Property Name="location" Type="varchar" Nullable="false" MaxLength="64" />
  596. <Property Name="history_silver" Type="bigint" Nullable="false" />
  597. <Property Name="history_charge_gold" Type="bigint" Nullable="false" />
  598. <Property Name="history_free_gold" Type="bigint" Nullable="false" />
  599. <Property Name="rank_bonus_title_id" Type="int" Nullable="false" />
  600. <Property Name="create_time" Type="datetime" Nullable="false" />
  601. <Property Name="modify_time" Type="datetime" Nullable="false" />
  602. <Property Name="recent_flee_buff_id" Type="int" Nullable="false" />
  603. <Property Name="add_buff_yday" Type="int" Nullable="false" />
  604. <Property Name="need_rename" Type="tinyint" Nullable="false" />
  605. <Property Name="can_gain_active_code_item" Type="bool" Nullable="false" />
  606. <Property Name="total_online_seconds" Type="bigint" Nullable="false" />
  607. <Property Name="city_server_name" Type="varchar" Nullable="false" MaxLength="256" />
  608. <Property Name="last_login_realtime" Type="varchar" Nullable="false" MaxLength="256" />
  609. <Property Name="anti_addiction_online_time" Type="int" Nullable="false" />
  610. <Property Name="anti_addiction_offline_time" Type="int" Nullable="false" />
  611. <Property Name="gs_active_code" Type="varchar" Nullable="false" MaxLength="32" />
  612. <Property Name="ban_login_expired_time" Type="bigint" />
  613. <Property Name="ban_chat_expired_time" Type="bigint" />
  614. <Property Name="pve_equipment_max_strengthen_level" Type="int" Nullable="false" />
  615. <Property Name="pve_equipment_active_scheme_id" Type="int" Nullable="false" />
  616. </EntityType>
  617. <EntityType Name="t_character_achievement">
  618. <Key>
  619. <PropertyRef Name="character_guid" />
  620. <PropertyRef Name="achievement_id" />
  621. </Key>
  622. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  623. <Property Name="achievement_id" Type="int" Nullable="false" />
  624. <Property Name="event_count" Type="int" />
  625. <Property Name="is_accomplished" Type="bool" Nullable="false" />
  626. <Property Name="accomplish_time" Type="datetime" />
  627. <Property Name="hero_id" Type="int" />
  628. <Property Name="battle_guid" Type="ubigint" Nullable="false" />
  629. <Property Name="create_time" Type="datetime" />
  630. <Property Name="modify_time" Type="datetime" />
  631. </EntityType>
  632. <EntityType Name="t_character_appearance">
  633. <Key>
  634. <PropertyRef Name="character_guid" />
  635. <PropertyRef Name="appearance_type" />
  636. </Key>
  637. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  638. <Property Name="appearance_type" Type="int" Nullable="false" />
  639. <Property Name="headdress" Type="ubigint" Nullable="false" />
  640. <Property Name="wing" Type="ubigint" Nullable="false" />
  641. <Property Name="clothes" Type="ubigint" Nullable="false" />
  642. <Property Name="weapon" Type="ubigint" Nullable="false" />
  643. <Property Name="magic_weapon" Type="ubigint" Nullable="false" />
  644. <Property Name="mounts" Type="ubigint" Nullable="false" />
  645. <Property Name="face" Type="ubigint" Nullable="false" />
  646. <Property Name="riding_status" Type="int" Nullable="false" />
  647. <Property Name="color1" Type="bigint" Nullable="false" />
  648. <Property Name="color2" Type="bigint" Nullable="false" />
  649. <Property Name="color3" Type="bigint" Nullable="false" />
  650. <Property Name="color4" Type="bigint" Nullable="false" />
  651. <Property Name="color5" Type="bigint" Nullable="false" />
  652. <Property Name="default_visual" Type="int" Nullable="false" />
  653. <Property Name="default_face" Type="int" Nullable="false" />
  654. <Property Name="default_headdress" Type="int" Nullable="false" />
  655. <Property Name="color_scheme_id" Type="int" Nullable="false" />
  656. <Property Name="create_time" Type="datetime" Nullable="false" />
  657. <Property Name="modify_time" Type="datetime" Nullable="false" />
  658. </EntityType>
  659. <EntityType Name="t_character_assets">
  660. <Key>
  661. <PropertyRef Name="assets_id" />
  662. </Key>
  663. <Property Name="assets_id" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
  664. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  665. <Property Name="assets_type" Type="smallint" Nullable="false" />
  666. <Property Name="balance" Type="bigint" Nullable="false" />
  667. <Property Name="create_time" Type="datetime" Nullable="false" />
  668. <Property Name="modify_time" Type="datetime" Nullable="false" />
  669. </EntityType>
  670. <EntityType Name="t_character_default_fighting_options">
  671. <Key>
  672. <PropertyRef Name="character_guid" />
  673. </Key>
  674. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  675. <Property Name="last_common_spell_series_id" Type="int" Nullable="false" />
  676. <Property Name="last_rune_scheme_id" Type="int" Nullable="false" />
  677. <Property Name="create_time" Type="datetime" Nullable="false" />
  678. <Property Name="modify_time" Type="datetime" Nullable="false" />
  679. </EntityType>
  680. <EntityType Name="t_character_info">
  681. <Key>
  682. <PropertyRef Name="tid" />
  683. </Key>
  684. <Property Name="tid" Type="int" Nullable="false" />
  685. <Property Name="create_time" Type="datetime" Nullable="false" />
  686. <Property Name="modify_time" Type="datetime" Nullable="false" />
  687. </EntityType>
  688. <EntityType Name="t_character_item">
  689. <Key>
  690. <PropertyRef Name="item_guid" />
  691. </Key>
  692. <Property Name="item_guid" Type="ubigint" Nullable="false" />
  693. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  694. <Property Name="is_deleted" Type="bool" Nullable="false" />
  695. <Property Name="item_id" Type="int" Nullable="false" />
  696. <Property Name="slot" Type="int" Nullable="false" />
  697. <Property Name="item_count" Type="int" Nullable="false" />
  698. <Property Name="create_time" Type="datetime" Nullable="false" />
  699. <Property Name="modify_time" Type="datetime" Nullable="false" />
  700. <Property Name="source" Type="int" Nullable="false" />
  701. <Property Name="is_bound" Type="bool" Nullable="false" />
  702. <Property Name="location" Type="int" Nullable="false" />
  703. <Property Name="attributes" Type="blob" Nullable="false" />
  704. <Property Name="buy_time" Type="datetime" Nullable="false" />
  705. <Property Name="expire_time" Type="datetime" Nullable="false" />
  706. <Property Name="buy_type" Type="int" Nullable="false" />
  707. <Property Name="pay_type" Type="int" Nullable="false" />
  708. <Property Name="pay_yuanbao" Type="int" Nullable="false" />
  709. <Property Name="free_yuanbao" Type="int" Nullable="false" />
  710. <Property Name="reiki_count" Type="int" Nullable="false" />
  711. <Property Name="durability_count" Type="int" Nullable="false" />
  712. <Property Name="recast_count" Type="int" Nullable="false" />
  713. </EntityType>
  714. <EntityType Name="t_character_options">
  715. <Key>
  716. <PropertyRef Name="character_guid" />
  717. </Key>
  718. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  719. <Property Name="rune_not_show_binding_tips" Type="varchar" Nullable="false" MaxLength="64" />
  720. <Property Name="create_time" Type="datetime" Nullable="false" />
  721. <Property Name="modify_time" Type="datetime" Nullable="false" />
  722. </EntityType>
  723. <EntityType Name="t_character_questionnaire">
  724. <Key>
  725. <PropertyRef Name="character_guid" />
  726. <PropertyRef Name="questionnaire_id" />
  727. </Key>
  728. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  729. <Property Name="questionnaire_id" Type="ubigint" Nullable="false" />
  730. <Property Name="create_time" Type="datetime" Nullable="false" />
  731. <Property Name="modify_time" Type="datetime" Nullable="false" />
  732. </EntityType>
  733. <EntityType Name="t_charge_list">
  734. <Key>
  735. <PropertyRef Name="charge_listid" />
  736. </Key>
  737. <Property Name="charge_listid" Type="varchar" Nullable="false" MaxLength="40" />
  738. <Property Name="charge_sn" Type="varchar" Nullable="false" MaxLength="40" />
  739. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  740. <Property Name="account" Type="varchar" Nullable="false" MaxLength="128" />
  741. <Property Name="ip" Type="varchar" Nullable="false" MaxLength="32" />
  742. <Property Name="pay_points" Type="int" Nullable="false" />
  743. <Property Name="charge_yuanbao" Type="int" Nullable="false" />
  744. <Property Name="free_yuanbao" Type="int" Nullable="false" />
  745. <Property Name="url_parameters" Type="varchar" Nullable="false" MaxLength="256" />
  746. <Property Name="charge_state" Type="int" Nullable="false" />
  747. <Property Name="create_time" Type="datetime" Nullable="false" />
  748. <Property Name="modify_time" Type="datetime" Nullable="false" />
  749. <Property Name="retry_times" Type="int" Nullable="false" />
  750. </EntityType>
  751. <EntityType Name="t_city_buff">
  752. <Key>
  753. <PropertyRef Name="buff_guid" />
  754. </Key>
  755. <Property Name="buff_guid" Type="ubigint" Nullable="false" />
  756. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  757. <Property Name="buff_id" Type="int" Nullable="false" />
  758. <Property Name="buff_time" Type="int" Nullable="false" />
  759. <Property Name="stack" Type="int" Nullable="false" />
  760. <Property Name="buff_values" Type="blob" Nullable="false" />
  761. <Property Name="create_time" Type="datetime" Nullable="false" />
  762. <Property Name="modify_time" Type="datetime" Nullable="false" />
  763. </EntityType>
  764. <EntityType Name="t_city_position">
  765. <Key>
  766. <PropertyRef Name="character_guid" />
  767. <PropertyRef Name="city_name" />
  768. </Key>
  769. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  770. <Property Name="city_name" Type="varchar" Nullable="false" MaxLength="64" />
  771. <Property Name="x" Type="float" Nullable="false" />
  772. <Property Name="y" Type="float" Nullable="false" />
  773. <Property Name="create_time" Type="datetime" Nullable="false" />
  774. <Property Name="modify_time" Type="datetime" Nullable="false" />
  775. </EntityType>
  776. <EntityType Name="t_city_task_finish_sub_state">
  777. <Key>
  778. <PropertyRef Name="task_guid" />
  779. <PropertyRef Name="city_task_sub_state_type" />
  780. </Key>
  781. <Property Name="task_guid" Type="ubigint" Nullable="false" />
  782. <Property Name="city_task_sub_state_type" Type="int" Nullable="false" />
  783. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  784. <Property Name="total_count" Type="int" Nullable="false" />
  785. <Property Name="finish_count" Type="int" Nullable="false" />
  786. <Property Name="detail" Type="varchar" Nullable="false" MaxLength="1024" />
  787. <Property Name="create_time" Type="datetime" Nullable="false" />
  788. <Property Name="modify_time" Type="datetime" Nullable="false" />
  789. </EntityType>
  790. <EntityType Name="t_city_task_info">
  791. <Key>
  792. <PropertyRef Name="task_guid" />
  793. </Key>
  794. <Property Name="task_guid" Type="ubigint" Nullable="false" />
  795. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  796. <Property Name="task_id" Type="int" Nullable="false" />
  797. <Property Name="state" Type="int" Nullable="false" />
  798. <Property Name="finish_timestamp" Type="ubigint" Nullable="false" />
  799. <Property Name="accept_time" Type="ubigint" Nullable="false" />
  800. <Property Name="create_time" Type="datetime" Nullable="false" />
  801. <Property Name="modify_time" Type="datetime" Nullable="false" />
  802. </EntityType>
  803. <EntityType Name="t_client_config">
  804. <Key>
  805. <PropertyRef Name="character_guid" />
  806. </Key>
  807. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  808. <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="80" />
  809. <Property Name="key_setting" Type="varchar" Nullable="false" MaxLength="2048" />
  810. <Property Name="use_dota_key" Type="bool" Nullable="false" />
  811. <Property Name="shop_using_price_classify" Type="bool" Nullable="false" />
  812. <Property Name="client_config_str" Type="blob" Nullable="false" />
  813. <Property Name="create_time" Type="datetime" Nullable="false" />
  814. <Property Name="modify_time" Type="datetime" Nullable="false" />
  815. </EntityType>
  816. <EntityType Name="t_common_spell">
  817. <Key>
  818. <PropertyRef Name="character_guid" />
  819. <PropertyRef Name="common_spell_id" />
  820. </Key>
  821. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  822. <Property Name="common_spell_id" Type="int" Nullable="false" />
  823. <Property Name="common_spell_series" Type="int" Nullable="false" />
  824. <Property Name="create_time" Type="datetime" Nullable="false" />
  825. <Property Name="modify_time" Type="datetime" Nullable="false" />
  826. </EntityType>
  827. <EntityType Name="t_daily_online_time">
  828. <Key>
  829. <PropertyRef Name="character_guid" />
  830. <PropertyRef Name="login_date" />
  831. </Key>
  832. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  833. <Property Name="login_date" Type="char" Nullable="false" MaxLength="32" />
  834. <Property Name="online_time" Type="int" Nullable="false" />
  835. <Property Name="modify_time" Type="datetime" Nullable="false" />
  836. <Property Name="create_time" Type="datetime" Nullable="false" />
  837. </EntityType>
  838. <EntityType Name="t_employ_notice_status">
  839. <Key>
  840. <PropertyRef Name="employ_notice_status_id" />
  841. </Key>
  842. <Property Name="employ_notice_status_id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  843. <Property Name="publisher_guid" Type="ubigint" Nullable="false" />
  844. <Property Name="applicant_guid" Type="ubigint" Nullable="false" />
  845. <Property Name="status" Type="ubigint" Nullable="false" />
  846. </EntityType>
  847. <EntityType Name="t_employ_relation">
  848. <Key>
  849. <PropertyRef Name="employ_relation_id" />
  850. </Key>
  851. <Property Name="employ_relation_id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  852. <Property Name="employer_guid" Type="ubigint" Nullable="false" />
  853. <Property Name="employee_guid" Type="ubigint" Nullable="false" />
  854. <Property Name="assets_type" Type="int" Nullable="false" />
  855. <Property Name="price" Type="int" Nullable="false" />
  856. <Property Name="create_time" Type="datetime" Nullable="false" />
  857. <Property Name="modify_time" Type="datetime" Nullable="false" />
  858. <Property Name="is_deleted" Type="bool" Nullable="false" />
  859. </EntityType>
  860. <EntityType Name="t_employee_info">
  861. <Key>
  862. <PropertyRef Name="character_guid" />
  863. </Key>
  864. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  865. <Property Name="employee_experience" Type="int" Nullable="false" />
  866. <Property Name="create_time" Type="datetime" Nullable="false" />
  867. <Property Name="modify_time" Type="datetime" Nullable="false" />
  868. </EntityType>
  869. <EntityType Name="t_employee_notice">
  870. <Key>
  871. <PropertyRef Name="employee_guid" />
  872. </Key>
  873. <Property Name="employee_guid" Type="ubigint" Nullable="false" />
  874. <Property Name="apply_type" Type="int" Nullable="false" />
  875. <Property Name="assets_type" Type="int" Nullable="false" />
  876. <Property Name="price" Type="int" Nullable="false" />
  877. <Property Name="publish_time" Type="datetime" Nullable="false" />
  878. <Property Name="expire_time" Type="datetime" Nullable="false" />
  879. <Property Name="success" Type="bool" Nullable="false" />
  880. <Property Name="create_time" Type="datetime" Nullable="false" />
  881. <Property Name="modify_time" Type="datetime" Nullable="false" />
  882. <Property Name="is_deleted" Type="bool" Nullable="false" />
  883. </EntityType>
  884. <EntityType Name="t_employer_notice">
  885. <Key>
  886. <PropertyRef Name="employer_guid" />
  887. </Key>
  888. <Property Name="employer_guid" Type="ubigint" Nullable="false" />
  889. <Property Name="want_type" Type="int" Nullable="false" />
  890. <Property Name="employee_level_condition" Type="int" Nullable="false" />
  891. <Property Name="player_level_condition" Type="int" Nullable="false" />
  892. <Property Name="player_pvp_score_condition" Type="int" Nullable="false" />
  893. <Property Name="assets_type" Type="int" Nullable="false" />
  894. <Property Name="price" Type="int" Nullable="false" />
  895. <Property Name="publish_time" Type="datetime" Nullable="false" />
  896. <Property Name="expire_time" Type="datetime" Nullable="false" />
  897. <Property Name="success" Type="bool" Nullable="false" />
  898. <Property Name="create_time" Type="datetime" Nullable="false" />
  899. <Property Name="modify_time" Type="datetime" Nullable="false" />
  900. <Property Name="is_deleted" Type="bool" Nullable="false" />
  901. </EntityType>
  902. <!--生成过程中发现错误:
  903. 警告 6002: 表/视图“def.tanghai.t_fighting_evaluation_info”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  904. -->
  905. <EntityType Name="t_fighting_evaluation_info">
  906. <Key>
  907. <PropertyRef Name="character_guid" />
  908. <PropertyRef Name="evaluate_player_guid" />
  909. <PropertyRef Name="evaluate_type" />
  910. <PropertyRef Name="evaluate_time" />
  911. <PropertyRef Name="create_time" />
  912. <PropertyRef Name="modify_time" />
  913. </Key>
  914. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  915. <Property Name="evaluate_player_guid" Type="ubigint" Nullable="false" />
  916. <Property Name="evaluate_type" Type="int" Nullable="false" />
  917. <Property Name="evaluate_time" Type="varchar" Nullable="false" MaxLength="32" />
  918. <Property Name="create_time" Type="datetime" Nullable="false" />
  919. <Property Name="modify_time" Type="datetime" Nullable="false" />
  920. </EntityType>
  921. <EntityType Name="t_friend">
  922. <Key>
  923. <PropertyRef Name="character_guid" />
  924. <PropertyRef Name="friend_guid" />
  925. <PropertyRef Name="group_id" />
  926. </Key>
  927. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  928. <Property Name="friend_guid" Type="ubigint" Nullable="false" />
  929. <Property Name="group_id" Type="int" Nullable="false" />
  930. <Property Name="create_time" Type="datetime" Nullable="false" />
  931. <Property Name="modify_time" Type="datetime" Nullable="false" />
  932. </EntityType>
  933. <EntityType Name="t_friend_group">
  934. <Key>
  935. <PropertyRef Name="character_guid" />
  936. <PropertyRef Name="group_id" />
  937. </Key>
  938. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  939. <Property Name="group_id" Type="int" Nullable="false" />
  940. <Property Name="group_name" Type="varchar" Nullable="false" MaxLength="128" />
  941. <Property Name="is_sys_group" Type="tinyint" Nullable="false" />
  942. <Property Name="create_time" Type="datetime" Nullable="false" />
  943. <Property Name="modify_time" Type="datetime" Nullable="false" />
  944. </EntityType>
  945. <EntityType Name="t_game_hero_use_info">
  946. <Key>
  947. <PropertyRef Name="character_guid" />
  948. <PropertyRef Name="hero_id" />
  949. </Key>
  950. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  951. <Property Name="hero_id" Type="int" Nullable="false" />
  952. <Property Name="use_count" Type="int" Nullable="false" />
  953. <Property Name="pvp_score" Type="int" Nullable="false" />
  954. <Property Name="pvp_score_uptime" Type="uint" Nullable="false" />
  955. <Property Name="mvp_count" Type="int" Nullable="false" />
  956. <Property Name="mvp_count_uptime" Type="uint" Nullable="false" />
  957. <Property Name="achievement" Type="int" Nullable="false" />
  958. <Property Name="achievement_uptime" Type="uint" Nullable="false" />
  959. <Property Name="loser_mvp_count" Type="int" Nullable="false" />
  960. <Property Name="loser_mvp_count_uptime" Type="uint" Nullable="false" />
  961. <Property Name="daily_kill_count" Type="int" Nullable="false" />
  962. <Property Name="daily_kill_count_uptime" Type="uint" Nullable="false" />
  963. <Property Name="daily_dead_count" Type="int" Nullable="false" />
  964. <Property Name="daily_dead_count_uptime" Type="uint" Nullable="false" />
  965. <Property Name="daily_assist_count" Type="int" Nullable="false" />
  966. <Property Name="daily_assist_count_uptime" Type="uint" Nullable="false" />
  967. <Property Name="daily_total_money" Type="int" Nullable="false" />
  968. <Property Name="daily_total_money_uptime" Type="uint" Nullable="false" />
  969. <Property Name="daily_kill_friend_soldier" Type="int" Nullable="false" />
  970. <Property Name="daily_kill_friend_soldier_uptime" Type="uint" Nullable="false" />
  971. <Property Name="win_count" Type="int" Nullable="false" />
  972. <Property Name="trueskill" Type="double" Nullable="false" />
  973. <Property Name="total_kill_count" Type="bigint" Nullable="false" />
  974. <Property Name="total_assist_count" Type="bigint" Nullable="false" />
  975. <Property Name="total_dead_count" Type="bigint" Nullable="false" />
  976. <Property Name="total_first_blood" Type="bigint" Nullable="false" />
  977. <Property Name="total_killed_by_first_blood" Type="bigint" Nullable="false" />
  978. <Property Name="total_get_money" Type="bigint" Nullable="false" />
  979. <Property Name="total_kill_hostile_soldier" Type="bigint" Nullable="false" />
  980. <Property Name="total_kill_friend_soldier" Type="bigint" Nullable="false" />
  981. <Property Name="total_destroy_hostile_tower" Type="bigint" Nullable="false" />
  982. <Property Name="total_destroy_friend_tower" Type="bigint" Nullable="false" />
  983. <Property Name="total_kill_monster_number" Type="bigint" Nullable="false" />
  984. <Property Name="most_continuous_kill_number" Type="bigint" Nullable="false" />
  985. <Property Name="total_physics_damage" Type="bigint" Nullable="false" />
  986. <Property Name="total_magic_damage" Type="bigint" Nullable="false" />
  987. <Property Name="max_kill_hostile_soldier_times" Type="int" Nullable="false" />
  988. <Property Name="create_time" Type="datetime" Nullable="false" />
  989. <Property Name="modify_time" Type="datetime" Nullable="false" />
  990. <Property Name="score_update_count" Type="int" Nullable="false" />
  991. </EntityType>
  992. <EntityType Name="t_game_info">
  993. <Key>
  994. <PropertyRef Name="character_guid" />
  995. </Key>
  996. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  997. <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="50" />
  998. <Property Name="register_area" Type="int" Nullable="false" />
  999. <Property Name="character_level" Type="int" Nullable="false" />
  1000. <Property Name="experience" Type="int" Nullable="false" />
  1001. <Property Name="experience_uptime" Type="uint" Nullable="false" />
  1002. <Property Name="stage_score" Type="int" Nullable="false" />
  1003. <Property Name="stage_score_uptime" Type="uint" Nullable="false" />
  1004. <Property Name="win_count" Type="int" Nullable="false" />
  1005. <Property Name="lose_count" Type="int" Nullable="false" />
  1006. <Property Name="flee_count" Type="int" Nullable="false" />
  1007. <Property Name="max_kill_games" Type="int" Nullable="false" />
  1008. <Property Name="max_assist_games" Type="int" Nullable="false" />
  1009. <Property Name="max_destroy_hostile_towner_games" Type="int" Nullable="false" />
  1010. <Property Name="first_blood_games" Type="int" Nullable="false" />
  1011. <Property Name="max_money_games" Type="int" Nullable="false" />
  1012. <Property Name="kill_boss_count" Type="int" Nullable="false" />
  1013. <Property Name="kill_boss_count_uptime" Type="uint" Nullable="false" />
  1014. <Property Name="max_money" Type="int" Nullable="false" />
  1015. <Property Name="max_assist" Type="int" Nullable="false" />
  1016. <Property Name="max_kill" Type="int" Nullable="false" />
  1017. <Property Name="exploit_value" Type="int" Nullable="false" />
  1018. <Property Name="pass_level_count" Type="int" Nullable="false" />
  1019. <Property Name="lose_level_count" Type="int" Nullable="false" />
  1020. <Property Name="get_s_count" Type="int" Nullable="false" />
  1021. <Property Name="last_level_up_time" Type="bigint" Nullable="false" />
  1022. <Property Name="mean" Type="double" Nullable="false" />
  1023. <Property Name="deviation" Type="double" Nullable="false" />
  1024. <Property Name="total_kill_boss_number" Type="ubigint" Nullable="false" />
  1025. <Property Name="played_time" Type="ubigint" Nullable="false" />
  1026. <Property Name="in_city_time" Type="ubigint" Nullable="false" />
  1027. <Property Name="in_match_time" Type="ubigint" Nullable="false" />
  1028. <Property Name="in_room_time" Type="ubigint" Nullable="false" />
  1029. <Property Name="arena_match_score" Type="int" Nullable="false" />
  1030. <Property Name="funny_match_score" Type="int" Nullable="false" />
  1031. <Property Name="good_reputation_count" Type="int" Nullable="false" />
  1032. <Property Name="wujiangshilian_play_time" Type="int" Nullable="false" />
  1033. <Property Name="youzhou_last_play_soldier_count" Type="int" Nullable="false" />
  1034. <Property Name="youzhou_last_play_soldier_level" Type="int" Nullable="false" />
  1035. <Property Name="vip_exp" Type="int" Nullable="false" />
  1036. <Property Name="vip_exp_accumulate" Type="int" />
  1037. <Property Name="last_vip_exp_up_time" Type="bigint" />
  1038. <Property Name="create_time" Type="datetime" Nullable="false" />
  1039. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1040. </EntityType>
  1041. <EntityType Name="t_gs_code">
  1042. <Key>
  1043. <PropertyRef Name="active_code" />
  1044. </Key>
  1045. <Property Name="active_code" Type="varchar" Nullable="false" MaxLength="32" />
  1046. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1047. <Property Name="character_name" Type="varchar" Nullable="false" MaxLength="32" />
  1048. <Property Name="invitee_guid" Type="ubigint" Nullable="false" />
  1049. <Property Name="notify_inviter" Type="int" Nullable="false" />
  1050. <Property Name="create_time" Type="datetime" Nullable="false" />
  1051. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1052. </EntityType>
  1053. <EntityType Name="t_hero_color_scheme">
  1054. <Key>
  1055. <PropertyRef Name="character_guid" />
  1056. <PropertyRef Name="hero_id" />
  1057. <PropertyRef Name="color_scheme_id" />
  1058. </Key>
  1059. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1060. <Property Name="hero_id" Type="int" Nullable="false" />
  1061. <Property Name="color_scheme_id" Type="int" Nullable="false" />
  1062. <Property Name="color1" Type="bigint" Nullable="false" />
  1063. <Property Name="color2" Type="bigint" Nullable="false" />
  1064. <Property Name="color3" Type="bigint" Nullable="false" />
  1065. <Property Name="color4" Type="bigint" Nullable="false" />
  1066. <Property Name="color5" Type="bigint" Nullable="false" />
  1067. <Property Name="create_time" Type="datetime" Nullable="false" />
  1068. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1069. </EntityType>
  1070. <EntityType Name="t_hero_level_state">
  1071. <Key>
  1072. <PropertyRef Name="character_guid" />
  1073. <PropertyRef Name="level" />
  1074. </Key>
  1075. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1076. <Property Name="level" Type="int" Nullable="false" />
  1077. <Property Name="selected_free_hero" Type="bool" />
  1078. <Property Name="selected_discount_hero" Type="bool" />
  1079. <Property Name="create_time" Type="datetime" Nullable="false" />
  1080. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1081. </EntityType>
  1082. <EntityType Name="t_hero_pet">
  1083. <Key>
  1084. <PropertyRef Name="guid" />
  1085. </Key>
  1086. <Property Name="guid" Type="ubigint" Nullable="false" />
  1087. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1088. <Property Name="hero_id" Type="int" Nullable="false" />
  1089. <Property Name="name" Type="varchar" Nullable="false" MaxLength="128" />
  1090. <Property Name="location" Type="int" Nullable="false" />
  1091. <Property Name="level" Type="int" Nullable="false" />
  1092. <Property Name="expr" Type="int" Nullable="false" />
  1093. <Property Name="closeness" Type="int" Nullable="false" />
  1094. <Property Name="closeness_up_fail" Type="int" Nullable="false" />
  1095. <Property Name="merge_count" Type="int" Nullable="false" />
  1096. <Property Name="merge_time" Type="datetime" Nullable="false" />
  1097. <Property Name="create_time" Type="datetime" Nullable="false" />
  1098. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1099. </EntityType>
  1100. <EntityType Name="t_hero_suggest_equipment">
  1101. <Key>
  1102. <PropertyRef Name="character_guid" />
  1103. <PropertyRef Name="hero_id" />
  1104. <PropertyRef Name="plan_id" />
  1105. </Key>
  1106. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1107. <Property Name="hero_id" Type="int" Nullable="false" />
  1108. <Property Name="plan_id" Type="int" Nullable="false" />
  1109. <Property Name="plan_description" Type="varchar" MaxLength="256" />
  1110. <Property Name="item_id0" Type="int" />
  1111. <Property Name="item_id1" Type="int" />
  1112. <Property Name="item_id2" Type="int" />
  1113. <Property Name="item_id3" Type="int" />
  1114. <Property Name="item_id4" Type="int" />
  1115. <Property Name="item_id5" Type="int" />
  1116. <Property Name="is_deleted" Type="bool" />
  1117. <Property Name="create_time" Type="datetime" Nullable="false" />
  1118. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1119. </EntityType>
  1120. <EntityType Name="t_hero_talent_info">
  1121. <Key>
  1122. <PropertyRef Name="character_guid" />
  1123. <PropertyRef Name="hero_id" />
  1124. </Key>
  1125. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1126. <Property Name="hero_id" Type="int" Nullable="false" />
  1127. <Property Name="total_used_hero_experience" Type="int" />
  1128. <Property Name="enable_branch" Type="int" />
  1129. <Property Name="this_branch_point" Type="int" />
  1130. <Property Name="available_experience" Type="int" />
  1131. <Property Name="create_time" Type="datetime" Nullable="false" />
  1132. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1133. </EntityType>
  1134. <EntityType Name="t_hero_talent_info_sub_state">
  1135. <Key>
  1136. <PropertyRef Name="character_guid" />
  1137. <PropertyRef Name="hero_id" />
  1138. <PropertyRef Name="talent_id" />
  1139. </Key>
  1140. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1141. <Property Name="hero_id" Type="int" Nullable="false" />
  1142. <Property Name="talent_id" Type="int" Nullable="false" />
  1143. <Property Name="point" Type="int" />
  1144. <Property Name="is_full_point" Type="bool" />
  1145. <Property Name="create_time" Type="datetime" Nullable="false" />
  1146. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1147. </EntityType>
  1148. <EntityType Name="t_hero_unlock_hero">
  1149. <Key>
  1150. <PropertyRef Name="character_guid" />
  1151. <PropertyRef Name="hero_id" />
  1152. </Key>
  1153. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1154. <Property Name="hero_id" Type="int" Nullable="false" />
  1155. <Property Name="is_activated" Type="bool" />
  1156. <Property Name="cur_color_scheme_id" Type="int" Nullable="false" />
  1157. <Property Name="create_time" Type="datetime" Nullable="false" />
  1158. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1159. </EntityType>
  1160. <EntityType Name="t_illegal_term_rules">
  1161. <Key>
  1162. <PropertyRef Name="id" />
  1163. </Key>
  1164. <Property Name="regex" Type="blob" Nullable="false" />
  1165. <Property Name="id" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1166. </EntityType>
  1167. <!--生成过程中发现错误:
  1168. 警告 6002: 表/视图“def.tanghai.t_item_roll_list”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1169. -->
  1170. <EntityType Name="t_item_roll_list">
  1171. <Key>
  1172. <PropertyRef Name="item_roll_guid" />
  1173. <PropertyRef Name="character_guid" />
  1174. <PropertyRef Name="item_guid" />
  1175. <PropertyRef Name="item_id" />
  1176. <PropertyRef Name="item_name" />
  1177. <PropertyRef Name="source" />
  1178. <PropertyRef Name="is_bound" />
  1179. <PropertyRef Name="attributes" />
  1180. <PropertyRef Name="buy_time" />
  1181. <PropertyRef Name="expire_time" />
  1182. <PropertyRef Name="buy_type" />
  1183. <PropertyRef Name="pay_type" />
  1184. <PropertyRef Name="pay_yuanbao" />
  1185. <PropertyRef Name="free_yuanbao" />
  1186. <PropertyRef Name="previous_count" />
  1187. <PropertyRef Name="previous_location" />
  1188. <PropertyRef Name="count" />
  1189. <PropertyRef Name="location" />
  1190. <PropertyRef Name="change_type" />
  1191. <PropertyRef Name="billing_state" />
  1192. <PropertyRef Name="charge_gold_balance" />
  1193. <PropertyRef Name="free_gold_balance" />
  1194. <PropertyRef Name="modify_time" />
  1195. <PropertyRef Name="create_time" />
  1196. </Key>
  1197. <Property Name="item_roll_guid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1198. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1199. <Property Name="item_guid" Type="ubigint" Nullable="false" />
  1200. <Property Name="item_id" Type="uint" Nullable="false" />
  1201. <Property Name="item_name" Type="varchar" Nullable="false" MaxLength="256" />
  1202. <Property Name="source" Type="int" Nullable="false" />
  1203. <Property Name="is_bound" Type="int" Nullable="false" />
  1204. <Property Name="attributes" Type="blob" Nullable="false" />
  1205. <Property Name="buy_time" Type="datetime" Nullable="false" />
  1206. <Property Name="expire_time" Type="datetime" Nullable="false" />
  1207. <Property Name="buy_type" Type="int" Nullable="false" />
  1208. <Property Name="pay_type" Type="int" Nullable="false" />
  1209. <Property Name="pay_yuanbao" Type="int" Nullable="false" />
  1210. <Property Name="free_yuanbao" Type="int" Nullable="false" />
  1211. <Property Name="previous_count" Type="int" Nullable="false" />
  1212. <Property Name="previous_location" Type="int" Nullable="false" />
  1213. <Property Name="count" Type="int" Nullable="false" />
  1214. <Property Name="location" Type="int" Nullable="false" />
  1215. <Property Name="change_type" Type="int" Nullable="false" />
  1216. <Property Name="billing_state" Type="int" Nullable="false" />
  1217. <Property Name="charge_gold_balance" Type="int" Nullable="false" />
  1218. <Property Name="free_gold_balance" Type="int" Nullable="false" />
  1219. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1220. <Property Name="create_time" Type="datetime" Nullable="false" />
  1221. </EntityType>
  1222. <EntityType Name="t_login_reward">
  1223. <Key>
  1224. <PropertyRef Name="character_guid" />
  1225. <PropertyRef Name="year_day" />
  1226. </Key>
  1227. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1228. <Property Name="year_day" Type="int" Nullable="false" />
  1229. <Property Name="reward_id" Type="int" Nullable="false" />
  1230. <Property Name="is_deleted" Type="tinyint" Nullable="false" />
  1231. <Property Name="create_time" Type="datetime" Nullable="false" />
  1232. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1233. </EntityType>
  1234. <EntityType Name="t_mail">
  1235. <Key>
  1236. <PropertyRef Name="mail_guid" />
  1237. </Key>
  1238. <Property Name="mail_guid" Type="ubigint" Nullable="false" />
  1239. <Property Name="is_deleted" Type="bool" Nullable="false" />
  1240. <Property Name="checked" Type="bool" Nullable="false" />
  1241. <Property Name="is_read" Type="bool" Nullable="false" />
  1242. <Property Name="is_system_mail" Type="bool" Nullable="false" />
  1243. <Property Name="sender_guid" Type="ubigint" Nullable="false" />
  1244. <Property Name="sender_name" Type="varchar" Nullable="false" MaxLength="64" />
  1245. <Property Name="receiver_guid" Type="ubigint" Nullable="false" />
  1246. <Property Name="receiver_name" Type="varchar" Nullable="false" MaxLength="64" />
  1247. <Property Name="mail_subject" Type="varchar" Nullable="false" MaxLength="256" />
  1248. <Property Name="mail_body" Type="text" Nullable="false" />
  1249. <Property Name="silver" Type="int" Nullable="false" />
  1250. <Property Name="charge_gold" Type="int" Nullable="false" />
  1251. <Property Name="money_is_taked" Type="bool" Nullable="false" />
  1252. <Property Name="item_count" Type="int" Nullable="false" />
  1253. <Property Name="expire_time" Type="datetime" Nullable="false" />
  1254. <Property Name="create_time" Type="datetime" Nullable="false" />
  1255. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1256. </EntityType>
  1257. <EntityType Name="t_mail_item">
  1258. <Key>
  1259. <PropertyRef Name="item_guid" />
  1260. </Key>
  1261. <Property Name="item_guid" Type="ubigint" Nullable="false" />
  1262. <Property Name="mail_guid" Type="ubigint" Nullable="false" />
  1263. <Property Name="is_taked" Type="bool" Nullable="false" />
  1264. <Property Name="is_deleted" Type="bool" Nullable="false" />
  1265. <Property Name="create_time" Type="datetime" Nullable="false" />
  1266. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1267. </EntityType>
  1268. <EntityType Name="t_mall_items_sales_count">
  1269. <Key>
  1270. <PropertyRef Name="item_id" />
  1271. </Key>
  1272. <Property Name="item_id" Type="int" Nullable="false" />
  1273. <Property Name="sale_count" Type="int" />
  1274. <Property Name="create_time" Type="datetime" Nullable="false" />
  1275. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1276. </EntityType>
  1277. <EntityType Name="t_map_play_info">
  1278. <Key>
  1279. <PropertyRef Name="character_guid" />
  1280. <PropertyRef Name="map_type" />
  1281. </Key>
  1282. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1283. <Property Name="map_type" Type="varchar" Nullable="false" MaxLength="64" />
  1284. <Property Name="play_count" Type="int" Nullable="false" />
  1285. <Property Name="win_count" Type="int" Nullable="false" />
  1286. <Property Name="last_play_date" Type="ubigint" Nullable="false" />
  1287. <Property Name="total_play_time" Type="ubigint" Nullable="false" />
  1288. <Property Name="today_play_time" Type="int" Nullable="false" />
  1289. <Property Name="current_level" Type="int" Nullable="false" />
  1290. <Property Name="max_score" Type="int" Nullable="false" />
  1291. <Property Name="kill_boss_count" Type="int" Nullable="false" />
  1292. <Property Name="kill_hostile_soldier" Type="bigint" Nullable="false" />
  1293. <Property Name="max_total_damage" Type="int" Nullable="false" />
  1294. <Property Name="max_total_suffer_damage" Type="int" Nullable="false" />
  1295. <Property Name="max_total_heal" Type="int" Nullable="false" />
  1296. <Property Name="create_time" Type="datetime" Nullable="false" />
  1297. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1298. </EntityType>
  1299. <EntityType Name="t_meta">
  1300. <Key>
  1301. <PropertyRef Name="meta_key" />
  1302. </Key>
  1303. <Property Name="meta_key" Type="varchar" Nullable="false" MaxLength="64" />
  1304. <Property Name="meta_value" Type="varchar" MaxLength="255" />
  1305. </EntityType>
  1306. <EntityType Name="t_offline_message">
  1307. <Key>
  1308. <PropertyRef Name="fid" />
  1309. </Key>
  1310. <Property Name="fid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1311. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1312. <Property Name="proto_name" Type="varchar" Nullable="false" MaxLength="80" />
  1313. <Property Name="content" Type="longtext" Nullable="false" />
  1314. <Property Name="create_time" Type="datetime" Nullable="false" />
  1315. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1316. <Property Name="is_deleted" Type="tinyint" Nullable="false" />
  1317. </EntityType>
  1318. <EntityType Name="t_player_offline_message">
  1319. <Key>
  1320. <PropertyRef Name="fid" />
  1321. </Key>
  1322. <Property Name="fid" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1323. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1324. <Property Name="opcode" Type="int" Nullable="false" />
  1325. <Property Name="content" Type="blob" Nullable="false" />
  1326. <Property Name="create_time" Type="datetime" />
  1327. <Property Name="modify_time" Type="datetime" />
  1328. <Property Name="is_deleted" Type="bool" Nullable="false" />
  1329. </EntityType>
  1330. <!--生成过程中发现错误:
  1331. 警告 6002: 表/视图“def.tanghai.t_pve_equipment_scheme”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1332. -->
  1333. <EntityType Name="t_pve_equipment_scheme">
  1334. <Key>
  1335. <PropertyRef Name="character_guid" />
  1336. <PropertyRef Name="scheme_id" />
  1337. <PropertyRef Name="slot0_item_guid" />
  1338. <PropertyRef Name="slot1_item_guid" />
  1339. <PropertyRef Name="slot2_item_guid" />
  1340. <PropertyRef Name="slot3_item_guid" />
  1341. <PropertyRef Name="slot4_item_guid" />
  1342. <PropertyRef Name="slot5_item_guid" />
  1343. <PropertyRef Name="slot6_item_guid" />
  1344. <PropertyRef Name="slot7_item_guid" />
  1345. <PropertyRef Name="slot8_item_guid" />
  1346. <PropertyRef Name="slot9_item_guid" />
  1347. <PropertyRef Name="create_time" />
  1348. <PropertyRef Name="modify_time" />
  1349. </Key>
  1350. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1351. <Property Name="scheme_id" Type="int" Nullable="false" />
  1352. <Property Name="scheme_name" Type="varchar" MaxLength="64" />
  1353. <Property Name="slot0_item_guid" Type="ubigint" Nullable="false" />
  1354. <Property Name="slot1_item_guid" Type="ubigint" Nullable="false" />
  1355. <Property Name="slot2_item_guid" Type="ubigint" Nullable="false" />
  1356. <Property Name="slot3_item_guid" Type="ubigint" Nullable="false" />
  1357. <Property Name="slot4_item_guid" Type="ubigint" Nullable="false" />
  1358. <Property Name="slot5_item_guid" Type="ubigint" Nullable="false" />
  1359. <Property Name="slot6_item_guid" Type="ubigint" Nullable="false" />
  1360. <Property Name="slot7_item_guid" Type="ubigint" Nullable="false" />
  1361. <Property Name="slot8_item_guid" Type="ubigint" Nullable="false" />
  1362. <Property Name="slot9_item_guid" Type="ubigint" Nullable="false" />
  1363. <Property Name="create_time" Type="datetime" Nullable="false" />
  1364. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1365. </EntityType>
  1366. <!--生成过程中发现错误:
  1367. 警告 6002: 表/视图“def.tanghai.t_pve_equipment_strength”未定义主键。已推断出该键,并将定义创建为只读的表/视图。
  1368. -->
  1369. <EntityType Name="t_pve_equipment_strength">
  1370. <Key>
  1371. <PropertyRef Name="guid" />
  1372. <PropertyRef Name="strength_lv" />
  1373. <PropertyRef Name="strength_value" />
  1374. <PropertyRef Name="create_time" />
  1375. <PropertyRef Name="modify_time" />
  1376. </Key>
  1377. <Property Name="guid" Type="ubigint" Nullable="false" />
  1378. <Property Name="strength_lv" Type="int" Nullable="false" />
  1379. <Property Name="strength_value" Type="double" Nullable="false" />
  1380. <Property Name="create_time" Type="datetime" Nullable="false" />
  1381. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1382. </EntityType>
  1383. <EntityType Name="t_questionnaire">
  1384. <Key>
  1385. <PropertyRef Name="questionnaire_id" />
  1386. </Key>
  1387. <Property Name="questionnaire_id" Type="ubigint" Nullable="false" StoreGeneratedPattern="Identity" />
  1388. <Property Name="content" Type="text" />
  1389. <Property Name="create_time" Type="datetime" Nullable="false" />
  1390. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1391. </EntityType>
  1392. <EntityType Name="t_roll_log">
  1393. <Key>
  1394. <PropertyRef Name="roll_listid" />
  1395. </Key>
  1396. <Property Name="roll_listid" Type="varchar" Nullable="false" MaxLength="40" />
  1397. <Property Name="bill_listid" Type="varchar" MaxLength="40" />
  1398. <Property Name="character_guid" Type="ubigint" />
  1399. <Property Name="vs_guid" Type="ubigint" />
  1400. <Property Name="roll_type" Type="smallint" />
  1401. <Property Name="assets_type" Type="smallint" />
  1402. <Property Name="amount" Type="int" />
  1403. <Property Name="balance" Type="bigint" />
  1404. <Property Name="ip" Type="varchar" MaxLength="32" />
  1405. <Property Name="memo" Type="varchar" MaxLength="255" />
  1406. <Property Name="create_time" Type="datetime" />
  1407. <Property Name="modify_time" Type="datetime" />
  1408. </EntityType>
  1409. <EntityType Name="t_rune_scheme">
  1410. <Key>
  1411. <PropertyRef Name="character_guid" />
  1412. <PropertyRef Name="scheme_id" />
  1413. </Key>
  1414. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1415. <Property Name="scheme_id" Type="int" Nullable="false" />
  1416. <Property Name="scheme_name" Type="varchar" Nullable="false" MaxLength="50" />
  1417. <Property Name="slot0_item_guid" Type="ubigint" Nullable="false" />
  1418. <Property Name="slot1_item_guid" Type="ubigint" Nullable="false" />
  1419. <Property Name="slot2_item_guid" Type="ubigint" Nullable="false" />
  1420. <Property Name="slot3_item_guid" Type="ubigint" Nullable="false" />
  1421. <Property Name="slot4_item_guid" Type="ubigint" Nullable="false" />
  1422. <Property Name="slot5_item_guid" Type="ubigint" Nullable="false" />
  1423. <Property Name="slot6_item_guid" Type="ubigint" Nullable="false" />
  1424. <Property Name="slot7_item_guid" Type="ubigint" Nullable="false" />
  1425. <Property Name="slot8_item_guid" Type="ubigint" Nullable="false" />
  1426. <Property Name="slot9_item_guid" Type="ubigint" Nullable="false" />
  1427. <Property Name="slot10_item_guid" Type="ubigint" Nullable="false" />
  1428. <Property Name="slot11_item_guid" Type="ubigint" Nullable="false" />
  1429. <Property Name="slot12_item_guid" Type="ubigint" Nullable="false" />
  1430. <Property Name="slot13_item_guid" Type="ubigint" Nullable="false" />
  1431. <Property Name="slot14_item_guid" Type="ubigint" Nullable="false" />
  1432. <Property Name="create_time" Type="datetime" />
  1433. <Property Name="modify_time" Type="datetime" />
  1434. </EntityType>
  1435. <EntityType Name="t_social_group_basic">
  1436. <Key>
  1437. <PropertyRef Name="group_guid" />
  1438. </Key>
  1439. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  1440. <Property Name="group_name" Type="char" Nullable="false" MaxLength="128" />
  1441. <Property Name="group_type" Type="int" Nullable="false" />
  1442. <Property Name="owner_guid" Type="ubigint" Nullable="false" />
  1443. <Property Name="owner_name" Type="char" Nullable="false" MaxLength="128" />
  1444. <Property Name="member_size" Type="int" Nullable="false" />
  1445. <Property Name="manager_size" Type="int" Nullable="false" />
  1446. <Property Name="bulletin" Type="text" />
  1447. <Property Name="join_rule" Type="int" Nullable="false" />
  1448. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1449. <Property Name="create_time" Type="datetime" Nullable="false" />
  1450. </EntityType>
  1451. <EntityType Name="t_social_group_manager">
  1452. <Key>
  1453. <PropertyRef Name="group_guid" />
  1454. <PropertyRef Name="manager_guid" />
  1455. </Key>
  1456. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  1457. <Property Name="manager_guid" Type="ubigint" Nullable="false" />
  1458. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1459. <Property Name="create_time" Type="datetime" Nullable="false" />
  1460. </EntityType>
  1461. <EntityType Name="t_social_group_member">
  1462. <Key>
  1463. <PropertyRef Name="group_guid" />
  1464. <PropertyRef Name="member_guid" />
  1465. </Key>
  1466. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  1467. <Property Name="member_guid" Type="ubigint" Nullable="false" />
  1468. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1469. <Property Name="create_time" Type="datetime" Nullable="false" />
  1470. </EntityType>
  1471. <EntityType Name="t_title_info">
  1472. <Key>
  1473. <PropertyRef Name="character_guid" />
  1474. <PropertyRef Name="title_id" />
  1475. </Key>
  1476. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1477. <Property Name="title_id" Type="int" Nullable="false" />
  1478. <Property Name="new_title" Type="bool" />
  1479. <Property Name="valid_time" Type="int" Nullable="false" />
  1480. <Property Name="create_time" Type="datetime" Nullable="false" />
  1481. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1482. </EntityType>
  1483. <EntityType Name="t_tran_log">
  1484. <Key>
  1485. <PropertyRef Name="tran_listid" />
  1486. </Key>
  1487. <Property Name="tran_listid" Type="varchar" Nullable="false" MaxLength="40" />
  1488. <Property Name="buyer_guid" Type="ubigint" />
  1489. <Property Name="buyer_account" Type="varchar" MaxLength="100" />
  1490. <Property Name="seller_guid" Type="ubigint" />
  1491. <Property Name="seller_account" Type="varchar" MaxLength="100" />
  1492. <Property Name="assets_type" Type="smallint" />
  1493. <Property Name="pay_amount" Type="int" />
  1494. <Property Name="bill_listid" Type="varchar" MaxLength="32" />
  1495. <Property Name="ip" Type="varchar" MaxLength="32" />
  1496. <Property Name="memo" Type="varchar" MaxLength="255" />
  1497. <Property Name="create_time" Type="datetime" />
  1498. <Property Name="modify_time" Type="datetime" />
  1499. </EntityType>
  1500. <EntityType Name="t_tutorial">
  1501. <Key>
  1502. <PropertyRef Name="character_guid" />
  1503. </Key>
  1504. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1505. <Property Name="is_first_login" Type="tinyint" />
  1506. <Property Name="close_beginner_map_guide" Type="bool" />
  1507. <Property Name="match_count" Type="int" />
  1508. <Property Name="quick_match_count" Type="int" />
  1509. <Property Name="close_compound_hero_guide" Type="bool" />
  1510. <Property Name="gain_hero_pet_item" Type="bool" />
  1511. <Property Name="create_time" Type="datetime" />
  1512. <Property Name="modify_time" Type="datetime" />
  1513. </EntityType>
  1514. <EntityType Name="t_tutorial_status_info">
  1515. <Key>
  1516. <PropertyRef Name="character_guid" />
  1517. </Key>
  1518. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1519. <Property Name="beginner_map_win_count" Type="int" Nullable="false" />
  1520. <Property Name="match_count" Type="int" Nullable="false" />
  1521. <Property Name="quick_match_count" Type="int" Nullable="false" />
  1522. <Property Name="is_close_notify_tutorial" Type="tinyint" Nullable="false" />
  1523. <Property Name="is_close_notify_mini_tutorial" Type="tinyint" Nullable="false" />
  1524. <Property Name="create_time" Type="datetime" Nullable="false" />
  1525. <Property Name="modify_time" Type="datetime" Nullable="false" />
  1526. </EntityType>
  1527. <EntityType Name="t_world_character">
  1528. <Key>
  1529. <PropertyRef Name="character_guid" />
  1530. </Key>
  1531. <Property Name="character_guid" Type="ubigint" Nullable="false" />
  1532. <Property Name="group_guid" Type="ubigint" Nullable="false" />
  1533. <Property Name="room_guid" Type="ubigint" Nullable="false" />
  1534. </EntityType>
  1535. </Schema>
  1536. </edmx:StorageModels>
  1537. <!-- CSDL content -->
  1538. <edmx:ConceptualModels>
  1539. <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">
  1540. <EntityContainer Name="DataCenterEntities" p1:LazyLoadingEnabled="true">
  1541. <EntitySet Name="t_account" EntityType="DataCenterModel.t_account" />
  1542. <EntitySet Name="t_account_active_code" EntityType="DataCenterModel.t_account_active_code" />
  1543. <EntitySet Name="t_account_login_auth_response_cookie" EntityType="DataCenterModel.t_account_login_auth_response_cookie" />
  1544. <EntitySet Name="t_account_tutorial_status_info" EntityType="DataCenterModel.t_account_tutorial_status_info" />
  1545. <EntitySet Name="t_active_code" EntityType="DataCenterModel.t_active_code" />
  1546. <EntitySet Name="t_attribute" EntityType="DataCenterModel.t_attribute" />
  1547. <EntitySet Name="t_auction_item" EntityType="DataCenterModel.t_auction_item" />
  1548. <EntitySet Name="t_available_map" EntityType="DataCenterModel.t_available_map" />
  1549. <EntitySet Name="t_battle_gameover_statistic" EntityType="DataCenterModel.t_battle_gameover_statistic" />
  1550. <EntitySet Name="t_battle_kill_detail" EntityType="DataCenterModel.t_battle_kill_detail" />
  1551. <EntitySet Name="t_battle_summary" EntityType="DataCenterModel.t_battle_summary" />
  1552. <EntitySet Name="t_beginner_group_config" EntityType="DataCenterModel.t_beginner_group_config" />
  1553. <EntitySet Name="t_beginner_group_cong" EntityType="DataCenterModel.t_beginner_group_cong" />
  1554. <EntitySet Name="t_beginner_group_event" EntityType="DataCenterModel.t_beginner_group_event" />
  1555. <EntitySet Name="t_celebration_reward" EntityType="DataCenterModel.t_celebration_reward" />
  1556. <EntitySet Name="t_challenge_activity" EntityType="DataCenterModel.t_challenge_activity" />
  1557. <EntitySet Name="t_challenge_activity_schedule" EntityType="DataCenterModel.t_challenge_activity_schedule" />
  1558. <EntitySet Name="t_challenge_character_elect_hero" EntityType="DataCenterModel.t_challenge_character_elect_hero" />
  1559. <EntitySet Name="t_challenge_elect_hero_stat" EntityType="DataCenterModel.t_challenge_elect_hero_stat" />
  1560. <EntitySet Name="t_challenge_exp_buff" EntityType="DataCenterModel.t_challenge_exp_buff" />
  1561. <EntitySet Name="t_challenge_game_player" EntityType="DataCenterModel.t_challenge_game_player" />
  1562. <EntitySet Name="t_challenge_guess_game_over" EntityType="DataCenterModel.t_challenge_guess_game_over" />
  1563. <EntitySet Name="t_challenge_guess_reward" EntityType="DataCenterModel.t_challenge_guess_reward" />
  1564. <EntitySet Name="t_challenge_kfz_hero" EntityType="DataCenterModel.t_challenge_kfz_hero" />
  1565. <EntitySet Name="t_challenge_statue_info" EntityType="DataCenterModel.t_challenge_statue_info" />
  1566. <EntitySet Name="t_challenge_task_reward" EntityType="DataCenterModel.t_challenge_task_reward" />
  1567. <EntitySet Name="t_character" EntityType="DataCenterModel.t_character" />
  1568. <EntitySet Name="t_character_achievement" EntityType="DataCenterModel.t_character_achievement" />
  1569. <EntitySet Name="t_character_appearance" EntityType="DataCenterModel.t_character_appearance" />
  1570. <EntitySet Name="t_character_assets" EntityType="DataCenterModel.t_character_assets" />
  1571. <EntitySet Name="t_character_default_fighting_options" EntityType="DataCenterModel.t_character_default_fighting_options" />
  1572. <EntitySet Name="t_character_info" EntityType="DataCenterModel.t_character_info" />
  1573. <EntitySet Name="t_character_item" EntityType="DataCenterModel.t_character_item" />
  1574. <EntitySet Name="t_character_options" EntityType="DataCenterModel.t_character_options" />
  1575. <EntitySet Name="t_character_questionnaire" EntityType="DataCenterModel.t_character_questionnaire" />
  1576. <EntitySet Name="t_charge_list" EntityType="DataCenterModel.t_charge_list" />
  1577. <EntitySet Name="t_city_buff" EntityType="DataCenterModel.t_city_buff" />
  1578. <EntitySet Name="t_city_position" EntityType="DataCenterModel.t_city_position" />
  1579. <EntitySet Name="t_city_task_finish_sub_state" EntityType="DataCenterModel.t_city_task_finish_sub_state" />
  1580. <EntitySet Name="t_city_task_info" EntityType="DataCenterModel.t_city_task_info" />
  1581. <EntitySet Name="t_client_config" EntityType="DataCenterModel.t_client_config" />
  1582. <EntitySet Name="t_common_spell" EntityType="DataCenterModel.t_common_spell" />
  1583. <EntitySet Name="t_daily_online_time" EntityType="DataCenterModel.t_daily_online_time" />
  1584. <EntitySet Name="t_employ_notice_status" EntityType="DataCenterModel.t_employ_notice_status" />
  1585. <EntitySet Name="t_employ_relation" EntityType="DataCenterModel.t_employ_relation" />
  1586. <EntitySet Name="t_employee_info" EntityType="DataCenterModel.t_employee_info" />
  1587. <EntitySet Name="t_employee_notice" EntityType="DataCenterModel.t_employee_notice" />
  1588. <EntitySet Name="t_employer_notice" EntityType="DataCenterModel.t_employer_notice" />
  1589. <EntitySet Name="t_fighting_evaluation_info" EntityType="DataCenterModel.t_fighting_evaluation_info" />
  1590. <EntitySet Name="t_friend" EntityType="DataCenterModel.t_friend" />
  1591. <EntitySet Name="t_friend_group" EntityType="DataCenterModel.t_friend_group" />
  1592. <EntitySet Name="t_game_hero_use_info" EntityType="DataCenterModel.t_game_hero_use_info" />
  1593. <EntitySet Name="t_game_info" EntityType="DataCenterModel.t_game_info" />
  1594. <EntitySet Name="t_gs_code" EntityType="DataCenterModel.t_gs_code" />
  1595. <EntitySet Name="t_hero_color_scheme" EntityType="DataCenterModel.t_hero_color_scheme" />
  1596. <EntitySet Name="t_hero_level_state" EntityType="DataCenterModel.t_hero_level_state" />
  1597. <EntitySet Name="t_hero_pet" EntityType="DataCenterModel.t_hero_pet" />
  1598. <EntitySet Name="t_hero_suggest_equipment" EntityType="DataCenterModel.t_hero_suggest_equipment" />
  1599. <EntitySet Name="t_hero_talent_info" EntityType="DataCenterModel.t_hero_talent_info" />
  1600. <EntitySet Name="t_hero_talent_info_sub_state" EntityType="DataCenterModel.t_hero_talent_info_sub_state" />
  1601. <EntitySet Name="t_hero_unlock_hero" EntityType="DataCenterModel.t_hero_unlock_hero" />
  1602. <EntitySet Name="t_illegal_term_rules" EntityType="DataCenterModel.t_illegal_term_rules" />
  1603. <EntitySet Name="t_item_roll_list" EntityType="DataCenterModel.t_item_roll_list" />
  1604. <EntitySet Name="t_login_reward" EntityType="DataCenterModel.t_login_reward" />
  1605. <EntitySet Name="t_mail" EntityType="DataCenterModel.t_mail" />
  1606. <EntitySet Name="t_mail_item" EntityType="DataCenterModel.t_mail_item" />
  1607. <EntitySet Name="t_mall_items_sales_count" EntityType="DataCenterModel.t_mall_items_sales_count" />
  1608. <EntitySet Name="t_map_play_info" EntityType="DataCenterModel.t_map_play_info" />
  1609. <EntitySet Name="t_meta" EntityType="DataCenterModel.t_meta" />
  1610. <EntitySet Name="t_offline_message" EntityType="DataCenterModel.t_offline_message" />
  1611. <EntitySet Name="t_player_offline_message" EntityType="DataCenterModel.t_player_offline_message" />
  1612. <EntitySet Name="t_pve_equipment_scheme" EntityType="DataCenterModel.t_pve_equipment_scheme" />
  1613. <EntitySet Name="t_pve_equipment_strength" EntityType="DataCenterModel.t_pve_equipment_strength" />
  1614. <EntitySet Name="t_questionnaire" EntityType="DataCenterModel.t_questionnaire" />
  1615. <EntitySet Name="t_roll_log" EntityType="DataCenterModel.t_roll_log" />
  1616. <EntitySet Name="t_rune_scheme" EntityType="DataCenterModel.t_rune_scheme" />
  1617. <EntitySet Name="t_social_group_basic" EntityType="DataCenterModel.t_social_group_basic" />
  1618. <EntitySet Name="t_social_group_manager" EntityType="DataCenterModel.t_social_group_manager" />
  1619. <EntitySet Name="t_social_group_member" EntityType="DataCenterModel.t_social_group_member" />
  1620. <EntitySet Name="t_title_info" EntityType="DataCenterModel.t_title_info" />
  1621. <EntitySet Name="t_tran_log" EntityType="DataCenterModel.t_tran_log" />
  1622. <EntitySet Name="t_tutorial" EntityType="DataCenterModel.t_tutorial" />
  1623. <EntitySet Name="t_tutorial_status_info" EntityType="DataCenterModel.t_tutorial_status_info" />
  1624. <EntitySet Name="t_world_character" EntityType="DataCenterModel.t_world_character" />
  1625. </EntityContainer>
  1626. <EntityType Name="t_account">
  1627. <Key>
  1628. <PropertyRef Name="account" />
  1629. </Key>
  1630. <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1631. <Property Name="account_guid" Type="Decimal" />
  1632. <Property Name="sessionkey" Type="Binary" MaxLength="Max" FixedLength="false" />
  1633. <Property Name="v" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  1634. <Property Name="s" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  1635. <Property Name="active_code" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  1636. <Property Name="active_code_used" Type="Boolean" />
  1637. <Property Name="first_char_guid" Type="Decimal" />
  1638. <Property Name="create_time" Type="DateTime" />
  1639. <Property Name="modify_time" Type="DateTime" />
  1640. <Property Name="gm_level" Type="Int32" Nullable="false" />
  1641. </EntityType>
  1642. <EntityType Name="t_account_active_code">
  1643. <Key>
  1644. <PropertyRef Name="account" />
  1645. <PropertyRef Name="gain_active_codes" />
  1646. </Key>
  1647. <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1648. <Property Name="gain_active_codes" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1649. <Property Name="create_time" Type="DateTime" />
  1650. <Property Name="modify_time" Type="DateTime" />
  1651. </EntityType>
  1652. <EntityType Name="t_account_login_auth_response_cookie">
  1653. <Key>
  1654. <PropertyRef Name="account" />
  1655. </Key>
  1656. <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1657. <Property Name="aid" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  1658. <Property Name="ssn" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  1659. <Property Name="gamepoint" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
  1660. <Property Name="balance" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
  1661. <Property Name="sn" Type="String" MaxLength="40" Unicode="false" FixedLength="false" />
  1662. <Property Name="user_type" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1663. <Property Name="otpstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1664. <Property Name="otpuptime" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1665. <Property Name="infosafe" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1666. <Property Name="phonestat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1667. <Property Name="ppcstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1668. <Property Name="ppccoord" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1669. <Property Name="mppstat" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1670. <Property Name="rnstat" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
  1671. <Property Name="regtime" Type="String" MaxLength="10" Unicode="false" FixedLength="false" />
  1672. <Property Name="mobileno" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1673. <Property Name="need_activate_game" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1674. <Property Name="game_flag" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1675. <Property Name="deactivated" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1676. <Property Name="uidcount" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1677. <Property Name="newtm" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1678. <Property Name="vipstatus" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1679. <Property Name="is_vip_phone_trusty" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1680. <Property Name="is_vip_addr_trusty" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1681. <Property Name="real_name_flag" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1682. <Property Name="mobileisactivated" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1683. <Property Name="secu_info_ready" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1684. <Property Name="secu_info_pin_ma" Type="String" MaxLength="5" Unicode="false" FixedLength="false" />
  1685. <Property Name="secu_info_id_num" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1686. <Property Name="id_num" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1687. <Property Name="create_time" Type="DateTime" />
  1688. <Property Name="modify_time" Type="DateTime" />
  1689. </EntityType>
  1690. <EntityType Name="t_account_tutorial_status_info">
  1691. <Key>
  1692. <PropertyRef Name="account" />
  1693. </Key>
  1694. <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1695. <Property Name="max_level" Type="Int32" />
  1696. <Property Name="beginner_map_win_count" Type="Int32" />
  1697. <Property Name="match_count" Type="Int32" />
  1698. <Property Name="quick_match_count" Type="Int32" />
  1699. <Property Name="is_close_notify_tutorial" Type="Boolean" />
  1700. <Property Name="is_close_notify_mini_tutorial" Type="Boolean" />
  1701. <Property Name="composite_hero_token_count" Type="Int32" />
  1702. <Property Name="is_close_merge_tutorial" Type="Boolean" />
  1703. <Property Name="create_ai_map_room_count" Type="Int32" />
  1704. <Property Name="is_close_ai_map_room_tutorial" Type="Boolean" />
  1705. <Property Name="is_get_beginner_map_bonus" Type="Boolean" />
  1706. <Property Name="got_new_player_survey" Type="Boolean" />
  1707. <Property Name="player_level" Type="Int32" />
  1708. <Property Name="is_notify_common_skill" Type="Boolean" />
  1709. <Property Name="is_first_open_rune_panel" Type="Boolean" />
  1710. <Property Name="create_time" Type="DateTime" />
  1711. <Property Name="modify_time" Type="DateTime" />
  1712. </EntityType>
  1713. <EntityType Name="t_active_code">
  1714. <Key>
  1715. <PropertyRef Name="active_code" />
  1716. </Key>
  1717. <Property Name="active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  1718. <Property Name="code_type" Type="Int32" Nullable="false" />
  1719. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1720. <Property Name="grant_type" Type="Int32" Nullable="false" />
  1721. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1722. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1723. </EntityType>
  1724. <EntityType Name="t_attribute">
  1725. <Key>
  1726. <PropertyRef Name="guid" />
  1727. <PropertyRef Name="id" />
  1728. <PropertyRef Name="sub_id" />
  1729. <PropertyRef Name="value" />
  1730. <PropertyRef Name="attr_type" />
  1731. <PropertyRef Name="create_time" />
  1732. <PropertyRef Name="modify_time" />
  1733. </Key>
  1734. <Property Name="guid" Type="Decimal" Nullable="false" />
  1735. <Property Name="id" Type="Int32" Nullable="false" />
  1736. <Property Name="sub_id" Type="Int32" Nullable="false" />
  1737. <Property Name="value" Type="Double" Nullable="false" />
  1738. <Property Name="attr_type" Type="Int32" Nullable="false" />
  1739. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1740. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1741. </EntityType>
  1742. <EntityType Name="t_auction_item">
  1743. <Key>
  1744. <PropertyRef Name="item_guid" />
  1745. </Key>
  1746. <Property Name="item_guid" Type="Decimal" Nullable="false" />
  1747. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  1748. <Property Name="seller_guid" Type="Decimal" Nullable="false" />
  1749. <Property Name="seller_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  1750. <Property Name="seller_ip" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  1751. <Property Name="auction_class" Type="Int16" Nullable="false" />
  1752. <Property Name="item_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  1753. <Property Name="item_id" Type="Int32" Nullable="false" />
  1754. <Property Name="assets_type" Type="Int16" Nullable="false" />
  1755. <Property Name="deposit" Type="Int32" Nullable="false" />
  1756. <Property Name="sum_price" Type="Int32" Nullable="false" />
  1757. <Property Name="unit_price" Type="Single" Nullable="false" />
  1758. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  1759. <Property Name="tran_guid" Type="Decimal" Nullable="false" />
  1760. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1761. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1762. </EntityType>
  1763. <EntityType Name="t_available_map">
  1764. <Key>
  1765. <PropertyRef Name="character_guid" />
  1766. <PropertyRef Name="map_type" />
  1767. </Key>
  1768. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1769. <Property Name="map_type" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
  1770. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1771. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1772. </EntityType>
  1773. <EntityType Name="t_battle_gameover_statistic">
  1774. <Key>
  1775. <PropertyRef Name="battle_guid" />
  1776. </Key>
  1777. <Property Name="battle_guid" Type="Decimal" Nullable="false" />
  1778. <Property Name="gameover_statistic" Type="Binary" MaxLength="Max" FixedLength="false" />
  1779. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1780. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1781. </EntityType>
  1782. <EntityType Name="t_battle_kill_detail">
  1783. <Key>
  1784. <PropertyRef Name="kill_id" />
  1785. </Key>
  1786. <Property Name="kill_id" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  1787. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1788. <Property Name="battle_guid" Type="Decimal" Nullable="false" />
  1789. <Property Name="kill_type" Type="Int64" Nullable="false" />
  1790. <Property Name="kill_name" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
  1791. <Property Name="kill_guid" Type="Decimal" />
  1792. <Property Name="assist_name" Type="String" MaxLength="200" Unicode="false" FixedLength="false" />
  1793. <Property Name="kill_time" Type="Int32" />
  1794. <Property Name="killed_name" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
  1795. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1796. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1797. </EntityType>
  1798. <EntityType Name="t_battle_summary">
  1799. <Key>
  1800. <PropertyRef Name="character_guid" />
  1801. <PropertyRef Name="battle_guid" />
  1802. </Key>
  1803. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1804. <Property Name="battle_guid" Type="Decimal" Nullable="false" />
  1805. <Property Name="pvp_or_pve" Type="Boolean" />
  1806. <Property Name="is_win" Type="Boolean" />
  1807. <Property Name="is_mvp" Type="Boolean" />
  1808. <Property Name="is_most_kill_person" Type="Boolean" />
  1809. <Property Name="is_most_assist" Type="Boolean" />
  1810. <Property Name="is_most_money" Type="Boolean" />
  1811. <Property Name="is_down_tower" Type="Boolean" />
  1812. <Property Name="is_most_kill_friend" Type="Boolean" />
  1813. <Property Name="is_lost_mvp" Type="Boolean" />
  1814. <Property Name="is_s_pve_map" Type="Boolean" />
  1815. <Property Name="is_first_blood" Type="Boolean" />
  1816. <Property Name="is_pve_most_kill_boss" Type="Boolean" />
  1817. <Property Name="is_pve_most_take_damage" Type="Boolean" />
  1818. <Property Name="is_pve_most_healing" Type="Boolean" />
  1819. <Property Name="is_pve_most_damage" Type="Boolean" />
  1820. <Property Name="map_type" Type="String" MaxLength="20" Unicode="false" FixedLength="false" />
  1821. <Property Name="battle_date" Type="String" MaxLength="30" Unicode="false" FixedLength="false" />
  1822. <Property Name="battle_time" Type="Int32" />
  1823. <Property Name="is_escape" Type="Boolean" />
  1824. <Property Name="hero_id" Type="Int32" />
  1825. <Property Name="match_type" Type="Int32" />
  1826. <Property Name="is_reinforce" Type="Boolean" />
  1827. <Property Name="pvp_kill_count" Type="Int32" />
  1828. <Property Name="pvp_assist_count" Type="Int32" />
  1829. <Property Name="pvp_dead_count" Type="Int32" />
  1830. <Property Name="pvp_most_continuous_kill_number" Type="Int32" />
  1831. <Property Name="pvp_score" Type="Int32" />
  1832. <Property Name="pve_boss_kill" Type="Int32" />
  1833. <Property Name="pve_kill_hostile_soldier" Type="Int32" />
  1834. <Property Name="pve_total_money" Type="Int32" />
  1835. <Property Name="pve_get_level" Type="Int32" />
  1836. <Property Name="is_employ_battle" Type="Boolean" />
  1837. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1838. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1839. </EntityType>
  1840. <EntityType Name="t_beginner_group_config">
  1841. <Key>
  1842. <PropertyRef Name="aid" />
  1843. </Key>
  1844. <Property Name="aid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  1845. <Property Name="max_group_id" Type="Int32" />
  1846. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1847. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1848. </EntityType>
  1849. <EntityType Name="t_beginner_group_cong">
  1850. <Key>
  1851. <PropertyRef Name="group_guid" />
  1852. <PropertyRef Name="character_guid" />
  1853. </Key>
  1854. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  1855. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1856. <Property Name="character_level" Type="Int32" Nullable="false" />
  1857. <Property Name="cong_guid_list" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  1858. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1859. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1860. </EntityType>
  1861. <EntityType Name="t_beginner_group_event">
  1862. <Key>
  1863. <PropertyRef Name="event_guid" />
  1864. </Key>
  1865. <Property Name="event_guid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  1866. <Property Name="beginner_group_guid" Type="Decimal" Nullable="false" />
  1867. <Property Name="event_id" Type="Int32" Nullable="false" />
  1868. <Property Name="event_content" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  1869. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1870. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1871. </EntityType>
  1872. <EntityType Name="t_celebration_reward">
  1873. <Key>
  1874. <PropertyRef Name="account" />
  1875. <PropertyRef Name="reward_type" />
  1876. </Key>
  1877. <Property Name="account" Type="String" Nullable="false" MaxLength="100" Unicode="false" FixedLength="false" />
  1878. <Property Name="reward_type" Type="Int32" Nullable="false" />
  1879. <Property Name="tel_number" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
  1880. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1881. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1882. </EntityType>
  1883. <EntityType Name="t_challenge_activity">
  1884. <Key>
  1885. <PropertyRef Name="activity_id" />
  1886. </Key>
  1887. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1888. <Property Name="activity_status" Type="Int32" Nullable="false" />
  1889. <Property Name="start_time" Type="DateTime" Nullable="false" />
  1890. <Property Name="battle_id" Type="Decimal" Nullable="false" />
  1891. <Property Name="challenger_win" Type="Boolean" Nullable="false" />
  1892. <Property Name="kfz_best_hero" Type="Int32" Nullable="false" />
  1893. <Property Name="game_over_time" Type="DateTime" />
  1894. <Property Name="challenger_win_bet" Type="Int64" Nullable="false" />
  1895. <Property Name="challenger_lose_bet" Type="Int64" Nullable="false" />
  1896. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1897. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1898. </EntityType>
  1899. <EntityType Name="t_challenge_activity_schedule">
  1900. <Key>
  1901. <PropertyRef Name="activity_id" />
  1902. </Key>
  1903. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1904. <Property Name="elect_from_time" Type="DateTime" Nullable="false" />
  1905. <Property Name="elect_to_time" Type="DateTime" Nullable="false" />
  1906. <Property Name="guess_from_time" Type="DateTime" Nullable="false" />
  1907. <Property Name="guess_to_time" Type="DateTime" Nullable="false" />
  1908. <Property Name="reward_from_time" Type="DateTime" Nullable="false" />
  1909. <Property Name="reward_to_time" Type="DateTime" Nullable="false" />
  1910. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1911. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1912. </EntityType>
  1913. <EntityType Name="t_challenge_character_elect_hero">
  1914. <Key>
  1915. <PropertyRef Name="character_guid" />
  1916. <PropertyRef Name="activity_id" />
  1917. <PropertyRef Name="hero_id" />
  1918. </Key>
  1919. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1920. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1921. <Property Name="hero_id" Type="Int32" Nullable="false" />
  1922. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1923. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1924. </EntityType>
  1925. <EntityType Name="t_challenge_elect_hero_stat">
  1926. <Key>
  1927. <PropertyRef Name="activity_id" />
  1928. <PropertyRef Name="hero_id" />
  1929. </Key>
  1930. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1931. <Property Name="hero_id" Type="Int32" Nullable="false" />
  1932. <Property Name="game_position" Type="Int32" Nullable="false" />
  1933. <Property Name="vote_count" Type="Int32" Nullable="false" />
  1934. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1935. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1936. </EntityType>
  1937. <EntityType Name="t_challenge_exp_buff">
  1938. <Key>
  1939. <PropertyRef Name="character_guid" />
  1940. <PropertyRef Name="time_year" />
  1941. <PropertyRef Name="time_year_day" />
  1942. </Key>
  1943. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1944. <Property Name="time_year" Type="Int32" Nullable="false" />
  1945. <Property Name="time_year_day" Type="Int32" Nullable="false" />
  1946. <Property Name="buff_guid" Type="Decimal" Nullable="false" />
  1947. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1948. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1949. </EntityType>
  1950. <EntityType Name="t_challenge_game_player">
  1951. <Key>
  1952. <PropertyRef Name="activity_id" />
  1953. <PropertyRef Name="character_guid" />
  1954. </Key>
  1955. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1956. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1957. <Property Name="is_win" Type="Boolean" Nullable="false" />
  1958. <Property Name="faction" Type="Int32" Nullable="false" />
  1959. <Property Name="hero_id" Type="Int32" Nullable="false" />
  1960. <Property Name="title" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
  1961. <Property Name="platform_title_id" Type="Int32" Nullable="false" />
  1962. <Property Name="character_name" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
  1963. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1964. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1965. </EntityType>
  1966. <EntityType Name="t_challenge_guess_game_over">
  1967. <Key>
  1968. <PropertyRef Name="character_guid" />
  1969. <PropertyRef Name="activity_id" />
  1970. </Key>
  1971. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1972. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1973. <Property Name="challenger_win" Type="Boolean" Nullable="false" />
  1974. <Property Name="challenger_win_bet" Type="Int32" Nullable="false" />
  1975. <Property Name="kfz_best_hero" Type="Int32" Nullable="false" />
  1976. <Property Name="kfz_best_hero_bet" Type="Int32" Nullable="false" />
  1977. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1978. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1979. </EntityType>
  1980. <EntityType Name="t_challenge_guess_reward">
  1981. <Key>
  1982. <PropertyRef Name="activity_id" />
  1983. <PropertyRef Name="character_guid" />
  1984. </Key>
  1985. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1986. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  1987. <Property Name="winner_guess_silver" Type="Int32" Nullable="false" />
  1988. <Property Name="best_hero_guess_silver" Type="Int32" Nullable="false" />
  1989. <Property Name="is_taked" Type="Boolean" Nullable="false" />
  1990. <Property Name="create_time" Type="DateTime" Nullable="false" />
  1991. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  1992. </EntityType>
  1993. <EntityType Name="t_challenge_kfz_hero">
  1994. <Key>
  1995. <PropertyRef Name="activity_id" />
  1996. <PropertyRef Name="hero_id" />
  1997. </Key>
  1998. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  1999. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2000. <Property Name="game_position" Type="Int32" Nullable="false" />
  2001. <Property Name="best_bet" Type="Int64" Nullable="false" />
  2002. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2003. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2004. </EntityType>
  2005. <EntityType Name="t_challenge_statue_info">
  2006. <Key>
  2007. <PropertyRef Name="activity_id" />
  2008. </Key>
  2009. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2010. <Property Name="from_time" Type="DateTime" Nullable="false" />
  2011. <Property Name="to_time" Type="DateTime" Nullable="false" />
  2012. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2013. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2014. </EntityType>
  2015. <EntityType Name="t_challenge_task_reward">
  2016. <Key>
  2017. <PropertyRef Name="activity_id" />
  2018. <PropertyRef Name="character_guid" />
  2019. <PropertyRef Name="reward_type" />
  2020. </Key>
  2021. <Property Name="activity_id" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2022. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2023. <Property Name="reward_type" Type="Int32" Nullable="false" />
  2024. <Property Name="task_id" Type="Int32" Nullable="false" />
  2025. <Property Name="is_taked" Type="Boolean" Nullable="false" />
  2026. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2027. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2028. </EntityType>
  2029. <EntityType Name="t_character">
  2030. <Key>
  2031. <PropertyRef Name="character_guid" />
  2032. </Key>
  2033. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2034. <Property Name="general_class" Type="Int32" Nullable="false" />
  2035. <Property Name="character_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2036. <Property Name="sex" Type="Int32" Nullable="false" />
  2037. <Property Name="account_id" Type="Decimal" Nullable="false" />
  2038. <Property Name="playing_map_server_key" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2039. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  2040. <Property Name="room_guid" Type="Decimal" Nullable="false" />
  2041. <Property Name="general_ghost" Type="Int32" Nullable="false" />
  2042. <Property Name="kingdom" Type="Int32" Nullable="false" />
  2043. <Property Name="create_ip" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2044. <Property Name="area_id" Type="Int32" Nullable="false" />
  2045. <Property Name="account" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2046. <Property Name="default_display_id" Type="Int32" Nullable="false" />
  2047. <Property Name="selected_title_type" Type="Int32" Nullable="false" />
  2048. <Property Name="last_login_time" Type="Int64" Nullable="false" />
  2049. <Property Name="login_ip" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2050. <Property Name="is_first_login" Type="Boolean" Nullable="false" />
  2051. <Property Name="has_newly_mail" Type="Boolean" Nullable="false" />
  2052. <Property Name="location" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2053. <Property Name="history_silver" Type="Int64" Nullable="false" />
  2054. <Property Name="history_charge_gold" Type="Int64" Nullable="false" />
  2055. <Property Name="history_free_gold" Type="Int64" Nullable="false" />
  2056. <Property Name="rank_bonus_title_id" Type="Int32" Nullable="false" />
  2057. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2058. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2059. <Property Name="recent_flee_buff_id" Type="Int32" Nullable="false" />
  2060. <Property Name="add_buff_yday" Type="Int32" Nullable="false" />
  2061. <Property Name="need_rename" Type="SByte" Nullable="false" />
  2062. <Property Name="can_gain_active_code_item" Type="Boolean" Nullable="false" />
  2063. <Property Name="total_online_seconds" Type="Int64" Nullable="false" />
  2064. <Property Name="city_server_name" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2065. <Property Name="last_login_realtime" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2066. <Property Name="anti_addiction_online_time" Type="Int32" Nullable="false" />
  2067. <Property Name="anti_addiction_offline_time" Type="Int32" Nullable="false" />
  2068. <Property Name="gs_active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2069. <Property Name="ban_login_expired_time" Type="Int64" />
  2070. <Property Name="ban_chat_expired_time" Type="Int64" />
  2071. <Property Name="pve_equipment_max_strengthen_level" Type="Int32" Nullable="false" />
  2072. <Property Name="pve_equipment_active_scheme_id" Type="Int32" Nullable="false" />
  2073. </EntityType>
  2074. <EntityType Name="t_character_achievement">
  2075. <Key>
  2076. <PropertyRef Name="character_guid" />
  2077. <PropertyRef Name="achievement_id" />
  2078. </Key>
  2079. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2080. <Property Name="achievement_id" Type="Int32" Nullable="false" />
  2081. <Property Name="event_count" Type="Int32" />
  2082. <Property Name="is_accomplished" Type="Boolean" Nullable="false" />
  2083. <Property Name="accomplish_time" Type="DateTime" />
  2084. <Property Name="hero_id" Type="Int32" />
  2085. <Property Name="battle_guid" Type="Decimal" Nullable="false" />
  2086. <Property Name="create_time" Type="DateTime" />
  2087. <Property Name="modify_time" Type="DateTime" />
  2088. </EntityType>
  2089. <EntityType Name="t_character_appearance">
  2090. <Key>
  2091. <PropertyRef Name="character_guid" />
  2092. <PropertyRef Name="appearance_type" />
  2093. </Key>
  2094. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2095. <Property Name="appearance_type" Type="Int32" Nullable="false" />
  2096. <Property Name="headdress" Type="Decimal" Nullable="false" />
  2097. <Property Name="wing" Type="Decimal" Nullable="false" />
  2098. <Property Name="clothes" Type="Decimal" Nullable="false" />
  2099. <Property Name="weapon" Type="Decimal" Nullable="false" />
  2100. <Property Name="magic_weapon" Type="Decimal" Nullable="false" />
  2101. <Property Name="mounts" Type="Decimal" Nullable="false" />
  2102. <Property Name="face" Type="Decimal" Nullable="false" />
  2103. <Property Name="riding_status" Type="Int32" Nullable="false" />
  2104. <Property Name="color1" Type="Int64" Nullable="false" />
  2105. <Property Name="color2" Type="Int64" Nullable="false" />
  2106. <Property Name="color3" Type="Int64" Nullable="false" />
  2107. <Property Name="color4" Type="Int64" Nullable="false" />
  2108. <Property Name="color5" Type="Int64" Nullable="false" />
  2109. <Property Name="default_visual" Type="Int32" Nullable="false" />
  2110. <Property Name="default_face" Type="Int32" Nullable="false" />
  2111. <Property Name="default_headdress" Type="Int32" Nullable="false" />
  2112. <Property Name="color_scheme_id" Type="Int32" Nullable="false" />
  2113. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2114. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2115. </EntityType>
  2116. <EntityType Name="t_character_assets">
  2117. <Key>
  2118. <PropertyRef Name="assets_id" />
  2119. </Key>
  2120. <Property Name="assets_id" Type="Int64" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2121. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2122. <Property Name="assets_type" Type="Int16" Nullable="false" />
  2123. <Property Name="balance" Type="Int64" Nullable="false" />
  2124. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2125. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2126. </EntityType>
  2127. <EntityType Name="t_character_default_fighting_options">
  2128. <Key>
  2129. <PropertyRef Name="character_guid" />
  2130. </Key>
  2131. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2132. <Property Name="last_common_spell_series_id" Type="Int32" Nullable="false" />
  2133. <Property Name="last_rune_scheme_id" Type="Int32" Nullable="false" />
  2134. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2135. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2136. </EntityType>
  2137. <EntityType Name="t_character_info">
  2138. <Key>
  2139. <PropertyRef Name="tid" />
  2140. </Key>
  2141. <Property Name="tid" Type="Int32" Nullable="false" />
  2142. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2143. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2144. </EntityType>
  2145. <EntityType Name="t_character_item">
  2146. <Key>
  2147. <PropertyRef Name="item_guid" />
  2148. </Key>
  2149. <Property Name="item_guid" Type="Decimal" Nullable="false" />
  2150. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2151. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2152. <Property Name="item_id" Type="Int32" Nullable="false" />
  2153. <Property Name="slot" Type="Int32" Nullable="false" />
  2154. <Property Name="item_count" Type="Int32" Nullable="false" />
  2155. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2156. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2157. <Property Name="source" Type="Int32" Nullable="false" />
  2158. <Property Name="is_bound" Type="Boolean" Nullable="false" />
  2159. <Property Name="location" Type="Int32" Nullable="false" />
  2160. <Property Name="attributes" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2161. <Property Name="buy_time" Type="DateTime" Nullable="false" />
  2162. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  2163. <Property Name="buy_type" Type="Int32" Nullable="false" />
  2164. <Property Name="pay_type" Type="Int32" Nullable="false" />
  2165. <Property Name="pay_yuanbao" Type="Int32" Nullable="false" />
  2166. <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
  2167. <Property Name="reiki_count" Type="Int32" Nullable="false" />
  2168. <Property Name="durability_count" Type="Int32" Nullable="false" />
  2169. <Property Name="recast_count" Type="Int32" Nullable="false" />
  2170. </EntityType>
  2171. <EntityType Name="t_character_options">
  2172. <Key>
  2173. <PropertyRef Name="character_guid" />
  2174. </Key>
  2175. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2176. <Property Name="rune_not_show_binding_tips" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2177. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2178. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2179. </EntityType>
  2180. <EntityType Name="t_character_questionnaire">
  2181. <Key>
  2182. <PropertyRef Name="character_guid" />
  2183. <PropertyRef Name="questionnaire_id" />
  2184. </Key>
  2185. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2186. <Property Name="questionnaire_id" Type="Decimal" Nullable="false" />
  2187. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2188. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2189. </EntityType>
  2190. <EntityType Name="t_charge_list">
  2191. <Key>
  2192. <PropertyRef Name="charge_listid" />
  2193. </Key>
  2194. <Property Name="charge_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2195. <Property Name="charge_sn" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2196. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2197. <Property Name="account" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2198. <Property Name="ip" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2199. <Property Name="pay_points" Type="Int32" Nullable="false" />
  2200. <Property Name="charge_yuanbao" Type="Int32" Nullable="false" />
  2201. <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
  2202. <Property Name="url_parameters" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2203. <Property Name="charge_state" Type="Int32" Nullable="false" />
  2204. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2205. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2206. <Property Name="retry_times" Type="Int32" Nullable="false" />
  2207. </EntityType>
  2208. <EntityType Name="t_city_buff">
  2209. <Key>
  2210. <PropertyRef Name="buff_guid" />
  2211. </Key>
  2212. <Property Name="buff_guid" Type="Decimal" Nullable="false" />
  2213. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2214. <Property Name="buff_id" Type="Int32" Nullable="false" />
  2215. <Property Name="buff_time" Type="Int32" Nullable="false" />
  2216. <Property Name="stack" Type="Int32" Nullable="false" />
  2217. <Property Name="buff_values" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2218. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2219. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2220. </EntityType>
  2221. <EntityType Name="t_city_position">
  2222. <Key>
  2223. <PropertyRef Name="character_guid" />
  2224. <PropertyRef Name="city_name" />
  2225. </Key>
  2226. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2227. <Property Name="city_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2228. <Property Name="x" Type="Single" Nullable="false" />
  2229. <Property Name="y" Type="Single" Nullable="false" />
  2230. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2231. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2232. </EntityType>
  2233. <EntityType Name="t_city_task_finish_sub_state">
  2234. <Key>
  2235. <PropertyRef Name="task_guid" />
  2236. <PropertyRef Name="city_task_sub_state_type" />
  2237. </Key>
  2238. <Property Name="task_guid" Type="Decimal" Nullable="false" />
  2239. <Property Name="city_task_sub_state_type" Type="Int32" Nullable="false" />
  2240. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2241. <Property Name="total_count" Type="Int32" Nullable="false" />
  2242. <Property Name="finish_count" Type="Int32" Nullable="false" />
  2243. <Property Name="detail" Type="String" Nullable="false" MaxLength="1024" Unicode="false" FixedLength="false" />
  2244. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2245. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2246. </EntityType>
  2247. <EntityType Name="t_city_task_info">
  2248. <Key>
  2249. <PropertyRef Name="task_guid" />
  2250. </Key>
  2251. <Property Name="task_guid" Type="Decimal" Nullable="false" />
  2252. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2253. <Property Name="task_id" Type="Int32" Nullable="false" />
  2254. <Property Name="state" Type="Int32" Nullable="false" />
  2255. <Property Name="finish_timestamp" Type="Decimal" Nullable="false" />
  2256. <Property Name="accept_time" Type="Decimal" Nullable="false" />
  2257. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2258. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2259. </EntityType>
  2260. <EntityType Name="t_client_config">
  2261. <Key>
  2262. <PropertyRef Name="character_guid" />
  2263. </Key>
  2264. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2265. <Property Name="map_type" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
  2266. <Property Name="key_setting" Type="String" Nullable="false" MaxLength="2048" Unicode="false" FixedLength="false" />
  2267. <Property Name="use_dota_key" Type="Boolean" Nullable="false" />
  2268. <Property Name="shop_using_price_classify" Type="Boolean" Nullable="false" />
  2269. <Property Name="client_config_str" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2270. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2271. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2272. </EntityType>
  2273. <EntityType Name="t_common_spell">
  2274. <Key>
  2275. <PropertyRef Name="character_guid" />
  2276. <PropertyRef Name="common_spell_id" />
  2277. </Key>
  2278. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2279. <Property Name="common_spell_id" Type="Int32" Nullable="false" />
  2280. <Property Name="common_spell_series" Type="Int32" Nullable="false" />
  2281. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2282. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2283. </EntityType>
  2284. <EntityType Name="t_daily_online_time">
  2285. <Key>
  2286. <PropertyRef Name="character_guid" />
  2287. <PropertyRef Name="login_date" />
  2288. </Key>
  2289. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2290. <Property Name="login_date" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2291. <Property Name="online_time" Type="Int32" Nullable="false" />
  2292. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2293. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2294. </EntityType>
  2295. <EntityType Name="t_employ_notice_status">
  2296. <Key>
  2297. <PropertyRef Name="employ_notice_status_id" />
  2298. </Key>
  2299. <Property Name="employ_notice_status_id" Type="Int32" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2300. <Property Name="publisher_guid" Type="Decimal" Nullable="false" />
  2301. <Property Name="applicant_guid" Type="Decimal" Nullable="false" />
  2302. <Property Name="status" Type="Decimal" Nullable="false" />
  2303. </EntityType>
  2304. <EntityType Name="t_employ_relation">
  2305. <Key>
  2306. <PropertyRef Name="employ_relation_id" />
  2307. </Key>
  2308. <Property Name="employ_relation_id" Type="Int32" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2309. <Property Name="employer_guid" Type="Decimal" Nullable="false" />
  2310. <Property Name="employee_guid" Type="Decimal" Nullable="false" />
  2311. <Property Name="assets_type" Type="Int32" Nullable="false" />
  2312. <Property Name="price" Type="Int32" Nullable="false" />
  2313. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2314. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2315. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2316. </EntityType>
  2317. <EntityType Name="t_employee_info">
  2318. <Key>
  2319. <PropertyRef Name="character_guid" />
  2320. </Key>
  2321. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2322. <Property Name="employee_experience" Type="Int32" Nullable="false" />
  2323. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2324. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2325. </EntityType>
  2326. <EntityType Name="t_employee_notice">
  2327. <Key>
  2328. <PropertyRef Name="employee_guid" />
  2329. </Key>
  2330. <Property Name="employee_guid" Type="Decimal" Nullable="false" />
  2331. <Property Name="apply_type" Type="Int32" Nullable="false" />
  2332. <Property Name="assets_type" Type="Int32" Nullable="false" />
  2333. <Property Name="price" Type="Int32" Nullable="false" />
  2334. <Property Name="publish_time" Type="DateTime" Nullable="false" />
  2335. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  2336. <Property Name="success" Type="Boolean" Nullable="false" />
  2337. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2338. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2339. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2340. </EntityType>
  2341. <EntityType Name="t_employer_notice">
  2342. <Key>
  2343. <PropertyRef Name="employer_guid" />
  2344. </Key>
  2345. <Property Name="employer_guid" Type="Decimal" Nullable="false" />
  2346. <Property Name="want_type" Type="Int32" Nullable="false" />
  2347. <Property Name="employee_level_condition" Type="Int32" Nullable="false" />
  2348. <Property Name="player_level_condition" Type="Int32" Nullable="false" />
  2349. <Property Name="player_pvp_score_condition" Type="Int32" Nullable="false" />
  2350. <Property Name="assets_type" Type="Int32" Nullable="false" />
  2351. <Property Name="price" Type="Int32" Nullable="false" />
  2352. <Property Name="publish_time" Type="DateTime" Nullable="false" />
  2353. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  2354. <Property Name="success" Type="Boolean" Nullable="false" />
  2355. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2356. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2357. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2358. </EntityType>
  2359. <EntityType Name="t_fighting_evaluation_info">
  2360. <Key>
  2361. <PropertyRef Name="character_guid" />
  2362. <PropertyRef Name="evaluate_player_guid" />
  2363. <PropertyRef Name="evaluate_type" />
  2364. <PropertyRef Name="evaluate_time" />
  2365. <PropertyRef Name="create_time" />
  2366. <PropertyRef Name="modify_time" />
  2367. </Key>
  2368. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2369. <Property Name="evaluate_player_guid" Type="Decimal" Nullable="false" />
  2370. <Property Name="evaluate_type" Type="Int32" Nullable="false" />
  2371. <Property Name="evaluate_time" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2372. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2373. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2374. </EntityType>
  2375. <EntityType Name="t_friend">
  2376. <Key>
  2377. <PropertyRef Name="character_guid" />
  2378. <PropertyRef Name="friend_guid" />
  2379. <PropertyRef Name="group_id" />
  2380. </Key>
  2381. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2382. <Property Name="friend_guid" Type="Decimal" Nullable="false" />
  2383. <Property Name="group_id" Type="Int32" Nullable="false" />
  2384. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2385. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2386. </EntityType>
  2387. <EntityType Name="t_friend_group">
  2388. <Key>
  2389. <PropertyRef Name="character_guid" />
  2390. <PropertyRef Name="group_id" />
  2391. </Key>
  2392. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2393. <Property Name="group_id" Type="Int32" Nullable="false" />
  2394. <Property Name="group_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2395. <Property Name="is_sys_group" Type="SByte" Nullable="false" />
  2396. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2397. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2398. </EntityType>
  2399. <EntityType Name="t_game_hero_use_info">
  2400. <Key>
  2401. <PropertyRef Name="character_guid" />
  2402. <PropertyRef Name="hero_id" />
  2403. </Key>
  2404. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2405. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2406. <Property Name="use_count" Type="Int32" Nullable="false" />
  2407. <Property Name="pvp_score" Type="Int32" Nullable="false" />
  2408. <Property Name="pvp_score_uptime" Type="Int64" Nullable="false" />
  2409. <Property Name="mvp_count" Type="Int32" Nullable="false" />
  2410. <Property Name="mvp_count_uptime" Type="Int64" Nullable="false" />
  2411. <Property Name="achievement" Type="Int32" Nullable="false" />
  2412. <Property Name="achievement_uptime" Type="Int64" Nullable="false" />
  2413. <Property Name="loser_mvp_count" Type="Int32" Nullable="false" />
  2414. <Property Name="loser_mvp_count_uptime" Type="Int64" Nullable="false" />
  2415. <Property Name="daily_kill_count" Type="Int32" Nullable="false" />
  2416. <Property Name="daily_kill_count_uptime" Type="Int64" Nullable="false" />
  2417. <Property Name="daily_dead_count" Type="Int32" Nullable="false" />
  2418. <Property Name="daily_dead_count_uptime" Type="Int64" Nullable="false" />
  2419. <Property Name="daily_assist_count" Type="Int32" Nullable="false" />
  2420. <Property Name="daily_assist_count_uptime" Type="Int64" Nullable="false" />
  2421. <Property Name="daily_total_money" Type="Int32" Nullable="false" />
  2422. <Property Name="daily_total_money_uptime" Type="Int64" Nullable="false" />
  2423. <Property Name="daily_kill_friend_soldier" Type="Int32" Nullable="false" />
  2424. <Property Name="daily_kill_friend_soldier_uptime" Type="Int64" Nullable="false" />
  2425. <Property Name="win_count" Type="Int32" Nullable="false" />
  2426. <Property Name="trueskill" Type="Double" Nullable="false" />
  2427. <Property Name="total_kill_count" Type="Int64" Nullable="false" />
  2428. <Property Name="total_assist_count" Type="Int64" Nullable="false" />
  2429. <Property Name="total_dead_count" Type="Int64" Nullable="false" />
  2430. <Property Name="total_first_blood" Type="Int64" Nullable="false" />
  2431. <Property Name="total_killed_by_first_blood" Type="Int64" Nullable="false" />
  2432. <Property Name="total_get_money" Type="Int64" Nullable="false" />
  2433. <Property Name="total_kill_hostile_soldier" Type="Int64" Nullable="false" />
  2434. <Property Name="total_kill_friend_soldier" Type="Int64" Nullable="false" />
  2435. <Property Name="total_destroy_hostile_tower" Type="Int64" Nullable="false" />
  2436. <Property Name="total_destroy_friend_tower" Type="Int64" Nullable="false" />
  2437. <Property Name="total_kill_monster_number" Type="Int64" Nullable="false" />
  2438. <Property Name="most_continuous_kill_number" Type="Int64" Nullable="false" />
  2439. <Property Name="total_physics_damage" Type="Int64" Nullable="false" />
  2440. <Property Name="total_magic_damage" Type="Int64" Nullable="false" />
  2441. <Property Name="max_kill_hostile_soldier_times" Type="Int32" Nullable="false" />
  2442. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2443. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2444. <Property Name="score_update_count" Type="Int32" Nullable="false" />
  2445. </EntityType>
  2446. <EntityType Name="t_game_info">
  2447. <Key>
  2448. <PropertyRef Name="character_guid" />
  2449. </Key>
  2450. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2451. <Property Name="character_name" Type="String" Nullable="false" MaxLength="50" Unicode="false" FixedLength="false" />
  2452. <Property Name="register_area" Type="Int32" Nullable="false" />
  2453. <Property Name="character_level" Type="Int32" Nullable="false" />
  2454. <Property Name="experience" Type="Int32" Nullable="false" />
  2455. <Property Name="experience_uptime" Type="Int64" Nullable="false" />
  2456. <Property Name="stage_score" Type="Int32" Nullable="false" />
  2457. <Property Name="stage_score_uptime" Type="Int64" Nullable="false" />
  2458. <Property Name="win_count" Type="Int32" Nullable="false" />
  2459. <Property Name="lose_count" Type="Int32" Nullable="false" />
  2460. <Property Name="flee_count" Type="Int32" Nullable="false" />
  2461. <Property Name="max_kill_games" Type="Int32" Nullable="false" />
  2462. <Property Name="max_assist_games" Type="Int32" Nullable="false" />
  2463. <Property Name="max_destroy_hostile_towner_games" Type="Int32" Nullable="false" />
  2464. <Property Name="first_blood_games" Type="Int32" Nullable="false" />
  2465. <Property Name="max_money_games" Type="Int32" Nullable="false" />
  2466. <Property Name="kill_boss_count" Type="Int32" Nullable="false" />
  2467. <Property Name="kill_boss_count_uptime" Type="Int64" Nullable="false" />
  2468. <Property Name="max_money" Type="Int32" Nullable="false" />
  2469. <Property Name="max_assist" Type="Int32" Nullable="false" />
  2470. <Property Name="max_kill" Type="Int32" Nullable="false" />
  2471. <Property Name="exploit_value" Type="Int32" Nullable="false" />
  2472. <Property Name="pass_level_count" Type="Int32" Nullable="false" />
  2473. <Property Name="lose_level_count" Type="Int32" Nullable="false" />
  2474. <Property Name="get_s_count" Type="Int32" Nullable="false" />
  2475. <Property Name="last_level_up_time" Type="Int64" Nullable="false" />
  2476. <Property Name="mean" Type="Double" Nullable="false" />
  2477. <Property Name="deviation" Type="Double" Nullable="false" />
  2478. <Property Name="total_kill_boss_number" Type="Decimal" Nullable="false" />
  2479. <Property Name="played_time" Type="Decimal" Nullable="false" />
  2480. <Property Name="in_city_time" Type="Decimal" Nullable="false" />
  2481. <Property Name="in_match_time" Type="Decimal" Nullable="false" />
  2482. <Property Name="in_room_time" Type="Decimal" Nullable="false" />
  2483. <Property Name="arena_match_score" Type="Int32" Nullable="false" />
  2484. <Property Name="funny_match_score" Type="Int32" Nullable="false" />
  2485. <Property Name="good_reputation_count" Type="Int32" Nullable="false" />
  2486. <Property Name="wujiangshilian_play_time" Type="Int32" Nullable="false" />
  2487. <Property Name="youzhou_last_play_soldier_count" Type="Int32" Nullable="false" />
  2488. <Property Name="youzhou_last_play_soldier_level" Type="Int32" Nullable="false" />
  2489. <Property Name="vip_exp" Type="Int32" Nullable="false" />
  2490. <Property Name="vip_exp_accumulate" Type="Int32" />
  2491. <Property Name="last_vip_exp_up_time" Type="Int64" />
  2492. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2493. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2494. </EntityType>
  2495. <EntityType Name="t_gs_code">
  2496. <Key>
  2497. <PropertyRef Name="active_code" />
  2498. </Key>
  2499. <Property Name="active_code" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2500. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2501. <Property Name="character_name" Type="String" Nullable="false" MaxLength="32" Unicode="false" FixedLength="false" />
  2502. <Property Name="invitee_guid" Type="Decimal" Nullable="false" />
  2503. <Property Name="notify_inviter" Type="Int32" Nullable="false" />
  2504. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2505. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2506. </EntityType>
  2507. <EntityType Name="t_hero_color_scheme">
  2508. <Key>
  2509. <PropertyRef Name="character_guid" />
  2510. <PropertyRef Name="hero_id" />
  2511. <PropertyRef Name="color_scheme_id" />
  2512. </Key>
  2513. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2514. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2515. <Property Name="color_scheme_id" Type="Int32" Nullable="false" />
  2516. <Property Name="color1" Type="Int64" Nullable="false" />
  2517. <Property Name="color2" Type="Int64" Nullable="false" />
  2518. <Property Name="color3" Type="Int64" Nullable="false" />
  2519. <Property Name="color4" Type="Int64" Nullable="false" />
  2520. <Property Name="color5" Type="Int64" Nullable="false" />
  2521. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2522. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2523. </EntityType>
  2524. <EntityType Name="t_hero_level_state">
  2525. <Key>
  2526. <PropertyRef Name="character_guid" />
  2527. <PropertyRef Name="level" />
  2528. </Key>
  2529. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2530. <Property Name="level" Type="Int32" Nullable="false" />
  2531. <Property Name="selected_free_hero" Type="Boolean" />
  2532. <Property Name="selected_discount_hero" Type="Boolean" />
  2533. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2534. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2535. </EntityType>
  2536. <EntityType Name="t_hero_pet">
  2537. <Key>
  2538. <PropertyRef Name="guid" />
  2539. </Key>
  2540. <Property Name="guid" Type="Decimal" Nullable="false" />
  2541. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2542. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2543. <Property Name="name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2544. <Property Name="location" Type="Int32" Nullable="false" />
  2545. <Property Name="level" Type="Int32" Nullable="false" />
  2546. <Property Name="expr" Type="Int32" Nullable="false" />
  2547. <Property Name="closeness" Type="Int32" Nullable="false" />
  2548. <Property Name="closeness_up_fail" Type="Int32" Nullable="false" />
  2549. <Property Name="merge_count" Type="Int32" Nullable="false" />
  2550. <Property Name="merge_time" Type="DateTime" Nullable="false" />
  2551. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2552. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2553. </EntityType>
  2554. <EntityType Name="t_hero_suggest_equipment">
  2555. <Key>
  2556. <PropertyRef Name="character_guid" />
  2557. <PropertyRef Name="hero_id" />
  2558. <PropertyRef Name="plan_id" />
  2559. </Key>
  2560. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2561. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2562. <Property Name="plan_id" Type="Int32" Nullable="false" />
  2563. <Property Name="plan_description" Type="String" MaxLength="256" Unicode="false" FixedLength="false" />
  2564. <Property Name="item_id0" Type="Int32" />
  2565. <Property Name="item_id1" Type="Int32" />
  2566. <Property Name="item_id2" Type="Int32" />
  2567. <Property Name="item_id3" Type="Int32" />
  2568. <Property Name="item_id4" Type="Int32" />
  2569. <Property Name="item_id5" Type="Int32" />
  2570. <Property Name="is_deleted" Type="Boolean" />
  2571. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2572. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2573. </EntityType>
  2574. <EntityType Name="t_hero_talent_info">
  2575. <Key>
  2576. <PropertyRef Name="character_guid" />
  2577. <PropertyRef Name="hero_id" />
  2578. </Key>
  2579. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2580. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2581. <Property Name="total_used_hero_experience" Type="Int32" />
  2582. <Property Name="enable_branch" Type="Int32" />
  2583. <Property Name="this_branch_point" Type="Int32" />
  2584. <Property Name="available_experience" Type="Int32" />
  2585. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2586. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2587. </EntityType>
  2588. <EntityType Name="t_hero_talent_info_sub_state">
  2589. <Key>
  2590. <PropertyRef Name="character_guid" />
  2591. <PropertyRef Name="hero_id" />
  2592. <PropertyRef Name="talent_id" />
  2593. </Key>
  2594. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2595. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2596. <Property Name="talent_id" Type="Int32" Nullable="false" />
  2597. <Property Name="point" Type="Int32" />
  2598. <Property Name="is_full_point" Type="Boolean" />
  2599. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2600. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2601. </EntityType>
  2602. <EntityType Name="t_hero_unlock_hero">
  2603. <Key>
  2604. <PropertyRef Name="character_guid" />
  2605. <PropertyRef Name="hero_id" />
  2606. </Key>
  2607. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2608. <Property Name="hero_id" Type="Int32" Nullable="false" />
  2609. <Property Name="is_activated" Type="Boolean" />
  2610. <Property Name="cur_color_scheme_id" Type="Int32" Nullable="false" />
  2611. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2612. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2613. </EntityType>
  2614. <EntityType Name="t_illegal_term_rules">
  2615. <Key>
  2616. <PropertyRef Name="id" />
  2617. </Key>
  2618. <Property Name="regex" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2619. <Property Name="id" Type="Int64" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2620. </EntityType>
  2621. <EntityType Name="t_item_roll_list">
  2622. <Key>
  2623. <PropertyRef Name="item_roll_guid" />
  2624. <PropertyRef Name="character_guid" />
  2625. <PropertyRef Name="item_guid" />
  2626. <PropertyRef Name="item_id" />
  2627. <PropertyRef Name="item_name" />
  2628. <PropertyRef Name="source" />
  2629. <PropertyRef Name="is_bound" />
  2630. <PropertyRef Name="attributes" />
  2631. <PropertyRef Name="buy_time" />
  2632. <PropertyRef Name="expire_time" />
  2633. <PropertyRef Name="buy_type" />
  2634. <PropertyRef Name="pay_type" />
  2635. <PropertyRef Name="pay_yuanbao" />
  2636. <PropertyRef Name="free_yuanbao" />
  2637. <PropertyRef Name="previous_count" />
  2638. <PropertyRef Name="previous_location" />
  2639. <PropertyRef Name="count" />
  2640. <PropertyRef Name="location" />
  2641. <PropertyRef Name="change_type" />
  2642. <PropertyRef Name="billing_state" />
  2643. <PropertyRef Name="charge_gold_balance" />
  2644. <PropertyRef Name="free_gold_balance" />
  2645. <PropertyRef Name="modify_time" />
  2646. <PropertyRef Name="create_time" />
  2647. </Key>
  2648. <Property Name="item_roll_guid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2649. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2650. <Property Name="item_guid" Type="Decimal" Nullable="false" />
  2651. <Property Name="item_id" Type="Int64" Nullable="false" />
  2652. <Property Name="item_name" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2653. <Property Name="source" Type="Int32" Nullable="false" />
  2654. <Property Name="is_bound" Type="Int32" Nullable="false" />
  2655. <Property Name="attributes" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2656. <Property Name="buy_time" Type="DateTime" Nullable="false" />
  2657. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  2658. <Property Name="buy_type" Type="Int32" Nullable="false" />
  2659. <Property Name="pay_type" Type="Int32" Nullable="false" />
  2660. <Property Name="pay_yuanbao" Type="Int32" Nullable="false" />
  2661. <Property Name="free_yuanbao" Type="Int32" Nullable="false" />
  2662. <Property Name="previous_count" Type="Int32" Nullable="false" />
  2663. <Property Name="previous_location" Type="Int32" Nullable="false" />
  2664. <Property Name="count" Type="Int32" Nullable="false" />
  2665. <Property Name="location" Type="Int32" Nullable="false" />
  2666. <Property Name="change_type" Type="Int32" Nullable="false" />
  2667. <Property Name="billing_state" Type="Int32" Nullable="false" />
  2668. <Property Name="charge_gold_balance" Type="Int32" Nullable="false" />
  2669. <Property Name="free_gold_balance" Type="Int32" Nullable="false" />
  2670. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2671. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2672. </EntityType>
  2673. <EntityType Name="t_login_reward">
  2674. <Key>
  2675. <PropertyRef Name="character_guid" />
  2676. <PropertyRef Name="year_day" />
  2677. </Key>
  2678. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2679. <Property Name="year_day" Type="Int32" Nullable="false" />
  2680. <Property Name="reward_id" Type="Int32" Nullable="false" />
  2681. <Property Name="is_deleted" Type="SByte" Nullable="false" />
  2682. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2683. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2684. </EntityType>
  2685. <EntityType Name="t_mail">
  2686. <Key>
  2687. <PropertyRef Name="mail_guid" />
  2688. </Key>
  2689. <Property Name="mail_guid" Type="Decimal" Nullable="false" />
  2690. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2691. <Property Name="checked" Type="Boolean" Nullable="false" />
  2692. <Property Name="is_read" Type="Boolean" Nullable="false" />
  2693. <Property Name="is_system_mail" Type="Boolean" Nullable="false" />
  2694. <Property Name="sender_guid" Type="Decimal" Nullable="false" />
  2695. <Property Name="sender_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2696. <Property Name="receiver_guid" Type="Decimal" Nullable="false" />
  2697. <Property Name="receiver_name" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2698. <Property Name="mail_subject" Type="String" Nullable="false" MaxLength="256" Unicode="false" FixedLength="false" />
  2699. <Property Name="mail_body" Type="String" Nullable="false" MaxLength="65535" Unicode="false" FixedLength="false" />
  2700. <Property Name="silver" Type="Int32" Nullable="false" />
  2701. <Property Name="charge_gold" Type="Int32" Nullable="false" />
  2702. <Property Name="money_is_taked" Type="Boolean" Nullable="false" />
  2703. <Property Name="item_count" Type="Int32" Nullable="false" />
  2704. <Property Name="expire_time" Type="DateTime" Nullable="false" />
  2705. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2706. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2707. </EntityType>
  2708. <EntityType Name="t_mail_item">
  2709. <Key>
  2710. <PropertyRef Name="item_guid" />
  2711. </Key>
  2712. <Property Name="item_guid" Type="Decimal" Nullable="false" />
  2713. <Property Name="mail_guid" Type="Decimal" Nullable="false" />
  2714. <Property Name="is_taked" Type="Boolean" Nullable="false" />
  2715. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2716. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2717. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2718. </EntityType>
  2719. <EntityType Name="t_mall_items_sales_count">
  2720. <Key>
  2721. <PropertyRef Name="item_id" />
  2722. </Key>
  2723. <Property Name="item_id" Type="Int32" Nullable="false" />
  2724. <Property Name="sale_count" Type="Int32" />
  2725. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2726. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2727. </EntityType>
  2728. <EntityType Name="t_map_play_info">
  2729. <Key>
  2730. <PropertyRef Name="character_guid" />
  2731. <PropertyRef Name="map_type" />
  2732. </Key>
  2733. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2734. <Property Name="map_type" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2735. <Property Name="play_count" Type="Int32" Nullable="false" />
  2736. <Property Name="win_count" Type="Int32" Nullable="false" />
  2737. <Property Name="last_play_date" Type="Decimal" Nullable="false" />
  2738. <Property Name="total_play_time" Type="Decimal" Nullable="false" />
  2739. <Property Name="today_play_time" Type="Int32" Nullable="false" />
  2740. <Property Name="current_level" Type="Int32" Nullable="false" />
  2741. <Property Name="max_score" Type="Int32" Nullable="false" />
  2742. <Property Name="kill_boss_count" Type="Int32" Nullable="false" />
  2743. <Property Name="kill_hostile_soldier" Type="Int64" Nullable="false" />
  2744. <Property Name="max_total_damage" Type="Int32" Nullable="false" />
  2745. <Property Name="max_total_suffer_damage" Type="Int32" Nullable="false" />
  2746. <Property Name="max_total_heal" Type="Int32" Nullable="false" />
  2747. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2748. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2749. </EntityType>
  2750. <EntityType Name="t_meta">
  2751. <Key>
  2752. <PropertyRef Name="meta_key" />
  2753. </Key>
  2754. <Property Name="meta_key" Type="String" Nullable="false" MaxLength="64" Unicode="false" FixedLength="false" />
  2755. <Property Name="meta_value" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
  2756. </EntityType>
  2757. <EntityType Name="t_offline_message">
  2758. <Key>
  2759. <PropertyRef Name="fid" />
  2760. </Key>
  2761. <Property Name="fid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2762. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2763. <Property Name="proto_name" Type="String" Nullable="false" MaxLength="80" Unicode="false" FixedLength="false" />
  2764. <Property Name="content" Type="String" Nullable="false" MaxLength="1073741823" Unicode="false" FixedLength="false" />
  2765. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2766. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2767. <Property Name="is_deleted" Type="SByte" Nullable="false" />
  2768. </EntityType>
  2769. <EntityType Name="t_player_offline_message">
  2770. <Key>
  2771. <PropertyRef Name="fid" />
  2772. </Key>
  2773. <Property Name="fid" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2774. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2775. <Property Name="opcode" Type="Int32" Nullable="false" />
  2776. <Property Name="content" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
  2777. <Property Name="create_time" Type="DateTime" />
  2778. <Property Name="modify_time" Type="DateTime" />
  2779. <Property Name="is_deleted" Type="Boolean" Nullable="false" />
  2780. </EntityType>
  2781. <EntityType Name="t_pve_equipment_scheme">
  2782. <Key>
  2783. <PropertyRef Name="character_guid" />
  2784. <PropertyRef Name="scheme_id" />
  2785. <PropertyRef Name="slot0_item_guid" />
  2786. <PropertyRef Name="slot1_item_guid" />
  2787. <PropertyRef Name="slot2_item_guid" />
  2788. <PropertyRef Name="slot3_item_guid" />
  2789. <PropertyRef Name="slot4_item_guid" />
  2790. <PropertyRef Name="slot5_item_guid" />
  2791. <PropertyRef Name="slot6_item_guid" />
  2792. <PropertyRef Name="slot7_item_guid" />
  2793. <PropertyRef Name="slot8_item_guid" />
  2794. <PropertyRef Name="slot9_item_guid" />
  2795. <PropertyRef Name="create_time" />
  2796. <PropertyRef Name="modify_time" />
  2797. </Key>
  2798. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2799. <Property Name="scheme_id" Type="Int32" Nullable="false" />
  2800. <Property Name="scheme_name" Type="String" MaxLength="64" Unicode="false" FixedLength="false" />
  2801. <Property Name="slot0_item_guid" Type="Decimal" Nullable="false" />
  2802. <Property Name="slot1_item_guid" Type="Decimal" Nullable="false" />
  2803. <Property Name="slot2_item_guid" Type="Decimal" Nullable="false" />
  2804. <Property Name="slot3_item_guid" Type="Decimal" Nullable="false" />
  2805. <Property Name="slot4_item_guid" Type="Decimal" Nullable="false" />
  2806. <Property Name="slot5_item_guid" Type="Decimal" Nullable="false" />
  2807. <Property Name="slot6_item_guid" Type="Decimal" Nullable="false" />
  2808. <Property Name="slot7_item_guid" Type="Decimal" Nullable="false" />
  2809. <Property Name="slot8_item_guid" Type="Decimal" Nullable="false" />
  2810. <Property Name="slot9_item_guid" Type="Decimal" Nullable="false" />
  2811. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2812. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2813. </EntityType>
  2814. <EntityType Name="t_pve_equipment_strength">
  2815. <Key>
  2816. <PropertyRef Name="guid" />
  2817. <PropertyRef Name="strength_lv" />
  2818. <PropertyRef Name="strength_value" />
  2819. <PropertyRef Name="create_time" />
  2820. <PropertyRef Name="modify_time" />
  2821. </Key>
  2822. <Property Name="guid" Type="Decimal" Nullable="false" />
  2823. <Property Name="strength_lv" Type="Int32" Nullable="false" />
  2824. <Property Name="strength_value" Type="Double" Nullable="false" />
  2825. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2826. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2827. </EntityType>
  2828. <EntityType Name="t_questionnaire">
  2829. <Key>
  2830. <PropertyRef Name="questionnaire_id" />
  2831. </Key>
  2832. <Property Name="questionnaire_id" Type="Decimal" Nullable="false" p1:StoreGeneratedPattern="Identity" />
  2833. <Property Name="content" Type="String" MaxLength="65535" Unicode="false" FixedLength="false" />
  2834. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2835. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2836. </EntityType>
  2837. <EntityType Name="t_roll_log">
  2838. <Key>
  2839. <PropertyRef Name="roll_listid" />
  2840. </Key>
  2841. <Property Name="roll_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2842. <Property Name="bill_listid" Type="String" MaxLength="40" Unicode="false" FixedLength="false" />
  2843. <Property Name="character_guid" Type="Decimal" />
  2844. <Property Name="vs_guid" Type="Decimal" />
  2845. <Property Name="roll_type" Type="Int16" />
  2846. <Property Name="assets_type" Type="Int16" />
  2847. <Property Name="amount" Type="Int32" />
  2848. <Property Name="balance" Type="Int64" />
  2849. <Property Name="ip" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
  2850. <Property Name="memo" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
  2851. <Property Name="create_time" Type="DateTime" />
  2852. <Property Name="modify_time" Type="DateTime" />
  2853. </EntityType>
  2854. <EntityType Name="t_rune_scheme">
  2855. <Key>
  2856. <PropertyRef Name="character_guid" />
  2857. <PropertyRef Name="scheme_id" />
  2858. </Key>
  2859. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2860. <Property Name="scheme_id" Type="Int32" Nullable="false" />
  2861. <Property Name="scheme_name" Type="String" Nullable="false" MaxLength="50" Unicode="false" FixedLength="false" />
  2862. <Property Name="slot0_item_guid" Type="Decimal" Nullable="false" />
  2863. <Property Name="slot1_item_guid" Type="Decimal" Nullable="false" />
  2864. <Property Name="slot2_item_guid" Type="Decimal" Nullable="false" />
  2865. <Property Name="slot3_item_guid" Type="Decimal" Nullable="false" />
  2866. <Property Name="slot4_item_guid" Type="Decimal" Nullable="false" />
  2867. <Property Name="slot5_item_guid" Type="Decimal" Nullable="false" />
  2868. <Property Name="slot6_item_guid" Type="Decimal" Nullable="false" />
  2869. <Property Name="slot7_item_guid" Type="Decimal" Nullable="false" />
  2870. <Property Name="slot8_item_guid" Type="Decimal" Nullable="false" />
  2871. <Property Name="slot9_item_guid" Type="Decimal" Nullable="false" />
  2872. <Property Name="slot10_item_guid" Type="Decimal" Nullable="false" />
  2873. <Property Name="slot11_item_guid" Type="Decimal" Nullable="false" />
  2874. <Property Name="slot12_item_guid" Type="Decimal" Nullable="false" />
  2875. <Property Name="slot13_item_guid" Type="Decimal" Nullable="false" />
  2876. <Property Name="slot14_item_guid" Type="Decimal" Nullable="false" />
  2877. <Property Name="create_time" Type="DateTime" />
  2878. <Property Name="modify_time" Type="DateTime" />
  2879. </EntityType>
  2880. <EntityType Name="t_social_group_basic">
  2881. <Key>
  2882. <PropertyRef Name="group_guid" />
  2883. </Key>
  2884. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  2885. <Property Name="group_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2886. <Property Name="group_type" Type="Int32" Nullable="false" />
  2887. <Property Name="owner_guid" Type="Decimal" Nullable="false" />
  2888. <Property Name="owner_name" Type="String" Nullable="false" MaxLength="128" Unicode="false" FixedLength="false" />
  2889. <Property Name="member_size" Type="Int32" Nullable="false" />
  2890. <Property Name="manager_size" Type="Int32" Nullable="false" />
  2891. <Property Name="bulletin" Type="String" MaxLength="65535" Unicode="false" FixedLength="false" />
  2892. <Property Name="join_rule" Type="Int32" Nullable="false" />
  2893. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2894. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2895. </EntityType>
  2896. <EntityType Name="t_social_group_manager">
  2897. <Key>
  2898. <PropertyRef Name="group_guid" />
  2899. <PropertyRef Name="manager_guid" />
  2900. </Key>
  2901. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  2902. <Property Name="manager_guid" Type="Decimal" Nullable="false" />
  2903. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2904. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2905. </EntityType>
  2906. <EntityType Name="t_social_group_member">
  2907. <Key>
  2908. <PropertyRef Name="group_guid" />
  2909. <PropertyRef Name="member_guid" />
  2910. </Key>
  2911. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  2912. <Property Name="member_guid" Type="Decimal" Nullable="false" />
  2913. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2914. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2915. </EntityType>
  2916. <EntityType Name="t_title_info">
  2917. <Key>
  2918. <PropertyRef Name="character_guid" />
  2919. <PropertyRef Name="title_id" />
  2920. </Key>
  2921. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2922. <Property Name="title_id" Type="Int32" Nullable="false" />
  2923. <Property Name="new_title" Type="Boolean" />
  2924. <Property Name="valid_time" Type="Int32" Nullable="false" />
  2925. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2926. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2927. </EntityType>
  2928. <EntityType Name="t_tran_log">
  2929. <Key>
  2930. <PropertyRef Name="tran_listid" />
  2931. </Key>
  2932. <Property Name="tran_listid" Type="String" Nullable="false" MaxLength="40" Unicode="false" FixedLength="false" />
  2933. <Property Name="buyer_guid" Type="Decimal" />
  2934. <Property Name="buyer_account" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  2935. <Property Name="seller_guid" Type="Decimal" />
  2936. <Property Name="seller_account" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
  2937. <Property Name="assets_type" Type="Int16" />
  2938. <Property Name="pay_amount" Type="Int32" />
  2939. <Property Name="bill_listid" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
  2940. <Property Name="ip" Type="String" MaxLength="32" Unicode="false" FixedLength="false" />
  2941. <Property Name="memo" Type="String" MaxLength="255" Unicode="false" FixedLength="false" />
  2942. <Property Name="create_time" Type="DateTime" />
  2943. <Property Name="modify_time" Type="DateTime" />
  2944. </EntityType>
  2945. <EntityType Name="t_tutorial">
  2946. <Key>
  2947. <PropertyRef Name="character_guid" />
  2948. </Key>
  2949. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2950. <Property Name="is_first_login" Type="SByte" />
  2951. <Property Name="close_beginner_map_guide" Type="Boolean" />
  2952. <Property Name="match_count" Type="Int32" />
  2953. <Property Name="quick_match_count" Type="Int32" />
  2954. <Property Name="close_compound_hero_guide" Type="Boolean" />
  2955. <Property Name="gain_hero_pet_item" Type="Boolean" />
  2956. <Property Name="create_time" Type="DateTime" />
  2957. <Property Name="modify_time" Type="DateTime" />
  2958. </EntityType>
  2959. <EntityType Name="t_tutorial_status_info">
  2960. <Key>
  2961. <PropertyRef Name="character_guid" />
  2962. </Key>
  2963. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2964. <Property Name="beginner_map_win_count" Type="Int32" Nullable="false" />
  2965. <Property Name="match_count" Type="Int32" Nullable="false" />
  2966. <Property Name="quick_match_count" Type="Int32" Nullable="false" />
  2967. <Property Name="is_close_notify_tutorial" Type="SByte" Nullable="false" />
  2968. <Property Name="is_close_notify_mini_tutorial" Type="SByte" Nullable="false" />
  2969. <Property Name="create_time" Type="DateTime" Nullable="false" />
  2970. <Property Name="modify_time" Type="DateTime" Nullable="false" />
  2971. </EntityType>
  2972. <EntityType Name="t_world_character">
  2973. <Key>
  2974. <PropertyRef Name="character_guid" />
  2975. </Key>
  2976. <Property Name="character_guid" Type="Decimal" Nullable="false" />
  2977. <Property Name="group_guid" Type="Decimal" Nullable="false" />
  2978. <Property Name="room_guid" Type="Decimal" Nullable="false" />
  2979. </EntityType>
  2980. </Schema>
  2981. </edmx:ConceptualModels>
  2982. <!-- C-S mapping content -->
  2983. <edmx:Mappings>
  2984. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  2985. <EntityContainerMapping StorageEntityContainer="DataCenterModelStoreContainer" CdmEntityContainer="DataCenterEntities">
  2986. <EntitySetMapping Name="t_account">
  2987. <EntityTypeMapping TypeName="DataCenterModel.t_account">
  2988. <MappingFragment StoreEntitySet="t_account">
  2989. <ScalarProperty Name="account" ColumnName="account" />
  2990. <ScalarProperty Name="account_guid" ColumnName="account_guid" />
  2991. <ScalarProperty Name="sessionkey" ColumnName="sessionkey" />
  2992. <ScalarProperty Name="v" ColumnName="v" />
  2993. <ScalarProperty Name="s" ColumnName="s" />
  2994. <ScalarProperty Name="active_code" ColumnName="active_code" />
  2995. <ScalarProperty Name="active_code_used" ColumnName="active_code_used" />
  2996. <ScalarProperty Name="first_char_guid" ColumnName="first_char_guid" />
  2997. <ScalarProperty Name="create_time" ColumnName="create_time" />
  2998. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  2999. <ScalarProperty Name="gm_level" ColumnName="gm_level" />
  3000. </MappingFragment>
  3001. </EntityTypeMapping>
  3002. </EntitySetMapping>
  3003. <EntitySetMapping Name="t_account_active_code">
  3004. <EntityTypeMapping TypeName="DataCenterModel.t_account_active_code">
  3005. <MappingFragment StoreEntitySet="t_account_active_code">
  3006. <ScalarProperty Name="account" ColumnName="account" />
  3007. <ScalarProperty Name="gain_active_codes" ColumnName="gain_active_codes" />
  3008. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3009. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3010. </MappingFragment>
  3011. </EntityTypeMapping>
  3012. </EntitySetMapping>
  3013. <EntitySetMapping Name="t_account_login_auth_response_cookie">
  3014. <EntityTypeMapping TypeName="DataCenterModel.t_account_login_auth_response_cookie">
  3015. <MappingFragment StoreEntitySet="t_account_login_auth_response_cookie">
  3016. <ScalarProperty Name="account" ColumnName="account" />
  3017. <ScalarProperty Name="aid" ColumnName="aid" />
  3018. <ScalarProperty Name="ssn" ColumnName="ssn" />
  3019. <ScalarProperty Name="gamepoint" ColumnName="gamepoint" />
  3020. <ScalarProperty Name="balance" ColumnName="balance" />
  3021. <ScalarProperty Name="sn" ColumnName="sn" />
  3022. <ScalarProperty Name="user_type" ColumnName="user_type" />
  3023. <ScalarProperty Name="otpstat" ColumnName="otpstat" />
  3024. <ScalarProperty Name="otpuptime" ColumnName="otpuptime" />
  3025. <ScalarProperty Name="infosafe" ColumnName="infosafe" />
  3026. <ScalarProperty Name="phonestat" ColumnName="phonestat" />
  3027. <ScalarProperty Name="ppcstat" ColumnName="ppcstat" />
  3028. <ScalarProperty Name="ppccoord" ColumnName="ppccoord" />
  3029. <ScalarProperty Name="mppstat" ColumnName="mppstat" />
  3030. <ScalarProperty Name="rnstat" ColumnName="rnstat" />
  3031. <ScalarProperty Name="regtime" ColumnName="regtime" />
  3032. <ScalarProperty Name="mobileno" ColumnName="mobileno" />
  3033. <ScalarProperty Name="need_activate_game" ColumnName="need_activate_game" />
  3034. <ScalarProperty Name="game_flag" ColumnName="game_flag" />
  3035. <ScalarProperty Name="deactivated" ColumnName="deactivated" />
  3036. <ScalarProperty Name="uidcount" ColumnName="uidcount" />
  3037. <ScalarProperty Name="newtm" ColumnName="newtm" />
  3038. <ScalarProperty Name="vipstatus" ColumnName="vipstatus" />
  3039. <ScalarProperty Name="is_vip_phone_trusty" ColumnName="is_vip_phone_trusty" />
  3040. <ScalarProperty Name="is_vip_addr_trusty" ColumnName="is_vip_addr_trusty" />
  3041. <ScalarProperty Name="real_name_flag" ColumnName="real_name_flag" />
  3042. <ScalarProperty Name="mobileisactivated" ColumnName="mobileisactivated" />
  3043. <ScalarProperty Name="secu_info_ready" ColumnName="secu_info_ready" />
  3044. <ScalarProperty Name="secu_info_pin_ma" ColumnName="secu_info_pin_ma" />
  3045. <ScalarProperty Name="secu_info_id_num" ColumnName="secu_info_id_num" />
  3046. <ScalarProperty Name="id_num" ColumnName="id_num" />
  3047. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3048. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3049. </MappingFragment>
  3050. </EntityTypeMapping>
  3051. </EntitySetMapping>
  3052. <EntitySetMapping Name="t_account_tutorial_status_info">
  3053. <EntityTypeMapping TypeName="DataCenterModel.t_account_tutorial_status_info">
  3054. <MappingFragment StoreEntitySet="t_account_tutorial_status_info">
  3055. <ScalarProperty Name="account" ColumnName="account" />
  3056. <ScalarProperty Name="max_level" ColumnName="max_level" />
  3057. <ScalarProperty Name="beginner_map_win_count" ColumnName="beginner_map_win_count" />
  3058. <ScalarProperty Name="match_count" ColumnName="match_count" />
  3059. <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
  3060. <ScalarProperty Name="is_close_notify_tutorial" ColumnName="is_close_notify_tutorial" />
  3061. <ScalarProperty Name="is_close_notify_mini_tutorial" ColumnName="is_close_notify_mini_tutorial" />
  3062. <ScalarProperty Name="composite_hero_token_count" ColumnName="composite_hero_token_count" />
  3063. <ScalarProperty Name="is_close_merge_tutorial" ColumnName="is_close_merge_tutorial" />
  3064. <ScalarProperty Name="create_ai_map_room_count" ColumnName="create_ai_map_room_count" />
  3065. <ScalarProperty Name="is_close_ai_map_room_tutorial" ColumnName="is_close_ai_map_room_tutorial" />
  3066. <ScalarProperty Name="is_get_beginner_map_bonus" ColumnName="is_get_beginner_map_bonus" />
  3067. <ScalarProperty Name="got_new_player_survey" ColumnName="got_new_player_survey" />
  3068. <ScalarProperty Name="player_level" ColumnName="player_level" />
  3069. <ScalarProperty Name="is_notify_common_skill" ColumnName="is_notify_common_skill" />
  3070. <ScalarProperty Name="is_first_open_rune_panel" ColumnName="is_first_open_rune_panel" />
  3071. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3072. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3073. </MappingFragment>
  3074. </EntityTypeMapping>
  3075. </EntitySetMapping>
  3076. <EntitySetMapping Name="t_active_code">
  3077. <EntityTypeMapping TypeName="DataCenterModel.t_active_code">
  3078. <MappingFragment StoreEntitySet="t_active_code">
  3079. <ScalarProperty Name="active_code" ColumnName="active_code" />
  3080. <ScalarProperty Name="code_type" ColumnName="code_type" />
  3081. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3082. <ScalarProperty Name="grant_type" ColumnName="grant_type" />
  3083. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3084. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3085. </MappingFragment>
  3086. </EntityTypeMapping>
  3087. </EntitySetMapping>
  3088. <EntitySetMapping Name="t_attribute">
  3089. <EntityTypeMapping TypeName="DataCenterModel.t_attribute">
  3090. <MappingFragment StoreEntitySet="t_attribute">
  3091. <ScalarProperty Name="guid" ColumnName="guid" />
  3092. <ScalarProperty Name="id" ColumnName="id" />
  3093. <ScalarProperty Name="sub_id" ColumnName="sub_id" />
  3094. <ScalarProperty Name="value" ColumnName="value" />
  3095. <ScalarProperty Name="attr_type" ColumnName="attr_type" />
  3096. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3097. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3098. </MappingFragment>
  3099. </EntityTypeMapping>
  3100. </EntitySetMapping>
  3101. <EntitySetMapping Name="t_auction_item">
  3102. <EntityTypeMapping TypeName="DataCenterModel.t_auction_item">
  3103. <MappingFragment StoreEntitySet="t_auction_item">
  3104. <ScalarProperty Name="item_guid" ColumnName="item_guid" />
  3105. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3106. <ScalarProperty Name="seller_guid" ColumnName="seller_guid" />
  3107. <ScalarProperty Name="seller_name" ColumnName="seller_name" />
  3108. <ScalarProperty Name="seller_ip" ColumnName="seller_ip" />
  3109. <ScalarProperty Name="auction_class" ColumnName="auction_class" />
  3110. <ScalarProperty Name="item_name" ColumnName="item_name" />
  3111. <ScalarProperty Name="item_id" ColumnName="item_id" />
  3112. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  3113. <ScalarProperty Name="deposit" ColumnName="deposit" />
  3114. <ScalarProperty Name="sum_price" ColumnName="sum_price" />
  3115. <ScalarProperty Name="unit_price" ColumnName="unit_price" />
  3116. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  3117. <ScalarProperty Name="tran_guid" ColumnName="tran_guid" />
  3118. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3119. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3120. </MappingFragment>
  3121. </EntityTypeMapping>
  3122. </EntitySetMapping>
  3123. <EntitySetMapping Name="t_available_map">
  3124. <EntityTypeMapping TypeName="DataCenterModel.t_available_map">
  3125. <MappingFragment StoreEntitySet="t_available_map">
  3126. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3127. <ScalarProperty Name="map_type" ColumnName="map_type" />
  3128. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3129. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3130. </MappingFragment>
  3131. </EntityTypeMapping>
  3132. </EntitySetMapping>
  3133. <EntitySetMapping Name="t_battle_gameover_statistic">
  3134. <EntityTypeMapping TypeName="DataCenterModel.t_battle_gameover_statistic">
  3135. <MappingFragment StoreEntitySet="t_battle_gameover_statistic">
  3136. <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
  3137. <ScalarProperty Name="gameover_statistic" ColumnName="gameover_statistic" />
  3138. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3139. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3140. </MappingFragment>
  3141. </EntityTypeMapping>
  3142. </EntitySetMapping>
  3143. <EntitySetMapping Name="t_battle_kill_detail">
  3144. <EntityTypeMapping TypeName="DataCenterModel.t_battle_kill_detail">
  3145. <MappingFragment StoreEntitySet="t_battle_kill_detail">
  3146. <ScalarProperty Name="kill_id" ColumnName="kill_id" />
  3147. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3148. <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
  3149. <ScalarProperty Name="kill_type" ColumnName="kill_type" />
  3150. <ScalarProperty Name="kill_name" ColumnName="kill_name" />
  3151. <ScalarProperty Name="kill_guid" ColumnName="kill_guid" />
  3152. <ScalarProperty Name="assist_name" ColumnName="assist_name" />
  3153. <ScalarProperty Name="kill_time" ColumnName="kill_time" />
  3154. <ScalarProperty Name="killed_name" ColumnName="killed_name" />
  3155. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3156. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3157. </MappingFragment>
  3158. </EntityTypeMapping>
  3159. </EntitySetMapping>
  3160. <EntitySetMapping Name="t_battle_summary">
  3161. <EntityTypeMapping TypeName="DataCenterModel.t_battle_summary">
  3162. <MappingFragment StoreEntitySet="t_battle_summary">
  3163. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3164. <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
  3165. <ScalarProperty Name="pvp_or_pve" ColumnName="pvp_or_pve" />
  3166. <ScalarProperty Name="is_win" ColumnName="is_win" />
  3167. <ScalarProperty Name="is_mvp" ColumnName="is_mvp" />
  3168. <ScalarProperty Name="is_most_kill_person" ColumnName="is_most_kill_person" />
  3169. <ScalarProperty Name="is_most_assist" ColumnName="is_most_assist" />
  3170. <ScalarProperty Name="is_most_money" ColumnName="is_most_money" />
  3171. <ScalarProperty Name="is_down_tower" ColumnName="is_down_tower" />
  3172. <ScalarProperty Name="is_most_kill_friend" ColumnName="is_most_kill_friend" />
  3173. <ScalarProperty Name="is_lost_mvp" ColumnName="is_lost_mvp" />
  3174. <ScalarProperty Name="is_s_pve_map" ColumnName="is_s_pve_map" />
  3175. <ScalarProperty Name="is_first_blood" ColumnName="is_first_blood" />
  3176. <ScalarProperty Name="is_pve_most_kill_boss" ColumnName="is_pve_most_kill_boss" />
  3177. <ScalarProperty Name="is_pve_most_take_damage" ColumnName="is_pve_most_take_damage" />
  3178. <ScalarProperty Name="is_pve_most_healing" ColumnName="is_pve_most_healing" />
  3179. <ScalarProperty Name="is_pve_most_damage" ColumnName="is_pve_most_damage" />
  3180. <ScalarProperty Name="map_type" ColumnName="map_type" />
  3181. <ScalarProperty Name="battle_date" ColumnName="battle_date" />
  3182. <ScalarProperty Name="battle_time" ColumnName="battle_time" />
  3183. <ScalarProperty Name="is_escape" ColumnName="is_escape" />
  3184. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3185. <ScalarProperty Name="match_type" ColumnName="match_type" />
  3186. <ScalarProperty Name="is_reinforce" ColumnName="is_reinforce" />
  3187. <ScalarProperty Name="pvp_kill_count" ColumnName="pvp_kill_count" />
  3188. <ScalarProperty Name="pvp_assist_count" ColumnName="pvp_assist_count" />
  3189. <ScalarProperty Name="pvp_dead_count" ColumnName="pvp_dead_count" />
  3190. <ScalarProperty Name="pvp_most_continuous_kill_number" ColumnName="pvp_most_continuous_kill_number" />
  3191. <ScalarProperty Name="pvp_score" ColumnName="pvp_score" />
  3192. <ScalarProperty Name="pve_boss_kill" ColumnName="pve_boss_kill" />
  3193. <ScalarProperty Name="pve_kill_hostile_soldier" ColumnName="pve_kill_hostile_soldier" />
  3194. <ScalarProperty Name="pve_total_money" ColumnName="pve_total_money" />
  3195. <ScalarProperty Name="pve_get_level" ColumnName="pve_get_level" />
  3196. <ScalarProperty Name="is_employ_battle" ColumnName="is_employ_battle" />
  3197. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3198. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3199. </MappingFragment>
  3200. </EntityTypeMapping>
  3201. </EntitySetMapping>
  3202. <EntitySetMapping Name="t_beginner_group_config">
  3203. <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_config">
  3204. <MappingFragment StoreEntitySet="t_beginner_group_config">
  3205. <ScalarProperty Name="aid" ColumnName="aid" />
  3206. <ScalarProperty Name="max_group_id" ColumnName="max_group_id" />
  3207. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3208. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3209. </MappingFragment>
  3210. </EntityTypeMapping>
  3211. </EntitySetMapping>
  3212. <EntitySetMapping Name="t_beginner_group_cong">
  3213. <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_cong">
  3214. <MappingFragment StoreEntitySet="t_beginner_group_cong">
  3215. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  3216. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3217. <ScalarProperty Name="character_level" ColumnName="character_level" />
  3218. <ScalarProperty Name="cong_guid_list" ColumnName="cong_guid_list" />
  3219. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3220. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3221. </MappingFragment>
  3222. </EntityTypeMapping>
  3223. </EntitySetMapping>
  3224. <EntitySetMapping Name="t_beginner_group_event">
  3225. <EntityTypeMapping TypeName="DataCenterModel.t_beginner_group_event">
  3226. <MappingFragment StoreEntitySet="t_beginner_group_event">
  3227. <ScalarProperty Name="event_guid" ColumnName="event_guid" />
  3228. <ScalarProperty Name="beginner_group_guid" ColumnName="beginner_group_guid" />
  3229. <ScalarProperty Name="event_id" ColumnName="event_id" />
  3230. <ScalarProperty Name="event_content" ColumnName="event_content" />
  3231. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3232. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3233. </MappingFragment>
  3234. </EntityTypeMapping>
  3235. </EntitySetMapping>
  3236. <EntitySetMapping Name="t_celebration_reward">
  3237. <EntityTypeMapping TypeName="DataCenterModel.t_celebration_reward">
  3238. <MappingFragment StoreEntitySet="t_celebration_reward">
  3239. <ScalarProperty Name="account" ColumnName="account" />
  3240. <ScalarProperty Name="reward_type" ColumnName="reward_type" />
  3241. <ScalarProperty Name="tel_number" ColumnName="tel_number" />
  3242. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3243. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3244. </MappingFragment>
  3245. </EntityTypeMapping>
  3246. </EntitySetMapping>
  3247. <EntitySetMapping Name="t_challenge_activity">
  3248. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_activity">
  3249. <MappingFragment StoreEntitySet="t_challenge_activity">
  3250. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3251. <ScalarProperty Name="activity_status" ColumnName="activity_status" />
  3252. <ScalarProperty Name="start_time" ColumnName="start_time" />
  3253. <ScalarProperty Name="battle_id" ColumnName="battle_id" />
  3254. <ScalarProperty Name="challenger_win" ColumnName="challenger_win" />
  3255. <ScalarProperty Name="kfz_best_hero" ColumnName="kfz_best_hero" />
  3256. <ScalarProperty Name="game_over_time" ColumnName="game_over_time" />
  3257. <ScalarProperty Name="challenger_win_bet" ColumnName="challenger_win_bet" />
  3258. <ScalarProperty Name="challenger_lose_bet" ColumnName="challenger_lose_bet" />
  3259. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3260. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3261. </MappingFragment>
  3262. </EntityTypeMapping>
  3263. </EntitySetMapping>
  3264. <EntitySetMapping Name="t_challenge_activity_schedule">
  3265. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_activity_schedule">
  3266. <MappingFragment StoreEntitySet="t_challenge_activity_schedule">
  3267. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3268. <ScalarProperty Name="elect_from_time" ColumnName="elect_from_time" />
  3269. <ScalarProperty Name="elect_to_time" ColumnName="elect_to_time" />
  3270. <ScalarProperty Name="guess_from_time" ColumnName="guess_from_time" />
  3271. <ScalarProperty Name="guess_to_time" ColumnName="guess_to_time" />
  3272. <ScalarProperty Name="reward_from_time" ColumnName="reward_from_time" />
  3273. <ScalarProperty Name="reward_to_time" ColumnName="reward_to_time" />
  3274. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3275. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3276. </MappingFragment>
  3277. </EntityTypeMapping>
  3278. </EntitySetMapping>
  3279. <EntitySetMapping Name="t_challenge_character_elect_hero">
  3280. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_character_elect_hero">
  3281. <MappingFragment StoreEntitySet="t_challenge_character_elect_hero">
  3282. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3283. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3284. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3285. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3286. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3287. </MappingFragment>
  3288. </EntityTypeMapping>
  3289. </EntitySetMapping>
  3290. <EntitySetMapping Name="t_challenge_elect_hero_stat">
  3291. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_elect_hero_stat">
  3292. <MappingFragment StoreEntitySet="t_challenge_elect_hero_stat">
  3293. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3294. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3295. <ScalarProperty Name="game_position" ColumnName="game_position" />
  3296. <ScalarProperty Name="vote_count" ColumnName="vote_count" />
  3297. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3298. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3299. </MappingFragment>
  3300. </EntityTypeMapping>
  3301. </EntitySetMapping>
  3302. <EntitySetMapping Name="t_challenge_exp_buff">
  3303. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_exp_buff">
  3304. <MappingFragment StoreEntitySet="t_challenge_exp_buff">
  3305. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3306. <ScalarProperty Name="time_year" ColumnName="time_year" />
  3307. <ScalarProperty Name="time_year_day" ColumnName="time_year_day" />
  3308. <ScalarProperty Name="buff_guid" ColumnName="buff_guid" />
  3309. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3310. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3311. </MappingFragment>
  3312. </EntityTypeMapping>
  3313. </EntitySetMapping>
  3314. <EntitySetMapping Name="t_challenge_game_player">
  3315. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_game_player">
  3316. <MappingFragment StoreEntitySet="t_challenge_game_player">
  3317. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3318. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3319. <ScalarProperty Name="is_win" ColumnName="is_win" />
  3320. <ScalarProperty Name="faction" ColumnName="faction" />
  3321. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3322. <ScalarProperty Name="title" ColumnName="title" />
  3323. <ScalarProperty Name="platform_title_id" ColumnName="platform_title_id" />
  3324. <ScalarProperty Name="character_name" ColumnName="character_name" />
  3325. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3326. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3327. </MappingFragment>
  3328. </EntityTypeMapping>
  3329. </EntitySetMapping>
  3330. <EntitySetMapping Name="t_challenge_guess_game_over">
  3331. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_guess_game_over">
  3332. <MappingFragment StoreEntitySet="t_challenge_guess_game_over">
  3333. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3334. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3335. <ScalarProperty Name="challenger_win" ColumnName="challenger_win" />
  3336. <ScalarProperty Name="challenger_win_bet" ColumnName="challenger_win_bet" />
  3337. <ScalarProperty Name="kfz_best_hero" ColumnName="kfz_best_hero" />
  3338. <ScalarProperty Name="kfz_best_hero_bet" ColumnName="kfz_best_hero_bet" />
  3339. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3340. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3341. </MappingFragment>
  3342. </EntityTypeMapping>
  3343. </EntitySetMapping>
  3344. <EntitySetMapping Name="t_challenge_guess_reward">
  3345. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_guess_reward">
  3346. <MappingFragment StoreEntitySet="t_challenge_guess_reward">
  3347. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3348. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3349. <ScalarProperty Name="winner_guess_silver" ColumnName="winner_guess_silver" />
  3350. <ScalarProperty Name="best_hero_guess_silver" ColumnName="best_hero_guess_silver" />
  3351. <ScalarProperty Name="is_taked" ColumnName="is_taked" />
  3352. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3353. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3354. </MappingFragment>
  3355. </EntityTypeMapping>
  3356. </EntitySetMapping>
  3357. <EntitySetMapping Name="t_challenge_kfz_hero">
  3358. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_kfz_hero">
  3359. <MappingFragment StoreEntitySet="t_challenge_kfz_hero">
  3360. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3361. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3362. <ScalarProperty Name="game_position" ColumnName="game_position" />
  3363. <ScalarProperty Name="best_bet" ColumnName="best_bet" />
  3364. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3365. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3366. </MappingFragment>
  3367. </EntityTypeMapping>
  3368. </EntitySetMapping>
  3369. <EntitySetMapping Name="t_challenge_statue_info">
  3370. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_statue_info">
  3371. <MappingFragment StoreEntitySet="t_challenge_statue_info">
  3372. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3373. <ScalarProperty Name="from_time" ColumnName="from_time" />
  3374. <ScalarProperty Name="to_time" ColumnName="to_time" />
  3375. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3376. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3377. </MappingFragment>
  3378. </EntityTypeMapping>
  3379. </EntitySetMapping>
  3380. <EntitySetMapping Name="t_challenge_task_reward">
  3381. <EntityTypeMapping TypeName="DataCenterModel.t_challenge_task_reward">
  3382. <MappingFragment StoreEntitySet="t_challenge_task_reward">
  3383. <ScalarProperty Name="activity_id" ColumnName="activity_id" />
  3384. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3385. <ScalarProperty Name="reward_type" ColumnName="reward_type" />
  3386. <ScalarProperty Name="task_id" ColumnName="task_id" />
  3387. <ScalarProperty Name="is_taked" ColumnName="is_taked" />
  3388. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3389. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3390. </MappingFragment>
  3391. </EntityTypeMapping>
  3392. </EntitySetMapping>
  3393. <EntitySetMapping Name="t_character">
  3394. <EntityTypeMapping TypeName="DataCenterModel.t_character">
  3395. <MappingFragment StoreEntitySet="t_character">
  3396. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3397. <ScalarProperty Name="general_class" ColumnName="general_class" />
  3398. <ScalarProperty Name="character_name" ColumnName="character_name" />
  3399. <ScalarProperty Name="sex" ColumnName="sex" />
  3400. <ScalarProperty Name="account_id" ColumnName="account_id" />
  3401. <ScalarProperty Name="playing_map_server_key" ColumnName="playing_map_server_key" />
  3402. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  3403. <ScalarProperty Name="room_guid" ColumnName="room_guid" />
  3404. <ScalarProperty Name="general_ghost" ColumnName="general_ghost" />
  3405. <ScalarProperty Name="kingdom" ColumnName="kingdom" />
  3406. <ScalarProperty Name="create_ip" ColumnName="create_ip" />
  3407. <ScalarProperty Name="area_id" ColumnName="area_id" />
  3408. <ScalarProperty Name="account" ColumnName="account" />
  3409. <ScalarProperty Name="default_display_id" ColumnName="default_display_id" />
  3410. <ScalarProperty Name="selected_title_type" ColumnName="selected_title_type" />
  3411. <ScalarProperty Name="last_login_time" ColumnName="last_login_time" />
  3412. <ScalarProperty Name="login_ip" ColumnName="login_ip" />
  3413. <ScalarProperty Name="is_first_login" ColumnName="is_first_login" />
  3414. <ScalarProperty Name="has_newly_mail" ColumnName="has_newly_mail" />
  3415. <ScalarProperty Name="location" ColumnName="location" />
  3416. <ScalarProperty Name="history_silver" ColumnName="history_silver" />
  3417. <ScalarProperty Name="history_charge_gold" ColumnName="history_charge_gold" />
  3418. <ScalarProperty Name="history_free_gold" ColumnName="history_free_gold" />
  3419. <ScalarProperty Name="rank_bonus_title_id" ColumnName="rank_bonus_title_id" />
  3420. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3421. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3422. <ScalarProperty Name="recent_flee_buff_id" ColumnName="recent_flee_buff_id" />
  3423. <ScalarProperty Name="add_buff_yday" ColumnName="add_buff_yday" />
  3424. <ScalarProperty Name="need_rename" ColumnName="need_rename" />
  3425. <ScalarProperty Name="can_gain_active_code_item" ColumnName="can_gain_active_code_item" />
  3426. <ScalarProperty Name="total_online_seconds" ColumnName="total_online_seconds" />
  3427. <ScalarProperty Name="city_server_name" ColumnName="city_server_name" />
  3428. <ScalarProperty Name="last_login_realtime" ColumnName="last_login_realtime" />
  3429. <ScalarProperty Name="anti_addiction_online_time" ColumnName="anti_addiction_online_time" />
  3430. <ScalarProperty Name="anti_addiction_offline_time" ColumnName="anti_addiction_offline_time" />
  3431. <ScalarProperty Name="gs_active_code" ColumnName="gs_active_code" />
  3432. <ScalarProperty Name="ban_login_expired_time" ColumnName="ban_login_expired_time" />
  3433. <ScalarProperty Name="ban_chat_expired_time" ColumnName="ban_chat_expired_time" />
  3434. <ScalarProperty Name="pve_equipment_max_strengthen_level" ColumnName="pve_equipment_max_strengthen_level" />
  3435. <ScalarProperty Name="pve_equipment_active_scheme_id" ColumnName="pve_equipment_active_scheme_id" />
  3436. </MappingFragment>
  3437. </EntityTypeMapping>
  3438. </EntitySetMapping>
  3439. <EntitySetMapping Name="t_character_achievement">
  3440. <EntityTypeMapping TypeName="DataCenterModel.t_character_achievement">
  3441. <MappingFragment StoreEntitySet="t_character_achievement">
  3442. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3443. <ScalarProperty Name="achievement_id" ColumnName="achievement_id" />
  3444. <ScalarProperty Name="event_count" ColumnName="event_count" />
  3445. <ScalarProperty Name="is_accomplished" ColumnName="is_accomplished" />
  3446. <ScalarProperty Name="accomplish_time" ColumnName="accomplish_time" />
  3447. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3448. <ScalarProperty Name="battle_guid" ColumnName="battle_guid" />
  3449. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3450. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3451. </MappingFragment>
  3452. </EntityTypeMapping>
  3453. </EntitySetMapping>
  3454. <EntitySetMapping Name="t_character_appearance">
  3455. <EntityTypeMapping TypeName="DataCenterModel.t_character_appearance">
  3456. <MappingFragment StoreEntitySet="t_character_appearance">
  3457. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3458. <ScalarProperty Name="appearance_type" ColumnName="appearance_type" />
  3459. <ScalarProperty Name="headdress" ColumnName="headdress" />
  3460. <ScalarProperty Name="wing" ColumnName="wing" />
  3461. <ScalarProperty Name="clothes" ColumnName="clothes" />
  3462. <ScalarProperty Name="weapon" ColumnName="weapon" />
  3463. <ScalarProperty Name="magic_weapon" ColumnName="magic_weapon" />
  3464. <ScalarProperty Name="mounts" ColumnName="mounts" />
  3465. <ScalarProperty Name="face" ColumnName="face" />
  3466. <ScalarProperty Name="riding_status" ColumnName="riding_status" />
  3467. <ScalarProperty Name="color1" ColumnName="color1" />
  3468. <ScalarProperty Name="color2" ColumnName="color2" />
  3469. <ScalarProperty Name="color3" ColumnName="color3" />
  3470. <ScalarProperty Name="color4" ColumnName="color4" />
  3471. <ScalarProperty Name="color5" ColumnName="color5" />
  3472. <ScalarProperty Name="default_visual" ColumnName="default_visual" />
  3473. <ScalarProperty Name="default_face" ColumnName="default_face" />
  3474. <ScalarProperty Name="default_headdress" ColumnName="default_headdress" />
  3475. <ScalarProperty Name="color_scheme_id" ColumnName="color_scheme_id" />
  3476. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3477. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3478. </MappingFragment>
  3479. </EntityTypeMapping>
  3480. </EntitySetMapping>
  3481. <EntitySetMapping Name="t_character_assets">
  3482. <EntityTypeMapping TypeName="DataCenterModel.t_character_assets">
  3483. <MappingFragment StoreEntitySet="t_character_assets">
  3484. <ScalarProperty Name="assets_id" ColumnName="assets_id" />
  3485. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3486. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  3487. <ScalarProperty Name="balance" ColumnName="balance" />
  3488. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3489. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3490. </MappingFragment>
  3491. </EntityTypeMapping>
  3492. </EntitySetMapping>
  3493. <EntitySetMapping Name="t_character_default_fighting_options">
  3494. <EntityTypeMapping TypeName="DataCenterModel.t_character_default_fighting_options">
  3495. <MappingFragment StoreEntitySet="t_character_default_fighting_options">
  3496. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3497. <ScalarProperty Name="last_common_spell_series_id" ColumnName="last_common_spell_series_id" />
  3498. <ScalarProperty Name="last_rune_scheme_id" ColumnName="last_rune_scheme_id" />
  3499. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3500. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3501. </MappingFragment>
  3502. </EntityTypeMapping>
  3503. </EntitySetMapping>
  3504. <EntitySetMapping Name="t_character_info">
  3505. <EntityTypeMapping TypeName="DataCenterModel.t_character_info">
  3506. <MappingFragment StoreEntitySet="t_character_info">
  3507. <ScalarProperty Name="tid" ColumnName="tid" />
  3508. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3509. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3510. </MappingFragment>
  3511. </EntityTypeMapping>
  3512. </EntitySetMapping>
  3513. <EntitySetMapping Name="t_character_item">
  3514. <EntityTypeMapping TypeName="DataCenterModel.t_character_item">
  3515. <MappingFragment StoreEntitySet="t_character_item">
  3516. <ScalarProperty Name="item_guid" ColumnName="item_guid" />
  3517. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3518. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3519. <ScalarProperty Name="item_id" ColumnName="item_id" />
  3520. <ScalarProperty Name="slot" ColumnName="slot" />
  3521. <ScalarProperty Name="item_count" ColumnName="item_count" />
  3522. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3523. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3524. <ScalarProperty Name="source" ColumnName="source" />
  3525. <ScalarProperty Name="is_bound" ColumnName="is_bound" />
  3526. <ScalarProperty Name="location" ColumnName="location" />
  3527. <ScalarProperty Name="attributes" ColumnName="attributes" />
  3528. <ScalarProperty Name="buy_time" ColumnName="buy_time" />
  3529. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  3530. <ScalarProperty Name="buy_type" ColumnName="buy_type" />
  3531. <ScalarProperty Name="pay_type" ColumnName="pay_type" />
  3532. <ScalarProperty Name="pay_yuanbao" ColumnName="pay_yuanbao" />
  3533. <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
  3534. <ScalarProperty Name="reiki_count" ColumnName="reiki_count" />
  3535. <ScalarProperty Name="durability_count" ColumnName="durability_count" />
  3536. <ScalarProperty Name="recast_count" ColumnName="recast_count" />
  3537. </MappingFragment>
  3538. </EntityTypeMapping>
  3539. </EntitySetMapping>
  3540. <EntitySetMapping Name="t_character_options">
  3541. <EntityTypeMapping TypeName="DataCenterModel.t_character_options">
  3542. <MappingFragment StoreEntitySet="t_character_options">
  3543. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3544. <ScalarProperty Name="rune_not_show_binding_tips" ColumnName="rune_not_show_binding_tips" />
  3545. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3546. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3547. </MappingFragment>
  3548. </EntityTypeMapping>
  3549. </EntitySetMapping>
  3550. <EntitySetMapping Name="t_character_questionnaire">
  3551. <EntityTypeMapping TypeName="DataCenterModel.t_character_questionnaire">
  3552. <MappingFragment StoreEntitySet="t_character_questionnaire">
  3553. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3554. <ScalarProperty Name="questionnaire_id" ColumnName="questionnaire_id" />
  3555. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3556. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3557. </MappingFragment>
  3558. </EntityTypeMapping>
  3559. </EntitySetMapping>
  3560. <EntitySetMapping Name="t_charge_list">
  3561. <EntityTypeMapping TypeName="DataCenterModel.t_charge_list">
  3562. <MappingFragment StoreEntitySet="t_charge_list">
  3563. <ScalarProperty Name="charge_listid" ColumnName="charge_listid" />
  3564. <ScalarProperty Name="charge_sn" ColumnName="charge_sn" />
  3565. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3566. <ScalarProperty Name="account" ColumnName="account" />
  3567. <ScalarProperty Name="ip" ColumnName="ip" />
  3568. <ScalarProperty Name="pay_points" ColumnName="pay_points" />
  3569. <ScalarProperty Name="charge_yuanbao" ColumnName="charge_yuanbao" />
  3570. <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
  3571. <ScalarProperty Name="url_parameters" ColumnName="url_parameters" />
  3572. <ScalarProperty Name="charge_state" ColumnName="charge_state" />
  3573. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3574. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3575. <ScalarProperty Name="retry_times" ColumnName="retry_times" />
  3576. </MappingFragment>
  3577. </EntityTypeMapping>
  3578. </EntitySetMapping>
  3579. <EntitySetMapping Name="t_city_buff">
  3580. <EntityTypeMapping TypeName="DataCenterModel.t_city_buff">
  3581. <MappingFragment StoreEntitySet="t_city_buff">
  3582. <ScalarProperty Name="buff_guid" ColumnName="buff_guid" />
  3583. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3584. <ScalarProperty Name="buff_id" ColumnName="buff_id" />
  3585. <ScalarProperty Name="buff_time" ColumnName="buff_time" />
  3586. <ScalarProperty Name="stack" ColumnName="stack" />
  3587. <ScalarProperty Name="buff_values" ColumnName="buff_values" />
  3588. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3589. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3590. </MappingFragment>
  3591. </EntityTypeMapping>
  3592. </EntitySetMapping>
  3593. <EntitySetMapping Name="t_city_position">
  3594. <EntityTypeMapping TypeName="DataCenterModel.t_city_position">
  3595. <MappingFragment StoreEntitySet="t_city_position">
  3596. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3597. <ScalarProperty Name="city_name" ColumnName="city_name" />
  3598. <ScalarProperty Name="x" ColumnName="x" />
  3599. <ScalarProperty Name="y" ColumnName="y" />
  3600. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3601. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3602. </MappingFragment>
  3603. </EntityTypeMapping>
  3604. </EntitySetMapping>
  3605. <EntitySetMapping Name="t_city_task_finish_sub_state">
  3606. <EntityTypeMapping TypeName="DataCenterModel.t_city_task_finish_sub_state">
  3607. <MappingFragment StoreEntitySet="t_city_task_finish_sub_state">
  3608. <ScalarProperty Name="task_guid" ColumnName="task_guid" />
  3609. <ScalarProperty Name="city_task_sub_state_type" ColumnName="city_task_sub_state_type" />
  3610. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3611. <ScalarProperty Name="total_count" ColumnName="total_count" />
  3612. <ScalarProperty Name="finish_count" ColumnName="finish_count" />
  3613. <ScalarProperty Name="detail" ColumnName="detail" />
  3614. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3615. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3616. </MappingFragment>
  3617. </EntityTypeMapping>
  3618. </EntitySetMapping>
  3619. <EntitySetMapping Name="t_city_task_info">
  3620. <EntityTypeMapping TypeName="DataCenterModel.t_city_task_info">
  3621. <MappingFragment StoreEntitySet="t_city_task_info">
  3622. <ScalarProperty Name="task_guid" ColumnName="task_guid" />
  3623. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3624. <ScalarProperty Name="task_id" ColumnName="task_id" />
  3625. <ScalarProperty Name="state" ColumnName="state" />
  3626. <ScalarProperty Name="finish_timestamp" ColumnName="finish_timestamp" />
  3627. <ScalarProperty Name="accept_time" ColumnName="accept_time" />
  3628. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3629. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3630. </MappingFragment>
  3631. </EntityTypeMapping>
  3632. </EntitySetMapping>
  3633. <EntitySetMapping Name="t_client_config">
  3634. <EntityTypeMapping TypeName="DataCenterModel.t_client_config">
  3635. <MappingFragment StoreEntitySet="t_client_config">
  3636. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3637. <ScalarProperty Name="map_type" ColumnName="map_type" />
  3638. <ScalarProperty Name="key_setting" ColumnName="key_setting" />
  3639. <ScalarProperty Name="use_dota_key" ColumnName="use_dota_key" />
  3640. <ScalarProperty Name="shop_using_price_classify" ColumnName="shop_using_price_classify" />
  3641. <ScalarProperty Name="client_config_str" ColumnName="client_config_str" />
  3642. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3643. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3644. </MappingFragment>
  3645. </EntityTypeMapping>
  3646. </EntitySetMapping>
  3647. <EntitySetMapping Name="t_common_spell">
  3648. <EntityTypeMapping TypeName="DataCenterModel.t_common_spell">
  3649. <MappingFragment StoreEntitySet="t_common_spell">
  3650. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3651. <ScalarProperty Name="common_spell_id" ColumnName="common_spell_id" />
  3652. <ScalarProperty Name="common_spell_series" ColumnName="common_spell_series" />
  3653. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3654. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3655. </MappingFragment>
  3656. </EntityTypeMapping>
  3657. </EntitySetMapping>
  3658. <EntitySetMapping Name="t_daily_online_time">
  3659. <EntityTypeMapping TypeName="DataCenterModel.t_daily_online_time">
  3660. <MappingFragment StoreEntitySet="t_daily_online_time">
  3661. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3662. <ScalarProperty Name="login_date" ColumnName="login_date" />
  3663. <ScalarProperty Name="online_time" ColumnName="online_time" />
  3664. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3665. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3666. </MappingFragment>
  3667. </EntityTypeMapping>
  3668. </EntitySetMapping>
  3669. <EntitySetMapping Name="t_employ_notice_status">
  3670. <EntityTypeMapping TypeName="DataCenterModel.t_employ_notice_status">
  3671. <MappingFragment StoreEntitySet="t_employ_notice_status">
  3672. <ScalarProperty Name="employ_notice_status_id" ColumnName="employ_notice_status_id" />
  3673. <ScalarProperty Name="publisher_guid" ColumnName="publisher_guid" />
  3674. <ScalarProperty Name="applicant_guid" ColumnName="applicant_guid" />
  3675. <ScalarProperty Name="status" ColumnName="status" />
  3676. </MappingFragment>
  3677. </EntityTypeMapping>
  3678. </EntitySetMapping>
  3679. <EntitySetMapping Name="t_employ_relation">
  3680. <EntityTypeMapping TypeName="DataCenterModel.t_employ_relation">
  3681. <MappingFragment StoreEntitySet="t_employ_relation">
  3682. <ScalarProperty Name="employ_relation_id" ColumnName="employ_relation_id" />
  3683. <ScalarProperty Name="employer_guid" ColumnName="employer_guid" />
  3684. <ScalarProperty Name="employee_guid" ColumnName="employee_guid" />
  3685. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  3686. <ScalarProperty Name="price" ColumnName="price" />
  3687. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3688. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3689. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3690. </MappingFragment>
  3691. </EntityTypeMapping>
  3692. </EntitySetMapping>
  3693. <EntitySetMapping Name="t_employee_info">
  3694. <EntityTypeMapping TypeName="DataCenterModel.t_employee_info">
  3695. <MappingFragment StoreEntitySet="t_employee_info">
  3696. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3697. <ScalarProperty Name="employee_experience" ColumnName="employee_experience" />
  3698. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3699. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3700. </MappingFragment>
  3701. </EntityTypeMapping>
  3702. </EntitySetMapping>
  3703. <EntitySetMapping Name="t_employee_notice">
  3704. <EntityTypeMapping TypeName="DataCenterModel.t_employee_notice">
  3705. <MappingFragment StoreEntitySet="t_employee_notice">
  3706. <ScalarProperty Name="employee_guid" ColumnName="employee_guid" />
  3707. <ScalarProperty Name="apply_type" ColumnName="apply_type" />
  3708. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  3709. <ScalarProperty Name="price" ColumnName="price" />
  3710. <ScalarProperty Name="publish_time" ColumnName="publish_time" />
  3711. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  3712. <ScalarProperty Name="success" ColumnName="success" />
  3713. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3714. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3715. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3716. </MappingFragment>
  3717. </EntityTypeMapping>
  3718. </EntitySetMapping>
  3719. <EntitySetMapping Name="t_employer_notice">
  3720. <EntityTypeMapping TypeName="DataCenterModel.t_employer_notice">
  3721. <MappingFragment StoreEntitySet="t_employer_notice">
  3722. <ScalarProperty Name="employer_guid" ColumnName="employer_guid" />
  3723. <ScalarProperty Name="want_type" ColumnName="want_type" />
  3724. <ScalarProperty Name="employee_level_condition" ColumnName="employee_level_condition" />
  3725. <ScalarProperty Name="player_level_condition" ColumnName="player_level_condition" />
  3726. <ScalarProperty Name="player_pvp_score_condition" ColumnName="player_pvp_score_condition" />
  3727. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  3728. <ScalarProperty Name="price" ColumnName="price" />
  3729. <ScalarProperty Name="publish_time" ColumnName="publish_time" />
  3730. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  3731. <ScalarProperty Name="success" ColumnName="success" />
  3732. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3733. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3734. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3735. </MappingFragment>
  3736. </EntityTypeMapping>
  3737. </EntitySetMapping>
  3738. <EntitySetMapping Name="t_fighting_evaluation_info">
  3739. <EntityTypeMapping TypeName="DataCenterModel.t_fighting_evaluation_info">
  3740. <MappingFragment StoreEntitySet="t_fighting_evaluation_info">
  3741. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3742. <ScalarProperty Name="evaluate_player_guid" ColumnName="evaluate_player_guid" />
  3743. <ScalarProperty Name="evaluate_type" ColumnName="evaluate_type" />
  3744. <ScalarProperty Name="evaluate_time" ColumnName="evaluate_time" />
  3745. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3746. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3747. </MappingFragment>
  3748. </EntityTypeMapping>
  3749. </EntitySetMapping>
  3750. <EntitySetMapping Name="t_friend">
  3751. <EntityTypeMapping TypeName="DataCenterModel.t_friend">
  3752. <MappingFragment StoreEntitySet="t_friend">
  3753. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3754. <ScalarProperty Name="friend_guid" ColumnName="friend_guid" />
  3755. <ScalarProperty Name="group_id" ColumnName="group_id" />
  3756. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3757. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3758. </MappingFragment>
  3759. </EntityTypeMapping>
  3760. </EntitySetMapping>
  3761. <EntitySetMapping Name="t_friend_group">
  3762. <EntityTypeMapping TypeName="DataCenterModel.t_friend_group">
  3763. <MappingFragment StoreEntitySet="t_friend_group">
  3764. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3765. <ScalarProperty Name="group_id" ColumnName="group_id" />
  3766. <ScalarProperty Name="group_name" ColumnName="group_name" />
  3767. <ScalarProperty Name="is_sys_group" ColumnName="is_sys_group" />
  3768. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3769. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3770. </MappingFragment>
  3771. </EntityTypeMapping>
  3772. </EntitySetMapping>
  3773. <EntitySetMapping Name="t_game_hero_use_info">
  3774. <EntityTypeMapping TypeName="DataCenterModel.t_game_hero_use_info">
  3775. <MappingFragment StoreEntitySet="t_game_hero_use_info">
  3776. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3777. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3778. <ScalarProperty Name="use_count" ColumnName="use_count" />
  3779. <ScalarProperty Name="pvp_score" ColumnName="pvp_score" />
  3780. <ScalarProperty Name="pvp_score_uptime" ColumnName="pvp_score_uptime" />
  3781. <ScalarProperty Name="mvp_count" ColumnName="mvp_count" />
  3782. <ScalarProperty Name="mvp_count_uptime" ColumnName="mvp_count_uptime" />
  3783. <ScalarProperty Name="achievement" ColumnName="achievement" />
  3784. <ScalarProperty Name="achievement_uptime" ColumnName="achievement_uptime" />
  3785. <ScalarProperty Name="loser_mvp_count" ColumnName="loser_mvp_count" />
  3786. <ScalarProperty Name="loser_mvp_count_uptime" ColumnName="loser_mvp_count_uptime" />
  3787. <ScalarProperty Name="daily_kill_count" ColumnName="daily_kill_count" />
  3788. <ScalarProperty Name="daily_kill_count_uptime" ColumnName="daily_kill_count_uptime" />
  3789. <ScalarProperty Name="daily_dead_count" ColumnName="daily_dead_count" />
  3790. <ScalarProperty Name="daily_dead_count_uptime" ColumnName="daily_dead_count_uptime" />
  3791. <ScalarProperty Name="daily_assist_count" ColumnName="daily_assist_count" />
  3792. <ScalarProperty Name="daily_assist_count_uptime" ColumnName="daily_assist_count_uptime" />
  3793. <ScalarProperty Name="daily_total_money" ColumnName="daily_total_money" />
  3794. <ScalarProperty Name="daily_total_money_uptime" ColumnName="daily_total_money_uptime" />
  3795. <ScalarProperty Name="daily_kill_friend_soldier" ColumnName="daily_kill_friend_soldier" />
  3796. <ScalarProperty Name="daily_kill_friend_soldier_uptime" ColumnName="daily_kill_friend_soldier_uptime" />
  3797. <ScalarProperty Name="win_count" ColumnName="win_count" />
  3798. <ScalarProperty Name="trueskill" ColumnName="trueskill" />
  3799. <ScalarProperty Name="total_kill_count" ColumnName="total_kill_count" />
  3800. <ScalarProperty Name="total_assist_count" ColumnName="total_assist_count" />
  3801. <ScalarProperty Name="total_dead_count" ColumnName="total_dead_count" />
  3802. <ScalarProperty Name="total_first_blood" ColumnName="total_first_blood" />
  3803. <ScalarProperty Name="total_killed_by_first_blood" ColumnName="total_killed_by_first_blood" />
  3804. <ScalarProperty Name="total_get_money" ColumnName="total_get_money" />
  3805. <ScalarProperty Name="total_kill_hostile_soldier" ColumnName="total_kill_hostile_soldier" />
  3806. <ScalarProperty Name="total_kill_friend_soldier" ColumnName="total_kill_friend_soldier" />
  3807. <ScalarProperty Name="total_destroy_hostile_tower" ColumnName="total_destroy_hostile_tower" />
  3808. <ScalarProperty Name="total_destroy_friend_tower" ColumnName="total_destroy_friend_tower" />
  3809. <ScalarProperty Name="total_kill_monster_number" ColumnName="total_kill_monster_number" />
  3810. <ScalarProperty Name="most_continuous_kill_number" ColumnName="most_continuous_kill_number" />
  3811. <ScalarProperty Name="total_physics_damage" ColumnName="total_physics_damage" />
  3812. <ScalarProperty Name="total_magic_damage" ColumnName="total_magic_damage" />
  3813. <ScalarProperty Name="max_kill_hostile_soldier_times" ColumnName="max_kill_hostile_soldier_times" />
  3814. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3815. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3816. <ScalarProperty Name="score_update_count" ColumnName="score_update_count" />
  3817. </MappingFragment>
  3818. </EntityTypeMapping>
  3819. </EntitySetMapping>
  3820. <EntitySetMapping Name="t_game_info">
  3821. <EntityTypeMapping TypeName="DataCenterModel.t_game_info">
  3822. <MappingFragment StoreEntitySet="t_game_info">
  3823. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3824. <ScalarProperty Name="character_name" ColumnName="character_name" />
  3825. <ScalarProperty Name="register_area" ColumnName="register_area" />
  3826. <ScalarProperty Name="character_level" ColumnName="character_level" />
  3827. <ScalarProperty Name="experience" ColumnName="experience" />
  3828. <ScalarProperty Name="experience_uptime" ColumnName="experience_uptime" />
  3829. <ScalarProperty Name="stage_score" ColumnName="stage_score" />
  3830. <ScalarProperty Name="stage_score_uptime" ColumnName="stage_score_uptime" />
  3831. <ScalarProperty Name="win_count" ColumnName="win_count" />
  3832. <ScalarProperty Name="lose_count" ColumnName="lose_count" />
  3833. <ScalarProperty Name="flee_count" ColumnName="flee_count" />
  3834. <ScalarProperty Name="max_kill_games" ColumnName="max_kill_games" />
  3835. <ScalarProperty Name="max_assist_games" ColumnName="max_assist_games" />
  3836. <ScalarProperty Name="max_destroy_hostile_towner_games" ColumnName="max_destroy_hostile_towner_games" />
  3837. <ScalarProperty Name="first_blood_games" ColumnName="first_blood_games" />
  3838. <ScalarProperty Name="max_money_games" ColumnName="max_money_games" />
  3839. <ScalarProperty Name="kill_boss_count" ColumnName="kill_boss_count" />
  3840. <ScalarProperty Name="kill_boss_count_uptime" ColumnName="kill_boss_count_uptime" />
  3841. <ScalarProperty Name="max_money" ColumnName="max_money" />
  3842. <ScalarProperty Name="max_assist" ColumnName="max_assist" />
  3843. <ScalarProperty Name="max_kill" ColumnName="max_kill" />
  3844. <ScalarProperty Name="exploit_value" ColumnName="exploit_value" />
  3845. <ScalarProperty Name="pass_level_count" ColumnName="pass_level_count" />
  3846. <ScalarProperty Name="lose_level_count" ColumnName="lose_level_count" />
  3847. <ScalarProperty Name="get_s_count" ColumnName="get_s_count" />
  3848. <ScalarProperty Name="last_level_up_time" ColumnName="last_level_up_time" />
  3849. <ScalarProperty Name="mean" ColumnName="mean" />
  3850. <ScalarProperty Name="deviation" ColumnName="deviation" />
  3851. <ScalarProperty Name="total_kill_boss_number" ColumnName="total_kill_boss_number" />
  3852. <ScalarProperty Name="played_time" ColumnName="played_time" />
  3853. <ScalarProperty Name="in_city_time" ColumnName="in_city_time" />
  3854. <ScalarProperty Name="in_match_time" ColumnName="in_match_time" />
  3855. <ScalarProperty Name="in_room_time" ColumnName="in_room_time" />
  3856. <ScalarProperty Name="arena_match_score" ColumnName="arena_match_score" />
  3857. <ScalarProperty Name="funny_match_score" ColumnName="funny_match_score" />
  3858. <ScalarProperty Name="good_reputation_count" ColumnName="good_reputation_count" />
  3859. <ScalarProperty Name="wujiangshilian_play_time" ColumnName="wujiangshilian_play_time" />
  3860. <ScalarProperty Name="youzhou_last_play_soldier_count" ColumnName="youzhou_last_play_soldier_count" />
  3861. <ScalarProperty Name="youzhou_last_play_soldier_level" ColumnName="youzhou_last_play_soldier_level" />
  3862. <ScalarProperty Name="vip_exp" ColumnName="vip_exp" />
  3863. <ScalarProperty Name="vip_exp_accumulate" ColumnName="vip_exp_accumulate" />
  3864. <ScalarProperty Name="last_vip_exp_up_time" ColumnName="last_vip_exp_up_time" />
  3865. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3866. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3867. </MappingFragment>
  3868. </EntityTypeMapping>
  3869. </EntitySetMapping>
  3870. <EntitySetMapping Name="t_gs_code">
  3871. <EntityTypeMapping TypeName="DataCenterModel.t_gs_code">
  3872. <MappingFragment StoreEntitySet="t_gs_code">
  3873. <ScalarProperty Name="active_code" ColumnName="active_code" />
  3874. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3875. <ScalarProperty Name="character_name" ColumnName="character_name" />
  3876. <ScalarProperty Name="invitee_guid" ColumnName="invitee_guid" />
  3877. <ScalarProperty Name="notify_inviter" ColumnName="notify_inviter" />
  3878. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3879. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3880. </MappingFragment>
  3881. </EntityTypeMapping>
  3882. </EntitySetMapping>
  3883. <EntitySetMapping Name="t_hero_color_scheme">
  3884. <EntityTypeMapping TypeName="DataCenterModel.t_hero_color_scheme">
  3885. <MappingFragment StoreEntitySet="t_hero_color_scheme">
  3886. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3887. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3888. <ScalarProperty Name="color_scheme_id" ColumnName="color_scheme_id" />
  3889. <ScalarProperty Name="color1" ColumnName="color1" />
  3890. <ScalarProperty Name="color2" ColumnName="color2" />
  3891. <ScalarProperty Name="color3" ColumnName="color3" />
  3892. <ScalarProperty Name="color4" ColumnName="color4" />
  3893. <ScalarProperty Name="color5" ColumnName="color5" />
  3894. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3895. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3896. </MappingFragment>
  3897. </EntityTypeMapping>
  3898. </EntitySetMapping>
  3899. <EntitySetMapping Name="t_hero_level_state">
  3900. <EntityTypeMapping TypeName="DataCenterModel.t_hero_level_state">
  3901. <MappingFragment StoreEntitySet="t_hero_level_state">
  3902. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3903. <ScalarProperty Name="level" ColumnName="level" />
  3904. <ScalarProperty Name="selected_free_hero" ColumnName="selected_free_hero" />
  3905. <ScalarProperty Name="selected_discount_hero" ColumnName="selected_discount_hero" />
  3906. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3907. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3908. </MappingFragment>
  3909. </EntityTypeMapping>
  3910. </EntitySetMapping>
  3911. <EntitySetMapping Name="t_hero_pet">
  3912. <EntityTypeMapping TypeName="DataCenterModel.t_hero_pet">
  3913. <MappingFragment StoreEntitySet="t_hero_pet">
  3914. <ScalarProperty Name="guid" ColumnName="guid" />
  3915. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3916. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3917. <ScalarProperty Name="name" ColumnName="name" />
  3918. <ScalarProperty Name="location" ColumnName="location" />
  3919. <ScalarProperty Name="level" ColumnName="level" />
  3920. <ScalarProperty Name="expr" ColumnName="expr" />
  3921. <ScalarProperty Name="closeness" ColumnName="closeness" />
  3922. <ScalarProperty Name="closeness_up_fail" ColumnName="closeness_up_fail" />
  3923. <ScalarProperty Name="merge_count" ColumnName="merge_count" />
  3924. <ScalarProperty Name="merge_time" ColumnName="merge_time" />
  3925. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3926. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3927. </MappingFragment>
  3928. </EntityTypeMapping>
  3929. </EntitySetMapping>
  3930. <EntitySetMapping Name="t_hero_suggest_equipment">
  3931. <EntityTypeMapping TypeName="DataCenterModel.t_hero_suggest_equipment">
  3932. <MappingFragment StoreEntitySet="t_hero_suggest_equipment">
  3933. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3934. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3935. <ScalarProperty Name="plan_id" ColumnName="plan_id" />
  3936. <ScalarProperty Name="plan_description" ColumnName="plan_description" />
  3937. <ScalarProperty Name="item_id0" ColumnName="item_id0" />
  3938. <ScalarProperty Name="item_id1" ColumnName="item_id1" />
  3939. <ScalarProperty Name="item_id2" ColumnName="item_id2" />
  3940. <ScalarProperty Name="item_id3" ColumnName="item_id3" />
  3941. <ScalarProperty Name="item_id4" ColumnName="item_id4" />
  3942. <ScalarProperty Name="item_id5" ColumnName="item_id5" />
  3943. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  3944. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3945. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3946. </MappingFragment>
  3947. </EntityTypeMapping>
  3948. </EntitySetMapping>
  3949. <EntitySetMapping Name="t_hero_talent_info">
  3950. <EntityTypeMapping TypeName="DataCenterModel.t_hero_talent_info">
  3951. <MappingFragment StoreEntitySet="t_hero_talent_info">
  3952. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3953. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3954. <ScalarProperty Name="total_used_hero_experience" ColumnName="total_used_hero_experience" />
  3955. <ScalarProperty Name="enable_branch" ColumnName="enable_branch" />
  3956. <ScalarProperty Name="this_branch_point" ColumnName="this_branch_point" />
  3957. <ScalarProperty Name="available_experience" ColumnName="available_experience" />
  3958. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3959. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3960. </MappingFragment>
  3961. </EntityTypeMapping>
  3962. </EntitySetMapping>
  3963. <EntitySetMapping Name="t_hero_talent_info_sub_state">
  3964. <EntityTypeMapping TypeName="DataCenterModel.t_hero_talent_info_sub_state">
  3965. <MappingFragment StoreEntitySet="t_hero_talent_info_sub_state">
  3966. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3967. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3968. <ScalarProperty Name="talent_id" ColumnName="talent_id" />
  3969. <ScalarProperty Name="point" ColumnName="point" />
  3970. <ScalarProperty Name="is_full_point" ColumnName="is_full_point" />
  3971. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3972. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3973. </MappingFragment>
  3974. </EntityTypeMapping>
  3975. </EntitySetMapping>
  3976. <EntitySetMapping Name="t_hero_unlock_hero">
  3977. <EntityTypeMapping TypeName="DataCenterModel.t_hero_unlock_hero">
  3978. <MappingFragment StoreEntitySet="t_hero_unlock_hero">
  3979. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  3980. <ScalarProperty Name="hero_id" ColumnName="hero_id" />
  3981. <ScalarProperty Name="is_activated" ColumnName="is_activated" />
  3982. <ScalarProperty Name="cur_color_scheme_id" ColumnName="cur_color_scheme_id" />
  3983. <ScalarProperty Name="create_time" ColumnName="create_time" />
  3984. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  3985. </MappingFragment>
  3986. </EntityTypeMapping>
  3987. </EntitySetMapping>
  3988. <EntitySetMapping Name="t_illegal_term_rules">
  3989. <EntityTypeMapping TypeName="DataCenterModel.t_illegal_term_rules">
  3990. <MappingFragment StoreEntitySet="t_illegal_term_rules">
  3991. <ScalarProperty Name="regex" ColumnName="regex" />
  3992. <ScalarProperty Name="id" ColumnName="id" />
  3993. </MappingFragment>
  3994. </EntityTypeMapping>
  3995. </EntitySetMapping>
  3996. <EntitySetMapping Name="t_item_roll_list">
  3997. <EntityTypeMapping TypeName="DataCenterModel.t_item_roll_list">
  3998. <MappingFragment StoreEntitySet="t_item_roll_list">
  3999. <ScalarProperty Name="item_roll_guid" ColumnName="item_roll_guid" />
  4000. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4001. <ScalarProperty Name="item_guid" ColumnName="item_guid" />
  4002. <ScalarProperty Name="item_id" ColumnName="item_id" />
  4003. <ScalarProperty Name="item_name" ColumnName="item_name" />
  4004. <ScalarProperty Name="source" ColumnName="source" />
  4005. <ScalarProperty Name="is_bound" ColumnName="is_bound" />
  4006. <ScalarProperty Name="attributes" ColumnName="attributes" />
  4007. <ScalarProperty Name="buy_time" ColumnName="buy_time" />
  4008. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  4009. <ScalarProperty Name="buy_type" ColumnName="buy_type" />
  4010. <ScalarProperty Name="pay_type" ColumnName="pay_type" />
  4011. <ScalarProperty Name="pay_yuanbao" ColumnName="pay_yuanbao" />
  4012. <ScalarProperty Name="free_yuanbao" ColumnName="free_yuanbao" />
  4013. <ScalarProperty Name="previous_count" ColumnName="previous_count" />
  4014. <ScalarProperty Name="previous_location" ColumnName="previous_location" />
  4015. <ScalarProperty Name="count" ColumnName="count" />
  4016. <ScalarProperty Name="location" ColumnName="location" />
  4017. <ScalarProperty Name="change_type" ColumnName="change_type" />
  4018. <ScalarProperty Name="billing_state" ColumnName="billing_state" />
  4019. <ScalarProperty Name="charge_gold_balance" ColumnName="charge_gold_balance" />
  4020. <ScalarProperty Name="free_gold_balance" ColumnName="free_gold_balance" />
  4021. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4022. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4023. </MappingFragment>
  4024. </EntityTypeMapping>
  4025. </EntitySetMapping>
  4026. <EntitySetMapping Name="t_login_reward">
  4027. <EntityTypeMapping TypeName="DataCenterModel.t_login_reward">
  4028. <MappingFragment StoreEntitySet="t_login_reward">
  4029. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4030. <ScalarProperty Name="year_day" ColumnName="year_day" />
  4031. <ScalarProperty Name="reward_id" ColumnName="reward_id" />
  4032. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  4033. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4034. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4035. </MappingFragment>
  4036. </EntityTypeMapping>
  4037. </EntitySetMapping>
  4038. <EntitySetMapping Name="t_mail">
  4039. <EntityTypeMapping TypeName="DataCenterModel.t_mail">
  4040. <MappingFragment StoreEntitySet="t_mail">
  4041. <ScalarProperty Name="mail_guid" ColumnName="mail_guid" />
  4042. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  4043. <ScalarProperty Name="checked" ColumnName="checked" />
  4044. <ScalarProperty Name="is_read" ColumnName="is_read" />
  4045. <ScalarProperty Name="is_system_mail" ColumnName="is_system_mail" />
  4046. <ScalarProperty Name="sender_guid" ColumnName="sender_guid" />
  4047. <ScalarProperty Name="sender_name" ColumnName="sender_name" />
  4048. <ScalarProperty Name="receiver_guid" ColumnName="receiver_guid" />
  4049. <ScalarProperty Name="receiver_name" ColumnName="receiver_name" />
  4050. <ScalarProperty Name="mail_subject" ColumnName="mail_subject" />
  4051. <ScalarProperty Name="mail_body" ColumnName="mail_body" />
  4052. <ScalarProperty Name="silver" ColumnName="silver" />
  4053. <ScalarProperty Name="charge_gold" ColumnName="charge_gold" />
  4054. <ScalarProperty Name="money_is_taked" ColumnName="money_is_taked" />
  4055. <ScalarProperty Name="item_count" ColumnName="item_count" />
  4056. <ScalarProperty Name="expire_time" ColumnName="expire_time" />
  4057. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4058. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4059. </MappingFragment>
  4060. </EntityTypeMapping>
  4061. </EntitySetMapping>
  4062. <EntitySetMapping Name="t_mail_item">
  4063. <EntityTypeMapping TypeName="DataCenterModel.t_mail_item">
  4064. <MappingFragment StoreEntitySet="t_mail_item">
  4065. <ScalarProperty Name="item_guid" ColumnName="item_guid" />
  4066. <ScalarProperty Name="mail_guid" ColumnName="mail_guid" />
  4067. <ScalarProperty Name="is_taked" ColumnName="is_taked" />
  4068. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  4069. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4070. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4071. </MappingFragment>
  4072. </EntityTypeMapping>
  4073. </EntitySetMapping>
  4074. <EntitySetMapping Name="t_mall_items_sales_count">
  4075. <EntityTypeMapping TypeName="DataCenterModel.t_mall_items_sales_count">
  4076. <MappingFragment StoreEntitySet="t_mall_items_sales_count">
  4077. <ScalarProperty Name="item_id" ColumnName="item_id" />
  4078. <ScalarProperty Name="sale_count" ColumnName="sale_count" />
  4079. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4080. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4081. </MappingFragment>
  4082. </EntityTypeMapping>
  4083. </EntitySetMapping>
  4084. <EntitySetMapping Name="t_map_play_info">
  4085. <EntityTypeMapping TypeName="DataCenterModel.t_map_play_info">
  4086. <MappingFragment StoreEntitySet="t_map_play_info">
  4087. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4088. <ScalarProperty Name="map_type" ColumnName="map_type" />
  4089. <ScalarProperty Name="play_count" ColumnName="play_count" />
  4090. <ScalarProperty Name="win_count" ColumnName="win_count" />
  4091. <ScalarProperty Name="last_play_date" ColumnName="last_play_date" />
  4092. <ScalarProperty Name="total_play_time" ColumnName="total_play_time" />
  4093. <ScalarProperty Name="today_play_time" ColumnName="today_play_time" />
  4094. <ScalarProperty Name="current_level" ColumnName="current_level" />
  4095. <ScalarProperty Name="max_score" ColumnName="max_score" />
  4096. <ScalarProperty Name="kill_boss_count" ColumnName="kill_boss_count" />
  4097. <ScalarProperty Name="kill_hostile_soldier" ColumnName="kill_hostile_soldier" />
  4098. <ScalarProperty Name="max_total_damage" ColumnName="max_total_damage" />
  4099. <ScalarProperty Name="max_total_suffer_damage" ColumnName="max_total_suffer_damage" />
  4100. <ScalarProperty Name="max_total_heal" ColumnName="max_total_heal" />
  4101. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4102. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4103. </MappingFragment>
  4104. </EntityTypeMapping>
  4105. </EntitySetMapping>
  4106. <EntitySetMapping Name="t_meta">
  4107. <EntityTypeMapping TypeName="DataCenterModel.t_meta">
  4108. <MappingFragment StoreEntitySet="t_meta">
  4109. <ScalarProperty Name="meta_key" ColumnName="meta_key" />
  4110. <ScalarProperty Name="meta_value" ColumnName="meta_value" />
  4111. </MappingFragment>
  4112. </EntityTypeMapping>
  4113. </EntitySetMapping>
  4114. <EntitySetMapping Name="t_offline_message">
  4115. <EntityTypeMapping TypeName="DataCenterModel.t_offline_message">
  4116. <MappingFragment StoreEntitySet="t_offline_message">
  4117. <ScalarProperty Name="fid" ColumnName="fid" />
  4118. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4119. <ScalarProperty Name="proto_name" ColumnName="proto_name" />
  4120. <ScalarProperty Name="content" ColumnName="content" />
  4121. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4122. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4123. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  4124. </MappingFragment>
  4125. </EntityTypeMapping>
  4126. </EntitySetMapping>
  4127. <EntitySetMapping Name="t_player_offline_message">
  4128. <EntityTypeMapping TypeName="DataCenterModel.t_player_offline_message">
  4129. <MappingFragment StoreEntitySet="t_player_offline_message">
  4130. <ScalarProperty Name="fid" ColumnName="fid" />
  4131. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4132. <ScalarProperty Name="opcode" ColumnName="opcode" />
  4133. <ScalarProperty Name="content" ColumnName="content" />
  4134. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4135. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4136. <ScalarProperty Name="is_deleted" ColumnName="is_deleted" />
  4137. </MappingFragment>
  4138. </EntityTypeMapping>
  4139. </EntitySetMapping>
  4140. <EntitySetMapping Name="t_pve_equipment_scheme">
  4141. <EntityTypeMapping TypeName="DataCenterModel.t_pve_equipment_scheme">
  4142. <MappingFragment StoreEntitySet="t_pve_equipment_scheme">
  4143. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4144. <ScalarProperty Name="scheme_id" ColumnName="scheme_id" />
  4145. <ScalarProperty Name="scheme_name" ColumnName="scheme_name" />
  4146. <ScalarProperty Name="slot0_item_guid" ColumnName="slot0_item_guid" />
  4147. <ScalarProperty Name="slot1_item_guid" ColumnName="slot1_item_guid" />
  4148. <ScalarProperty Name="slot2_item_guid" ColumnName="slot2_item_guid" />
  4149. <ScalarProperty Name="slot3_item_guid" ColumnName="slot3_item_guid" />
  4150. <ScalarProperty Name="slot4_item_guid" ColumnName="slot4_item_guid" />
  4151. <ScalarProperty Name="slot5_item_guid" ColumnName="slot5_item_guid" />
  4152. <ScalarProperty Name="slot6_item_guid" ColumnName="slot6_item_guid" />
  4153. <ScalarProperty Name="slot7_item_guid" ColumnName="slot7_item_guid" />
  4154. <ScalarProperty Name="slot8_item_guid" ColumnName="slot8_item_guid" />
  4155. <ScalarProperty Name="slot9_item_guid" ColumnName="slot9_item_guid" />
  4156. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4157. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4158. </MappingFragment>
  4159. </EntityTypeMapping>
  4160. </EntitySetMapping>
  4161. <EntitySetMapping Name="t_pve_equipment_strength">
  4162. <EntityTypeMapping TypeName="DataCenterModel.t_pve_equipment_strength">
  4163. <MappingFragment StoreEntitySet="t_pve_equipment_strength">
  4164. <ScalarProperty Name="guid" ColumnName="guid" />
  4165. <ScalarProperty Name="strength_lv" ColumnName="strength_lv" />
  4166. <ScalarProperty Name="strength_value" ColumnName="strength_value" />
  4167. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4168. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4169. </MappingFragment>
  4170. </EntityTypeMapping>
  4171. </EntitySetMapping>
  4172. <EntitySetMapping Name="t_questionnaire">
  4173. <EntityTypeMapping TypeName="DataCenterModel.t_questionnaire">
  4174. <MappingFragment StoreEntitySet="t_questionnaire">
  4175. <ScalarProperty Name="questionnaire_id" ColumnName="questionnaire_id" />
  4176. <ScalarProperty Name="content" ColumnName="content" />
  4177. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4178. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4179. </MappingFragment>
  4180. </EntityTypeMapping>
  4181. </EntitySetMapping>
  4182. <EntitySetMapping Name="t_roll_log">
  4183. <EntityTypeMapping TypeName="DataCenterModel.t_roll_log">
  4184. <MappingFragment StoreEntitySet="t_roll_log">
  4185. <ScalarProperty Name="roll_listid" ColumnName="roll_listid" />
  4186. <ScalarProperty Name="bill_listid" ColumnName="bill_listid" />
  4187. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4188. <ScalarProperty Name="vs_guid" ColumnName="vs_guid" />
  4189. <ScalarProperty Name="roll_type" ColumnName="roll_type" />
  4190. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  4191. <ScalarProperty Name="amount" ColumnName="amount" />
  4192. <ScalarProperty Name="balance" ColumnName="balance" />
  4193. <ScalarProperty Name="ip" ColumnName="ip" />
  4194. <ScalarProperty Name="memo" ColumnName="memo" />
  4195. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4196. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4197. </MappingFragment>
  4198. </EntityTypeMapping>
  4199. </EntitySetMapping>
  4200. <EntitySetMapping Name="t_rune_scheme">
  4201. <EntityTypeMapping TypeName="DataCenterModel.t_rune_scheme">
  4202. <MappingFragment StoreEntitySet="t_rune_scheme">
  4203. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4204. <ScalarProperty Name="scheme_id" ColumnName="scheme_id" />
  4205. <ScalarProperty Name="scheme_name" ColumnName="scheme_name" />
  4206. <ScalarProperty Name="slot0_item_guid" ColumnName="slot0_item_guid" />
  4207. <ScalarProperty Name="slot1_item_guid" ColumnName="slot1_item_guid" />
  4208. <ScalarProperty Name="slot2_item_guid" ColumnName="slot2_item_guid" />
  4209. <ScalarProperty Name="slot3_item_guid" ColumnName="slot3_item_guid" />
  4210. <ScalarProperty Name="slot4_item_guid" ColumnName="slot4_item_guid" />
  4211. <ScalarProperty Name="slot5_item_guid" ColumnName="slot5_item_guid" />
  4212. <ScalarProperty Name="slot6_item_guid" ColumnName="slot6_item_guid" />
  4213. <ScalarProperty Name="slot7_item_guid" ColumnName="slot7_item_guid" />
  4214. <ScalarProperty Name="slot8_item_guid" ColumnName="slot8_item_guid" />
  4215. <ScalarProperty Name="slot9_item_guid" ColumnName="slot9_item_guid" />
  4216. <ScalarProperty Name="slot10_item_guid" ColumnName="slot10_item_guid" />
  4217. <ScalarProperty Name="slot11_item_guid" ColumnName="slot11_item_guid" />
  4218. <ScalarProperty Name="slot12_item_guid" ColumnName="slot12_item_guid" />
  4219. <ScalarProperty Name="slot13_item_guid" ColumnName="slot13_item_guid" />
  4220. <ScalarProperty Name="slot14_item_guid" ColumnName="slot14_item_guid" />
  4221. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4222. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4223. </MappingFragment>
  4224. </EntityTypeMapping>
  4225. </EntitySetMapping>
  4226. <EntitySetMapping Name="t_social_group_basic">
  4227. <EntityTypeMapping TypeName="DataCenterModel.t_social_group_basic">
  4228. <MappingFragment StoreEntitySet="t_social_group_basic">
  4229. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  4230. <ScalarProperty Name="group_name" ColumnName="group_name" />
  4231. <ScalarProperty Name="group_type" ColumnName="group_type" />
  4232. <ScalarProperty Name="owner_guid" ColumnName="owner_guid" />
  4233. <ScalarProperty Name="owner_name" ColumnName="owner_name" />
  4234. <ScalarProperty Name="member_size" ColumnName="member_size" />
  4235. <ScalarProperty Name="manager_size" ColumnName="manager_size" />
  4236. <ScalarProperty Name="bulletin" ColumnName="bulletin" />
  4237. <ScalarProperty Name="join_rule" ColumnName="join_rule" />
  4238. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4239. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4240. </MappingFragment>
  4241. </EntityTypeMapping>
  4242. </EntitySetMapping>
  4243. <EntitySetMapping Name="t_social_group_manager">
  4244. <EntityTypeMapping TypeName="DataCenterModel.t_social_group_manager">
  4245. <MappingFragment StoreEntitySet="t_social_group_manager">
  4246. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  4247. <ScalarProperty Name="manager_guid" ColumnName="manager_guid" />
  4248. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4249. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4250. </MappingFragment>
  4251. </EntityTypeMapping>
  4252. </EntitySetMapping>
  4253. <EntitySetMapping Name="t_social_group_member">
  4254. <EntityTypeMapping TypeName="DataCenterModel.t_social_group_member">
  4255. <MappingFragment StoreEntitySet="t_social_group_member">
  4256. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  4257. <ScalarProperty Name="member_guid" ColumnName="member_guid" />
  4258. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4259. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4260. </MappingFragment>
  4261. </EntityTypeMapping>
  4262. </EntitySetMapping>
  4263. <EntitySetMapping Name="t_title_info">
  4264. <EntityTypeMapping TypeName="DataCenterModel.t_title_info">
  4265. <MappingFragment StoreEntitySet="t_title_info">
  4266. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4267. <ScalarProperty Name="title_id" ColumnName="title_id" />
  4268. <ScalarProperty Name="new_title" ColumnName="new_title" />
  4269. <ScalarProperty Name="valid_time" ColumnName="valid_time" />
  4270. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4271. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4272. </MappingFragment>
  4273. </EntityTypeMapping>
  4274. </EntitySetMapping>
  4275. <EntitySetMapping Name="t_tran_log">
  4276. <EntityTypeMapping TypeName="DataCenterModel.t_tran_log">
  4277. <MappingFragment StoreEntitySet="t_tran_log">
  4278. <ScalarProperty Name="tran_listid" ColumnName="tran_listid" />
  4279. <ScalarProperty Name="buyer_guid" ColumnName="buyer_guid" />
  4280. <ScalarProperty Name="buyer_account" ColumnName="buyer_account" />
  4281. <ScalarProperty Name="seller_guid" ColumnName="seller_guid" />
  4282. <ScalarProperty Name="seller_account" ColumnName="seller_account" />
  4283. <ScalarProperty Name="assets_type" ColumnName="assets_type" />
  4284. <ScalarProperty Name="pay_amount" ColumnName="pay_amount" />
  4285. <ScalarProperty Name="bill_listid" ColumnName="bill_listid" />
  4286. <ScalarProperty Name="ip" ColumnName="ip" />
  4287. <ScalarProperty Name="memo" ColumnName="memo" />
  4288. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4289. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4290. </MappingFragment>
  4291. </EntityTypeMapping>
  4292. </EntitySetMapping>
  4293. <EntitySetMapping Name="t_tutorial">
  4294. <EntityTypeMapping TypeName="DataCenterModel.t_tutorial">
  4295. <MappingFragment StoreEntitySet="t_tutorial">
  4296. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4297. <ScalarProperty Name="is_first_login" ColumnName="is_first_login" />
  4298. <ScalarProperty Name="close_beginner_map_guide" ColumnName="close_beginner_map_guide" />
  4299. <ScalarProperty Name="match_count" ColumnName="match_count" />
  4300. <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
  4301. <ScalarProperty Name="close_compound_hero_guide" ColumnName="close_compound_hero_guide" />
  4302. <ScalarProperty Name="gain_hero_pet_item" ColumnName="gain_hero_pet_item" />
  4303. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4304. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4305. </MappingFragment>
  4306. </EntityTypeMapping>
  4307. </EntitySetMapping>
  4308. <EntitySetMapping Name="t_tutorial_status_info">
  4309. <EntityTypeMapping TypeName="DataCenterModel.t_tutorial_status_info">
  4310. <MappingFragment StoreEntitySet="t_tutorial_status_info">
  4311. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4312. <ScalarProperty Name="beginner_map_win_count" ColumnName="beginner_map_win_count" />
  4313. <ScalarProperty Name="match_count" ColumnName="match_count" />
  4314. <ScalarProperty Name="quick_match_count" ColumnName="quick_match_count" />
  4315. <ScalarProperty Name="is_close_notify_tutorial" ColumnName="is_close_notify_tutorial" />
  4316. <ScalarProperty Name="is_close_notify_mini_tutorial" ColumnName="is_close_notify_mini_tutorial" />
  4317. <ScalarProperty Name="create_time" ColumnName="create_time" />
  4318. <ScalarProperty Name="modify_time" ColumnName="modify_time" />
  4319. </MappingFragment>
  4320. </EntityTypeMapping>
  4321. </EntitySetMapping>
  4322. <EntitySetMapping Name="t_world_character">
  4323. <EntityTypeMapping TypeName="DataCenterModel.t_world_character">
  4324. <MappingFragment StoreEntitySet="t_world_character">
  4325. <ScalarProperty Name="character_guid" ColumnName="character_guid" />
  4326. <ScalarProperty Name="group_guid" ColumnName="group_guid" />
  4327. <ScalarProperty Name="room_guid" ColumnName="room_guid" />
  4328. </MappingFragment>
  4329. </EntityTypeMapping>
  4330. </EntitySetMapping>
  4331. </EntityContainerMapping>
  4332. </Mapping>
  4333. </edmx:Mappings>
  4334. </edmx:Runtime>
  4335. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  4336. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  4337. <Connection>
  4338. <DesignerInfoPropertySet>
  4339. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  4340. </DesignerInfoPropertySet>
  4341. </Connection>
  4342. <Options>
  4343. <DesignerInfoPropertySet>
  4344. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  4345. <DesignerProperty Name="EnablePluralization" Value="False" />
  4346. <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
  4347. <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
  4348. </DesignerInfoPropertySet>
  4349. </Options>
  4350. <!-- Diagram content (shape and connector positions) -->
  4351. <Diagrams></Diagrams>
  4352. </Designer>
  4353. </edmx:Edmx>