UserCenter.pdm 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?PowerDesigner AppLocale="UTF16" ID="{014BE3AE-2437-44DB-BB46-4192DD1F6613}" Label="" LastModificationDate="1591255862" Name="UserCenter" Objects="118" Symbols="3" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
  3. <!-- do not edit this file -->
  4. <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
  5. <o:RootObject Id="o1">
  6. <c:Children>
  7. <o:Model Id="o2">
  8. <a:ObjectID>014BE3AE-2437-44DB-BB46-4192DD1F6613</a:ObjectID>
  9. <a:Name>UserCenter</a:Name>
  10. <a:Code>UserCenter</a:Code>
  11. <a:CreationDate>1590998099</a:CreationDate>
  12. <a:Creator>Administrator</a:Creator>
  13. <a:ModificationDate>1591255817</a:ModificationDate>
  14. <a:Modifier>Administrator</a:Modifier>
  15. <a:PackageOptionsText>[FolderOptions]
  16. [FolderOptions\Physical Objects]
  17. GenerationCheckModel=Yes
  18. GenerationPath=
  19. GenerationOptions=
  20. GenerationTasks=
  21. GenerationTargets=
  22. GenerationSelections=
  23. RevPkey=Yes
  24. RevFkey=Yes
  25. RevAkey=Yes
  26. RevCheck=Yes
  27. RevIndx=Yes
  28. RevOpts=Yes
  29. RevViewAsTabl=No
  30. RevViewOpts=Yes
  31. RevSystAsTabl=Yes
  32. RevTablPerm=No
  33. RevViewPerm=No
  34. RevProcPerm=No
  35. RevDbpkPerm=No
  36. RevSqncPerm=No
  37. RevAdtPerm=No
  38. RevUserPriv=No
  39. RevUserOpts=No
  40. RevGrpePriv=No
  41. RevRolePriv=No
  42. RevDtbsOpts=Yes
  43. RevDtbsPerm=No
  44. RevViewIndx=Yes
  45. RevJidxOpts=Yes
  46. RevStats=No
  47. RevTspcPerm=No
  48. RevCaseSensitive=No
  49. GenTrgrStdMsg=Yes
  50. GenTrgrMsgTab=
  51. GenTrgrMsgNo=
  52. GenTrgrMsgTxt=
  53. TrgrPreserve=No
  54. TrgrIns=Yes
  55. TrgrUpd=Yes
  56. TrgrDel=Yes
  57. TrgrC2Ins=Yes
  58. TrgrC2Upd=Yes
  59. TrgrC3=Yes
  60. TrgrC4=Yes
  61. TrgrC5=Yes
  62. TrgrC6=Yes
  63. TrgrC7=Yes
  64. TrgrC8=Yes
  65. TrgrC9=Yes
  66. TrgrC10=Yes
  67. TrgrC11=Yes
  68. TrgrC1=Yes
  69. TrgrC12Ins=Yes
  70. TrgrC12Upd=Yes
  71. TrgrC13=Yes
  72. UpdateTableStatistics=Yes
  73. UpdateColumnStatistics=Yes
  74. [FolderOptions\Physical Objects\Database Generation]
  75. GenScriptName=crebas
  76. GenScriptName0=
  77. GenScriptName1=
  78. GenScriptName2=
  79. GenScriptName3=
  80. GenScriptName4=
  81. GenScriptName5=
  82. GenScriptName6=
  83. GenScriptName7=
  84. GenScriptName8=
  85. GenScriptName9=
  86. GenPathName=
  87. GenSingleFile=Yes
  88. GenODBC=No
  89. GenCheckModel=Yes
  90. GenScriptPrev=Yes
  91. GenArchiveModel=No
  92. GenUseSync=No
  93. GenSyncChoice=0
  94. GenSyncArch=
  95. GenSyncRmg=0
  96. [FolderOptions\Physical Objects\Database Generation\Format]
  97. GenScriptTitle=Yes
  98. GenScriptNamLabl=No
  99. GenScriptQDtbs=No
  100. GenScriptQOwnr=Yes
  101. GenScriptCase=0
  102. GenScriptEncoding=ANSI
  103. GenScriptNAcct=No
  104. IdentifierDelimiter=&quot;
  105. [FolderOptions\Physical Objects\Database Generation\Database]
  106. Create=Yes
  107. Open=Yes
  108. Close=Yes
  109. Drop=Yes
  110. Permission=No
  111. [FolderOptions\Physical Objects\Database Generation\Database\Create]
  112. Physical Options=Yes
  113. Header=Yes
  114. Footer=Yes
  115. [FolderOptions\Physical Objects\Database Generation\Tablespace]
  116. Create=Yes
  117. Drop=Yes
  118. Comment=Yes
  119. Permission=No
  120. [FolderOptions\Physical Objects\Database Generation\Tablespace\Create]
  121. Header=Yes
  122. Footer=Yes
  123. [FolderOptions\Physical Objects\Database Generation\Storage]
  124. Create=Yes
  125. Drop=Yes
  126. Comment=Yes
  127. [FolderOptions\Physical Objects\Database Generation\User]
  128. Create=Yes
  129. Drop=Yes
  130. Comment=Yes
  131. Privilege=No
  132. [FolderOptions\Physical Objects\Database Generation\User\Create]
  133. Physical Options=No
  134. [FolderOptions\Physical Objects\Database Generation\Group]
  135. Create=Yes
  136. Drop=Yes
  137. Comment=Yes
  138. Privilege=No
  139. [FolderOptions\Physical Objects\Database Generation\Role]
  140. Create=Yes
  141. Drop=Yes
  142. Privilege=No
  143. [FolderOptions\Physical Objects\Database Generation\UserDefinedDataType]
  144. Create=Yes
  145. Comment=Yes
  146. Drop=Yes
  147. [FolderOptions\Physical Objects\Database Generation\UserDefinedDataType\Create]
  148. Default value=Yes
  149. Check=Yes
  150. [FolderOptions\Physical Objects\Database Generation\AbstractDataType]
  151. Create=Yes
  152. Header=Yes
  153. Footer=Yes
  154. Drop=Yes
  155. Comment=Yes
  156. Install JAVA class=Yes
  157. Remove JAVA class=Yes
  158. Permission=No
  159. [FolderOptions\Physical Objects\Database Generation\Rule]
  160. Create=Yes
  161. Drop=Yes
  162. Comment=Yes
  163. [FolderOptions\Physical Objects\Database Generation\Default]
  164. Create=Yes
  165. Comment=Yes
  166. Drop=Yes
  167. [FolderOptions\Physical Objects\Database Generation\Sequence]
  168. Create=Yes
  169. Drop=Yes
  170. Comment=Yes
  171. Permission=No
  172. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column]
  173. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table]
  174. Create=Yes
  175. Drop=Yes
  176. Comment=Yes
  177. Permission=No
  178. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table\Create]
  179. Check=Yes
  180. Physical Options=Yes
  181. Header=Yes
  182. Footer=Yes
  183. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Table\Create\Check]
  184. Constraint declaration=No
  185. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Column]
  186. User datatype=No
  187. Default value=Yes
  188. Check=Yes
  189. Physical Options=Yes
  190. Comment=Yes
  191. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Column\Check]
  192. Constraint declaration=No
  193. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key]
  194. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Primary key]
  195. Create=Yes
  196. Drop=Yes
  197. Comment=Yes
  198. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Primary key\Create]
  199. Constraint declaration=No
  200. Physical Options=Yes
  201. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Alternate key]
  202. Create=Yes
  203. Drop=Yes
  204. Comment=Yes
  205. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Key\Alternate key\Create]
  206. Constraint declaration=No
  207. Physical Options=Yes
  208. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Foreign key]
  209. Create=Yes
  210. Drop=Yes
  211. Comment=Yes
  212. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Foreign key\Create]
  213. Constraint declaration=Yes
  214. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index]
  215. Create=Yes
  216. Drop=Yes
  217. Comment=Yes
  218. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index\Create]
  219. Constraint declaration=Yes
  220. Physical Options=Yes
  221. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Index\Filter]
  222. Primary key=No
  223. Foreign key=No
  224. Alternate key=No
  225. Cluster=Yes
  226. Other=Yes
  227. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Trigger]
  228. Create=Yes
  229. Drop=Yes
  230. Comment=Yes
  231. [FolderOptions\Physical Objects\Database Generation\Table&amp;&amp;Column\Trigger\Filter]
  232. For insert=Yes
  233. For update=Yes
  234. For delete=Yes
  235. For other=Yes
  236. [FolderOptions\Physical Objects\Database Generation\View]
  237. Create=Yes
  238. Drop=Yes
  239. Comment=Yes
  240. Permission=No
  241. [FolderOptions\Physical Objects\Database Generation\View\Create]
  242. Force Column list=No
  243. Physical Options=Yes
  244. Header=Yes
  245. Footer=Yes
  246. [FolderOptions\Physical Objects\Database Generation\View\ViewColumn]
  247. Comment=Yes
  248. [FolderOptions\Physical Objects\Database Generation\View\ViewIndex]
  249. Create=Yes
  250. Drop=Yes
  251. Comment=Yes
  252. [FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Create]
  253. Physical Options=Yes
  254. [FolderOptions\Physical Objects\Database Generation\View\ViewIndex\Filter]
  255. Cluster=Yes
  256. Other=Yes
  257. [FolderOptions\Physical Objects\Database Generation\View\Trigger]
  258. Create=Yes
  259. Drop=Yes
  260. Comment=Yes
  261. [FolderOptions\Physical Objects\Database Generation\View\Trigger\Filter]
  262. For insert=Yes
  263. For update=Yes
  264. For delete=Yes
  265. For other=Yes
  266. [FolderOptions\Physical Objects\Database Generation\DBMSTrigger]
  267. Create=Yes
  268. Drop=Yes
  269. Comment=Yes
  270. [FolderOptions\Physical Objects\Database Generation\Synonym]
  271. Create=Yes
  272. Drop=Yes
  273. [FolderOptions\Physical Objects\Database Generation\Synonym\Filter]
  274. Table=Yes
  275. View=Yes
  276. Proc=Yes
  277. Synonym=Yes
  278. Database Package=Yes
  279. Sequence=Yes
  280. [FolderOptions\Physical Objects\Database Generation\JoinIndex]
  281. Create=Yes
  282. Drop=Yes
  283. Comment=Yes
  284. [FolderOptions\Physical Objects\Database Generation\JoinIndex\Create]
  285. Physical Options=Yes
  286. Header=Yes
  287. Footer=Yes
  288. [FolderOptions\Physical Objects\Database Generation\Procedure]
  289. Create=Yes
  290. Drop=Yes
  291. Comment=Yes
  292. Permission=No
  293. [FolderOptions\Physical Objects\Database Generation\Procedure\Create]
  294. Header=Yes
  295. Footer=Yes
  296. [FolderOptions\Physical Objects\Database Generation\DatabasePackage]
  297. Create=Yes
  298. Drop=Yes
  299. Permission=No
  300. [FolderOptions\Physical Objects\Database Generation\WebService]
  301. Create=Yes
  302. Drop=Yes
  303. Comment=Yes
  304. [FolderOptions\Physical Objects\Database Generation\Dimension]
  305. Create=Yes
  306. Drop=Yes
  307. [FolderOptions\Physical Objects\Database Generation\Synchronization]
  308. GenBackupTabl=1
  309. GenKeepBackTabl=1
  310. GenTmpTablDrop=No
  311. GenKeepTablOpts=No
  312. [FolderOptions\Physical Objects\Test Data]
  313. GenDataPathName=
  314. GenDataSinglefile=Yes
  315. GenDataScriptName=testdata
  316. GenDataScriptName0=
  317. GenDataScriptName1=
  318. GenDataScriptName2=
  319. GenDataScriptName3=
  320. GenDataScriptName4=
  321. GenDataScriptName5=
  322. GenDataScriptName6=
  323. GenDataScriptName7=
  324. GenDataScriptName8=
  325. GenDataScriptName9=
  326. GenDataOdbc=0
  327. GenDataDelOld=No
  328. GenDataTitle=No
  329. GenDataDefNumRows=20
  330. GenDataCommit=0
  331. GenDataPacket=0
  332. GenDataOwner=No
  333. GenDataProfNumb=
  334. GenDataProfChar=
  335. GenDataProfDate=
  336. GenDataCSVSeparator=,
  337. GenDataFileFormat=CSV
  338. GenDataUseWizard=No
  339. [FolderOptions\Pdm]
  340. IndxIQName=%COLUMN%_%INDEXTYPE%
  341. IndxPK=Yes
  342. IndxFK=Yes
  343. IndxAK=Yes
  344. IndxPKName=%TABLE%_PK
  345. IndxFKName=%REFR%_FK
  346. IndxAKName=%AKEY%_AK
  347. IndxPreserve=No
  348. IndxThreshold=0
  349. IndxStats=No
  350. RefrPreserve=No
  351. JidxPreserve=No
  352. RbldMultiFact=Yes
  353. RbldMultiDim=Yes
  354. RbldMultiJidx=Yes
  355. CubePreserve=No
  356. TablStProcPreserve=No
  357. ProcDepPreserve=Yes
  358. TrgrDepPreserve=Yes
  359. CubeScriptPath=
  360. CubeScriptCase=0
  361. CubeScriptEncoding=ANSI
  362. CubeScriptNacct=No
  363. CubeScriptHeader=No
  364. CubeScriptExt=csv
  365. CubeScriptExt0=txt
  366. CubeScriptExt1=
  367. CubeScriptExt2=
  368. CubeScriptSep=,
  369. CubeScriptDeli=&quot;
  370. EstimationYears=0
  371. DfltDomnName=D_%.U:VALUE%
  372. DfltColnName=D_%.U:VALUE%
  373. DfltReuse=Yes
  374. DfltDrop=Yes</a:PackageOptionsText>
  375. <a:ModelOptionsText>[ModelOptions]
  376. [ModelOptions\Physical Objects]
  377. CaseSensitive=No
  378. DisplayName=Yes
  379. EnableTrans=No
  380. UseTerm=No
  381. EnableRequirements=No
  382. EnableFullShortcut=Yes
  383. DefaultDttp=
  384. IgnoreOwner=No
  385. RebuildTrigger=Yes
  386. RefrUnique=No
  387. RefrAutoMigrate=Yes
  388. RefrMigrateReuse=Yes
  389. RefrMigrateDomain=Yes
  390. RefrMigrateCheck=Yes
  391. RefrMigrateRule=Yes
  392. RefrMigrateExtd=No
  393. RefrMigrDefaultLink=No
  394. RefrDfltImpl=D
  395. RefrPrgtColn=No
  396. RefrMigrateToEnd=No
  397. RebuildTriggerDep=No
  398. ColnFKName=%.3:PARENT%_%COLUMN%
  399. ColnFKNameUse=No
  400. DomnCopyDttp=Yes
  401. DomnCopyChck=No
  402. DomnCopyRule=No
  403. DomnCopyMand=No
  404. DomnCopyExtd=No
  405. DomnCopyProf=No
  406. Notation=0
  407. DomnDefaultMandatory=No
  408. ColnDefaultMandatory=No
  409. TablDefaultOwner=
  410. ViewDefaultOwner=
  411. TrgrDefaultOwnerTabl=
  412. TrgrDefaultOwnerView=
  413. IdxDefaultOwnerTabl=
  414. IdxDefaultOwnerView=
  415. JdxDefaultOwner=
  416. DBPackDefaultOwner=
  417. SeqDefaultOwner=
  418. ProcDefaultOwner=
  419. DBMSTrgrDefaultOwner=
  420. Currency=USD
  421. RefrDeleteConstraint=1
  422. RefrUpdateConstraint=1
  423. RefrParentMandatory=No
  424. RefrParentChangeAllow=Yes
  425. RefrCheckOnCommit=No
  426. [ModelOptions\Physical Objects\NamingOptionsTemplates]
  427. [ModelOptions\Physical Objects\ClssNamingOptions]
  428. [ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG]
  429. [ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG\Name]
  430. Template=
  431. MaxLen=254
  432. Case=M
  433. ValidChar=
  434. InvldChar=
  435. AllValid=Yes
  436. NoAccent=No
  437. DefaultChar=
  438. Script=
  439. ConvTable=
  440. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  441. [ModelOptions\Physical Objects\ClssNamingOptions\PDMPCKG\Code]
  442. Template=
  443. MaxLen=254
  444. Case=M
  445. ValidChar=
  446. InvldChar=
  447. AllValid=Yes
  448. NoAccent=No
  449. DefaultChar=
  450. Script=
  451. ConvTable=
  452. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  453. [ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN]
  454. [ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN\Name]
  455. Template=
  456. MaxLen=254
  457. Case=M
  458. ValidChar=
  459. InvldChar=
  460. AllValid=Yes
  461. NoAccent=No
  462. DefaultChar=
  463. Script=
  464. ConvTable=
  465. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  466. [ModelOptions\Physical Objects\ClssNamingOptions\PDMDOMN\Code]
  467. Template=
  468. MaxLen=254
  469. Case=M
  470. ValidChar=
  471. InvldChar=
  472. AllValid=Yes
  473. NoAccent=No
  474. DefaultChar=
  475. Script=
  476. ConvTable=
  477. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  478. [ModelOptions\Physical Objects\ClssNamingOptions\TABL]
  479. [ModelOptions\Physical Objects\ClssNamingOptions\TABL\Name]
  480. Template=
  481. MaxLen=254
  482. Case=M
  483. ValidChar=
  484. InvldChar=
  485. AllValid=Yes
  486. NoAccent=No
  487. DefaultChar=
  488. Script=
  489. ConvTable=
  490. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  491. [ModelOptions\Physical Objects\ClssNamingOptions\TABL\Code]
  492. Template=
  493. MaxLen=64
  494. Case=M
  495. ValidChar=
  496. InvldChar=
  497. AllValid=Yes
  498. NoAccent=No
  499. DefaultChar=
  500. Script=
  501. ConvTable=
  502. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  503. [ModelOptions\Physical Objects\ClssNamingOptions\COLN]
  504. [ModelOptions\Physical Objects\ClssNamingOptions\COLN\Name]
  505. Template=
  506. MaxLen=254
  507. Case=M
  508. ValidChar=
  509. InvldChar=
  510. AllValid=Yes
  511. NoAccent=No
  512. DefaultChar=
  513. Script=
  514. ConvTable=
  515. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  516. [ModelOptions\Physical Objects\ClssNamingOptions\COLN\Code]
  517. Template=
  518. MaxLen=64
  519. Case=M
  520. ValidChar=
  521. InvldChar=
  522. AllValid=Yes
  523. NoAccent=No
  524. DefaultChar=
  525. Script=
  526. ConvTable=
  527. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  528. [ModelOptions\Physical Objects\ClssNamingOptions\INDX]
  529. [ModelOptions\Physical Objects\ClssNamingOptions\INDX\Name]
  530. Template=
  531. MaxLen=254
  532. Case=M
  533. ValidChar=
  534. InvldChar=
  535. AllValid=Yes
  536. NoAccent=No
  537. DefaultChar=
  538. Script=
  539. ConvTable=
  540. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  541. [ModelOptions\Physical Objects\ClssNamingOptions\INDX\Code]
  542. Template=
  543. MaxLen=254
  544. Case=M
  545. ValidChar=
  546. InvldChar=
  547. AllValid=Yes
  548. NoAccent=No
  549. DefaultChar=
  550. Script=
  551. ConvTable=
  552. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  553. [ModelOptions\Physical Objects\ClssNamingOptions\REFR]
  554. [ModelOptions\Physical Objects\ClssNamingOptions\REFR\Name]
  555. Template=
  556. MaxLen=254
  557. Case=M
  558. ValidChar=
  559. InvldChar=
  560. AllValid=Yes
  561. NoAccent=No
  562. DefaultChar=
  563. Script=
  564. ConvTable=
  565. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  566. [ModelOptions\Physical Objects\ClssNamingOptions\REFR\Code]
  567. Template=
  568. MaxLen=254
  569. Case=M
  570. ValidChar=
  571. InvldChar=
  572. AllValid=Yes
  573. NoAccent=No
  574. DefaultChar=
  575. Script=
  576. ConvTable=
  577. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  578. [ModelOptions\Physical Objects\ClssNamingOptions\VREF]
  579. [ModelOptions\Physical Objects\ClssNamingOptions\VREF\Name]
  580. Template=
  581. MaxLen=254
  582. Case=M
  583. ValidChar=
  584. InvldChar=
  585. AllValid=Yes
  586. NoAccent=No
  587. DefaultChar=
  588. Script=
  589. ConvTable=
  590. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  591. [ModelOptions\Physical Objects\ClssNamingOptions\VREF\Code]
  592. Template=
  593. MaxLen=254
  594. Case=M
  595. ValidChar=
  596. InvldChar=
  597. AllValid=Yes
  598. NoAccent=No
  599. DefaultChar=
  600. Script=
  601. ConvTable=
  602. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  603. [ModelOptions\Physical Objects\ClssNamingOptions\VIEW]
  604. [ModelOptions\Physical Objects\ClssNamingOptions\VIEW\Name]
  605. Template=
  606. MaxLen=254
  607. Case=M
  608. ValidChar=
  609. InvldChar=
  610. AllValid=Yes
  611. NoAccent=No
  612. DefaultChar=
  613. Script=
  614. ConvTable=
  615. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  616. [ModelOptions\Physical Objects\ClssNamingOptions\VIEW\Code]
  617. Template=
  618. MaxLen=64
  619. Case=M
  620. ValidChar=
  621. InvldChar=
  622. AllValid=Yes
  623. NoAccent=No
  624. DefaultChar=
  625. Script=
  626. ConvTable=
  627. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  628. [ModelOptions\Physical Objects\ClssNamingOptions\VIEWC]
  629. [ModelOptions\Physical Objects\ClssNamingOptions\VIEWC\Name]
  630. Template=
  631. MaxLen=254
  632. Case=M
  633. ValidChar=
  634. InvldChar=
  635. AllValid=Yes
  636. NoAccent=No
  637. DefaultChar=
  638. Script=
  639. ConvTable=
  640. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  641. [ModelOptions\Physical Objects\ClssNamingOptions\VIEWC\Code]
  642. Template=
  643. MaxLen=254
  644. Case=M
  645. ValidChar=
  646. InvldChar=
  647. AllValid=Yes
  648. NoAccent=No
  649. DefaultChar=
  650. Script=
  651. ConvTable=
  652. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  653. [ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV]
  654. [ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV\Name]
  655. Template=
  656. MaxLen=254
  657. Case=M
  658. ValidChar=
  659. InvldChar=
  660. AllValid=Yes
  661. NoAccent=No
  662. DefaultChar=
  663. Script=
  664. ConvTable=
  665. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  666. [ModelOptions\Physical Objects\ClssNamingOptions\WEBSERV\Code]
  667. Template=
  668. MaxLen=254
  669. Case=M
  670. ValidChar=&#39;a&#39;-&#39;z&#39;,&#39;A&#39;-&#39;Z&#39;,&#39;0&#39;-&#39;9&#39;,&quot;/-_.!~*&#39;()&quot;
  671. InvldChar=
  672. AllValid=Yes
  673. NoAccent=No
  674. DefaultChar=
  675. Script=
  676. ConvTable=
  677. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  678. [ModelOptions\Physical Objects\ClssNamingOptions\WEBOP]
  679. [ModelOptions\Physical Objects\ClssNamingOptions\WEBOP\Name]
  680. Template=
  681. MaxLen=254
  682. Case=M
  683. ValidChar=
  684. InvldChar=
  685. AllValid=Yes
  686. NoAccent=No
  687. DefaultChar=
  688. Script=
  689. ConvTable=
  690. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  691. [ModelOptions\Physical Objects\ClssNamingOptions\WEBOP\Code]
  692. Template=
  693. MaxLen=254
  694. Case=M
  695. ValidChar=&#39;a&#39;-&#39;z&#39;,&#39;A&#39;-&#39;Z&#39;,&#39;0&#39;-&#39;9&#39;,&quot;/-_.!~*&#39;()&quot;
  696. InvldChar=
  697. AllValid=Yes
  698. NoAccent=No
  699. DefaultChar=
  700. Script=
  701. ConvTable=
  702. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  703. [ModelOptions\Physical Objects\ClssNamingOptions\WPARAM]
  704. [ModelOptions\Physical Objects\ClssNamingOptions\WPARAM\Name]
  705. Template=
  706. MaxLen=254
  707. Case=M
  708. ValidChar=
  709. InvldChar=
  710. AllValid=Yes
  711. NoAccent=No
  712. DefaultChar=
  713. Script=
  714. ConvTable=
  715. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  716. [ModelOptions\Physical Objects\ClssNamingOptions\WPARAM\Code]
  717. Template=
  718. MaxLen=254
  719. Case=M
  720. ValidChar=
  721. InvldChar=
  722. AllValid=Yes
  723. NoAccent=No
  724. DefaultChar=
  725. Script=
  726. ConvTable=
  727. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  728. [ModelOptions\Physical Objects\ClssNamingOptions\FACT]
  729. [ModelOptions\Physical Objects\ClssNamingOptions\FACT\Name]
  730. Template=
  731. MaxLen=254
  732. Case=M
  733. ValidChar=
  734. InvldChar=
  735. AllValid=Yes
  736. NoAccent=No
  737. DefaultChar=
  738. Script=
  739. ConvTable=
  740. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  741. [ModelOptions\Physical Objects\ClssNamingOptions\FACT\Code]
  742. Template=
  743. MaxLen=254
  744. Case=M
  745. ValidChar=
  746. InvldChar=
  747. AllValid=Yes
  748. NoAccent=No
  749. DefaultChar=
  750. Script=
  751. ConvTable=
  752. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  753. [ModelOptions\Physical Objects\ClssNamingOptions\DIMN]
  754. [ModelOptions\Physical Objects\ClssNamingOptions\DIMN\Name]
  755. Template=
  756. MaxLen=254
  757. Case=M
  758. ValidChar=
  759. InvldChar=
  760. AllValid=Yes
  761. NoAccent=No
  762. DefaultChar=
  763. Script=
  764. ConvTable=
  765. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  766. [ModelOptions\Physical Objects\ClssNamingOptions\DIMN\Code]
  767. Template=
  768. MaxLen=254
  769. Case=M
  770. ValidChar=
  771. InvldChar=
  772. AllValid=Yes
  773. NoAccent=No
  774. DefaultChar=
  775. Script=
  776. ConvTable=
  777. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  778. [ModelOptions\Physical Objects\ClssNamingOptions\MEAS]
  779. [ModelOptions\Physical Objects\ClssNamingOptions\MEAS\Name]
  780. Template=
  781. MaxLen=254
  782. Case=M
  783. ValidChar=
  784. InvldChar=
  785. AllValid=Yes
  786. NoAccent=No
  787. DefaultChar=
  788. Script=
  789. ConvTable=
  790. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  791. [ModelOptions\Physical Objects\ClssNamingOptions\MEAS\Code]
  792. Template=
  793. MaxLen=254
  794. Case=M
  795. ValidChar=
  796. InvldChar=
  797. AllValid=Yes
  798. NoAccent=No
  799. DefaultChar=
  800. Script=
  801. ConvTable=
  802. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  803. [ModelOptions\Physical Objects\ClssNamingOptions\DATTR]
  804. [ModelOptions\Physical Objects\ClssNamingOptions\DATTR\Name]
  805. Template=
  806. MaxLen=254
  807. Case=M
  808. ValidChar=
  809. InvldChar=
  810. AllValid=Yes
  811. NoAccent=No
  812. DefaultChar=
  813. Script=
  814. ConvTable=
  815. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  816. [ModelOptions\Physical Objects\ClssNamingOptions\DATTR\Code]
  817. Template=
  818. MaxLen=254
  819. Case=M
  820. ValidChar=
  821. InvldChar=
  822. AllValid=Yes
  823. NoAccent=No
  824. DefaultChar=
  825. Script=
  826. ConvTable=
  827. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  828. [ModelOptions\Physical Objects\ClssNamingOptions\FILO]
  829. [ModelOptions\Physical Objects\ClssNamingOptions\FILO\Name]
  830. Template=
  831. MaxLen=254
  832. Case=M
  833. ValidChar=
  834. InvldChar=
  835. AllValid=Yes
  836. NoAccent=No
  837. DefaultChar=
  838. Script=
  839. ConvTable=
  840. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  841. [ModelOptions\Physical Objects\ClssNamingOptions\FILO\Code]
  842. Template=
  843. MaxLen=254
  844. Case=M
  845. ValidChar=
  846. InvldChar=
  847. AllValid=Yes
  848. NoAccent=No
  849. DefaultChar=
  850. Script=
  851. ConvTable=
  852. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  853. [ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ]
  854. [ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ\Name]
  855. Template=
  856. MaxLen=254
  857. Case=M
  858. ValidChar=
  859. InvldChar=
  860. AllValid=Yes
  861. NoAccent=No
  862. DefaultChar=
  863. Script=
  864. ConvTable=
  865. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  866. [ModelOptions\Physical Objects\ClssNamingOptions\FRMEOBJ\Code]
  867. Template=
  868. MaxLen=254
  869. Case=M
  870. ValidChar=
  871. InvldChar=
  872. AllValid=Yes
  873. NoAccent=No
  874. DefaultChar=
  875. Script=
  876. ConvTable=
  877. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  878. [ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK]
  879. [ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK\Name]
  880. Template=
  881. MaxLen=254
  882. Case=M
  883. ValidChar=
  884. InvldChar=
  885. AllValid=Yes
  886. NoAccent=No
  887. DefaultChar=
  888. Script=
  889. ConvTable=
  890. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  891. [ModelOptions\Physical Objects\ClssNamingOptions\FRMELNK\Code]
  892. Template=
  893. MaxLen=254
  894. Case=M
  895. ValidChar=
  896. InvldChar=
  897. AllValid=Yes
  898. NoAccent=No
  899. DefaultChar=
  900. Script=
  901. ConvTable=
  902. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  903. [ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass]
  904. [ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass\Name]
  905. Template=
  906. MaxLen=254
  907. Case=M
  908. ValidChar=
  909. InvldChar=
  910. AllValid=Yes
  911. NoAccent=No
  912. DefaultChar=
  913. Script=
  914. ConvTable=
  915. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  916. [ModelOptions\Physical Objects\ClssNamingOptions\DefaultClass\Code]
  917. Template=
  918. MaxLen=254
  919. Case=M
  920. ValidChar=
  921. InvldChar=
  922. AllValid=Yes
  923. NoAccent=No
  924. DefaultChar=
  925. Script=
  926. ConvTable=
  927. ConvTablePath=%_HOME%\Resource Files\Conversion Tables
  928. [ModelOptions\Connection]
  929. [ModelOptions\Pdm]
  930. [ModelOptions\Generate]
  931. [ModelOptions\Generate\Xsm]
  932. GenRootElement=Yes
  933. GenComplexType=No
  934. GenAttribute=Yes
  935. CheckModel=Yes
  936. SaveLinks=Yes
  937. ORMapping=No
  938. NameToCode=No
  939. [ModelOptions\Generate\Pdm]
  940. RRMapping=No
  941. [ModelOptions\Generate\Cdm]
  942. CheckModel=Yes
  943. SaveLinks=Yes
  944. NameToCode=No
  945. Notation=2
  946. [ModelOptions\Generate\Oom]
  947. CheckModel=Yes
  948. SaveLinks=Yes
  949. ORMapping=No
  950. NameToCode=Yes
  951. ClassPrefix=
  952. [ModelOptions\Generate\Ldm]
  953. CheckModel=Yes
  954. SaveLinks=Yes
  955. NameToCode=No
  956. [ModelOptions\Default Opts]
  957. [ModelOptions\Default Opts\TABL]
  958. PhysOpts=
  959. [ModelOptions\Default Opts\COLN]
  960. PhysOpts=
  961. [ModelOptions\Default Opts\INDX]
  962. PhysOpts=
  963. [ModelOptions\Default Opts\AKEY]
  964. PhysOpts=
  965. [ModelOptions\Default Opts\PKEY]
  966. PhysOpts=
  967. [ModelOptions\Default Opts\STOR]
  968. PhysOpts=
  969. [ModelOptions\Default Opts\TSPC]
  970. PhysOpts=
  971. [ModelOptions\Default Opts\SQNC]
  972. PhysOpts=
  973. [ModelOptions\Default Opts\DTBS]
  974. PhysOpts=
  975. [ModelOptions\Default Opts\USER]
  976. PhysOpts=
  977. [ModelOptions\Default Opts\JIDX]
  978. PhysOpts=</a:ModelOptionsText>
  979. <c:DBMS>
  980. <o:Shortcut Id="o3">
  981. <a:ObjectID>88FC3B99-646C-4973-A419-6B9889EDDA16</a:ObjectID>
  982. <a:Name>MySQL 5.0</a:Name>
  983. <a:Code>MYSQL50</a:Code>
  984. <a:CreationDate>1590998098</a:CreationDate>
  985. <a:Creator>Administrator</a:Creator>
  986. <a:ModificationDate>1590998098</a:ModificationDate>
  987. <a:Modifier>Administrator</a:Modifier>
  988. <a:TargetStereotype/>
  989. <a:TargetID>F4F16ECD-F2F1-4006-AF6F-638D5C65F35E</a:TargetID>
  990. <a:TargetClassID>4BA9F647-DAB1-11D1-9944-006097355D9B</a:TargetClassID>
  991. </o:Shortcut>
  992. </c:DBMS>
  993. <c:PhysicalDiagrams>
  994. <o:PhysicalDiagram Id="o4">
  995. <a:ObjectID>745624A1-353F-4B1B-9D99-C201EA8244A9</a:ObjectID>
  996. <a:Name>PhysicalDiagram_1</a:Name>
  997. <a:Code>PhysicalDiagram_1</a:Code>
  998. <a:CreationDate>1590998099</a:CreationDate>
  999. <a:Creator>Administrator</a:Creator>
  1000. <a:ModificationDate>1590998578</a:ModificationDate>
  1001. <a:Modifier>Administrator</a:Modifier>
  1002. <a:DisplayPreferences>[DisplayPreferences]
  1003. [DisplayPreferences\PDM]
  1004. [DisplayPreferences\General]
  1005. Adjust to text=Yes
  1006. Snap Grid=No
  1007. Constrain Labels=Yes
  1008. Display Grid=No
  1009. Show Page Delimiter=Yes
  1010. Show Links intersections=Yes
  1011. Activate automatic link routing=Yes
  1012. Grid size=0
  1013. Graphic unit=2
  1014. Window color=255, 255, 255
  1015. Background image=
  1016. Background mode=8
  1017. Watermark image=
  1018. Watermark mode=8
  1019. Show watermark on screen=No
  1020. Gradient mode=0
  1021. Gradient end color=255, 255, 255
  1022. Show Swimlane=No
  1023. SwimlaneVert=Yes
  1024. TreeVert=No
  1025. CompDark=0
  1026. [DisplayPreferences\Object]
  1027. Show Icon=No
  1028. Mode=2
  1029. Trunc Length=40
  1030. Word Length=40
  1031. Word Text=!&quot;#$%&amp;&#39;)*+,-./:;=&gt;?@\]^_`|}~
  1032. Shortcut IntIcon=Yes
  1033. Shortcut IntLoct=Yes
  1034. Shortcut IntFullPath=No
  1035. Shortcut IntLastPackage=Yes
  1036. Shortcut ExtIcon=Yes
  1037. Shortcut ExtLoct=No
  1038. Shortcut ExtFullPath=No
  1039. Shortcut ExtLastPackage=Yes
  1040. Shortcut ExtIncludeModl=Yes
  1041. EObjShowStrn=Yes
  1042. ExtendedObject.Comment=No
  1043. ExtendedObject.IconPicture=No
  1044. ExtendedObject.TextStyle=No
  1045. ExtendedObject_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Object Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1046. ELnkShowStrn=Yes
  1047. ELnkShowName=Yes
  1048. ExtendedLink_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
  1049. FileObject.Stereotype=No
  1050. FileObject.DisplayName=Yes
  1051. FileObject.LocationOrName=No
  1052. FileObject.IconPicture=No
  1053. FileObject.TextStyle=No
  1054. FileObject.IconMode=Yes
  1055. FileObject_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Location&quot; Attribute=&quot;LocationOrName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1056. Package.Stereotype=Yes
  1057. Package.Comment=No
  1058. Package.IconPicture=No
  1059. Package.TextStyle=No
  1060. Package_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1061. Display Model Version=Yes
  1062. Table.Stereotype=Yes
  1063. Table.DisplayName=Yes
  1064. Table.OwnerDisplayName=No
  1065. Table.Columns=Yes
  1066. Table.Columns._Filter=&quot;All Columns&quot; PDMCOLNALL
  1067. Table.Columns._Columns=Stereotype DataType KeyIndicator
  1068. Table.Columns._Limit=-5
  1069. Table.Keys=No
  1070. Table.Keys._Columns=Stereotype Indicator
  1071. Table.Indexes=No
  1072. Table.Indexes._Columns=Stereotype
  1073. Table.Triggers=No
  1074. Table.Triggers._Columns=Stereotype
  1075. Table.Comment=No
  1076. Table.IconPicture=No
  1077. Table.TextStyle=No
  1078. Table_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nDomain No\r\nKeyIndicator No\r\nIndexIndicator No\r\nNullStatus No&quot; Filters=&quot;&amp;quot;All Columns&amp;quot; PDMCOLNALL &amp;quot;&amp;quot;\r\n&amp;quot;PK Columns&amp;quot; PDMCOLNPK &amp;quot;\&amp;quot;PRIM \&amp;quot;TRUE\&amp;quot; TRUE\&amp;quot;&amp;quot;\r\n&amp;quot;Key Columns&amp;quot; PDMCOLNKEY &amp;quot;\&amp;quot;KEYS \&amp;quot;TRUE\&amp;quot; TRUE\&amp;quot;&amp;quot;&quot; HasLimit=&quot;Yes&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Keys&quot; Collection=&quot;Keys&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes\r\nIndicator No&quot; HasLimit=&quot;No&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Triggers&quot; Collection=&quot;Triggers&quot; Columns=&quot;Stereotype No\r\nDisplayName Yes&quot; HasLimit=&quot;No&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1079. View.Stereotype=Yes
  1080. View.DisplayName=Yes
  1081. View.OwnerDisplayName=No
  1082. View.Columns=Yes
  1083. View.Columns._Columns=DisplayName
  1084. View.Columns._Limit=-5
  1085. View.TemporaryVTables=Yes
  1086. View.Indexes=No
  1087. View.Comment=No
  1088. View.IconPicture=No
  1089. View.TextStyle=No
  1090. View_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Columns&quot; Collection=&quot;Columns&quot; Columns=&quot;DisplayName No\r\nExpression No\r\nDataType No\r\nSymbolDataType No &amp;quot;Domain or Data type&amp;quot;\r\nIndexIndicator No&quot; HasLimit=&quot;Yes&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Tables&quot; Collection=&quot;TemporaryVTables&quot; Columns=&quot;Name Yes&quot; HasLimit=&quot;No&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardCollection Name=&quot;Indexes&quot; Collection=&quot;Indexes&quot; Columns=&quot;DisplayName Yes&quot; HasLimit=&quot;No&quot; HideEmpty=&quot;No&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1091. Procedure.Stereotype=No
  1092. Procedure.DisplayName=Yes
  1093. Procedure.OwnerDisplayName=No
  1094. Procedure.Comment=No
  1095. Procedure.IconPicture=No
  1096. Procedure.TextStyle=No
  1097. Procedure_SymbolLayout=&lt;Form&gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;Yes&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Owner and Name&quot; Attribute=&quot;OwnerDisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;Separator Name=&quot;Separator&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Comment&quot; Attribute=&quot;Comment&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;LEFT&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Icon&quot; Attribute=&quot;IconPicture&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Force top align&quot; Attribute=&quot;TextStyle&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Alignment=&quot;CNTR&quot; Caption=&quot;&quot; Mandatory=&quot;Yes&quot; /&gt;[CRLF]&lt;/Form&gt;
  1098. Reference.Cardinality=No
  1099. Reference.ImplementationType=No
  1100. Reference.ChildRole=Yes
  1101. Reference.Stereotype=Yes
  1102. Reference.DisplayName=No
  1103. Reference.ForeignKeyConstraintName=No
  1104. Reference.JoinExpression=No
  1105. Reference.Integrity=No
  1106. Reference.ParentRole=Yes
  1107. Reference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Cardinality&quot; Attribute=&quot;Cardinality&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Implementation&quot; Attribute=&quot;ImplementationType&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Cons&amp;amp;traint Name&quot; Attribute=&quot;ForeignKeyConstraintName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Cons&amp;amp;traint Name&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Join&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Join&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;StandardAttribute Name=&quot;Referential integrity&quot; Attribute=&quot;Integrity&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;Referential integrity&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
  1108. ViewReference.ChildRole=Yes
  1109. ViewReference.Stereotype=Yes
  1110. ViewReference.DisplayName=No
  1111. ViewReference.JoinExpression=No
  1112. ViewReference.ParentRole=Yes
  1113. ViewReference_SymbolLayout=&lt;Form&gt;[CRLF] &lt;Form Name=&quot;Source&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Child Role&quot; Attribute=&quot;ChildRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Center&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Stereotype&quot; Attribute=&quot;Stereotype&quot; Prefix=&quot;&amp;lt;&amp;lt;&quot; Suffix=&quot;&amp;gt;&amp;gt;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;ExclusiveChoice Name=&quot;Exclusive Choice&quot; Mandatory=&quot;No&quot; Display=&quot;HorizontalRadios&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Name&quot; Attribute=&quot;DisplayName&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;StandardAttribute Name=&quot;Join Expression&quot; Attribute=&quot;JoinExpression&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/ExclusiveChoice&gt;[CRLF] &lt;/Form&gt;[CRLF] &lt;Form Name=&quot;Destination&quot; &gt;[CRLF] &lt;StandardAttribute Name=&quot;Parent Role&quot; Attribute=&quot;ParentRole&quot; Prefix=&quot;&quot; Suffix=&quot;&quot; Caption=&quot;&quot; Mandatory=&quot;No&quot; /&gt;[CRLF] &lt;/Form&gt;[CRLF]&lt;/Form&gt;
  1114. [DisplayPreferences\Symbol]
  1115. [DisplayPreferences\Symbol\FRMEOBJ]
  1116. STRNFont=新宋体,8,N
  1117. STRNFont color=0, 0, 0
  1118. DISPNAMEFont=新宋体,8,N
  1119. DISPNAMEFont color=0, 0, 0
  1120. LABLFont=新宋体,8,N
  1121. LABLFont color=0, 0, 0
  1122. AutoAdjustToText=Yes
  1123. Keep aspect=No
  1124. Keep center=No
  1125. Keep size=No
  1126. Width=6000
  1127. Height=2000
  1128. Brush color=255 255 255
  1129. Fill Color=Yes
  1130. Brush style=6
  1131. Brush bitmap mode=12
  1132. Brush gradient mode=64
  1133. Brush gradient color=192 192 192
  1134. Brush background image=
  1135. Custom shape=
  1136. Custom text mode=0
  1137. Pen=1 0 255 128 128
  1138. Shadow color=192 192 192
  1139. Shadow=0
  1140. [DisplayPreferences\Symbol\FRMELNK]
  1141. CENTERFont=新宋体,8,N
  1142. CENTERFont color=0, 0, 0
  1143. Line style=1
  1144. AutoAdjustToText=Yes
  1145. Keep aspect=No
  1146. Keep center=No
  1147. Keep size=No
  1148. Brush color=255 255 255
  1149. Fill Color=Yes
  1150. Brush style=1
  1151. Brush bitmap mode=12
  1152. Brush gradient mode=0
  1153. Brush gradient color=118 118 118
  1154. Brush background image=
  1155. Custom shape=
  1156. Custom text mode=0
  1157. Pen=1 0 128 128 255
  1158. Shadow color=192 192 192
  1159. Shadow=0
  1160. [DisplayPreferences\Symbol\FILO]
  1161. OBJSTRNFont=新宋体,8,N
  1162. OBJSTRNFont color=0, 0, 0
  1163. DISPNAMEFont=新宋体,8,N
  1164. DISPNAMEFont color=0, 0, 0
  1165. LCNMFont=新宋体,8,N
  1166. LCNMFont color=0, 0, 0
  1167. AutoAdjustToText=Yes
  1168. Keep aspect=No
  1169. Keep center=No
  1170. Keep size=No
  1171. Width=4800
  1172. Height=3600
  1173. Brush color=255 255 255
  1174. Fill Color=Yes
  1175. Brush style=1
  1176. Brush bitmap mode=12
  1177. Brush gradient mode=0
  1178. Brush gradient color=118 118 118
  1179. Brush background image=
  1180. Custom shape=
  1181. Custom text mode=0
  1182. Pen=1 0 0 0 255
  1183. Shadow color=192 192 192
  1184. Shadow=0
  1185. [DisplayPreferences\Symbol\PDMPCKG]
  1186. STRNFont=新宋体,8,N
  1187. STRNFont color=0, 0, 0
  1188. DISPNAMEFont=新宋体,8,N
  1189. DISPNAMEFont color=0, 0, 0
  1190. LABLFont=新宋体,8,N
  1191. LABLFont color=0, 0, 0
  1192. AutoAdjustToText=Yes
  1193. Keep aspect=No
  1194. Keep center=No
  1195. Keep size=No
  1196. Width=4800
  1197. Height=4000
  1198. Brush color=255 255 192
  1199. Fill Color=Yes
  1200. Brush style=6
  1201. Brush bitmap mode=12
  1202. Brush gradient mode=65
  1203. Brush gradient color=255 255 255
  1204. Brush background image=
  1205. Custom shape=
  1206. Custom text mode=0
  1207. Pen=1 0 178 178 178
  1208. Shadow color=192 192 192
  1209. Shadow=0
  1210. [DisplayPreferences\Symbol\TABL]
  1211. STRNFont=新宋体,8,N
  1212. STRNFont color=0, 0, 0
  1213. DISPNAMEFont=新宋体,8,N
  1214. DISPNAMEFont color=0, 0, 0
  1215. OWNRDISPNAMEFont=新宋体,8,N
  1216. OWNRDISPNAMEFont color=0, 0, 0
  1217. ColumnsFont=新宋体,8,N
  1218. ColumnsFont color=0, 0, 0
  1219. TablePkColumnsFont=新宋体,8,U
  1220. TablePkColumnsFont color=0, 0, 0
  1221. TableFkColumnsFont=新宋体,8,N
  1222. TableFkColumnsFont color=0, 0, 0
  1223. KeysFont=新宋体,8,N
  1224. KeysFont color=0, 0, 0
  1225. IndexesFont=新宋体,8,N
  1226. IndexesFont color=0, 0, 0
  1227. TriggersFont=新宋体,8,N
  1228. TriggersFont color=0, 0, 0
  1229. LABLFont=新宋体,8,N
  1230. LABLFont color=0, 0, 0
  1231. AutoAdjustToText=Yes
  1232. Keep aspect=No
  1233. Keep center=No
  1234. Keep size=No
  1235. Width=4800
  1236. Height=4000
  1237. Brush color=178 214 252
  1238. Fill Color=Yes
  1239. Brush style=6
  1240. Brush bitmap mode=12
  1241. Brush gradient mode=65
  1242. Brush gradient color=255 255 255
  1243. Brush background image=
  1244. Custom shape=
  1245. Custom text mode=0
  1246. Pen=1 0 0 128 192
  1247. Shadow color=192 192 192
  1248. Shadow=0
  1249. [DisplayPreferences\Symbol\VIEW]
  1250. STRNFont=新宋体,8,N
  1251. STRNFont color=0, 0, 0
  1252. DISPNAMEFont=新宋体,8,N
  1253. DISPNAMEFont color=0, 0, 0
  1254. OWNRDISPNAMEFont=新宋体,8,N
  1255. OWNRDISPNAMEFont color=0, 0, 0
  1256. ColumnsFont=新宋体,8,N
  1257. ColumnsFont color=0, 0, 0
  1258. TablePkColumnsFont=新宋体,8,U
  1259. TablePkColumnsFont color=0, 0, 0
  1260. TableFkColumnsFont=新宋体,8,N
  1261. TableFkColumnsFont color=0, 0, 0
  1262. TemporaryVTablesFont=新宋体,8,N
  1263. TemporaryVTablesFont color=0, 0, 0
  1264. IndexesFont=新宋体,8,N
  1265. IndexesFont color=0, 0, 0
  1266. LABLFont=新宋体,8,N
  1267. LABLFont color=0, 0, 0
  1268. AutoAdjustToText=Yes
  1269. Keep aspect=No
  1270. Keep center=No
  1271. Keep size=No
  1272. Width=4800
  1273. Height=4000
  1274. Brush color=208 208 255
  1275. Fill Color=Yes
  1276. Brush style=6
  1277. Brush bitmap mode=12
  1278. Brush gradient mode=65
  1279. Brush gradient color=255 255 255
  1280. Brush background image=
  1281. Custom shape=
  1282. Custom text mode=0
  1283. Pen=1 0 128 128 192
  1284. Shadow color=192 192 192
  1285. Shadow=0
  1286. [DisplayPreferences\Symbol\PROC]
  1287. STRNFont=新宋体,8,N
  1288. STRNFont color=0, 0, 0
  1289. DISPNAMEFont=新宋体,8,N
  1290. DISPNAMEFont color=0, 0, 0
  1291. OWNRDISPNAMEFont=新宋体,8,N
  1292. OWNRDISPNAMEFont color=0, 0, 0
  1293. LABLFont=新宋体,8,N
  1294. LABLFont color=0, 0, 0
  1295. AutoAdjustToText=Yes
  1296. Keep aspect=No
  1297. Keep center=No
  1298. Keep size=No
  1299. Width=4000
  1300. Height=1000
  1301. Brush color=255 255 192
  1302. Fill Color=Yes
  1303. Brush style=6
  1304. Brush bitmap mode=12
  1305. Brush gradient mode=65
  1306. Brush gradient color=255 255 255
  1307. Brush background image=
  1308. Custom shape=
  1309. Custom text mode=0
  1310. Pen=1 0 128 108 0
  1311. Shadow color=192 192 192
  1312. Shadow=0
  1313. [DisplayPreferences\Symbol\REFR]
  1314. SOURCEFont=新宋体,8,N
  1315. SOURCEFont color=0, 0, 0
  1316. CENTERFont=新宋体,8,N
  1317. CENTERFont color=0, 0, 0
  1318. DESTINATIONFont=新宋体,8,N
  1319. DESTINATIONFont color=0, 0, 0
  1320. Line style=1
  1321. AutoAdjustToText=Yes
  1322. Keep aspect=No
  1323. Keep center=No
  1324. Keep size=No
  1325. Brush color=255 255 255
  1326. Fill Color=Yes
  1327. Brush style=1
  1328. Brush bitmap mode=12
  1329. Brush gradient mode=0
  1330. Brush gradient color=118 118 118
  1331. Brush background image=
  1332. Custom shape=
  1333. Custom text mode=0
  1334. Pen=1 0 0 128 192
  1335. Shadow color=192 192 192
  1336. Shadow=0
  1337. [DisplayPreferences\Symbol\VREF]
  1338. SOURCEFont=新宋体,8,N
  1339. SOURCEFont color=0, 0, 0
  1340. CENTERFont=新宋体,8,N
  1341. CENTERFont color=0, 0, 0
  1342. DESTINATIONFont=新宋体,8,N
  1343. DESTINATIONFont color=0, 0, 0
  1344. Line style=1
  1345. AutoAdjustToText=Yes
  1346. Keep aspect=No
  1347. Keep center=No
  1348. Keep size=No
  1349. Brush color=255 255 255
  1350. Fill Color=Yes
  1351. Brush style=1
  1352. Brush bitmap mode=12
  1353. Brush gradient mode=0
  1354. Brush gradient color=118 118 118
  1355. Brush background image=
  1356. Custom shape=
  1357. Custom text mode=0
  1358. Pen=1 0 128 128 192
  1359. Shadow color=192 192 192
  1360. Shadow=0
  1361. [DisplayPreferences\Symbol\USRDEPD]
  1362. OBJXSTRFont=新宋体,8,N
  1363. OBJXSTRFont color=0, 0, 0
  1364. Line style=1
  1365. AutoAdjustToText=Yes
  1366. Keep aspect=No
  1367. Keep center=No
  1368. Keep size=No
  1369. Brush color=255 255 255
  1370. Fill Color=Yes
  1371. Brush style=1
  1372. Brush bitmap mode=12
  1373. Brush gradient mode=0
  1374. Brush gradient color=118 118 118
  1375. Brush background image=
  1376. Custom shape=
  1377. Custom text mode=0
  1378. Pen=2 0 128 128 255
  1379. Shadow color=192 192 192
  1380. Shadow=0
  1381. [DisplayPreferences\Symbol\Free Symbol]
  1382. Free TextFont=新宋体,8,N
  1383. Free TextFont color=0, 0, 0
  1384. Line style=0
  1385. AutoAdjustToText=Yes
  1386. Keep aspect=No
  1387. Keep center=No
  1388. Keep size=No
  1389. Brush color=255 255 255
  1390. Fill Color=Yes
  1391. Brush style=1
  1392. Brush bitmap mode=12
  1393. Brush gradient mode=0
  1394. Brush gradient color=118 118 118
  1395. Brush background image=
  1396. Custom shape=
  1397. Custom text mode=0
  1398. Pen=1 0 0 0 255
  1399. Shadow color=192 192 192
  1400. Shadow=0</a:DisplayPreferences>
  1401. <a:PaperSize>(8268, 11693)</a:PaperSize>
  1402. <a:PageMargins>((315,354), (433,354))</a:PageMargins>
  1403. <a:PageOrientation>1</a:PageOrientation>
  1404. <a:PaperSource>7</a:PaperSource>
  1405. <c:Symbols>
  1406. <o:TableSymbol Id="o5">
  1407. <a:CreationDate>1590998147</a:CreationDate>
  1408. <a:ModificationDate>1591162624</a:ModificationDate>
  1409. <a:IconMode>-1</a:IconMode>
  1410. <a:Rect>((-12637,-4050), (-563,11064))</a:Rect>
  1411. <a:AutoAdjustToText>0</a:AutoAdjustToText>
  1412. <a:LineColor>12615680</a:LineColor>
  1413. <a:FillColor>16570034</a:FillColor>
  1414. <a:ShadowColor>12632256</a:ShadowColor>
  1415. <a:FontList>STRN 0 新宋体,8,N
  1416. DISPNAME 0 新宋体,8,N
  1417. OWNRDISPNAME 0 新宋体,8,N
  1418. Columns 0 新宋体,8,N
  1419. TablePkColumns 0 新宋体,8,U
  1420. TableFkColumns 0 新宋体,8,N
  1421. Keys 0 新宋体,8,N
  1422. Indexes 0 新宋体,8,N
  1423. Triggers 0 新宋体,8,N
  1424. LABL 0 新宋体,8,N</a:FontList>
  1425. <a:BrushStyle>6</a:BrushStyle>
  1426. <a:GradientFillMode>65</a:GradientFillMode>
  1427. <a:GradientEndColor>16777215</a:GradientEndColor>
  1428. <a:ManuallyResized>1</a:ManuallyResized>
  1429. <c:Object>
  1430. <o:Table Ref="o6"/>
  1431. </c:Object>
  1432. </o:TableSymbol>
  1433. <o:TableSymbol Id="o7">
  1434. <a:CreationDate>1590998321</a:CreationDate>
  1435. <a:ModificationDate>1591060422</a:ModificationDate>
  1436. <a:IconMode>-1</a:IconMode>
  1437. <a:Rect>((9413,2100), (21487,11008))</a:Rect>
  1438. <a:AutoAdjustToText>0</a:AutoAdjustToText>
  1439. <a:LineColor>12615680</a:LineColor>
  1440. <a:FillColor>16570034</a:FillColor>
  1441. <a:ShadowColor>12632256</a:ShadowColor>
  1442. <a:FontList>STRN 0 新宋体,8,N
  1443. DISPNAME 0 新宋体,8,N
  1444. OWNRDISPNAME 0 新宋体,8,N
  1445. Columns 0 新宋体,8,N
  1446. TablePkColumns 0 新宋体,8,U
  1447. TableFkColumns 0 新宋体,8,N
  1448. Keys 0 新宋体,8,N
  1449. Indexes 0 新宋体,8,N
  1450. Triggers 0 新宋体,8,N
  1451. LABL 0 新宋体,8,N</a:FontList>
  1452. <a:BrushStyle>6</a:BrushStyle>
  1453. <a:GradientFillMode>65</a:GradientFillMode>
  1454. <a:GradientEndColor>16777215</a:GradientEndColor>
  1455. <a:ManuallyResized>1</a:ManuallyResized>
  1456. <c:Object>
  1457. <o:Table Ref="o8"/>
  1458. </c:Object>
  1459. </o:TableSymbol>
  1460. <o:TableSymbol Id="o9">
  1461. <a:CreationDate>1590998578</a:CreationDate>
  1462. <a:ModificationDate>1591060424</a:ModificationDate>
  1463. <a:IconMode>-1</a:IconMode>
  1464. <a:Rect>((9188,-9929), (21262,-1021))</a:Rect>
  1465. <a:AutoAdjustToText>0</a:AutoAdjustToText>
  1466. <a:LineColor>12615680</a:LineColor>
  1467. <a:FillColor>16570034</a:FillColor>
  1468. <a:ShadowColor>12632256</a:ShadowColor>
  1469. <a:FontList>STRN 0 新宋体,8,N
  1470. DISPNAME 0 新宋体,8,N
  1471. OWNRDISPNAME 0 新宋体,8,N
  1472. Columns 0 新宋体,8,N
  1473. TablePkColumns 0 新宋体,8,U
  1474. TableFkColumns 0 新宋体,8,N
  1475. Keys 0 新宋体,8,N
  1476. Indexes 0 新宋体,8,N
  1477. Triggers 0 新宋体,8,N
  1478. LABL 0 新宋体,8,N</a:FontList>
  1479. <a:BrushStyle>6</a:BrushStyle>
  1480. <a:GradientFillMode>65</a:GradientFillMode>
  1481. <a:GradientEndColor>16777215</a:GradientEndColor>
  1482. <a:ManuallyResized>1</a:ManuallyResized>
  1483. <c:Object>
  1484. <o:Table Ref="o10"/>
  1485. </c:Object>
  1486. </o:TableSymbol>
  1487. </c:Symbols>
  1488. </o:PhysicalDiagram>
  1489. </c:PhysicalDiagrams>
  1490. <c:DefaultDiagram>
  1491. <o:PhysicalDiagram Ref="o4"/>
  1492. </c:DefaultDiagram>
  1493. <c:Tables>
  1494. <o:Table Id="o6">
  1495. <a:ObjectID>C6BAB7AF-01E1-47B0-9709-A79554E5E10F</a:ObjectID>
  1496. <a:Name>登录用户表</a:Name>
  1497. <a:Code>users_login</a:Code>
  1498. <a:CreationDate>1585634248</a:CreationDate>
  1499. <a:Creator>Administrator</a:Creator>
  1500. <a:ModificationDate>1590998225</a:ModificationDate>
  1501. <a:Modifier>Administrator</a:Modifier>
  1502. <a:Comment>登录用户表</a:Comment>
  1503. <a:TotalSavingCurrency/>
  1504. <c:Columns>
  1505. <o:Column Id="o11">
  1506. <a:ObjectID>82DDE4D8-A8DC-400C-A957-BDC8D0B60C52</a:ObjectID>
  1507. <a:Name>编码</a:Name>
  1508. <a:Code>Id</a:Code>
  1509. <a:CreationDate>1585634299</a:CreationDate>
  1510. <a:Creator>Administrator</a:Creator>
  1511. <a:ModificationDate>1591165723</a:ModificationDate>
  1512. <a:Modifier>Administrator</a:Modifier>
  1513. <a:Comment>编码</a:Comment>
  1514. <a:DataType>int</a:DataType>
  1515. <a:Identity>1</a:Identity>
  1516. <a:Column.Mandatory>1</a:Column.Mandatory>
  1517. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,102={9480E6AA-83DD-4AA7-9C91-E48F709C29D9},CharSet,0=
  1518. {B314652C-DD43-4F81-8524-6F97A1BAACBA},Collate,0=
  1519. </a:ExtendedAttributesText>
  1520. </o:Column>
  1521. <o:Column Id="o12">
  1522. <a:ObjectID>0A1C8FA2-A17F-4E2E-A2C3-38A75EE776E0</a:ObjectID>
  1523. <a:Name>登录账号</a:Name>
  1524. <a:Code>UserName</a:Code>
  1525. <a:CreationDate>1585634299</a:CreationDate>
  1526. <a:Creator>Administrator</a:Creator>
  1527. <a:ModificationDate>1591165723</a:ModificationDate>
  1528. <a:Modifier>Administrator</a:Modifier>
  1529. <a:Comment>登录账号</a:Comment>
  1530. <a:DataType>char(11)</a:DataType>
  1531. <a:Length>11</a:Length>
  1532. <a:Column.Mandatory>1</a:Column.Mandatory>
  1533. </o:Column>
  1534. <o:Column Id="o13">
  1535. <a:ObjectID>0815F8CF-1B61-4AE1-96D2-E5B09B9FB2C8</a:ObjectID>
  1536. <a:Name>密码加密</a:Name>
  1537. <a:Code>PwdSalt</a:Code>
  1538. <a:CreationDate>1587365867</a:CreationDate>
  1539. <a:Creator>Administrator</a:Creator>
  1540. <a:ModificationDate>1591165723</a:ModificationDate>
  1541. <a:Modifier>Administrator</a:Modifier>
  1542. <a:Comment>密码加密</a:Comment>
  1543. <a:DataType>char(6)</a:DataType>
  1544. <a:Length>6</a:Length>
  1545. </o:Column>
  1546. <o:Column Id="o14">
  1547. <a:ObjectID>B54F38C7-CF66-4D7A-99C8-0BCC1D212994</a:ObjectID>
  1548. <a:Name>密码</a:Name>
  1549. <a:Code>Password</a:Code>
  1550. <a:CreationDate>1585649479</a:CreationDate>
  1551. <a:Creator>Administrator</a:Creator>
  1552. <a:ModificationDate>1591165723</a:ModificationDate>
  1553. <a:Modifier>Administrator</a:Modifier>
  1554. <a:Comment>密码</a:Comment>
  1555. <a:DataType>varchar(16)</a:DataType>
  1556. <a:Length>16</a:Length>
  1557. </o:Column>
  1558. <o:Column Id="o15">
  1559. <a:ObjectID>F7D4364F-FFA3-431E-A342-CAD6CDA8DAF7</a:ObjectID>
  1560. <a:Name>昵称</a:Name>
  1561. <a:Code>NickName</a:Code>
  1562. <a:CreationDate>1585649479</a:CreationDate>
  1563. <a:Creator>Administrator</a:Creator>
  1564. <a:ModificationDate>1591165723</a:ModificationDate>
  1565. <a:Modifier>Administrator</a:Modifier>
  1566. <a:Comment>昵称</a:Comment>
  1567. <a:DataType>varchar(16)</a:DataType>
  1568. <a:Length>16</a:Length>
  1569. </o:Column>
  1570. <o:Column Id="o16">
  1571. <a:ObjectID>BF1EB2F5-F6D3-4ABE-ADDC-8BC5F4C59035</a:ObjectID>
  1572. <a:Name>头像</a:Name>
  1573. <a:Code>Logo</a:Code>
  1574. <a:CreationDate>1585649479</a:CreationDate>
  1575. <a:Creator>Administrator</a:Creator>
  1576. <a:ModificationDate>1591165723</a:ModificationDate>
  1577. <a:Modifier>Administrator</a:Modifier>
  1578. <a:Comment>头像</a:Comment>
  1579. <a:DataType>varchar(128)</a:DataType>
  1580. <a:Length>128</a:Length>
  1581. </o:Column>
  1582. <o:Column Id="o17">
  1583. <a:ObjectID>1E71DC80-5F7A-4DAC-81D8-28BD3375E8CD</a:ObjectID>
  1584. <a:Name>电话号码</a:Name>
  1585. <a:Code>Phone</a:Code>
  1586. <a:CreationDate>1590998157</a:CreationDate>
  1587. <a:Creator>Administrator</a:Creator>
  1588. <a:ModificationDate>1591165723</a:ModificationDate>
  1589. <a:Modifier>Administrator</a:Modifier>
  1590. <a:Comment>电话号码</a:Comment>
  1591. <a:DataType>char(11)</a:DataType>
  1592. <a:Length>11</a:Length>
  1593. </o:Column>
  1594. <o:Column Id="o18">
  1595. <a:ObjectID>D3DF9200-C04B-429A-9EFA-2C05C8D64F7D</a:ObjectID>
  1596. <a:Name>qq号码</a:Name>
  1597. <a:Code>Qq</a:Code>
  1598. <a:CreationDate>1585649989</a:CreationDate>
  1599. <a:Creator>Administrator</a:Creator>
  1600. <a:ModificationDate>1591165723</a:ModificationDate>
  1601. <a:Modifier>Administrator</a:Modifier>
  1602. <a:Comment>qq号码</a:Comment>
  1603. <a:DataType>bigint</a:DataType>
  1604. </o:Column>
  1605. <o:Column Id="o19">
  1606. <a:ObjectID>541B5C49-7573-43CD-A121-6DE8137734FF</a:ObjectID>
  1607. <a:Name>微信号码</a:Name>
  1608. <a:Code>WeChat</a:Code>
  1609. <a:CreationDate>1586917788</a:CreationDate>
  1610. <a:Creator>Administrator</a:Creator>
  1611. <a:ModificationDate>1591165723</a:ModificationDate>
  1612. <a:Modifier>Administrator</a:Modifier>
  1613. <a:Comment>微信号码</a:Comment>
  1614. <a:DataType>bigint</a:DataType>
  1615. </o:Column>
  1616. <o:Column Id="o20">
  1617. <a:ObjectID>ECB3D7E4-E0A7-4888-9EE2-CAC9F2564D6B</a:ObjectID>
  1618. <a:Name>描述</a:Name>
  1619. <a:Code>Describes</a:Code>
  1620. <a:CreationDate>1585649989</a:CreationDate>
  1621. <a:Creator>Administrator</a:Creator>
  1622. <a:ModificationDate>1591165723</a:ModificationDate>
  1623. <a:Modifier>Administrator</a:Modifier>
  1624. <a:Comment>描述</a:Comment>
  1625. <a:DataType>varchar(256)</a:DataType>
  1626. <a:Length>256</a:Length>
  1627. </o:Column>
  1628. <o:Column Id="o21">
  1629. <a:ObjectID>501B5F35-4ED8-4A2C-BD39-00B8C22DC9D6</a:ObjectID>
  1630. <a:Name>用户登录码</a:Name>
  1631. <a:Code>LoginCode</a:Code>
  1632. <a:CreationDate>1586745763</a:CreationDate>
  1633. <a:Creator>Administrator</a:Creator>
  1634. <a:ModificationDate>1591165723</a:ModificationDate>
  1635. <a:Modifier>Administrator</a:Modifier>
  1636. <a:Comment>用户登录码</a:Comment>
  1637. <a:DataType>varchar(64)</a:DataType>
  1638. <a:Length>64</a:Length>
  1639. </o:Column>
  1640. <o:Column Id="o22">
  1641. <a:ObjectID>C6CDFCA5-9544-41F1-ABE0-AD1E4418C9B8</a:ObjectID>
  1642. <a:Name>创建时间</a:Name>
  1643. <a:Code>CreateTime</a:Code>
  1644. <a:CreationDate>1585649989</a:CreationDate>
  1645. <a:Creator>Administrator</a:Creator>
  1646. <a:ModificationDate>1591165723</a:ModificationDate>
  1647. <a:Modifier>Administrator</a:Modifier>
  1648. <a:Comment>创建时间</a:Comment>
  1649. <a:DataType>datetime</a:DataType>
  1650. </o:Column>
  1651. <o:Column Id="o23">
  1652. <a:ObjectID>80413BCA-7366-47D5-87F8-DF348CDB8C95</a:ObjectID>
  1653. <a:Name>备注</a:Name>
  1654. <a:Code>Remark</a:Code>
  1655. <a:CreationDate>1585650368</a:CreationDate>
  1656. <a:Creator>Administrator</a:Creator>
  1657. <a:ModificationDate>1591165723</a:ModificationDate>
  1658. <a:Modifier>Administrator</a:Modifier>
  1659. <a:Comment>备注</a:Comment>
  1660. <a:DataType>varchar(256)</a:DataType>
  1661. <a:Length>256</a:Length>
  1662. </o:Column>
  1663. </c:Columns>
  1664. <c:Keys>
  1665. <o:Key Id="o24">
  1666. <a:ObjectID>28A09BA2-F036-4E68-9CB5-FEF7DD91E2E3</a:ObjectID>
  1667. <a:Name>Key_1</a:Name>
  1668. <a:Code>Key_1</a:Code>
  1669. <a:CreationDate>1585634323</a:CreationDate>
  1670. <a:Creator>Administrator</a:Creator>
  1671. <a:ModificationDate>1590998147</a:ModificationDate>
  1672. <a:Modifier>Administrator</a:Modifier>
  1673. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,57={D1C795B8-8F7B-4AA7-A240-85C5B737C543},ExtUnique,4=true
  1674. </a:ExtendedAttributesText>
  1675. <c:Key.Columns>
  1676. <o:Column Ref="o11"/>
  1677. </c:Key.Columns>
  1678. </o:Key>
  1679. </c:Keys>
  1680. <c:PrimaryKey>
  1681. <o:Key Ref="o24"/>
  1682. </c:PrimaryKey>
  1683. </o:Table>
  1684. <o:Table Id="o8">
  1685. <a:ObjectID>A37E4DF0-8D09-42D3-B97C-05552FBFDE91</a:ObjectID>
  1686. <a:Name>用户收藏表</a:Name>
  1687. <a:Code>users_collects</a:Code>
  1688. <a:CreationDate>1585634248</a:CreationDate>
  1689. <a:Creator>Administrator</a:Creator>
  1690. <a:ModificationDate>1590998570</a:ModificationDate>
  1691. <a:Modifier>Administrator</a:Modifier>
  1692. <a:Comment>用户收藏表</a:Comment>
  1693. <a:TotalSavingCurrency/>
  1694. <c:Columns>
  1695. <o:Column Id="o25">
  1696. <a:ObjectID>87E81F3B-0841-476C-B2F2-34117F303C0D</a:ObjectID>
  1697. <a:Name>编码</a:Name>
  1698. <a:Code>Id</a:Code>
  1699. <a:CreationDate>1585634299</a:CreationDate>
  1700. <a:Creator>Administrator</a:Creator>
  1701. <a:ModificationDate>1591165617</a:ModificationDate>
  1702. <a:Modifier>Administrator</a:Modifier>
  1703. <a:Comment>编码</a:Comment>
  1704. <a:DataType>int</a:DataType>
  1705. <a:Identity>1</a:Identity>
  1706. <a:Column.Mandatory>1</a:Column.Mandatory>
  1707. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,102={9480E6AA-83DD-4AA7-9C91-E48F709C29D9},CharSet,0=
  1708. {B314652C-DD43-4F81-8524-6F97A1BAACBA},Collate,0=
  1709. </a:ExtendedAttributesText>
  1710. </o:Column>
  1711. <o:Column Id="o26">
  1712. <a:ObjectID>5603B37B-896C-49BB-BD36-F16BC3852429</a:ObjectID>
  1713. <a:Name>用户编码</a:Name>
  1714. <a:Code>UserId</a:Code>
  1715. <a:CreationDate>1590998393</a:CreationDate>
  1716. <a:Creator>Administrator</a:Creator>
  1717. <a:ModificationDate>1591255817</a:ModificationDate>
  1718. <a:Modifier>Administrator</a:Modifier>
  1719. <a:Comment>用户编码</a:Comment>
  1720. <a:DataType>int</a:DataType>
  1721. </o:Column>
  1722. <o:Column Id="o27">
  1723. <a:ObjectID>FC7AD858-D833-4DB8-B259-A7A63F986C72</a:ObjectID>
  1724. <a:Name>收藏名称</a:Name>
  1725. <a:Code>Title</a:Code>
  1726. <a:CreationDate>1590998393</a:CreationDate>
  1727. <a:Creator>Administrator</a:Creator>
  1728. <a:ModificationDate>1591165617</a:ModificationDate>
  1729. <a:Modifier>Administrator</a:Modifier>
  1730. <a:Comment>收藏名称</a:Comment>
  1731. <a:DataType>varchar(128)</a:DataType>
  1732. <a:Length>128</a:Length>
  1733. </o:Column>
  1734. <o:Column Id="o28">
  1735. <a:ObjectID>A774A810-3F9A-4ADF-9DB3-4715018DC227</a:ObjectID>
  1736. <a:Name>收藏链接</a:Name>
  1737. <a:Code>Url</a:Code>
  1738. <a:CreationDate>1590998393</a:CreationDate>
  1739. <a:Creator>Administrator</a:Creator>
  1740. <a:ModificationDate>1591165617</a:ModificationDate>
  1741. <a:Modifier>Administrator</a:Modifier>
  1742. <a:Comment>收藏链接</a:Comment>
  1743. <a:DataType>varchar(512)</a:DataType>
  1744. <a:Length>512</a:Length>
  1745. </o:Column>
  1746. <o:Column Id="o29">
  1747. <a:ObjectID>8D27E66E-558A-4545-95E0-26810497099F</a:ObjectID>
  1748. <a:Name>收藏图片</a:Name>
  1749. <a:Code>Img</a:Code>
  1750. <a:CreationDate>1590998393</a:CreationDate>
  1751. <a:Creator>Administrator</a:Creator>
  1752. <a:ModificationDate>1591165617</a:ModificationDate>
  1753. <a:Modifier>Administrator</a:Modifier>
  1754. <a:Comment>收藏图片</a:Comment>
  1755. <a:DataType>varchar(512)</a:DataType>
  1756. <a:Length>512</a:Length>
  1757. </o:Column>
  1758. <o:Column Id="o30">
  1759. <a:ObjectID>54FB8452-5902-4119-8D4F-57926C461090</a:ObjectID>
  1760. <a:Name>收藏类型</a:Name>
  1761. <a:Code>Type</a:Code>
  1762. <a:CreationDate>1590998393</a:CreationDate>
  1763. <a:Creator>Administrator</a:Creator>
  1764. <a:ModificationDate>1591165617</a:ModificationDate>
  1765. <a:Modifier>Administrator</a:Modifier>
  1766. <a:Comment>收藏类型 网站枚举枚举</a:Comment>
  1767. <a:DataType>int</a:DataType>
  1768. </o:Column>
  1769. <o:Column Id="o31">
  1770. <a:ObjectID>928083B2-BDB9-4A44-8192-FB49B1826F25</a:ObjectID>
  1771. <a:Name>创建时间</a:Name>
  1772. <a:Code>CreateTime</a:Code>
  1773. <a:CreationDate>1585649989</a:CreationDate>
  1774. <a:Creator>Administrator</a:Creator>
  1775. <a:ModificationDate>1591165617</a:ModificationDate>
  1776. <a:Modifier>Administrator</a:Modifier>
  1777. <a:Comment>创建时间</a:Comment>
  1778. <a:DataType>datetime</a:DataType>
  1779. </o:Column>
  1780. <o:Column Id="o32">
  1781. <a:ObjectID>37940AED-0351-45DF-8327-9C941DF0EC52</a:ObjectID>
  1782. <a:Name>备注</a:Name>
  1783. <a:Code>Remark</a:Code>
  1784. <a:CreationDate>1585650368</a:CreationDate>
  1785. <a:Creator>Administrator</a:Creator>
  1786. <a:ModificationDate>1591165617</a:ModificationDate>
  1787. <a:Modifier>Administrator</a:Modifier>
  1788. <a:Comment>备注</a:Comment>
  1789. <a:DataType>varchar(256)</a:DataType>
  1790. <a:Length>256</a:Length>
  1791. </o:Column>
  1792. </c:Columns>
  1793. <c:Keys>
  1794. <o:Key Id="o33">
  1795. <a:ObjectID>4E4EE7B2-B559-499D-9E8A-2442B344EEEB</a:ObjectID>
  1796. <a:Name>Key_1</a:Name>
  1797. <a:Code>Key_1</a:Code>
  1798. <a:CreationDate>1585634323</a:CreationDate>
  1799. <a:Creator>Administrator</a:Creator>
  1800. <a:ModificationDate>1590998321</a:ModificationDate>
  1801. <a:Modifier>Administrator</a:Modifier>
  1802. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,57={D1C795B8-8F7B-4AA7-A240-85C5B737C543},ExtUnique,4=true
  1803. </a:ExtendedAttributesText>
  1804. <c:Key.Columns>
  1805. <o:Column Ref="o25"/>
  1806. </c:Key.Columns>
  1807. </o:Key>
  1808. </c:Keys>
  1809. <c:PrimaryKey>
  1810. <o:Key Ref="o33"/>
  1811. </c:PrimaryKey>
  1812. </o:Table>
  1813. <o:Table Id="o10">
  1814. <a:ObjectID>2CA9A56F-0455-4C48-911C-0CA9AEA226A2</a:ObjectID>
  1815. <a:Name>用户浏览记录</a:Name>
  1816. <a:Code>users_record</a:Code>
  1817. <a:CreationDate>1585634248</a:CreationDate>
  1818. <a:Creator>Administrator</a:Creator>
  1819. <a:ModificationDate>1590998907</a:ModificationDate>
  1820. <a:Modifier>Administrator</a:Modifier>
  1821. <a:Comment>用户浏览记录</a:Comment>
  1822. <a:TotalSavingCurrency/>
  1823. <c:Columns>
  1824. <o:Column Id="o34">
  1825. <a:ObjectID>892D7557-C901-454E-8D6C-AFCA7C9341AC</a:ObjectID>
  1826. <a:Name>编码</a:Name>
  1827. <a:Code>Id</a:Code>
  1828. <a:CreationDate>1585634299</a:CreationDate>
  1829. <a:Creator>Administrator</a:Creator>
  1830. <a:ModificationDate>1591165765</a:ModificationDate>
  1831. <a:Modifier>Administrator</a:Modifier>
  1832. <a:Comment>编码</a:Comment>
  1833. <a:DataType>int</a:DataType>
  1834. <a:Identity>1</a:Identity>
  1835. <a:Column.Mandatory>1</a:Column.Mandatory>
  1836. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,102={9480E6AA-83DD-4AA7-9C91-E48F709C29D9},CharSet,0=
  1837. {B314652C-DD43-4F81-8524-6F97A1BAACBA},Collate,0=
  1838. </a:ExtendedAttributesText>
  1839. </o:Column>
  1840. <o:Column Id="o35">
  1841. <a:ObjectID>16DEB873-ED1F-4ED1-9825-B773B1ABEDBC</a:ObjectID>
  1842. <a:Name>用户编码</a:Name>
  1843. <a:Code>UserId</a:Code>
  1844. <a:CreationDate>1590998393</a:CreationDate>
  1845. <a:Creator>Administrator</a:Creator>
  1846. <a:ModificationDate>1591165765</a:ModificationDate>
  1847. <a:Modifier>Administrator</a:Modifier>
  1848. <a:Comment>用户编码</a:Comment>
  1849. <a:DataType>int</a:DataType>
  1850. </o:Column>
  1851. <o:Column Id="o36">
  1852. <a:ObjectID>A1346E44-A09B-4782-96F9-94279B593CE6</a:ObjectID>
  1853. <a:Name>浏览名称</a:Name>
  1854. <a:Code>Title</a:Code>
  1855. <a:CreationDate>1590998393</a:CreationDate>
  1856. <a:Creator>Administrator</a:Creator>
  1857. <a:ModificationDate>1591255862</a:ModificationDate>
  1858. <a:Modifier>Administrator</a:Modifier>
  1859. <a:Comment>浏览名称</a:Comment>
  1860. <a:DataType>varchar(128)</a:DataType>
  1861. <a:Length>128</a:Length>
  1862. </o:Column>
  1863. <o:Column Id="o37">
  1864. <a:ObjectID>7654A78A-674A-49F0-AF92-7F026E40A0D5</a:ObjectID>
  1865. <a:Name>浏览链接</a:Name>
  1866. <a:Code>Url</a:Code>
  1867. <a:CreationDate>1590998393</a:CreationDate>
  1868. <a:Creator>Administrator</a:Creator>
  1869. <a:ModificationDate>1591255862</a:ModificationDate>
  1870. <a:Modifier>Administrator</a:Modifier>
  1871. <a:Comment>浏览链接</a:Comment>
  1872. <a:DataType>varchar(512)</a:DataType>
  1873. <a:Length>512</a:Length>
  1874. </o:Column>
  1875. <o:Column Id="o38">
  1876. <a:ObjectID>98979A67-4709-4045-AA0C-F8359CA71845</a:ObjectID>
  1877. <a:Name>浏览图片</a:Name>
  1878. <a:Code>Img</a:Code>
  1879. <a:CreationDate>1590998393</a:CreationDate>
  1880. <a:Creator>Administrator</a:Creator>
  1881. <a:ModificationDate>1591255862</a:ModificationDate>
  1882. <a:Modifier>Administrator</a:Modifier>
  1883. <a:Comment>浏览图片</a:Comment>
  1884. <a:DataType>varchar(512)</a:DataType>
  1885. <a:Length>512</a:Length>
  1886. </o:Column>
  1887. <o:Column Id="o39">
  1888. <a:ObjectID>2FCC9AB5-8471-4BEB-A58E-C022C797C915</a:ObjectID>
  1889. <a:Name>浏览类型</a:Name>
  1890. <a:Code>Type</a:Code>
  1891. <a:CreationDate>1590998393</a:CreationDate>
  1892. <a:Creator>Administrator</a:Creator>
  1893. <a:ModificationDate>1591255862</a:ModificationDate>
  1894. <a:Modifier>Administrator</a:Modifier>
  1895. <a:Comment>浏览类型 网站枚举枚举</a:Comment>
  1896. <a:DataType>int</a:DataType>
  1897. </o:Column>
  1898. <o:Column Id="o40">
  1899. <a:ObjectID>55023E8B-9BF3-4A9E-8D26-D375117A7276</a:ObjectID>
  1900. <a:Name>创建时间</a:Name>
  1901. <a:Code>CreateTime</a:Code>
  1902. <a:CreationDate>1585649989</a:CreationDate>
  1903. <a:Creator>Administrator</a:Creator>
  1904. <a:ModificationDate>1591165765</a:ModificationDate>
  1905. <a:Modifier>Administrator</a:Modifier>
  1906. <a:Comment>创建时间</a:Comment>
  1907. <a:DataType>datetime</a:DataType>
  1908. </o:Column>
  1909. <o:Column Id="o41">
  1910. <a:ObjectID>C8BDFFBA-B756-4A47-8494-3D129678B89E</a:ObjectID>
  1911. <a:Name>备注</a:Name>
  1912. <a:Code>Remark</a:Code>
  1913. <a:CreationDate>1585650368</a:CreationDate>
  1914. <a:Creator>Administrator</a:Creator>
  1915. <a:ModificationDate>1591165765</a:ModificationDate>
  1916. <a:Modifier>Administrator</a:Modifier>
  1917. <a:Comment>备注</a:Comment>
  1918. <a:DataType>varchar(256)</a:DataType>
  1919. <a:Length>256</a:Length>
  1920. </o:Column>
  1921. </c:Columns>
  1922. <c:Keys>
  1923. <o:Key Id="o42">
  1924. <a:ObjectID>B878EFF9-81DA-4139-BF3E-7E9B7C508272</a:ObjectID>
  1925. <a:Name>Key_1</a:Name>
  1926. <a:Code>Key_1</a:Code>
  1927. <a:CreationDate>1585634323</a:CreationDate>
  1928. <a:Creator>Administrator</a:Creator>
  1929. <a:ModificationDate>1590998578</a:ModificationDate>
  1930. <a:Modifier>Administrator</a:Modifier>
  1931. <a:ExtendedAttributesText>{F4F16ECD-F2F1-4006-AF6F-638D5C65F35E},MYSQL50,57={D1C795B8-8F7B-4AA7-A240-85C5B737C543},ExtUnique,4=true
  1932. </a:ExtendedAttributesText>
  1933. <c:Key.Columns>
  1934. <o:Column Ref="o34"/>
  1935. </c:Key.Columns>
  1936. </o:Key>
  1937. </c:Keys>
  1938. <c:PrimaryKey>
  1939. <o:Key Ref="o42"/>
  1940. </c:PrimaryKey>
  1941. </o:Table>
  1942. </c:Tables>
  1943. <c:DefaultGroups>
  1944. <o:Group Id="o43">
  1945. <a:ObjectID>558154A5-F609-4816-A522-EABF664D659E</a:ObjectID>
  1946. <a:Name>PUBLIC</a:Name>
  1947. <a:Code>PUBLIC</a:Code>
  1948. <a:CreationDate>1590998098</a:CreationDate>
  1949. <a:Creator>Administrator</a:Creator>
  1950. <a:ModificationDate>1590998098</a:ModificationDate>
  1951. <a:Modifier>Administrator</a:Modifier>
  1952. </o:Group>
  1953. </c:DefaultGroups>
  1954. <c:TargetModels>
  1955. <o:TargetModel Id="o44">
  1956. <a:ObjectID>8B8B0A2E-F5C8-4A5B-91B3-B7454F276D35</a:ObjectID>
  1957. <a:Name>MySQL 5.0</a:Name>
  1958. <a:Code>MYSQL50</a:Code>
  1959. <a:CreationDate>1590998098</a:CreationDate>
  1960. <a:Creator>Administrator</a:Creator>
  1961. <a:ModificationDate>1590998098</a:ModificationDate>
  1962. <a:Modifier>Administrator</a:Modifier>
  1963. <a:TargetModelURL>file:///%_DBMS%/mysql50.xdb</a:TargetModelURL>
  1964. <a:TargetModelID>F4F16ECD-F2F1-4006-AF6F-638D5C65F35E</a:TargetModelID>
  1965. <a:TargetModelClassID>4BA9F647-DAB1-11D1-9944-006097355D9B</a:TargetModelClassID>
  1966. <a:TargetModelLastModificationDate>1276524678</a:TargetModelLastModificationDate>
  1967. <c:SessionShortcuts>
  1968. <o:Shortcut Ref="o3"/>
  1969. </c:SessionShortcuts>
  1970. </o:TargetModel>
  1971. </c:TargetModels>
  1972. </o:Model>
  1973. </c:Children>
  1974. </o:RootObject>
  1975. </Model>