| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?PowerDesigner AppLocale="UTF16" ID="{0DC17C57-98B2-486A-B9FB-1CD8E0108C69}" Label="" LastModificationDate="1528077199" Name="LogicalDataModel_1" Objects="150" Symbols="13" Type="{5F45F978-C4F3-4E35-A3FC-AF3318663A0F}" signature="LDM_DATA_MODEL_XML" version="16.5.0.3982"?>
- <!-- do not edit this file -->
- <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
- <o:RootObject Id="o1">
- <c:Children>
- <o:Model Id="o2">
- <a:ObjectID>0DC17C57-98B2-486A-B9FB-1CD8E0108C69</a:ObjectID>
- <a:Name>LogicalDataModel_1</a:Name>
- <a:Code>LogicalDataModel_1</a:Code>
- <a:CreationDate>1527821133</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:PackageOptionsText>[FolderOptions]
- [FolderOptions\Common]
- GenerationCheckModel=Yes
- GenerationPath=
- GenerationOptions=
- GenerationTasks=
- GenerationTargets=
- GenerationSelections=</a:PackageOptionsText>
- <a:ModelOptionsText>[ModelOptions]
- [ModelOptions\Logical options]
- CaseSensitive=No
- DisplayName=Yes
- EnableTrans=No
- UseTerm=No
- EnableRequirements=No
- EnableFullShortcut=No
- Notation=0
- RlshUnique=Yes
- DefaultDttp=
- DomnCopyDttp=Yes
- DomnCopyChck=No
- DomnCopyRule=No
- DomnCopyExat=No
- DomnCopyMand=No
- DttpFullName=Yes
- RlshMigrateDomain=Yes
- RlshMigrateCheck=Yes
- RlshMigrateRule=Yes
- RlshMigrateExtd=Yes
- RlshAllowNN=No
- RlshGenNN=Yes
- FKNameTemplate=%.3:PARENT%_%ATTRIBUTE%
- FKNameTemplateUsage=No
- RlshAsstTmpl=Each %Entity1.Name%[CRLF].if %Entity1ToEntity2RoleMandatory%[CRLF] must[CRLF].else[CRLF] may[CRLF].endif[CRLF].if %Entity1ToEntity2Role%[CRLF] %.L:Entity1ToEntity2Role%[CRLF].else[CRLF] have[CRLF].endif[CRLF].if %Entity1ToEntity2RoleMaximumCardinality%==1[CRLF].if %Entity1ToEntity2RoleMandatory%[CRLF] one and only one[CRLF].else[CRLF] at most one[CRLF].endif[CRLF].else[CRLF] one or more[CRLF].endif[CRLF].if %Entity1%==%Entity2%[CRLF] other[CRLF].endif[CRLF] %Entity2.Name%.[CRLF]Each %Entity2.Name%[CRLF].if %Entity2ToEntity1RoleMandatory%[CRLF] must[CRLF].else[CRLF] may[CRLF].endif[CRLF].if %Entity2ToEntity1Role%[CRLF] %.L:Entity2ToEntity1Role%[CRLF].else[CRLF] have[CRLF].endif[CRLF].if %Entity2ToEntity1RoleMaximumCardinality%==1[CRLF].if %Entity2ToEntity1RoleMandatory%[CRLF] one and only one[CRLF].else[CRLF] at most one[CRLF].endif[CRLF].else[CRLF] one or more[CRLF].endif[CRLF].if %Entity1%==%Entity2%[CRLF] other[CRLF].endif[CRLF] %Entity1.Name%.
- RlshAsstExt=
- [ModelOptions\Logical options\NamingOptionsTemplates]
- [ModelOptions\Logical options\ClssNamingOptions]
- [ModelOptions\Logical options\ClssNamingOptions\FILO]
- [ModelOptions\Logical options\ClssNamingOptions\FILO\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\FILO\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\FRMEOBJ]
- [ModelOptions\Logical options\ClssNamingOptions\FRMEOBJ\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\FRMEOBJ\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\FRMELNK]
- [ModelOptions\Logical options\ClssNamingOptions\FRMELNK\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\FRMELNK\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\DefaultClass]
- [ModelOptions\Logical options\ClssNamingOptions\DefaultClass\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\DefaultClass\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMPCKG]
- [ModelOptions\Logical options\ClssNamingOptions\LDMPCKG\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMPCKG\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMDOMN]
- [ModelOptions\Logical options\ClssNamingOptions\LDMDOMN\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMDOMN\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMENTT]
- [ModelOptions\Logical options\ClssNamingOptions\LDMENTT\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMENTT\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMPROP]
- [ModelOptions\Logical options\ClssNamingOptions\LDMPROP\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMPROP\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMIDTF]
- [ModelOptions\Logical options\ClssNamingOptions\LDMIDTF\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMIDTF\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMRLSH]
- [ModelOptions\Logical options\ClssNamingOptions\LDMRLSH\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMRLSH\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMINHR]
- [ModelOptions\Logical options\ClssNamingOptions\LDMINHR\Name]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Logical options\ClssNamingOptions\LDMINHR\Code]
- Template=
- MaxLen=254
- Case=M
- ValidChar=
- InvldChar=
- AllValid=Yes
- NoAccent=No
- DefaultChar=
- Script=
- ConvTable=
- ConvTablePath=%_HOME%\Resource Files\Conversion Tables
- [ModelOptions\Generate]
- [ModelOptions\Generate\Cdm]
- CheckModel=Yes
- SaveLinks=Yes
- NameToCode=No
- [ModelOptions\Generate\Pdm]
- CheckModel=Yes
- SaveLinks=Yes
- NameToCode=No
- BuildTrgr=No
- TablePrefix=
- IndxPKName=%TABLE%_PK
- IndxAKName=%TABLE%_AK
- IndxFKName=%REFR%_FK
- IndxThreshold=</a:ModelOptionsText>
- <c:LogicalDiagrams>
- <o:LogicalDiagram Id="o3">
- <a:ObjectID>BC3B6BB1-552A-44FB-81A3-64FCFB51692D</a:ObjectID>
- <a:Name>Diagram_1</a:Name>
- <a:Code>Diagram_1</a:Code>
- <a:CreationDate>1527821133</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DisplayPreferences>[DisplayPreferences]
- [DisplayPreferences\LDM]
- [DisplayPreferences\General]
- Adjust to text=Yes
- Snap Grid=No
- Constrain Labels=Yes
- Display Grid=No
- Show Page Delimiter=Yes
- Show Links intersections=No
- Activate automatic link routing=No
- Grid size=0
- Graphic unit=2
- Window color=255, 255, 255
- Background image=
- Background mode=8
- Watermark image=
- Watermark mode=8
- Show watermark on screen=No
- Gradient mode=0
- Gradient end color=255, 255, 255
- Show Swimlane=No
- SwimlaneVert=Yes
- TreeVert=No
- CompDark=0
- [DisplayPreferences\Object]
- Show Icon=No
- Mode=2
- Trunc Length=40
- Word Length=40
- Word Text=!"#$%&')*+,-./:;=>?@\]^_`|}~
- Shortcut IntIcon=Yes
- Shortcut IntLoct=Yes
- Shortcut IntFullPath=No
- Shortcut IntLastPackage=Yes
- Shortcut ExtIcon=Yes
- Shortcut ExtLoct=No
- Shortcut ExtFullPath=No
- Shortcut ExtLastPackage=Yes
- Shortcut ExtIncludeModl=Yes
- EObjShowStrn=Yes
- ExtendedObject.Comment=No
- ExtendedObject.IconPicture=No
- ExtendedObject.TextStyle=No
- ExtendedObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Object Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
- ELnkShowStrn=Yes
- ELnkShowName=Yes
- ExtendedLink_SymbolLayout=<Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Source" >[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] </Form>[CRLF]</Form>
- FileObject.Stereotype=No
- FileObject.DisplayName=Yes
- FileObject.LocationOrName=No
- FileObject.IconPicture=No
- FileObject.TextStyle=No
- FileObject.IconMode=Yes
- FileObject_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="Yes" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Location" Attribute="LocationOrName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
- Package.Stereotype=Yes
- Package.Comment=No
- Package.IconPicture=No
- Package.TextStyle=No
- Package_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
- Display Model Version=Yes
- Entity.Stereotype=Yes
- Entity.Attributes=Yes
- Entity.Attributes._Filter="All attributes" LDMPENTALL
- Entity.Attributes._Columns=Stereotype IdentifierIndicator DomainOrDataType NullIndicator
- Entity.Attributes._Limit=-5
- Entity.Identifiers=Yes
- Entity.Identifiers._Columns=Stereotype IdentifierIndicator
- Entity.Comment=No
- Entity.IconPicture=No
- Entity.TextStyle=No
- Entity_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardCollection Name="Attributes" Collection="Attributes" Columns="Stereotype No\r\nDisplayName Yes\r\nIdentifierIndicator No &quot;Identifier indicators&quot;\r\nDataType No\r\nDomainOrDataType No &quot;Domain or Data type&quot;\r\nDomain No\r\nNullIndicator No Mandatory" Filters="&quot;All attributes&quot; LDMPENTALL &quot;&quot;\r\n&quot;Primary attributes&quot; LDMPENTPK &quot;PIDTF \&quot;true\&quot; TRUE&quot;\r\n&quot;Identifying attributes&quot; LDMPENTIDTF &quot;AIDF \&quot;true\&quot; TRUE&quot;" HasLimit="Yes" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardCollection Name="Identifiers" Collection="Identifiers" Columns="Stereotype No\r\nDisplayName Yes\r\nIdentifierIndicator No &quot;Identifier indicators&quot;" HasLimit="No" HideEmpty="No" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Comment" Attribute="Comment" Prefix="" Suffix="" Alignment="LEFT" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
- Relationship.Entity1ToEntity2Role=Yes
- Relationship.Entity2ToEntity1RoleCardinality=No
- Relationship.Entity1ToEntity2RoleDominant=Yes
- Relationship.Stereotype=Yes
- Relationship.DisplayName=Yes
- Relationship.JoinExpression=No
- Relationship.Entity2ToEntity1Role=Yes
- Relationship.Entity1ToEntity2RoleCardinality=No
- Relationship.Entity2ToEntity1RoleDominant=Yes
- Relationship_SymbolLayout=<Form>[CRLF] <Form Name="Source" >[CRLF] <StandardAttribute Name="Role" Attribute="Entity1ToEntity2Role" Prefix="" Suffix="" Caption="Role" Mandatory="No" />[CRLF] <StandardAttribute Name="Cardinality" Attribute="Entity2ToEntity1RoleCardinality" Prefix="" Suffix="" Caption="Cardinality" Mandatory="No" />[CRLF] <StandardAttribute Name="Dominance" Attribute="Entity1ToEntity2RoleDominant" Prefix="" Suffix="" Caption="Dominance" Mandatory="No" />[CRLF] </Form>[CRLF] <Form Name="Center" >[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Caption="" Mandatory="No" />[CRLF] <ExclusiveChoice Name="Exclusive Choice" Mandatory="No" Display="HorizontalRadios" >[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Join" Attribute="JoinExpression" Prefix="" Suffix="" Caption="Join" Mandatory="No" />[CRLF] </ExclusiveChoice>[CRLF] </Form>[CRLF] <Form Name="Destination" >[CRLF] <StandardAttribute Name="Role" Attribute="Entity2ToEntity1Role" Prefix="" Suffix="" Caption="Role" Mandatory="No" />[CRLF] <StandardAttribute Name="Cardinality" Attribute="Entity1ToEntity2RoleCardinality" Prefix="" Suffix="" Caption="Cardinality" Mandatory="No" />[CRLF] <StandardAttribute Name="Dominance" Attribute="Entity2ToEntity1RoleDominant" Prefix="" Suffix="" Caption="Dominance" Mandatory="No" />[CRLF] </Form>[CRLF]</Form>
- Inheritance.Stereotype=Yes
- Inheritance.DisplayName=Yes
- Inheritance.IconPicture=No
- Inheritance.TextStyle=No
- Inheritance_SymbolLayout=<Form>[CRLF] <StandardAttribute Name="Stereotype" Attribute="Stereotype" Prefix="&lt;&lt;" Suffix="&gt;&gt;" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <StandardAttribute Name="Name" Attribute="DisplayName" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="No" />[CRLF] <Separator Name="Separator" />[CRLF] <StandardAttribute Name="Icon" Attribute="IconPicture" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF] <StandardAttribute Name="Force top align" Attribute="TextStyle" Prefix="" Suffix="" Alignment="CNTR" Caption="" Mandatory="Yes" />[CRLF]</Form>
- [DisplayPreferences\Symbol]
- [DisplayPreferences\Symbol\FRMEOBJ]
- STRNFont=新宋体,8,N
- STRNFont color=0, 0, 0
- DISPNAMEFont=新宋体,8,N
- DISPNAMEFont color=0, 0, 0
- LABLFont=新宋体,8,N
- LABLFont color=0, 0, 0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Width=6000
- Height=2000
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=6
- Brush bitmap mode=12
- Brush gradient mode=64
- Brush gradient color=192 192 192
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 255 128 128
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\FRMELNK]
- CENTERFont=新宋体,8,N
- CENTERFont color=0, 0, 0
- Line style=1
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 128 128 255
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\FILO]
- OBJSTRNFont=新宋体,8,N
- OBJSTRNFont color=0, 0, 0
- DISPNAMEFont=新宋体,8,N
- DISPNAMEFont color=0, 0, 0
- LCNMFont=新宋体,8,N
- LCNMFont color=0, 0, 0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Width=4800
- Height=3600
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 0 0 255
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\LDMPCKG]
- STRNFont=新宋体,8,N
- STRNFont color=0, 0, 0
- DISPNAMEFont=新宋体,8,N
- DISPNAMEFont color=0, 0, 0
- LABLFont=新宋体,8,N
- LABLFont color=0, 0, 0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Width=4800
- Height=4000
- Brush color=255 255 192
- Fill Color=Yes
- Brush style=6
- Brush bitmap mode=12
- Brush gradient mode=65
- Brush gradient color=255 255 255
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 178 178 178
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\LDMENTT]
- STRNFont=新宋体,8,N
- STRNFont color=0, 0, 0
- DISPNAMEFont=新宋体,8,N
- DISPNAMEFont color=0, 0, 0
- AttributesFont=新宋体,8,N
- AttributesFont color=0, 0, 0
- EntityPrimaryAttributeFont=新宋体,8,U
- EntityPrimaryAttributeFont color=0, 0, 0
- EntityForeignAttributeFont=新宋体,8,N
- EntityForeignAttributeFont color=0, 0, 0
- IdentifiersFont=新宋体,8,N
- IdentifiersFont color=0, 0, 0
- LABLFont=新宋体,8,N
- LABLFont color=0, 0, 0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Width=4800
- Height=4000
- Brush color=176 186 255
- Fill Color=Yes
- Brush style=6
- Brush bitmap mode=12
- Brush gradient mode=65
- Brush gradient color=255 255 255
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 88 74 181
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\LDMRLSH]
- SOURCEFont=新宋体,8,N
- SOURCEFont color=0, 0, 0
- CENTERFont=新宋体,8,N
- CENTERFont color=0, 0, 0
- DESTINATIONFont=新宋体,8,N
- DESTINATIONFont color=0, 0, 0
- Line style=1
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 88 74 181
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\LDMINHR]
- STRNFont=新宋体,8,N
- STRNFont color=0, 0, 0
- DISPNAMEFont=新宋体,8,N
- DISPNAMEFont color=0, 0, 0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=Yes
- Width=1600
- Height=1000
- Brush color=176 186 255
- Fill Color=Yes
- Brush style=6
- Brush bitmap mode=12
- Brush gradient mode=65
- Brush gradient color=255 255 255
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 128 128 255
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\LDMLINH]
- CENTERFont=新宋体,8,N
- CENTERFont color=0, 0, 0
- Line style=1
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 128 128 255
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\USRDEPD]
- OBJXSTRFont=新宋体,8,N
- OBJXSTRFont color=0, 0, 0
- Line style=1
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=2 0 128 128 255
- Shadow color=192 192 192
- Shadow=0
- [DisplayPreferences\Symbol\Free Symbol]
- Free TextFont=新宋体,8,N
- Free TextFont color=0, 0, 0
- Line style=0
- AutoAdjustToText=Yes
- Keep aspect=No
- Keep center=No
- Keep size=No
- Brush color=255 255 255
- Fill Color=Yes
- Brush style=1
- Brush bitmap mode=12
- Brush gradient mode=0
- Brush gradient color=118 118 118
- Brush background image=
- Custom shape=
- Custom text mode=0
- Pen=1 0 0 0 255
- Shadow color=192 192 192
- Shadow=0</a:DisplayPreferences>
- <a:PaperSize>(8268, 11693)</a:PaperSize>
- <a:PageMargins>((315,354), (433,354))</a:PageMargins>
- <a:PageOrientation>1</a:PageOrientation>
- <a:PaperSource>15</a:PaperSource>
- <c:Symbols>
- <o:PolylineSymbol Id="o4">
- <a:CreationDate>1527835360</a:CreationDate>
- <a:ModificationDate>1527835363</a:ModificationDate>
- <a:Rect>((-12076,10346), (-5251,10446))</a:Rect>
- <a:ListOfPoints>((-12076,10346),(-5251,10346))</a:ListOfPoints>
- <a:TextStyle>4130</a:TextStyle>
- <a:ArrowStyle>0</a:ArrowStyle>
- <a:LineColor>16711680</a:LineColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontName>新宋体,8,N</a:FontName>
- </o:PolylineSymbol>
- <o:PolylineSymbol Id="o5">
- <a:CreationDate>1527841222</a:CreationDate>
- <a:ModificationDate>1527841222</a:ModificationDate>
- <a:Rect>((1499,-4825), (10799,4400))</a:Rect>
- <a:ListOfPoints>((1499,4400),(1574,-4825),(1574,-4825),(10499,-4750),(10799,-4750))</a:ListOfPoints>
- <a:TextStyle>4130</a:TextStyle>
- <a:ArrowStyle>0</a:ArrowStyle>
- <a:LineColor>16711680</a:LineColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontName>新宋体,8,N</a:FontName>
- </o:PolylineSymbol>
- <o:PolylineSymbol Id="o6">
- <a:CreationDate>1527842624</a:CreationDate>
- <a:ModificationDate>1527842624</a:ModificationDate>
- <a:Rect>((-9301,-4700), (-2626,4750))</a:Rect>
- <a:ListOfPoints>((-2626,4750),(-2626,-4700),(-9301,-4700))</a:ListOfPoints>
- <a:TextStyle>4130</a:TextStyle>
- <a:ArrowStyle>0</a:ArrowStyle>
- <a:LineColor>16711680</a:LineColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontName>新宋体,8,N</a:FontName>
- </o:PolylineSymbol>
- <o:PolylineSymbol Id="o7">
- <a:CreationDate>1527845437</a:CreationDate>
- <a:ModificationDate>1527845437</a:ModificationDate>
- <a:Rect>((-9826,-14847), (-526,4878))</a:Rect>
- <a:ListOfPoints>((-9826,-14847),(-526,-14847),(-751,4878))</a:ListOfPoints>
- <a:TextStyle>4130</a:TextStyle>
- <a:ArrowStyle>0</a:ArrowStyle>
- <a:LineColor>16711680</a:LineColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontName>新宋体,8,N</a:FontName>
- </o:PolylineSymbol>
- <o:PolylineSymbol Id="o8">
- <a:CreationDate>1527846657</a:CreationDate>
- <a:ModificationDate>1527846657</a:ModificationDate>
- <a:Rect>((-10051,-19891), (1349,-19741))</a:Rect>
- <a:ListOfPoints>((-10051,-19891),(1349,-19741))</a:ListOfPoints>
- <a:TextStyle>4130</a:TextStyle>
- <a:ArrowStyle>0</a:ArrowStyle>
- <a:LineColor>16711680</a:LineColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontName>新宋体,8,N</a:FontName>
- </o:PolylineSymbol>
- <o:EntitySymbol Id="o9">
- <a:CreationDate>1527821197</a:CreationDate>
- <a:ModificationDate>1527823354</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-24750,4296), (-12152,14796))</a:Rect>
- <a:AutoAdjustToText>0</a:AutoAdjustToText>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <a:ManuallyResized>1</a:ManuallyResized>
- <c:Object>
- <o:Entity Ref="o10"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o11">
- <a:CreationDate>1527823311</a:CreationDate>
- <a:ModificationDate>1527834446</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-9399,1498), (14495,18596))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o12"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o13">
- <a:CreationDate>1527835401</a:CreationDate>
- <a:ModificationDate>1527841193</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((10642,-8176), (24154,-978))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o14"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o15">
- <a:CreationDate>1527839688</a:CreationDate>
- <a:ModificationDate>1527842608</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-24292,-7972), (-9914,-1674))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o16"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o17">
- <a:CreationDate>1527842745</a:CreationDate>
- <a:ModificationDate>1527845862</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-28109,-23160), (-5945,-13262))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o18"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o19">
- <a:CreationDate>1527846049</a:CreationDate>
- <a:ModificationDate>1527846651</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((1476,-24793), (14124,-14895))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o20"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o21">
- <a:CreationDate>1528076759</a:CreationDate>
- <a:ModificationDate>1528076835</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-9909,-38791), (9907,-29793))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o22"/>
- </c:Object>
- </o:EntitySymbol>
- <o:EntitySymbol Id="o23">
- <a:CreationDate>1528076923</a:CreationDate>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:IconMode>-1</a:IconMode>
- <a:Rect>((-6664,-53687), (6662,-43789))</a:Rect>
- <a:LineColor>11881048</a:LineColor>
- <a:FillColor>16759472</a:FillColor>
- <a:ShadowColor>12632256</a:ShadowColor>
- <a:FontList>STRN 0 新宋体,8,N
- DISPNAME 0 新宋体,8,N
- Attributes 0 新宋体,8,N
- EntityPrimaryAttribute 0 新宋体,8,U
- EntityForeignAttribute 0 新宋体,8,N
- Identifiers 0 新宋体,8,N
- LABL 0 新宋体,8,N</a:FontList>
- <a:BrushStyle>6</a:BrushStyle>
- <a:GradientFillMode>65</a:GradientFillMode>
- <a:GradientEndColor>16777215</a:GradientEndColor>
- <c:Object>
- <o:Entity Ref="o24"/>
- </c:Object>
- </o:EntitySymbol>
- </c:Symbols>
- </o:LogicalDiagram>
- </c:LogicalDiagrams>
- <c:DefaultDiagram>
- <o:LogicalDiagram Ref="o3"/>
- </c:DefaultDiagram>
- <c:Entities>
- <o:Entity Id="o10">
- <a:ObjectID>169AD4E4-1D65-4070-8315-6E15CDE0E6D3</a:ObjectID>
- <a:Name>t_data_connectors</a:Name>
- <a:Code>t_data_connectors</a:Code>
- <a:CreationDate>1527821197</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528073427</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>数据接口表</a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o25">
- <a:ObjectID>0BC9C204-186E-47DA-9E93-F05ED8224B91</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527822849</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527822851</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o26"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o25"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o26">
- <a:ObjectID>AC04FFE9-56B5-477E-BDAB-BBB53DA3F290</a:ObjectID>
- <a:Name>id</a:Name>
- <a:Code>id</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527822851</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o27">
- <a:ObjectID>B65F91E7-BB2D-4EDD-80AC-361B2F14721E</a:ObjectID>
- <a:Name>name</a:Name>
- <a:Code>name</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527822643</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:Comment>名称
- </a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o28">
- <a:ObjectID>C6681582-5EFF-4E5E-8371-546EB380903C</a:ObjectID>
- <a:Name>explain</a:Name>
- <a:Code>explain</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527822591</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:Comment>数据说明</a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o29">
- <a:ObjectID>C1FB6992-ECF8-4CCD-BC3B-3E14B6709259</a:ObjectID>
- <a:Name>configuration</a:Name>
- <a:Code>configuration</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527822846</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:Comment>配置信息</a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o30">
- <a:ObjectID>12B0FEFF-5824-4EA7-B017-3E3E82ADEEE9</a:ObjectID>
- <a:Name>created_by</a:Name>
- <a:Code>created_by</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077075</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>创建人
- </a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o31">
- <a:ObjectID>1ED13169-2A00-40F7-8394-EAEFB4581396</a:ObjectID>
- <a:Name>create_time</a:Name>
- <a:Code>create_time</a:Code>
- <a:CreationDate>1527821255</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527823005</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:Comment>创建时间</a:Comment>
- <a:DataType>DT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o32">
- <a:ObjectID>E2E43095-76EB-463E-A6C3-1C022756CCF3</a:ObjectID>
- <a:Name>update_time</a:Name>
- <a:Code>update_time</a:Code>
- <a:CreationDate>1527823070</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077117</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>DT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o12">
- <a:ObjectID>CF0A9A80-4F92-4DC8-9D44-F4FABC289C3C</a:ObjectID>
- <a:Name>t_charts</a:Name>
- <a:Code>t_charts</a:Code>
- <a:CreationDate>1527823311</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077097</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>图表</a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o33">
- <a:ObjectID>25B7501F-2256-4108-BD35-6B18A64E2EFD</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527832873</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527832877</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o34"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o33"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o34">
- <a:ObjectID>15AFA95E-322A-4237-8C08-9E16107B395E</a:ObjectID>
- <a:Name>id</a:Name>
- <a:Code>id</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528073657</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o35">
- <a:ObjectID>6ABA17D6-0E35-46F0-8E7A-F02596A93012</a:ObjectID>
- <a:Name>title</a:Name>
- <a:Code>title</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>图表名称</a:Comment>
- <a:DataType>varchar</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o36">
- <a:ObjectID>38D2F12D-30EC-4635-AAEA-3C0BDC1009A4</a:ObjectID>
- <a:Name>subtitle</a:Name>
- <a:Code>subtitle</a:Code>
- <a:CreationDate>1528073657</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528073960</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>varchat</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o37">
- <a:ObjectID>B6F4E15D-6531-4F3D-9F97-09B683BB1806</a:ObjectID>
- <a:Name>access_permission</a:Name>
- <a:Code>access_permission</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528073590</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>访问权限</a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o38">
- <a:ObjectID>95C09A39-C71B-4D46-BC96-578FC2E4CACD</a:ObjectID>
- <a:Name>edit_permission</a:Name>
- <a:Code>edit_permission</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528073636</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>编辑权限</a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o39">
- <a:ObjectID>C8D1CE0D-FB8D-4CA9-85E5-0E0B28B74A2F</a:ObjectID>
- <a:Name>data_connector</a:Name>
- <a:Code>data_connector</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528073590</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>数据源</a:Comment>
- <a:DataType>varchar</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o40">
- <a:ObjectID>E39FC86E-F89E-41BF-9E26-C370DF8CD36F</a:ObjectID>
- <a:Name>time_span</a:Name>
- <a:Code>time_span</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>时间跨度
- </a:Comment>
- <a:DataType>VA100</a:DataType>
- <a:Length>100</a:Length>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o41">
- <a:ObjectID>62AEC68F-37E1-4991-AA10-B6DD5FFB9D09</a:ObjectID>
- <a:Name>filter</a:Name>
- <a:Code>filter</a:Code>
- <a:CreationDate>1528073657</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>VA1024</a:DataType>
- <a:Length>1024</a:Length>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o42">
- <a:ObjectID>6B5F44E6-6BD1-47B0-A082-84D7AE29B5CF</a:ObjectID>
- <a:Name>visualization</a:Name>
- <a:Code>visualization</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074335</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>筛选条件</a:Comment>
- <a:DataType>VA30</a:DataType>
- <a:Length>30</a:Length>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o43">
- <a:ObjectID>815B956D-3FC6-4344-970C-FC924E70C4BC</a:ObjectID>
- <a:Name>legend</a:Name>
- <a:Code>legend</a:Code>
- <a:CreationDate>1528074338</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>BL</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o44">
- <a:ObjectID>ED8691BC-0BA3-45F0-9DEB-85841D796023</a:ObjectID>
- <a:Name>tooltip</a:Name>
- <a:Code>tooltip</a:Code>
- <a:CreationDate>1528074338</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>BL</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o45">
- <a:ObjectID>5EF5B4B8-7236-4E0D-913D-C3DA795B4C99</a:ObjectID>
- <a:Name>datazoom</a:Name>
- <a:Code>datazoom</a:Code>
- <a:CreationDate>1528074338</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>BL</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o46">
- <a:ObjectID>81B0434B-CCD4-4329-8BAD-29CF0EB0EE4F</a:ObjectID>
- <a:Name>toolbox</a:Name>
- <a:Code>toolbox</a:Code>
- <a:CreationDate>1528073964</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528074644</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>BL</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o47">
- <a:ObjectID>EBE5A8B9-C283-4963-83C9-ED244EDC93E4</a:ObjectID>
- <a:Name>created_by</a:Name>
- <a:Code>created_by</a:Code>
- <a:CreationDate>1528077078</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077097</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o48">
- <a:ObjectID>36180F2D-FE56-4BC2-A175-60DF8EB15780</a:ObjectID>
- <a:Name>create_time</a:Name>
- <a:Code>create_time</a:Code>
- <a:CreationDate>1527823452</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>创建时间</a:Comment>
- <a:DataType>DT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o49">
- <a:ObjectID>53691C1D-B934-4946-B164-90C83D4AA407</a:ObjectID>
- <a:Name>update_time</a:Name>
- <a:Code>update_time</a:Code>
- <a:CreationDate>1527833564</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074631</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>更新时间</a:Comment>
- <a:DataType>DT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o14">
- <a:ObjectID>61A87F68-A4E0-411A-B718-36F3C9E1034A</a:ObjectID>
- <a:Name>t_aggregate_tables</a:Name>
- <a:Code>t_aggregate_tables</a:Code>
- <a:CreationDate>1527835401</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076603</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>总体统计数据表</a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o50">
- <a:ObjectID>02977E30-17F7-4087-9696-071E044F1DB2</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527840232</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527840234</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o51"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o50"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o51">
- <a:ObjectID>9BCF554D-F04D-42B4-AC44-3F548BB22FC9</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1527840221</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527841358</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o52">
- <a:ObjectID>17DACC85-E63B-4436-8C66-06FDBFAB867B</a:ObjectID>
- <a:Name>bucketization</a:Name>
- <a:Code>bucketization</a:Code>
- <a:CreationDate>1527842981</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076186</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>平均分成多少块</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o53">
- <a:ObjectID>81EBE57D-9968-4F35-B90C-03EB4E4EEACD</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>subsection</a:Code>
- <a:CreationDate>1527835739</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074931</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>分段</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o54">
- <a:ObjectID>EC21F104-89E2-4836-8275-92F19DA5D159</a:ObjectID>
- <a:Name>aggregate_stats</a:Name>
- <a:Code>aggregate_stats</a:Code>
- <a:CreationDate>1527835739</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528074931</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>分组
- </a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o55">
- <a:ObjectID>BF16FA3B-1D33-4913-9AC8-B826F9C06CBE</a:ObjectID>
- <a:Name>validator</a:Name>
- <a:Code>validator</a:Code>
- <a:CreationDate>1528076176</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528076186</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o16">
- <a:ObjectID>684BA955-329F-4611-B841-344CD60DB04E</a:ObjectID>
- <a:Name>t_data_view</a:Name>
- <a:Code>t_data_view</a:Code>
- <a:CreationDate>1527839688</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076650</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>个体统计数据表</a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o56">
- <a:ObjectID>9B59935B-76E9-442C-9872-67B0C255166A</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527841524</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527841530</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o57"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o56"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o57">
- <a:ObjectID>695E14BA-F750-4520-AD85-E8BB52BCB8A1</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1527839746</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527841530</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o58">
- <a:ObjectID>1C042355-3406-4913-A8DC-F234B63B14ED</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>group_by</a:Code>
- <a:CreationDate>1527841896</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077130</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>分段</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o59">
- <a:ObjectID>27436F23-32CB-4C7C-BBF1-FEDE17AA266C</a:ObjectID>
- <a:Name>sort_by</a:Name>
- <a:Code>sort_by</a:Code>
- <a:CreationDate>1527841532</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077130</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o60">
- <a:ObjectID>2E60761B-8305-421A-8B5C-7A966A864DE7</a:ObjectID>
- <a:Name>data_view_columns</a:Name>
- <a:Code>data_view_columns</a:Code>
- <a:CreationDate>1527843052</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528075088</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>平均分为多少块</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o18">
- <a:ObjectID>7354782B-381D-4CA5-9741-447DACF65005</a:ObjectID>
- <a:Name>t_line_charts</a:Name>
- <a:Code>t_line_charts</a:Code>
- <a:CreationDate>1527842745</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076715</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>折线图
- </a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o61">
- <a:ObjectID>AE45185E-22C0-4313-9637-83D77686FF77</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527842899</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527842903</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o62"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o61"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o62">
- <a:ObjectID>83C3F2E8-6DB3-4336-83FC-10770E7869F3</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1527842840</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527842903</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o63">
- <a:ObjectID>FB6416D0-8EA5-4ED4-B2E9-E5F00A254655</a:ObjectID>
- <a:Name>bucketization</a:Name>
- <a:Code>bucketization</a:Code>
- <a:CreationDate>1528076358</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o64">
- <a:ObjectID>E8D6CA26-9B95-4976-93BF-E8C695D8AA86</a:ObjectID>
- <a:Name>count_columns</a:Name>
- <a:Code>count_columns</a:Code>
- <a:CreationDate>1527843122</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>平均分为多少段</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o65">
- <a:ObjectID>98FF5DD0-0D02-4B5B-B0DD-4D53331FD43A</a:ObjectID>
- <a:Name>sum_columns</a:Name>
- <a:Code>sum_columns</a:Code>
- <a:CreationDate>1527843157</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>分段</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o66">
- <a:ObjectID>62053476-1B14-4AC4-8409-F9005A252C4F</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>group_by</a:Code>
- <a:CreationDate>1527846009</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>类型</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o67">
- <a:ObjectID>934A5772-C5DA-4312-B6D6-457EDB5DF396</a:ObjectID>
- <a:Name>validator</a:Name>
- <a:Code>validator</a:Code>
- <a:CreationDate>1528076204</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o68">
- <a:ObjectID>D2F6BE5D-1297-4EA9-95A9-FB97D2F5FDA2</a:ObjectID>
- <a:Name>x_axis</a:Name>
- <a:Code>x_axis</a:Code>
- <a:CreationDate>1527844876</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528077151</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>X轴</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o69">
- <a:ObjectID>E62C6BB4-DBD2-4362-B257-91770201A1E5</a:ObjectID>
- <a:Name>y_axis</a:Name>
- <a:Code>y_axis</a:Code>
- <a:CreationDate>1527844927</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076257</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>VA1024</a:DataType>
- <a:Length>1024</a:Length>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o20">
- <a:ObjectID>4AB5787F-98B5-4563-B184-16A4E7D943DE</a:ObjectID>
- <a:Name>t_bar_charts</a:Name>
- <a:Code>t_bar_charts</a:Code>
- <a:CreationDate>1527846049</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076334</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>柱状图
- </a:Comment>
- <c:Identifiers>
- <o:Identifier Id="o70">
- <a:ObjectID>0BC811BC-9AC5-4D63-AC30-9B08E23A217B</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1527846115</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1527846118</a:ModificationDate>
- <a:Modifier>Administrator</a:Modifier>
- <c:Identifier.Attributes>
- <o:EntityAttribute Ref="o71"/>
- </c:Identifier.Attributes>
- </o:Identifier>
- </c:Identifiers>
- <c:PrimaryIdentifier>
- <o:Identifier Ref="o70"/>
- </c:PrimaryIdentifier>
- <c:Attributes>
- <o:EntityAttribute Id="o71">
- <a:ObjectID>ABFD51D9-3BBB-4D3A-8D11-EF44C7630207</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1527846091</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528075436</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>int</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o72">
- <a:ObjectID>F9AFFA76-6B33-4CCC-8F4A-F6B259C9BA79</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>group_by</a:Code>
- <a:CreationDate>1527846202</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076154</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>类型</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o73">
- <a:ObjectID>03E145F6-5E3D-43DC-A40B-4923EB355BB4</a:ObjectID>
- <a:Name>bucketization</a:Name>
- <a:Code>bucketization</a:Code>
- <a:CreationDate>1528076265</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077042</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o74">
- <a:ObjectID>A0B09FEE-6C07-4AD6-8CA8-803A97903006</a:ObjectID>
- <a:Name>count_columns</a:Name>
- <a:Code>count_columns</a:Code>
- <a:CreationDate>1527846528</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076128</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:Comment>系列名称</a:Comment>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o75">
- <a:ObjectID>09C68D13-52E1-4F42-951B-9C8E3D549438</a:ObjectID>
- <a:Name>sum_columns</a:Name>
- <a:Code>sum_columns</a:Code>
- <a:CreationDate>1527846582</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076128</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o76">
- <a:ObjectID>21E21BA7-3F2D-40A3-9CE1-A67EB145956B</a:ObjectID>
- <a:Name>x_axis</a:Name>
- <a:Code>x_axis</a:Code>
- <a:CreationDate>1527846626</a:CreationDate>
- <a:Creator>Administrator</a:Creator>
- <a:ModificationDate>1528076154</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o77">
- <a:ObjectID>B575E93E-A69C-4BCB-8BC5-8C36335F3320</a:ObjectID>
- <a:Name>y_axis</a:Name>
- <a:Code>y_axis</a:Code>
- <a:CreationDate>1528075450</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528076154</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o78">
- <a:ObjectID>E9E652DA-9F5F-4D49-BE43-7DF7D82D259E</a:ObjectID>
- <a:Name>validator</a:Name>
- <a:Code>validator</a:Code>
- <a:CreationDate>1528075508</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528076154</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o22">
- <a:ObjectID>F1B377ED-8795-4D5A-8134-18A88FA9EA07</a:ObjectID>
- <a:Name>t_pie_charts</a:Name>
- <a:Code>t_pie_charts</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <c:Identifiers>
- <o:Identifier Id="o79">
- <a:ObjectID>E88B6FE9-E9C8-4020-B018-4328A5D809D7</a:ObjectID>
- <a:Name>Identifier_1</a:Name>
- <a:Code>Identifier_1</a:Code>
- <a:CreationDate>1528076880</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528076913</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:Identifier>
- </c:Identifiers>
- <c:Attributes>
- <o:EntityAttribute Id="o80">
- <a:ObjectID>2B564E92-76B3-4AA6-8366-BA9D39D523E7</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>I</a:DataType>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o81">
- <a:ObjectID>672F4971-ABCE-40F6-AF4A-2EB15FE869C5</a:ObjectID>
- <a:Name>bucketization</a:Name>
- <a:Code>bucketization</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o82">
- <a:ObjectID>3DFDEAA1-976E-48DD-B100-78F12CE499B2</a:ObjectID>
- <a:Name>count_columns</a:Name>
- <a:Code>count_columns</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o83">
- <a:ObjectID>F516815F-27C4-44C0-AE8D-07ABF9B73640</a:ObjectID>
- <a:Name>sum_columns</a:Name>
- <a:Code>sum_columns</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o84">
- <a:ObjectID>3B87A7BB-5D50-4323-A139-CCE6E27987E2</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>group_by</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o85">
- <a:ObjectID>9BBD7E0B-8F35-4D39-8EDA-49B2A383D426</a:ObjectID>
- <a:Name>section_index</a:Name>
- <a:Code>section_index</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>VA1024</a:DataType>
- <a:Length>1024</a:Length>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o86">
- <a:ObjectID>6CCF7244-4B55-43F2-81A2-6A8133946C60</a:ObjectID>
- <a:Name>validator</a:Name>
- <a:Code>validator</a:Code>
- <a:CreationDate>1528076759</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077193</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:DataType>TXT</a:DataType>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- <o:Entity Id="o24">
- <a:ObjectID>9B925081-0701-4518-AF30-57D137A10EB1</a:ObjectID>
- <a:Name>t_scatter_plots</a:Name>
- <a:Code>t_scatter_plots</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <c:Attributes>
- <o:EntityAttribute Id="o87">
- <a:ObjectID>EF37B124-2654-49FC-A698-F5E38D245645</a:ObjectID>
- <a:Name>chart_id</a:Name>
- <a:Code>chart_id</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077199</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- <a:LogicalAttribute.Mandatory>1</a:LogicalAttribute.Mandatory>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o88">
- <a:ObjectID>CC21DD13-0C51-4CCD-AF32-81598E07962B</a:ObjectID>
- <a:Name>bucketization</a:Name>
- <a:Code>bucketization</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o89">
- <a:ObjectID>50EC244A-F61B-4E0A-8E1F-50EE429CF6DA</a:ObjectID>
- <a:Name>count_columns</a:Name>
- <a:Code>count_columns</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o90">
- <a:ObjectID>D3870A84-9863-455E-BE43-02BBABB9836E</a:ObjectID>
- <a:Name>sum_columns</a:Name>
- <a:Code>sum_columns</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o91">
- <a:ObjectID>E1B4ADB2-8BC9-49BE-BD19-524109243BA6</a:ObjectID>
- <a:Name>group_by</a:Name>
- <a:Code>group_by</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o92">
- <a:ObjectID>008936AD-DFA1-4E34-B79E-E3D47C8907E7</a:ObjectID>
- <a:Name>x_axis</a:Name>
- <a:Code>x_axis</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o93">
- <a:ObjectID>9EA09765-34A9-4A81-8235-69B8308A0C56</a:ObjectID>
- <a:Name>y_axis</a:Name>
- <a:Code>y_axis</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- <o:EntityAttribute Id="o94">
- <a:ObjectID>DB7930CE-4ED6-4C5F-A366-2ACE356BAE10</a:ObjectID>
- <a:Name>validator</a:Name>
- <a:Code>validator</a:Code>
- <a:CreationDate>1528076923</a:CreationDate>
- <a:Creator>USOFT</a:Creator>
- <a:ModificationDate>1528077008</a:ModificationDate>
- <a:Modifier>USOFT</a:Modifier>
- </o:EntityAttribute>
- </c:Attributes>
- </o:Entity>
- </c:Entities>
- </o:Model>
- </c:Children>
- </o:RootObject>
- </Model>
|