tinfoclass.ftl 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <?mso-application progid="Word.Document"?>
  3. <w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve">
  4. <w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/>
  5. <o:DocumentProperties>
  6. <o:Title>要有表头 “政务信息资源定义表”</o:Title>
  7. <o:Author>lzh</o:Author>
  8. <o:LastAuthor> </o:LastAuthor>
  9. <o:Revision>3</o:Revision>
  10. <o:TotalTime>990</o:TotalTime>
  11. <o:Created>2018-09-06T10:18:00Z</o:Created>
  12. <o:LastSaved>2018-09-07T02:47:00Z</o:LastSaved>
  13. <o:Pages>2</o:Pages>
  14. <o:Words>75</o:Words>
  15. <o:Characters>434</o:Characters>
  16. <o:Lines>3</o:Lines>
  17. <o:Paragraphs>1</o:Paragraphs>
  18. <o:CharactersWithSpaces>508</o:CharactersWithSpaces>
  19. <o:Version>16</o:Version>
  20. </o:DocumentProperties>
  21. <o:CustomDocumentProperties>
  22. <o:KSOProductBuildVer dt:dt="string">2052-9.1.0.4429</o:KSOProductBuildVer>
  23. </o:CustomDocumentProperties>
  24. <w:fonts>
  25. <w:defaultFonts w:ascii="Times New Roman" w:fareast="宋体" w:h-ansi="Times New Roman" w:cs="Times New Roman"/>
  26. <w:font w:name="Times New Roman">
  27. <w:panose-1 w:val="02020603050405020304"/>
  28. <w:charset w:val="00"/>
  29. <w:family w:val="Roman"/>
  30. <w:pitch w:val="variable"/>
  31. <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/>
  32. </w:font>
  33. <w:font w:name="宋体">
  34. <w:altName w:val="SimSun"/>
  35. <w:panose-1 w:val="02010600030101010101"/>
  36. <w:charset w:val="86"/>
  37. <w:family w:val="auto"/>
  38. <w:pitch w:val="variable"/>
  39. <w:sig w:usb-0="00000003" w:usb-1="288F0000" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
  40. </w:font>
  41. <w:font w:name="Cambria Math">
  42. <w:panose-1 w:val="02040503050406030204"/>
  43. <w:charset w:val="00"/>
  44. <w:family w:val="Roman"/>
  45. <w:pitch w:val="variable"/>
  46. <w:sig w:usb-0="00000003" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="00000001" w:csb-1="00000000"/>
  47. </w:font>
  48. <w:font w:name="Cambria">
  49. <w:panose-1 w:val="02040503050406030204"/>
  50. <w:charset w:val="00"/>
  51. <w:family w:val="Roman"/>
  52. <w:pitch w:val="variable"/>
  53. <w:sig w:usb-0="E00006FF" w:usb-1="420024FF" w:usb-2="02000000" w:usb-3="00000000" w:csb-0="0000019F" w:csb-1="00000000"/>
  54. </w:font>
  55. <w:font w:name="华文中宋">
  56. <w:panose-1 w:val="02010600040101010101"/>
  57. <w:charset w:val="86"/>
  58. <w:family w:val="auto"/>
  59. <w:pitch w:val="variable"/>
  60. <w:sig w:usb-0="00000287" w:usb-1="080F0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="0004009F" w:csb-1="00000000"/>
  61. </w:font>
  62. <w:font w:name="@宋体">
  63. <w:panose-1 w:val="02010600030101010101"/>
  64. <w:charset w:val="86"/>
  65. <w:family w:val="auto"/>
  66. <w:pitch w:val="variable"/>
  67. <w:sig w:usb-0="00000003" w:usb-1="288F0000" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001" w:csb-1="00000000"/>
  68. </w:font>
  69. <w:font w:name="@华文中宋">
  70. <w:charset w:val="86"/>
  71. <w:family w:val="auto"/>
  72. <w:pitch w:val="variable"/>
  73. <w:sig w:usb-0="00000287" w:usb-1="080F0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="0004009F" w:csb-1="00000000"/>
  74. </w:font>
  75. </w:fonts>
  76. <w:lists>
  77. <w:listDef w:listDefId="0">
  78. <w:lsid w:val="39384A32"/>
  79. <w:plt w:val="HybridMultilevel"/>
  80. <w:tmpl w:val="A1C8EBD8"/>
  81. <w:lvl w:ilvl="0" w:tplc="789211E4">
  82. <w:start w:val="1"/>
  83. <w:lvlText w:val="%1、"/>
  84. <w:lvlJc w:val="left"/>
  85. <w:pPr>
  86. <w:ind w:left="360" w:hanging="360"/>
  87. </w:pPr>
  88. <w:rPr>
  89. <w:rFonts w:hint="default"/>
  90. </w:rPr>
  91. </w:lvl>
  92. <w:lvl w:ilvl="1" w:tplc="04090019" w:tentative="on">
  93. <w:start w:val="1"/>
  94. <w:nfc w:val="4"/>
  95. <w:lvlText w:val="%2)"/>
  96. <w:lvlJc w:val="left"/>
  97. <w:pPr>
  98. <w:ind w:left="840" w:hanging="420"/>
  99. </w:pPr>
  100. </w:lvl>
  101. <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on">
  102. <w:start w:val="1"/>
  103. <w:nfc w:val="2"/>
  104. <w:lvlText w:val="%3."/>
  105. <w:lvlJc w:val="right"/>
  106. <w:pPr>
  107. <w:ind w:left="1260" w:hanging="420"/>
  108. </w:pPr>
  109. </w:lvl>
  110. <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on">
  111. <w:start w:val="1"/>
  112. <w:lvlText w:val="%4."/>
  113. <w:lvlJc w:val="left"/>
  114. <w:pPr>
  115. <w:ind w:left="1680" w:hanging="420"/>
  116. </w:pPr>
  117. </w:lvl>
  118. <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="on">
  119. <w:start w:val="1"/>
  120. <w:nfc w:val="4"/>
  121. <w:lvlText w:val="%5)"/>
  122. <w:lvlJc w:val="left"/>
  123. <w:pPr>
  124. <w:ind w:left="2100" w:hanging="420"/>
  125. </w:pPr>
  126. </w:lvl>
  127. <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on">
  128. <w:start w:val="1"/>
  129. <w:nfc w:val="2"/>
  130. <w:lvlText w:val="%6."/>
  131. <w:lvlJc w:val="right"/>
  132. <w:pPr>
  133. <w:ind w:left="2520" w:hanging="420"/>
  134. </w:pPr>
  135. </w:lvl>
  136. <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on">
  137. <w:start w:val="1"/>
  138. <w:lvlText w:val="%7."/>
  139. <w:lvlJc w:val="left"/>
  140. <w:pPr>
  141. <w:ind w:left="2940" w:hanging="420"/>
  142. </w:pPr>
  143. </w:lvl>
  144. <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="on">
  145. <w:start w:val="1"/>
  146. <w:nfc w:val="4"/>
  147. <w:lvlText w:val="%8)"/>
  148. <w:lvlJc w:val="left"/>
  149. <w:pPr>
  150. <w:ind w:left="3360" w:hanging="420"/>
  151. </w:pPr>
  152. </w:lvl>
  153. <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on">
  154. <w:start w:val="1"/>
  155. <w:nfc w:val="2"/>
  156. <w:lvlText w:val="%9."/>
  157. <w:lvlJc w:val="right"/>
  158. <w:pPr>
  159. <w:ind w:left="3780" w:hanging="420"/>
  160. </w:pPr>
  161. </w:lvl>
  162. </w:listDef>
  163. <w:listDef w:listDefId="1">
  164. <w:lsid w:val="58CFA3D9"/>
  165. <w:plt w:val="SingleLevel"/>
  166. <w:tmpl w:val="58CFA3D9"/>
  167. <w:lvl w:ilvl="0">
  168. <w:start w:val="1"/>
  169. <w:suff w:val="Nothing"/>
  170. <w:lvlText w:val="%1、"/>
  171. <w:lvlJc w:val="left"/>
  172. </w:lvl>
  173. </w:listDef>
  174. <w:list w:ilfo="1">
  175. <w:ilst w:val="1"/>
  176. </w:list>
  177. <w:list w:ilfo="2">
  178. <w:ilst w:val="0"/>
  179. </w:list>
  180. </w:lists>
  181. <w:styles>
  182. <w:versionOfBuiltInStylenames w:val="7"/>
  183. <w:latentStyles w:defLockedState="off" w:latentStyleCount="375">
  184. <w:lsdException w:name="Normal"/>
  185. <w:lsdException w:name="heading 1"/>
  186. <w:lsdException w:name="heading 2"/>
  187. <w:lsdException w:name="heading 3"/>
  188. <w:lsdException w:name="heading 4"/>
  189. <w:lsdException w:name="heading 5"/>
  190. <w:lsdException w:name="heading 6"/>
  191. <w:lsdException w:name="heading 7"/>
  192. <w:lsdException w:name="heading 8"/>
  193. <w:lsdException w:name="heading 9"/>
  194. <w:lsdException w:name="caption"/>
  195. <w:lsdException w:name="Title"/>
  196. <w:lsdException w:name="Subtitle"/>
  197. <w:lsdException w:name="Strong"/>
  198. <w:lsdException w:name="Emphasis"/>
  199. <w:lsdException w:name="HTML Preformatted"/>
  200. <w:lsdException w:name="No List"/>
  201. <w:lsdException w:name="Outline List 1"/>
  202. <w:lsdException w:name="Outline List 2"/>
  203. <w:lsdException w:name="Outline List 3"/>
  204. <w:lsdException w:name="Table Simple 1"/>
  205. <w:lsdException w:name="Table Simple 2"/>
  206. <w:lsdException w:name="Table Simple 3"/>
  207. <w:lsdException w:name="Table Classic 1"/>
  208. <w:lsdException w:name="Table Classic 2"/>
  209. <w:lsdException w:name="Table Classic 3"/>
  210. <w:lsdException w:name="Table Classic 4"/>
  211. <w:lsdException w:name="Table Colorful 1"/>
  212. <w:lsdException w:name="Table Colorful 2"/>
  213. <w:lsdException w:name="Table Colorful 3"/>
  214. <w:lsdException w:name="Table Columns 1"/>
  215. <w:lsdException w:name="Table Columns 2"/>
  216. <w:lsdException w:name="Table Columns 3"/>
  217. <w:lsdException w:name="Table Columns 4"/>
  218. <w:lsdException w:name="Table Columns 5"/>
  219. <w:lsdException w:name="Table Grid 1"/>
  220. <w:lsdException w:name="Table Grid 2"/>
  221. <w:lsdException w:name="Table Grid 3"/>
  222. <w:lsdException w:name="Table Grid 4"/>
  223. <w:lsdException w:name="Table Grid 5"/>
  224. <w:lsdException w:name="Table Grid 6"/>
  225. <w:lsdException w:name="Table Grid 7"/>
  226. <w:lsdException w:name="Table Grid 8"/>
  227. <w:lsdException w:name="Table List 1"/>
  228. <w:lsdException w:name="Table List 2"/>
  229. <w:lsdException w:name="Table List 3"/>
  230. <w:lsdException w:name="Table List 4"/>
  231. <w:lsdException w:name="Table List 5"/>
  232. <w:lsdException w:name="Table List 6"/>
  233. <w:lsdException w:name="Table List 7"/>
  234. <w:lsdException w:name="Table List 8"/>
  235. <w:lsdException w:name="Table 3D effects 1"/>
  236. <w:lsdException w:name="Table 3D effects 2"/>
  237. <w:lsdException w:name="Table 3D effects 3"/>
  238. <w:lsdException w:name="Table Contemporary"/>
  239. <w:lsdException w:name="Table Elegant"/>
  240. <w:lsdException w:name="Table Professional"/>
  241. <w:lsdException w:name="Table Subtle 1"/>
  242. <w:lsdException w:name="Table Web 1"/>
  243. <w:lsdException w:name="Table Web 2"/>
  244. <w:lsdException w:name="Table Theme"/>
  245. <w:lsdException w:name="Placeholder Text"/>
  246. <w:lsdException w:name="No Spacing"/>
  247. <w:lsdException w:name="Light Shading"/>
  248. <w:lsdException w:name="Light List"/>
  249. <w:lsdException w:name="Light Grid"/>
  250. <w:lsdException w:name="Medium Shading 1"/>
  251. <w:lsdException w:name="Medium Shading 2"/>
  252. <w:lsdException w:name="Medium List 1"/>
  253. <w:lsdException w:name="Medium List 2"/>
  254. <w:lsdException w:name="Medium Grid 1"/>
  255. <w:lsdException w:name="Medium Grid 2"/>
  256. <w:lsdException w:name="Medium Grid 3"/>
  257. <w:lsdException w:name="Dark List"/>
  258. <w:lsdException w:name="Colorful Shading"/>
  259. <w:lsdException w:name="Colorful List"/>
  260. <w:lsdException w:name="Colorful Grid"/>
  261. <w:lsdException w:name="Light Shading Accent 1"/>
  262. <w:lsdException w:name="Light List Accent 1"/>
  263. <w:lsdException w:name="Revision"/>
  264. <w:lsdException w:name="List Paragraph"/>
  265. <w:lsdException w:name="Quote"/>
  266. <w:lsdException w:name="Intense Quote"/>
  267. <w:lsdException w:name="Medium List 2 Accent 1"/>
  268. <w:lsdException w:name="Medium Grid 1 Accent 1"/>
  269. <w:lsdException w:name="Medium Grid 2 Accent 1"/>
  270. <w:lsdException w:name="Medium Grid 3 Accent 1"/>
  271. <w:lsdException w:name="Dark List Accent 1"/>
  272. <w:lsdException w:name="Colorful Shading Accent 1"/>
  273. <w:lsdException w:name="Colorful List Accent 1"/>
  274. <w:lsdException w:name="Colorful Grid Accent 1"/>
  275. <w:lsdException w:name="Light Shading Accent 2"/>
  276. <w:lsdException w:name="Light List Accent 2"/>
  277. <w:lsdException w:name="Light Grid Accent 2"/>
  278. <w:lsdException w:name="Medium Shading 1 Accent 2"/>
  279. <w:lsdException w:name="Medium Shading 2 Accent 2"/>
  280. <w:lsdException w:name="Medium List 1 Accent 2"/>
  281. <w:lsdException w:name="Medium List 2 Accent 2"/>
  282. <w:lsdException w:name="Medium Grid 1 Accent 2"/>
  283. <w:lsdException w:name="Medium Grid 2 Accent 2"/>
  284. <w:lsdException w:name="Medium Grid 3 Accent 2"/>
  285. <w:lsdException w:name="Dark List Accent 2"/>
  286. <w:lsdException w:name="Colorful Shading Accent 2"/>
  287. <w:lsdException w:name="Colorful List Accent 2"/>
  288. <w:lsdException w:name="Colorful Grid Accent 2"/>
  289. <w:lsdException w:name="Light Shading Accent 3"/>
  290. <w:lsdException w:name="Light List Accent 3"/>
  291. <w:lsdException w:name="Light Grid Accent 3"/>
  292. <w:lsdException w:name="Medium Shading 1 Accent 3"/>
  293. <w:lsdException w:name="Medium Shading 2 Accent 3"/>
  294. <w:lsdException w:name="Medium List 1 Accent 3"/>
  295. <w:lsdException w:name="Medium List 2 Accent 3"/>
  296. <w:lsdException w:name="Medium Grid 1 Accent 3"/>
  297. <w:lsdException w:name="Medium Grid 2 Accent 3"/>
  298. <w:lsdException w:name="Medium Grid 3 Accent 3"/>
  299. <w:lsdException w:name="Dark List Accent 3"/>
  300. <w:lsdException w:name="Colorful Shading Accent 3"/>
  301. <w:lsdException w:name="Colorful List Accent 3"/>
  302. <w:lsdException w:name="Colorful Grid Accent 3"/>
  303. <w:lsdException w:name="Light Shading Accent 4"/>
  304. <w:lsdException w:name="Light List Accent 4"/>
  305. <w:lsdException w:name="Light Grid Accent 4"/>
  306. <w:lsdException w:name="Medium Shading 1 Accent 4"/>
  307. <w:lsdException w:name="Medium Shading 2 Accent 4"/>
  308. <w:lsdException w:name="Medium List 1 Accent 4"/>
  309. <w:lsdException w:name="Medium List 2 Accent 4"/>
  310. <w:lsdException w:name="Medium Grid 1 Accent 4"/>
  311. <w:lsdException w:name="Medium Grid 2 Accent 4"/>
  312. <w:lsdException w:name="Medium Grid 3 Accent 4"/>
  313. <w:lsdException w:name="Dark List Accent 4"/>
  314. <w:lsdException w:name="Colorful Shading Accent 4"/>
  315. <w:lsdException w:name="Colorful List Accent 4"/>
  316. <w:lsdException w:name="Colorful Grid Accent 4"/>
  317. <w:lsdException w:name="Light Shading Accent 5"/>
  318. <w:lsdException w:name="Light List Accent 5"/>
  319. <w:lsdException w:name="Light Grid Accent 5"/>
  320. <w:lsdException w:name="Medium Shading 1 Accent 5"/>
  321. <w:lsdException w:name="Medium Shading 2 Accent 5"/>
  322. <w:lsdException w:name="Medium List 1 Accent 5"/>
  323. <w:lsdException w:name="Medium List 2 Accent 5"/>
  324. <w:lsdException w:name="Medium Grid 1 Accent 5"/>
  325. <w:lsdException w:name="Medium Grid 2 Accent 5"/>
  326. <w:lsdException w:name="Medium Grid 3 Accent 5"/>
  327. <w:lsdException w:name="Dark List Accent 5"/>
  328. <w:lsdException w:name="Colorful Shading Accent 5"/>
  329. <w:lsdException w:name="Colorful List Accent 5"/>
  330. <w:lsdException w:name="Colorful Grid Accent 5"/>
  331. <w:lsdException w:name="Light Shading Accent 6"/>
  332. <w:lsdException w:name="Light List Accent 6"/>
  333. <w:lsdException w:name="Light Grid Accent 6"/>
  334. <w:lsdException w:name="Medium Shading 1 Accent 6"/>
  335. <w:lsdException w:name="Medium Shading 2 Accent 6"/>
  336. <w:lsdException w:name="Medium List 1 Accent 6"/>
  337. <w:lsdException w:name="Medium List 2 Accent 6"/>
  338. <w:lsdException w:name="Medium Grid 1 Accent 6"/>
  339. <w:lsdException w:name="Medium Grid 2 Accent 6"/>
  340. <w:lsdException w:name="Medium Grid 3 Accent 6"/>
  341. <w:lsdException w:name="Subtle Emphasis"/>
  342. <w:lsdException w:name="Intense Emphasis"/>
  343. <w:lsdException w:name="Subtle Reference"/>
  344. <w:lsdException w:name="Intense Reference"/>
  345. <w:lsdException w:name="Book Title"/>
  346. <w:lsdException w:name="Bibliography"/>
  347. <w:lsdException w:name="TOC Heading"/>
  348. <w:lsdException w:name="Mention"/>
  349. <w:lsdException w:name="Smart Hyperlink"/>
  350. <w:lsdException w:name="Hashtag"/>
  351. <w:lsdException w:name="Unresolved Mention"/>
  352. </w:latentStyles>
  353. <w:style w:type="paragraph" w:default="on" w:styleId="a">
  354. <w:name w:val="Normal"/>
  355. <wx:uiName wx:val="正文"/>
  356. <w:rsid w:val="0089452F"/>
  357. <w:pPr>
  358. <w:widowControl w:val="off"/>
  359. <w:jc w:val="both"/>
  360. </w:pPr>
  361. <w:rPr>
  362. <wx:font wx:val="Times New Roman"/>
  363. <w:kern w:val="2"/>
  364. <w:sz w:val="21"/>
  365. <w:sz-cs w:val="24"/>
  366. <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/>
  367. </w:rPr>
  368. </w:style>
  369. <w:style w:type="paragraph" w:styleId="1">
  370. <w:name w:val="heading 1"/>
  371. <wx:uiName wx:val="标题 1"/>
  372. <w:basedOn w:val="a"/>
  373. <w:next w:val="a"/>
  374. <w:link w:val="10"/>
  375. <w:rsid w:val="001060AE"/>
  376. <w:pPr>
  377. <w:keepNext/>
  378. <w:keepLines/>
  379. <w:spacing w:before="340" w:after="330" w:line="578" w:line-rule="auto"/>
  380. <w:outlineLvl w:val="0"/>
  381. </w:pPr>
  382. <w:rPr>
  383. <wx:font wx:val="Times New Roman"/>
  384. <w:b/>
  385. <w:b-cs/>
  386. <w:kern w:val="44"/>
  387. <w:sz w:val="44"/>
  388. <w:sz-cs w:val="44"/>
  389. </w:rPr>
  390. </w:style>
  391. <w:style w:type="paragraph" w:styleId="2">
  392. <w:name w:val="heading 2"/>
  393. <w:aliases w:val="H2,sect 1.2,h2"/>
  394. <wx:uiName wx:val="标题 2"/>
  395. <w:basedOn w:val="a"/>
  396. <w:next w:val="a"/>
  397. <w:link w:val="20"/>
  398. <w:rsid w:val="000D58D9"/>
  399. <w:pPr>
  400. <w:keepNext/>
  401. <w:keepLines/>
  402. <w:spacing w:before="260" w:after="260" w:line="416" w:line-rule="auto"/>
  403. <w:outlineLvl w:val="1"/>
  404. </w:pPr>
  405. <w:rPr>
  406. <w:rFonts w:ascii="Cambria" w:h-ansi="Cambria"/>
  407. <wx:font wx:val="Cambria"/>
  408. <w:b/>
  409. <w:b-cs/>
  410. <w:sz w:val="32"/>
  411. <w:sz-cs w:val="32"/>
  412. </w:rPr>
  413. </w:style>
  414. <w:style w:type="character" w:default="on" w:styleId="a0">
  415. <w:name w:val="Default Paragraph Font"/>
  416. <wx:uiName wx:val="默认段落字体"/>
  417. </w:style>
  418. <w:style w:type="table" w:default="on" w:styleId="a1">
  419. <w:name w:val="Normal Table"/>
  420. <wx:uiName wx:val="普通表格"/>
  421. <w:rPr>
  422. <wx:font wx:val="Times New Roman"/>
  423. <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/>
  424. </w:rPr>
  425. <w:tblPr>
  426. <w:tblInd w:w="0" w:type="dxa"/>
  427. <w:tblCellMar>
  428. <w:top w:w="0" w:type="dxa"/>
  429. <w:left w:w="108" w:type="dxa"/>
  430. <w:bottom w:w="0" w:type="dxa"/>
  431. <w:right w:w="108" w:type="dxa"/>
  432. </w:tblCellMar>
  433. </w:tblPr>
  434. </w:style>
  435. <w:style w:type="list" w:default="on" w:styleId="a2">
  436. <w:name w:val="No List"/>
  437. <wx:uiName wx:val="无列表"/>
  438. </w:style>
  439. <w:style w:type="paragraph" w:styleId="CharCharCharChar">
  440. <w:name w:val="Char Char Char Char"/>
  441. <w:basedOn w:val="a"/>
  442. <w:rsid w:val="0089452F"/>
  443. <w:pPr>
  444. <w:tabs>
  445. <w:tab w:val="left" w:pos="600"/>
  446. </w:tabs>
  447. <w:ind w:left="600" w:hanging="600"/>
  448. </w:pPr>
  449. <w:rPr>
  450. <wx:font wx:val="Times New Roman"/>
  451. </w:rPr>
  452. </w:style>
  453. <w:style w:type="paragraph" w:styleId="a3">
  454. <w:name w:val="header"/>
  455. <wx:uiName wx:val="页眉"/>
  456. <w:basedOn w:val="a"/>
  457. <w:link w:val="a4"/>
  458. <w:rsid w:val="001060AE"/>
  459. <w:pPr>
  460. <w:pBdr>
  461. <w:bottom w:val="single" w:sz="6" wx:bdrwidth="15" w:space="1" w:color="auto"/>
  462. </w:pBdr>
  463. <w:tabs>
  464. <w:tab w:val="center" w:pos="4153"/>
  465. <w:tab w:val="right" w:pos="8306"/>
  466. </w:tabs>
  467. <w:snapToGrid w:val="off"/>
  468. <w:jc w:val="center"/>
  469. </w:pPr>
  470. <w:rPr>
  471. <wx:font wx:val="Times New Roman"/>
  472. <w:sz w:val="18"/>
  473. <w:sz-cs w:val="18"/>
  474. </w:rPr>
  475. </w:style>
  476. <w:style w:type="character" w:styleId="a4">
  477. <w:name w:val="页眉 字符"/>
  478. <w:link w:val="a3"/>
  479. <w:rsid w:val="001060AE"/>
  480. <w:rPr>
  481. <w:kern w:val="2"/>
  482. <w:sz w:val="18"/>
  483. <w:sz-cs w:val="18"/>
  484. </w:rPr>
  485. </w:style>
  486. <w:style w:type="paragraph" w:styleId="a5">
  487. <w:name w:val="footer"/>
  488. <wx:uiName wx:val="页脚"/>
  489. <w:basedOn w:val="a"/>
  490. <w:link w:val="a6"/>
  491. <w:rsid w:val="001060AE"/>
  492. <w:pPr>
  493. <w:tabs>
  494. <w:tab w:val="center" w:pos="4153"/>
  495. <w:tab w:val="right" w:pos="8306"/>
  496. </w:tabs>
  497. <w:snapToGrid w:val="off"/>
  498. <w:jc w:val="left"/>
  499. </w:pPr>
  500. <w:rPr>
  501. <wx:font wx:val="Times New Roman"/>
  502. <w:sz w:val="18"/>
  503. <w:sz-cs w:val="18"/>
  504. </w:rPr>
  505. </w:style>
  506. <w:style w:type="character" w:styleId="a6">
  507. <w:name w:val="页脚 字符"/>
  508. <w:link w:val="a5"/>
  509. <w:rsid w:val="001060AE"/>
  510. <w:rPr>
  511. <w:kern w:val="2"/>
  512. <w:sz w:val="18"/>
  513. <w:sz-cs w:val="18"/>
  514. </w:rPr>
  515. </w:style>
  516. <w:style w:type="character" w:styleId="10">
  517. <w:name w:val="标题 1 字符"/>
  518. <w:link w:val="1"/>
  519. <w:rsid w:val="001060AE"/>
  520. <w:rPr>
  521. <w:b/>
  522. <w:b-cs/>
  523. <w:kern w:val="44"/>
  524. <w:sz w:val="44"/>
  525. <w:sz-cs w:val="44"/>
  526. </w:rPr>
  527. </w:style>
  528. <w:style w:type="character" w:styleId="20">
  529. <w:name w:val="标题 2 字符"/>
  530. <w:aliases w:val="H2 字符,sect 1.2 字符,h2 字符"/>
  531. <w:link w:val="2"/>
  532. <w:rsid w:val="000D58D9"/>
  533. <w:rPr>
  534. <w:rFonts w:ascii="Cambria" w:fareast="宋体" w:h-ansi="Cambria" w:cs="Times New Roman"/>
  535. <w:b/>
  536. <w:b-cs/>
  537. <w:kern w:val="2"/>
  538. <w:sz w:val="32"/>
  539. <w:sz-cs w:val="32"/>
  540. </w:rPr>
  541. </w:style>
  542. <w:style w:type="paragraph" w:styleId="a7">
  543. <w:name w:val="a"/>
  544. <w:basedOn w:val="a"/>
  545. <w:rsid w:val="000D58D9"/>
  546. <w:pPr>
  547. <w:widowControl/>
  548. <w:spacing w:before="100" w:before-autospacing="on" w:after="100" w:after-autospacing="on"/>
  549. <w:jc w:val="left"/>
  550. </w:pPr>
  551. <w:rPr>
  552. <w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/>
  553. <wx:font wx:val="宋体"/>
  554. <w:kern w:val="0"/>
  555. <w:sz w:val="24"/>
  556. </w:rPr>
  557. </w:style>
  558. <w:style w:type="character" w:styleId="21">
  559. <w:name w:val="标题 2 字符1"/>
  560. <w:aliases w:val="H2 字符1,sect 1.2 字符1,h2 字符1"/>
  561. <w:locked/>
  562. <w:rsid w:val="000D58D9"/>
  563. <w:rPr>
  564. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体" w:hint="fareast"/>
  565. <w:b/>
  566. <w:b-cs/>
  567. <w:kern w:val="0"/>
  568. <w:sz w:val="36"/>
  569. <w:sz-cs w:val="32"/>
  570. </w:rPr>
  571. </w:style>
  572. <w:style w:type="paragraph" w:styleId="a8">
  573. <w:name w:val="Normal (Web)"/>
  574. <wx:uiName wx:val="普通(网站)"/>
  575. <w:basedOn w:val="a"/>
  576. <w:rsid w:val="00851750"/>
  577. <w:pPr>
  578. <w:widowControl/>
  579. <w:spacing w:before="100" w:before-autospacing="on" w:after="100" w:after-autospacing="on"/>
  580. <w:jc w:val="left"/>
  581. </w:pPr>
  582. <w:rPr>
  583. <w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:cs="宋体"/>
  584. <wx:font wx:val="宋体"/>
  585. <w:kern w:val="0"/>
  586. <w:sz w:val="24"/>
  587. </w:rPr>
  588. </w:style>
  589. </w:styles>
  590. <w:shapeDefaults>
  591. <o:shapedefaults v:ext="edit" spidmax="2049" fillcolor="#9cbee0" strokecolor="#739cc3">
  592. <v:fill color="#9cbee0" color2="#bbd5f0" type="gradient">
  593. <o:fill v:ext="view" type="gradientUnscaled"/>
  594. </v:fill>
  595. <v:stroke color="#739cc3" weight="1.25pt" miterlimit="2"/>
  596. </o:shapedefaults>
  597. <o:shapelayout v:ext="edit">
  598. <o:idmap v:ext="edit" data="1"/>
  599. </o:shapelayout>
  600. </w:shapeDefaults>
  601. <w:docPr>
  602. <w:view w:val="print"/>
  603. <w:zoom w:percent="100"/>
  604. <w:doNotEmbedSystemFonts/>
  605. <w:bordersDontSurroundHeader/>
  606. <w:bordersDontSurroundFooter/>
  607. <w:proofState w:spelling="clean" w:grammar="clean"/>
  608. <w:defaultTabStop w:val="420"/>
  609. <w:drawingGridHorizontalSpacing w:val="105"/>
  610. <w:drawingGridVerticalSpacing w:val="156"/>
  611. <w:displayHorizontalDrawingGridEvery w:val="0"/>
  612. <w:displayVerticalDrawingGridEvery w:val="2"/>
  613. <w:punctuationKerning/>
  614. <w:characterSpacingControl w:val="CompressPunctuation"/>
  615. <w:validateAgainstSchema/>
  616. <w:saveInvalidXML w:val="off"/>
  617. <w:ignoreMixedContent w:val="off"/>
  618. <w:alwaysShowPlaceholderText w:val="off"/>
  619. <w:hdrShapeDefaults>
  620. <o:shapedefaults v:ext="edit" spidmax="2049" fillcolor="#9cbee0" strokecolor="#739cc3">
  621. <v:fill color="#9cbee0" color2="#bbd5f0" type="gradient">
  622. <o:fill v:ext="view" type="gradientUnscaled"/>
  623. </v:fill>
  624. <v:stroke color="#739cc3" weight="1.25pt" miterlimit="2"/>
  625. </o:shapedefaults>
  626. </w:hdrShapeDefaults>
  627. <w:footnotePr>
  628. <w:footnote w:type="separator">
  629. <w:p wsp:rsidR="0078080D" wsp:rsidRDefault="0078080D" wsp:rsidP="001060AE">
  630. <w:r>
  631. <w:separator/>
  632. </w:r>
  633. </w:p>
  634. </w:footnote>
  635. <w:footnote w:type="continuation-separator">
  636. <w:p wsp:rsidR="0078080D" wsp:rsidRDefault="0078080D" wsp:rsidP="001060AE">
  637. <w:r>
  638. <w:continuationSeparator/>
  639. </w:r>
  640. </w:p>
  641. </w:footnote>
  642. </w:footnotePr>
  643. <w:endnotePr>
  644. <w:endnote w:type="separator">
  645. <w:p wsp:rsidR="0078080D" wsp:rsidRDefault="0078080D" wsp:rsidP="001060AE">
  646. <w:r>
  647. <w:separator/>
  648. </w:r>
  649. </w:p>
  650. </w:endnote>
  651. <w:endnote w:type="continuation-separator">
  652. <w:p wsp:rsidR="0078080D" wsp:rsidRDefault="0078080D" wsp:rsidP="001060AE">
  653. <w:r>
  654. <w:continuationSeparator/>
  655. </w:r>
  656. </w:p>
  657. </w:endnote>
  658. </w:endnotePr>
  659. <w:compat>
  660. <w:spaceForUL/>
  661. <w:balanceSingleByteDoubleByteWidth/>
  662. <w:doNotLeaveBackslashAlone/>
  663. <w:ulTrailSpace/>
  664. <w:doNotExpandShiftReturn/>
  665. <w:adjustLineHeightInTable/>
  666. <w:breakWrappedTables/>
  667. <w:snapToGridInCell/>
  668. <w:wrapTextWithPunct/>
  669. <w:useAsianBreakRules/>
  670. <w:dontGrowAutofit/>
  671. <w:useFELayout/>
  672. </w:compat>
  673. <wsp:rsids>
  674. <wsp:rsidRoot wsp:val="00605E74"/>
  675. <wsp:rsid wsp:val="000C664F"/>
  676. <wsp:rsid wsp:val="000D3AC4"/>
  677. <wsp:rsid wsp:val="000D58D9"/>
  678. <wsp:rsid wsp:val="001060AE"/>
  679. <wsp:rsid wsp:val="00114742"/>
  680. <wsp:rsid wsp:val="00170F79"/>
  681. <wsp:rsid wsp:val="001A5F72"/>
  682. <wsp:rsid wsp:val="001B2804"/>
  683. <wsp:rsid wsp:val="002271A1"/>
  684. <wsp:rsid wsp:val="00272CF6"/>
  685. <wsp:rsid wsp:val="002B1928"/>
  686. <wsp:rsid wsp:val="00375525"/>
  687. <wsp:rsid wsp:val="003D26F9"/>
  688. <wsp:rsid wsp:val="004110E6"/>
  689. <wsp:rsid wsp:val="00431C55"/>
  690. <wsp:rsid wsp:val="004562D7"/>
  691. <wsp:rsid wsp:val="0046159A"/>
  692. <wsp:rsid wsp:val="00472B8C"/>
  693. <wsp:rsid wsp:val="00472B8F"/>
  694. <wsp:rsid wsp:val="00494050"/>
  695. <wsp:rsid wsp:val="004A183D"/>
  696. <wsp:rsid wsp:val="004B6153"/>
  697. <wsp:rsid wsp:val="004D213D"/>
  698. <wsp:rsid wsp:val="00515AB7"/>
  699. <wsp:rsid wsp:val="00524744"/>
  700. <wsp:rsid wsp:val="005369C1"/>
  701. <wsp:rsid wsp:val="005610C4"/>
  702. <wsp:rsid wsp:val="00594689"/>
  703. <wsp:rsid wsp:val="005A7D30"/>
  704. <wsp:rsid wsp:val="005B47C9"/>
  705. <wsp:rsid wsp:val="00605E74"/>
  706. <wsp:rsid wsp:val="00683848"/>
  707. <wsp:rsid wsp:val="006A5D06"/>
  708. <wsp:rsid wsp:val="00703779"/>
  709. <wsp:rsid wsp:val="00752A90"/>
  710. <wsp:rsid wsp:val="007672C8"/>
  711. <wsp:rsid wsp:val="00771EEE"/>
  712. <wsp:rsid wsp:val="007802B9"/>
  713. <wsp:rsid wsp:val="0078080D"/>
  714. <wsp:rsid wsp:val="00793A4A"/>
  715. <wsp:rsid wsp:val="007A2927"/>
  716. <wsp:rsid wsp:val="007B07F3"/>
  717. <wsp:rsid wsp:val="007C7CFF"/>
  718. <wsp:rsid wsp:val="00851750"/>
  719. <wsp:rsid wsp:val="00872399"/>
  720. <wsp:rsid wsp:val="0089452F"/>
  721. <wsp:rsid wsp:val="00905E1A"/>
  722. <wsp:rsid wsp:val="00926515"/>
  723. <wsp:rsid wsp:val="00984F5B"/>
  724. <wsp:rsid wsp:val="009E133D"/>
  725. <wsp:rsid wsp:val="00A60305"/>
  726. <wsp:rsid wsp:val="00A853A0"/>
  727. <wsp:rsid wsp:val="00AD2D2D"/>
  728. <wsp:rsid wsp:val="00B523B1"/>
  729. <wsp:rsid wsp:val="00C3038B"/>
  730. <wsp:rsid wsp:val="00C50326"/>
  731. <wsp:rsid wsp:val="00C8636E"/>
  732. <wsp:rsid wsp:val="00CA3AC5"/>
  733. <wsp:rsid wsp:val="00CF5667"/>
  734. <wsp:rsid wsp:val="00D05CFE"/>
  735. <wsp:rsid wsp:val="00D07A19"/>
  736. <wsp:rsid wsp:val="00D3106A"/>
  737. <wsp:rsid wsp:val="00D669A7"/>
  738. <wsp:rsid wsp:val="00D71CCE"/>
  739. <wsp:rsid wsp:val="00DA62D3"/>
  740. <wsp:rsid wsp:val="00DE3E07"/>
  741. <wsp:rsid wsp:val="00E7458A"/>
  742. <wsp:rsid wsp:val="00EA7971"/>
  743. <wsp:rsid wsp:val="00EC61D4"/>
  744. <wsp:rsid wsp:val="00F57787"/>
  745. <wsp:rsid wsp:val="00F9202C"/>
  746. </wsp:rsids>
  747. </w:docPr>
  748. <#list list as tinfoClassList>
  749. <w:body>
  750. <wx:sect>
  751. <wx:sub-section>
  752. <wx:sub-section>
  753. <w:p wsp:rsidR="00605E74" wsp:rsidRPr="000D58D9" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="000D58D9">
  754. <w:pPr>
  755. <w:pStyle w:val="2"/>
  756. <w:tabs>
  757. <w:tab w:val="left" w:pos="420"/>
  758. <w:tab w:val="list" w:pos="567"/>
  759. </w:tabs>
  760. <w:spacing w:line="415" w:line-rule="auto"/>
  761. <w:rPr>
  762. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体"/>
  763. <wx:font wx:val="宋体"/>
  764. <w:kern w:val="0"/>
  765. <w:sz w:val="36"/>
  766. </w:rPr>
  767. </w:pPr>
  768. <w:r>
  769. <w:rPr>
  770. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体" w:hint="fareast"/>
  771. <wx:font wx:val="宋体"/>
  772. <w:kern w:val="0"/>
  773. <w:sz w:val="36"/>
  774. </w:rPr>
  775. <w:t>${tinfoClassList_index+1}.</w:t>
  776. </w:r>
  777. <w:r wsp:rsidR="00D05CFE" wsp:rsidRPr="000D58D9">
  778. <w:rPr>
  779. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体" w:hint="fareast"/>
  780. <wx:font wx:val="华文中宋"/>
  781. <w:kern w:val="0"/>
  782. <w:sz w:val="36"/>
  783. </w:rPr>
  784. <w:t>${tinfoClassList["infoname"]!''}</w:t>
  785. </w:r>
  786. </w:p>
  787. <w:tbl>
  788. <w:tblPr>
  789. <w:tblW w:w="10146" w:type="dxa"/>
  790. <w:jc w:val="center"/>
  791. <w:tblBorders>
  792. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  793. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  794. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  795. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  796. <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  797. <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  798. </w:tblBorders>
  799. <w:tblLayout w:type="Fixed"/>
  800. </w:tblPr>
  801. <w:tblGrid>
  802. <w:gridCol w:w="2054"/>
  803. <w:gridCol w:w="1376"/>
  804. <w:gridCol w:w="1134"/>
  805. <w:gridCol w:w="42"/>
  806. <w:gridCol w:w="709"/>
  807. <w:gridCol w:w="1233"/>
  808. <w:gridCol w:w="993"/>
  809. <w:gridCol w:w="42"/>
  810. <w:gridCol w:w="708"/>
  811. <w:gridCol w:w="709"/>
  812. <w:gridCol w:w="1146"/>
  813. </w:tblGrid>
  814. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  815. <w:trPr>
  816. <w:cantSplit/>
  817. <w:trHeight w:val="450"/>
  818. <w:jc w:val="center"/>
  819. </w:trPr>
  820. <w:tc>
  821. <w:tcPr>
  822. <w:tcW w:w="2054" w:type="dxa"/>
  823. <w:tcBorders>
  824. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  825. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  826. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  827. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  828. </w:tcBorders>
  829. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  830. <w:vAlign w:val="center"/>
  831. </w:tcPr>
  832. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  833. <w:pPr>
  834. <w:rPr>
  835. <w:sz-cs w:val="21"/>
  836. </w:rPr>
  837. </w:pPr>
  838. <w:r>
  839. <w:rPr>
  840. <w:rFonts w:hint="fareast"/>
  841. <wx:font wx:val="宋体"/>
  842. <w:sz-cs w:val="21"/>
  843. </w:rPr>
  844. <w:t>信息类编码</w:t>
  845. </w:r>
  846. </w:p>
  847. </w:tc>
  848. <w:tc>
  849. <w:tcPr>
  850. <w:tcW w:w="2510" w:type="dxa"/>
  851. <w:gridSpan w:val="2"/>
  852. <w:tcBorders>
  853. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  854. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  855. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  856. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  857. </w:tcBorders>
  858. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  859. <w:vAlign w:val="center"/>
  860. </w:tcPr>
  861. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00D669A7">
  862. <w:pPr>
  863. <w:rPr>
  864. <w:sz-cs w:val="21"/>
  865. </w:rPr>
  866. </w:pPr>
  867. <w:r>
  868. <w:rPr>
  869. <w:rFonts w:hint="fareast"/>
  870. <w:sz-cs w:val="21"/>
  871. </w:rPr>
  872. <w:t>${tinfoClassList["infocode"]!''}</w:t>
  873. </w:r>
  874. </w:p>
  875. </w:tc>
  876. <w:tc>
  877. <w:tcPr>
  878. <w:tcW w:w="2977" w:type="dxa"/>
  879. <w:gridSpan w:val="4"/>
  880. <w:tcBorders>
  881. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  882. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  883. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  884. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  885. </w:tcBorders>
  886. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  887. <w:vAlign w:val="center"/>
  888. </w:tcPr>
  889. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  890. <w:pPr>
  891. <w:rPr>
  892. <w:rFonts w:h-ansi="宋体"/>
  893. <w:sz-cs w:val="21"/>
  894. </w:rPr>
  895. </w:pPr>
  896. <w:r>
  897. <w:rPr>
  898. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  899. <wx:font wx:val="宋体"/>
  900. <w:sz-cs w:val="21"/>
  901. </w:rPr>
  902. <w:t>资源分类</w:t>
  903. </w:r>
  904. </w:p>
  905. </w:tc>
  906. <w:tc>
  907. <w:tcPr>
  908. <w:tcW w:w="2605" w:type="dxa"/>
  909. <w:gridSpan w:val="4"/>
  910. <w:tcBorders>
  911. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  912. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  913. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  914. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  915. </w:tcBorders>
  916. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  917. <w:vAlign w:val="center"/>
  918. </w:tcPr>
  919. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00D669A7">
  920. <w:pPr>
  921. <w:rPr>
  922. <w:sz-cs w:val="21"/>
  923. </w:rPr>
  924. </w:pPr>
  925. <w:r>
  926. <w:rPr>
  927. <w:rFonts w:hint="fareast"/>
  928. <w:sz-cs w:val="21"/>
  929. </w:rPr>
  930. <w:t>${tinfoClassList["infotypename"]!''}</w:t>
  931. </w:r>
  932. </w:p>
  933. </w:tc>
  934. </w:tr>
  935. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  936. <w:trPr>
  937. <w:cantSplit/>
  938. <w:trHeight w:val="450"/>
  939. <w:jc w:val="center"/>
  940. </w:trPr>
  941. <w:tc>
  942. <w:tcPr>
  943. <w:tcW w:w="2054" w:type="dxa"/>
  944. <w:tcBorders>
  945. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  946. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  947. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  948. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  949. </w:tcBorders>
  950. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  951. <w:vAlign w:val="center"/>
  952. </w:tcPr>
  953. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  954. <w:pPr>
  955. <w:rPr>
  956. <w:rFonts w:hint="fareast"/>
  957. <w:sz-cs w:val="21"/>
  958. </w:rPr>
  959. </w:pPr>
  960. <w:r>
  961. <w:rPr>
  962. <w:rFonts w:hint="fareast"/>
  963. <wx:font wx:val="宋体"/>
  964. <w:sz-cs w:val="21"/>
  965. </w:rPr>
  966. <w:t>信息类名称</w:t>
  967. </w:r>
  968. </w:p>
  969. </w:tc>
  970. <w:tc>
  971. <w:tcPr>
  972. <w:tcW w:w="8092" w:type="dxa"/>
  973. <w:gridSpan w:val="10"/>
  974. <w:tcBorders>
  975. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  976. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  977. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  978. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  979. </w:tcBorders>
  980. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  981. <w:vAlign w:val="center"/>
  982. </w:tcPr>
  983. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00D669A7">
  984. <w:pPr>
  985. <w:rPr>
  986. <w:sz-cs w:val="21"/>
  987. </w:rPr>
  988. </w:pPr>
  989. <w:r>
  990. <w:rPr>
  991. <w:rFonts w:hint="fareast"/>
  992. <w:sz-cs w:val="21"/>
  993. </w:rPr>
  994. <w:t>${tinfoClassList["infoname"]!''}</w:t>
  995. </w:r>
  996. </w:p>
  997. </w:tc>
  998. </w:tr>
  999. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  1000. <w:trPr>
  1001. <w:cantSplit/>
  1002. <w:trHeight w:val="450"/>
  1003. <w:jc w:val="center"/>
  1004. </w:trPr>
  1005. <w:tc>
  1006. <w:tcPr>
  1007. <w:tcW w:w="2054" w:type="dxa"/>
  1008. <w:tcBorders>
  1009. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1010. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1011. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1012. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1013. </w:tcBorders>
  1014. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1015. <w:vAlign w:val="center"/>
  1016. </w:tcPr>
  1017. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  1018. <w:pPr>
  1019. <w:rPr>
  1020. <w:sz-cs w:val="21"/>
  1021. </w:rPr>
  1022. </w:pPr>
  1023. <w:r>
  1024. <w:rPr>
  1025. <w:rFonts w:hint="fareast"/>
  1026. <wx:font wx:val="宋体"/>
  1027. <w:sz-cs w:val="21"/>
  1028. </w:rPr>
  1029. <w:t>提供处室</w:t>
  1030. </w:r>
  1031. </w:p>
  1032. </w:tc>
  1033. <w:tc>
  1034. <w:tcPr>
  1035. <w:tcW w:w="2510" w:type="dxa"/>
  1036. <w:gridSpan w:val="2"/>
  1037. <w:tcBorders>
  1038. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1039. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1040. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1041. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1042. </w:tcBorders>
  1043. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1044. <w:vAlign w:val="center"/>
  1045. </w:tcPr>
  1046. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00D669A7">
  1047. <w:pPr>
  1048. <w:rPr>
  1049. <w:sz-cs w:val="21"/>
  1050. </w:rPr>
  1051. </w:pPr>
  1052. <w:r>
  1053. <w:rPr>
  1054. <w:rFonts w:hint="fareast"/>
  1055. <w:sz-cs w:val="21"/>
  1056. </w:rPr>
  1057. <w:t>${tinfoClassList["providename"]!''}</w:t>
  1058. </w:r>
  1059. </w:p>
  1060. </w:tc>
  1061. <w:tc>
  1062. <w:tcPr>
  1063. <w:tcW w:w="2977" w:type="dxa"/>
  1064. <w:gridSpan w:val="4"/>
  1065. <w:tcBorders>
  1066. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1067. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1068. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1069. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1070. </w:tcBorders>
  1071. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1072. <w:vAlign w:val="center"/>
  1073. </w:tcPr>
  1074. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  1075. <w:pPr>
  1076. <w:rPr>
  1077. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1078. <w:sz-cs w:val="21"/>
  1079. </w:rPr>
  1080. </w:pPr>
  1081. <w:r>
  1082. <w:rPr>
  1083. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1084. <wx:font wx:val="宋体"/>
  1085. <w:sz-cs w:val="21"/>
  1086. </w:rPr>
  1087. <w:t>社会信用代码</w:t>
  1088. </w:r>
  1089. </w:p>
  1090. </w:tc>
  1091. <w:tc>
  1092. <w:tcPr>
  1093. <w:tcW w:w="2605" w:type="dxa"/>
  1094. <w:gridSpan w:val="4"/>
  1095. <w:tcBorders>
  1096. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1097. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1098. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1099. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1100. </w:tcBorders>
  1101. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1102. <w:vAlign w:val="center"/>
  1103. </w:tcPr>
  1104. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00D669A7">
  1105. <w:pPr>
  1106. <w:rPr>
  1107. <w:sz-cs w:val="21"/>
  1108. </w:rPr>
  1109. </w:pPr>
  1110. <w:r>
  1111. <w:rPr>
  1112. <w:rFonts w:hint="fareast"/>
  1113. <w:sz-cs w:val="21"/>
  1114. </w:rPr>
  1115. <w:t>${tinfoClassList["creditno"]!''}</w:t>
  1116. </w:r>
  1117. </w:p>
  1118. </w:tc>
  1119. </w:tr>
  1120. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  1121. <w:trPr>
  1122. <w:cantSplit/>
  1123. <w:trHeight w:val="450"/>
  1124. <w:jc w:val="center"/>
  1125. </w:trPr>
  1126. <w:tc>
  1127. <w:tcPr>
  1128. <w:tcW w:w="2054" w:type="dxa"/>
  1129. <w:tcBorders>
  1130. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1131. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1132. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1133. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1134. </w:tcBorders>
  1135. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1136. <w:vAlign w:val="center"/>
  1137. </w:tcPr>
  1138. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00D669A7">
  1139. <w:pPr>
  1140. <w:rPr>
  1141. <w:sz-cs w:val="21"/>
  1142. </w:rPr>
  1143. </w:pPr>
  1144. <w:r>
  1145. <w:rPr>
  1146. <w:rFonts w:hint="fareast"/>
  1147. <wx:font wx:val="宋体"/>
  1148. <w:sz-cs w:val="21"/>
  1149. </w:rPr>
  1150. <w:t>提供部门</w:t>
  1151. </w:r>
  1152. </w:p>
  1153. </w:tc>
  1154. <w:tc>
  1155. <w:tcPr>
  1156. <w:tcW w:w="8092" w:type="dxa"/>
  1157. <w:gridSpan w:val="10"/>
  1158. <w:tcBorders>
  1159. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1160. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1161. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1162. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1163. </w:tcBorders>
  1164. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1165. <w:vAlign w:val="center"/>
  1166. </w:tcPr>
  1167. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00926515">
  1168. <w:pPr>
  1169. <w:rPr>
  1170. <w:sz-cs w:val="21"/>
  1171. </w:rPr>
  1172. </w:pPr>
  1173. <w:r>
  1174. <w:rPr>
  1175. <w:rFonts w:hint="fareast"/>
  1176. <w:sz-cs w:val="21"/>
  1177. </w:rPr>
  1178. <w:t>${tinfoClassList["providebmname"]!''}</w:t>
  1179. </w:r>
  1180. </w:p>
  1181. </w:tc>
  1182. </w:tr>
  1183. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1184. <w:trPr>
  1185. <w:cantSplit/>
  1186. <w:trHeight w:val="450"/>
  1187. <w:jc w:val="center"/>
  1188. </w:trPr>
  1189. <w:tc>
  1190. <w:tcPr>
  1191. <w:tcW w:w="2054" w:type="dxa"/>
  1192. <w:tcBorders>
  1193. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1194. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1195. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1196. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1197. </w:tcBorders>
  1198. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1199. <w:vAlign w:val="center"/>
  1200. </w:tcPr>
  1201. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRPr="00872399" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="005B47C9">
  1202. <w:pPr>
  1203. <w:rPr>
  1204. <w:rFonts w:h-ansi="宋体"/>
  1205. <w:sz-cs w:val="21"/>
  1206. <w:highlight w:val="yellow"/>
  1207. </w:rPr>
  1208. </w:pPr>
  1209. <w:r wsp:rsidRPr="00AD2D2D">
  1210. <w:rPr>
  1211. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1212. <wx:font wx:val="宋体"/>
  1213. <w:sz-cs w:val="21"/>
  1214. </w:rPr>
  1215. <w:t>所属业务部门</w:t>
  1216. </w:r>
  1217. </w:p>
  1218. </w:tc>
  1219. <w:tc>
  1220. <w:tcPr>
  1221. <w:tcW w:w="2510" w:type="dxa"/>
  1222. <w:gridSpan w:val="2"/>
  1223. <w:tcBorders>
  1224. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1225. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1226. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1227. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1228. </w:tcBorders>
  1229. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1230. <w:vAlign w:val="center"/>
  1231. </w:tcPr>
  1232. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="005B47C9">
  1233. <w:pPr>
  1234. <w:rPr>
  1235. <w:sz-cs w:val="21"/>
  1236. </w:rPr>
  1237. </w:pPr>
  1238. <w:r>
  1239. <w:rPr>
  1240. <w:rFonts w:hint="fareast"/>
  1241. <w:sz-cs w:val="21"/>
  1242. </w:rPr>
  1243. <w:t>${tinfoClassList["ywbmname"]!''}</w:t>
  1244. </w:r>
  1245. </w:p>
  1246. </w:tc>
  1247. <w:tc>
  1248. <w:tcPr>
  1249. <w:tcW w:w="2977" w:type="dxa"/>
  1250. <w:gridSpan w:val="4"/>
  1251. <w:tcBorders>
  1252. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1253. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1254. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1255. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1256. </w:tcBorders>
  1257. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1258. <w:vAlign w:val="center"/>
  1259. </w:tcPr>
  1260. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="005B47C9">
  1261. <w:pPr>
  1262. <w:rPr>
  1263. <w:rFonts w:h-ansi="宋体"/>
  1264. <w:sz-cs w:val="21"/>
  1265. </w:rPr>
  1266. </w:pPr>
  1267. <w:r>
  1268. <w:rPr>
  1269. <w:rFonts w:hint="fareast"/>
  1270. <wx:font wx:val="宋体"/>
  1271. <w:sz-cs w:val="21"/>
  1272. </w:rPr>
  1273. <w:t>所属行政区划</w:t>
  1274. </w:r>
  1275. </w:p>
  1276. </w:tc>
  1277. <w:tc>
  1278. <w:tcPr>
  1279. <w:tcW w:w="2605" w:type="dxa"/>
  1280. <w:gridSpan w:val="4"/>
  1281. <w:tcBorders>
  1282. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1283. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1284. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1285. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1286. </w:tcBorders>
  1287. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1288. <w:vAlign w:val="center"/>
  1289. </w:tcPr>
  1290. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="005B47C9">
  1291. <w:pPr>
  1292. <w:rPr>
  1293. <w:sz-cs w:val="21"/>
  1294. </w:rPr>
  1295. </w:pPr>
  1296. <w:r>
  1297. <w:rPr>
  1298. <w:rFonts w:hint="fareast"/>
  1299. <w:sz-cs w:val="21"/>
  1300. </w:rPr>
  1301. <w:t>${tinfoClassList["xzqhname"]!''}</w:t>
  1302. </w:r>
  1303. </w:p>
  1304. </w:tc>
  1305. </w:tr>
  1306. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  1307. <w:trPr>
  1308. <w:cantSplit/>
  1309. <w:trHeight w:val="450"/>
  1310. <w:jc w:val="center"/>
  1311. </w:trPr>
  1312. <w:tc>
  1313. <w:tcPr>
  1314. <w:tcW w:w="2054" w:type="dxa"/>
  1315. <w:tcBorders>
  1316. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1317. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1318. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1319. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1320. </w:tcBorders>
  1321. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1322. <w:vAlign w:val="center"/>
  1323. </w:tcPr>
  1324. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1325. <w:pPr>
  1326. <w:rPr>
  1327. <w:sz-cs w:val="21"/>
  1328. </w:rPr>
  1329. </w:pPr>
  1330. <w:r>
  1331. <w:rPr>
  1332. <w:rFonts w:hint="fareast"/>
  1333. <wx:font wx:val="宋体"/>
  1334. <w:sz-cs w:val="21"/>
  1335. </w:rPr>
  1336. <w:t>资源格式</w:t>
  1337. </w:r>
  1338. </w:p>
  1339. </w:tc>
  1340. <w:tc>
  1341. <w:tcPr>
  1342. <w:tcW w:w="2510" w:type="dxa"/>
  1343. <w:gridSpan w:val="2"/>
  1344. <w:tcBorders>
  1345. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1346. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1347. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1348. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1349. </w:tcBorders>
  1350. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1351. <w:vAlign w:val="center"/>
  1352. </w:tcPr>
  1353. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1354. <w:pPr>
  1355. <w:rPr>
  1356. <w:sz-cs w:val="21"/>
  1357. </w:rPr>
  1358. </w:pPr>
  1359. <w:r>
  1360. <w:rPr>
  1361. <w:rFonts w:hint="fareast"/>
  1362. <w:sz-cs w:val="21"/>
  1363. </w:rPr>
  1364. <w:t>${tinfoClassList["formattypename"]!''}</w:t>
  1365. </w:r>
  1366. </w:p>
  1367. </w:tc>
  1368. <w:tc>
  1369. <w:tcPr>
  1370. <w:tcW w:w="2977" w:type="dxa"/>
  1371. <w:gridSpan w:val="4"/>
  1372. <w:tcBorders>
  1373. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1374. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1375. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1376. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1377. </w:tcBorders>
  1378. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1379. <w:vAlign w:val="center"/>
  1380. </w:tcPr>
  1381. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1382. <w:pPr>
  1383. <w:rPr>
  1384. <w:sz-cs w:val="21"/>
  1385. </w:rPr>
  1386. </w:pPr>
  1387. <w:r>
  1388. <w:rPr>
  1389. <w:rFonts w:hint="fareast"/>
  1390. <wx:font wx:val="宋体"/>
  1391. <w:sz-cs w:val="21"/>
  1392. </w:rPr>
  1393. <w:t>管理方式</w:t>
  1394. </w:r>
  1395. </w:p>
  1396. </w:tc>
  1397. <w:tc>
  1398. <w:tcPr>
  1399. <w:tcW w:w="2605" w:type="dxa"/>
  1400. <w:gridSpan w:val="4"/>
  1401. <w:tcBorders>
  1402. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1403. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1404. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1405. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1406. </w:tcBorders>
  1407. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1408. <w:vAlign w:val="center"/>
  1409. </w:tcPr>
  1410. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1411. <w:pPr>
  1412. <w:rPr>
  1413. <w:sz-cs w:val="21"/>
  1414. </w:rPr>
  1415. </w:pPr>
  1416. <w:r>
  1417. <w:rPr>
  1418. <w:rFonts w:hint="fareast"/>
  1419. <w:sz-cs w:val="21"/>
  1420. </w:rPr>
  1421. <w:t>${tinfoClassList["managetype"]!''}</w:t>
  1422. </w:r>
  1423. </w:p>
  1424. </w:tc>
  1425. </w:tr>
  1426. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1427. <w:trPr>
  1428. <w:cantSplit/>
  1429. <w:trHeight w:val="450"/>
  1430. <w:jc w:val="center"/>
  1431. </w:trPr>
  1432. <w:tc>
  1433. <w:tcPr>
  1434. <w:tcW w:w="2054" w:type="dxa"/>
  1435. <w:tcBorders>
  1436. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1437. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1438. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1439. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1440. </w:tcBorders>
  1441. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1442. <w:vAlign w:val="center"/>
  1443. </w:tcPr>
  1444. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRPr="002B1928" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1445. <w:pPr>
  1446. <w:rPr>
  1447. <w:color w:val="FF0000"/>
  1448. <w:sz-cs w:val="21"/>
  1449. </w:rPr>
  1450. </w:pPr>
  1451. <w:r wsp:rsidRPr="002B1928">
  1452. <w:rPr>
  1453. <w:rFonts w:hint="fareast"/>
  1454. <wx:font wx:val="宋体"/>
  1455. <w:color w:val="FF0000"/>
  1456. <w:sz-cs w:val="21"/>
  1457. </w:rPr>
  1458. <w:t>关联资源分类</w:t>
  1459. </w:r>
  1460. </w:p>
  1461. </w:tc>
  1462. <w:tc>
  1463. <w:tcPr>
  1464. <w:tcW w:w="8092" w:type="dxa"/>
  1465. <w:gridSpan w:val="10"/>
  1466. <w:tcBorders>
  1467. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1468. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1469. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1470. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1471. </w:tcBorders>
  1472. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1473. <w:vAlign w:val="center"/>
  1474. </w:tcPr>
  1475. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1476. <w:pPr>
  1477. <w:rPr>
  1478. <w:sz-cs w:val="21"/>
  1479. </w:rPr>
  1480. </w:pPr>
  1481. <w:r>
  1482. <w:rPr>
  1483. <w:rFonts w:hint="fareast"/>
  1484. <w:sz-cs w:val="21"/>
  1485. </w:rPr>
  1486. <w:t>${tinfoClassList["resname"]!''}</w:t>
  1487. </w:r>
  1488. </w:p>
  1489. </w:tc>
  1490. </w:tr>
  1491. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1492. <w:trPr>
  1493. <w:cantSplit/>
  1494. <w:trHeight w:val="450"/>
  1495. <w:jc w:val="center"/>
  1496. </w:trPr>
  1497. <w:tc>
  1498. <w:tcPr>
  1499. <w:tcW w:w="2054" w:type="dxa"/>
  1500. <w:tcBorders>
  1501. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1502. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1503. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1504. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1505. </w:tcBorders>
  1506. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1507. <w:vAlign w:val="center"/>
  1508. </w:tcPr>
  1509. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1510. <w:pPr>
  1511. <w:rPr>
  1512. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1513. <w:sz-cs w:val="21"/>
  1514. </w:rPr>
  1515. </w:pPr>
  1516. <w:r>
  1517. <w:rPr>
  1518. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1519. <wx:font wx:val="宋体"/>
  1520. <w:sz-cs w:val="21"/>
  1521. </w:rPr>
  1522. <w:t>信息类摘要</w:t>
  1523. </w:r>
  1524. </w:p>
  1525. </w:tc>
  1526. <w:tc>
  1527. <w:tcPr>
  1528. <w:tcW w:w="8092" w:type="dxa"/>
  1529. <w:gridSpan w:val="10"/>
  1530. <w:tcBorders>
  1531. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1532. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1533. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1534. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1535. </w:tcBorders>
  1536. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1537. <w:vAlign w:val="center"/>
  1538. </w:tcPr>
  1539. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1540. <w:pPr>
  1541. <w:rPr>
  1542. <w:sz-cs w:val="21"/>
  1543. </w:rPr>
  1544. </w:pPr>
  1545. <w:r>
  1546. <w:rPr>
  1547. <w:rFonts w:hint="fareast"/>
  1548. <w:sz-cs w:val="21"/>
  1549. </w:rPr>
  1550. <w:t>${tinfoClassList["infoabstracts"]!''}</w:t>
  1551. </w:r>
  1552. </w:p>
  1553. </w:tc>
  1554. </w:tr>
  1555. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1556. <w:trPr>
  1557. <w:cantSplit/>
  1558. <w:trHeight w:val="450"/>
  1559. <w:jc w:val="center"/>
  1560. </w:trPr>
  1561. <w:tc>
  1562. <w:tcPr>
  1563. <w:tcW w:w="2054" w:type="dxa"/>
  1564. <w:tcBorders>
  1565. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1566. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1567. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1568. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1569. </w:tcBorders>
  1570. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1571. <w:vAlign w:val="center"/>
  1572. </w:tcPr>
  1573. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1574. <w:pPr>
  1575. <w:rPr>
  1576. <w:rFonts w:h-ansi="宋体"/>
  1577. <w:sz-cs w:val="21"/>
  1578. </w:rPr>
  1579. </w:pPr>
  1580. <w:r>
  1581. <w:rPr>
  1582. <w:rFonts w:h-ansi="宋体" w:hint="fareast"/>
  1583. <wx:font wx:val="宋体"/>
  1584. <w:sz-cs w:val="21"/>
  1585. </w:rPr>
  1586. <w:t>共享类型</w:t>
  1587. </w:r>
  1588. </w:p>
  1589. </w:tc>
  1590. <w:tc>
  1591. <w:tcPr>
  1592. <w:tcW w:w="2510" w:type="dxa"/>
  1593. <w:gridSpan w:val="2"/>
  1594. <w:tcBorders>
  1595. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1596. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1597. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1598. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1599. </w:tcBorders>
  1600. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1601. <w:vAlign w:val="center"/>
  1602. </w:tcPr>
  1603. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1604. <w:pPr>
  1605. <w:rPr>
  1606. <w:sz-cs w:val="21"/>
  1607. </w:rPr>
  1608. </w:pPr>
  1609. <w:r>
  1610. <w:rPr>
  1611. <w:rFonts w:hint="fareast"/>
  1612. <w:sz-cs w:val="21"/>
  1613. </w:rPr>
  1614. <w:t>${tinfoClassList["sharetype"]!''}</w:t>
  1615. </w:r>
  1616. </w:p>
  1617. </w:tc>
  1618. <w:tc>
  1619. <w:tcPr>
  1620. <w:tcW w:w="2977" w:type="dxa"/>
  1621. <w:gridSpan w:val="4"/>
  1622. <w:tcBorders>
  1623. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1624. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1625. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1626. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1627. </w:tcBorders>
  1628. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1629. <w:vAlign w:val="center"/>
  1630. </w:tcPr>
  1631. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1632. <w:pPr>
  1633. <w:rPr>
  1634. <w:sz-cs w:val="21"/>
  1635. </w:rPr>
  1636. </w:pPr>
  1637. <w:r>
  1638. <w:rPr>
  1639. <w:rFonts w:hint="fareast"/>
  1640. <wx:font wx:val="宋体"/>
  1641. <w:sz-cs w:val="21"/>
  1642. </w:rPr>
  1643. <w:t>开放类型</w:t>
  1644. </w:r>
  1645. </w:p>
  1646. </w:tc>
  1647. <w:tc>
  1648. <w:tcPr>
  1649. <w:tcW w:w="2605" w:type="dxa"/>
  1650. <w:gridSpan w:val="4"/>
  1651. <w:tcBorders>
  1652. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1653. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1654. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1655. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1656. </w:tcBorders>
  1657. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1658. <w:vAlign w:val="center"/>
  1659. </w:tcPr>
  1660. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1661. <w:pPr>
  1662. <w:rPr>
  1663. <w:sz-cs w:val="21"/>
  1664. </w:rPr>
  1665. </w:pPr>
  1666. <w:r>
  1667. <w:rPr>
  1668. <w:rFonts w:hint="fareast"/>
  1669. <w:sz-cs w:val="21"/>
  1670. </w:rPr>
  1671. <w:t>${tinfoClassList["isopensocial"]!''}</w:t>
  1672. </w:r>
  1673. </w:p>
  1674. </w:tc>
  1675. </w:tr>
  1676. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1677. <w:trPr>
  1678. <w:cantSplit/>
  1679. <w:trHeight w:val="450"/>
  1680. <w:jc w:val="center"/>
  1681. </w:trPr>
  1682. <w:tc>
  1683. <w:tcPr>
  1684. <w:tcW w:w="2054" w:type="dxa"/>
  1685. <w:tcBorders>
  1686. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1687. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1688. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1689. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1690. </w:tcBorders>
  1691. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1692. <w:vAlign w:val="center"/>
  1693. </w:tcPr>
  1694. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1695. <w:pPr>
  1696. <w:rPr>
  1697. <w:sz-cs w:val="21"/>
  1698. </w:rPr>
  1699. </w:pPr>
  1700. <w:r>
  1701. <w:rPr>
  1702. <w:rFonts w:hint="fareast"/>
  1703. <wx:font wx:val="宋体"/>
  1704. <w:sz-cs w:val="21"/>
  1705. </w:rPr>
  1706. <w:t>共享条件</w:t>
  1707. </w:r>
  1708. </w:p>
  1709. </w:tc>
  1710. <w:tc>
  1711. <w:tcPr>
  1712. <w:tcW w:w="8092" w:type="dxa"/>
  1713. <w:gridSpan w:val="10"/>
  1714. <w:tcBorders>
  1715. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1716. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1717. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1718. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1719. </w:tcBorders>
  1720. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1721. <w:vAlign w:val="center"/>
  1722. </w:tcPr>
  1723. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1724. <w:pPr>
  1725. <w:rPr>
  1726. <w:sz-cs w:val="21"/>
  1727. </w:rPr>
  1728. </w:pPr>
  1729. <w:r>
  1730. <w:rPr>
  1731. <w:rFonts w:hint="fareast"/>
  1732. <w:sz-cs w:val="21"/>
  1733. </w:rPr>
  1734. <w:t>${tinfoClassList["shareconditions"]!''}</w:t>
  1735. </w:r>
  1736. </w:p>
  1737. </w:tc>
  1738. </w:tr>
  1739. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1740. <w:trPr>
  1741. <w:cantSplit/>
  1742. <w:trHeight w:val="450"/>
  1743. <w:jc w:val="center"/>
  1744. </w:trPr>
  1745. <w:tc>
  1746. <w:tcPr>
  1747. <w:tcW w:w="2054" w:type="dxa"/>
  1748. <w:tcBorders>
  1749. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1750. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1751. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1752. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1753. </w:tcBorders>
  1754. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1755. <w:vAlign w:val="center"/>
  1756. </w:tcPr>
  1757. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1758. <w:pPr>
  1759. <w:rPr>
  1760. <w:rFonts w:hint="fareast"/>
  1761. <w:sz-cs w:val="21"/>
  1762. </w:rPr>
  1763. </w:pPr>
  1764. <w:r>
  1765. <w:rPr>
  1766. <w:rFonts w:hint="fareast"/>
  1767. <wx:font wx:val="宋体"/>
  1768. <w:sz-cs w:val="21"/>
  1769. </w:rPr>
  1770. <w:t>更新频率</w:t>
  1771. </w:r>
  1772. </w:p>
  1773. </w:tc>
  1774. <w:tc>
  1775. <w:tcPr>
  1776. <w:tcW w:w="2552" w:type="dxa"/>
  1777. <w:gridSpan w:val="3"/>
  1778. <w:tcBorders>
  1779. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1780. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1781. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1782. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1783. </w:tcBorders>
  1784. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1785. <w:vAlign w:val="center"/>
  1786. </w:tcPr>
  1787. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1788. <w:pPr>
  1789. <w:rPr>
  1790. <w:sz-cs w:val="21"/>
  1791. </w:rPr>
  1792. </w:pPr>
  1793. <w:r>
  1794. <w:rPr>
  1795. <w:rFonts w:hint="fareast"/>
  1796. <w:sz-cs w:val="21"/>
  1797. </w:rPr>
  1798. <w:t>${tinfoClassList["updatecycle"]!''}</w:t>
  1799. </w:r>
  1800. </w:p>
  1801. </w:tc>
  1802. <w:tc>
  1803. <w:tcPr>
  1804. <w:tcW w:w="2977" w:type="dxa"/>
  1805. <w:gridSpan w:val="4"/>
  1806. <w:tcBorders>
  1807. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1808. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1809. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1810. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1811. </w:tcBorders>
  1812. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1813. <w:vAlign w:val="center"/>
  1814. </w:tcPr>
  1815. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1816. <w:pPr>
  1817. <w:rPr>
  1818. <w:sz-cs w:val="21"/>
  1819. </w:rPr>
  1820. </w:pPr>
  1821. <w:r>
  1822. <w:rPr>
  1823. <w:rFonts w:hint="fareast"/>
  1824. <wx:font wx:val="宋体"/>
  1825. <w:sz-cs w:val="21"/>
  1826. </w:rPr>
  1827. <w:t>关联系统名称</w:t>
  1828. </w:r>
  1829. </w:p>
  1830. </w:tc>
  1831. <w:tc>
  1832. <w:tcPr>
  1833. <w:tcW w:w="2563" w:type="dxa"/>
  1834. <w:gridSpan w:val="3"/>
  1835. <w:tcBorders>
  1836. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1837. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1838. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1839. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1840. </w:tcBorders>
  1841. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1842. <w:vAlign w:val="center"/>
  1843. </w:tcPr>
  1844. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1845. <w:pPr>
  1846. <w:rPr>
  1847. <w:sz-cs w:val="21"/>
  1848. </w:rPr>
  1849. </w:pPr>
  1850. <w:r>
  1851. <w:rPr>
  1852. <w:rFonts w:hint="fareast"/>
  1853. <w:sz-cs w:val="21"/>
  1854. </w:rPr>
  1855. <w:t>${tinfoClassList["systeminfo"]!''}</w:t>
  1856. </w:r>
  1857. </w:p>
  1858. </w:tc>
  1859. </w:tr>
  1860. <w:tr wsp:rsidR="00B523B1" wsp:rsidTr="00C3038B">
  1861. <w:trPr>
  1862. <w:cantSplit/>
  1863. <w:trHeight w:val="450"/>
  1864. <w:jc w:val="center"/>
  1865. </w:trPr>
  1866. <w:tc>
  1867. <w:tcPr>
  1868. <w:tcW w:w="2054" w:type="dxa"/>
  1869. <w:tcBorders>
  1870. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1871. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1872. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1873. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1874. </w:tcBorders>
  1875. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1876. <w:vAlign w:val="center"/>
  1877. </w:tcPr>
  1878. <w:p wsp:rsidR="00B523B1" wsp:rsidRPr="002B1928" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1879. <w:pPr>
  1880. <w:rPr>
  1881. <w:color w:val="FF0000"/>
  1882. <w:sz-cs w:val="21"/>
  1883. </w:rPr>
  1884. </w:pPr>
  1885. <w:r wsp:rsidRPr="002B1928">
  1886. <w:rPr>
  1887. <w:rFonts w:hint="fareast"/>
  1888. <wx:font wx:val="宋体"/>
  1889. <w:color w:val="FF0000"/>
  1890. <w:sz-cs w:val="21"/>
  1891. </w:rPr>
  1892. <w:t>关联业务事项</w:t>
  1893. </w:r>
  1894. </w:p>
  1895. </w:tc>
  1896. <w:tc>
  1897. <w:tcPr>
  1898. <w:tcW w:w="8092" w:type="dxa"/>
  1899. <w:gridSpan w:val="10"/>
  1900. <w:tcBorders>
  1901. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1902. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1903. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1904. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1905. </w:tcBorders>
  1906. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1907. <w:vAlign w:val="center"/>
  1908. </w:tcPr>
  1909. <w:p wsp:rsidR="00B523B1" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1910. <w:pPr>
  1911. <w:rPr>
  1912. <w:sz-cs w:val="21"/>
  1913. </w:rPr>
  1914. </w:pPr>
  1915. <w:r>
  1916. <w:rPr>
  1917. <w:rFonts w:hint="fareast"/>
  1918. <w:sz-cs w:val="21"/>
  1919. </w:rPr>
  1920. <w:t>${tinfoClassList["itemname"]!''}</w:t>
  1921. </w:r>
  1922. </w:p>
  1923. </w:tc>
  1924. </w:tr>
  1925. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  1926. <w:trPr>
  1927. <w:cantSplit/>
  1928. <w:trHeight w:val="450"/>
  1929. <w:jc w:val="center"/>
  1930. </w:trPr>
  1931. <w:tc>
  1932. <w:tcPr>
  1933. <w:tcW w:w="2054" w:type="dxa"/>
  1934. <w:tcBorders>
  1935. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1936. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1937. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1938. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1939. </w:tcBorders>
  1940. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1941. <w:vAlign w:val="center"/>
  1942. </w:tcPr>
  1943. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  1944. <w:pPr>
  1945. <w:rPr>
  1946. <w:rFonts w:hint="fareast"/>
  1947. <w:sz-cs w:val="21"/>
  1948. </w:rPr>
  1949. </w:pPr>
  1950. <w:r>
  1951. <w:rPr>
  1952. <w:rFonts w:hint="fareast"/>
  1953. <wx:font wx:val="宋体"/>
  1954. <w:sz-cs w:val="21"/>
  1955. </w:rPr>
  1956. <w:t>数据范围</w:t>
  1957. </w:r>
  1958. </w:p>
  1959. </w:tc>
  1960. <w:tc>
  1961. <w:tcPr>
  1962. <w:tcW w:w="2552" w:type="dxa"/>
  1963. <w:gridSpan w:val="3"/>
  1964. <w:tcBorders>
  1965. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1966. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1967. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1968. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1969. </w:tcBorders>
  1970. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1971. <w:vAlign w:val="center"/>
  1972. </w:tcPr>
  1973. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  1974. <w:pPr>
  1975. <w:rPr>
  1976. <w:sz-cs w:val="21"/>
  1977. </w:rPr>
  1978. </w:pPr>
  1979. <w:r>
  1980. <w:rPr>
  1981. <w:rFonts w:hint="fareast"/>
  1982. <w:sz-cs w:val="21"/>
  1983. </w:rPr>
  1984. <w:t>${tinfoClassList["datarange"]!''}</w:t>
  1985. </w:r>
  1986. </w:p>
  1987. </w:tc>
  1988. <w:tc>
  1989. <w:tcPr>
  1990. <w:tcW w:w="2977" w:type="dxa"/>
  1991. <w:gridSpan w:val="4"/>
  1992. <w:tcBorders>
  1993. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1994. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  1995. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1996. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  1997. </w:tcBorders>
  1998. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  1999. <w:vAlign w:val="center"/>
  2000. </w:tcPr>
  2001. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  2002. <w:pPr>
  2003. <w:rPr>
  2004. <w:rFonts w:hint="fareast"/>
  2005. <w:sz-cs w:val="21"/>
  2006. </w:rPr>
  2007. </w:pPr>
  2008. <w:r>
  2009. <w:rPr>
  2010. <w:rFonts w:hint="fareast"/>
  2011. <wx:font wx:val="宋体"/>
  2012. <w:sz-cs w:val="21"/>
  2013. </w:rPr>
  2014. <w:t>是否涉密</w:t>
  2015. </w:r>
  2016. </w:p>
  2017. </w:tc>
  2018. <w:tc>
  2019. <w:tcPr>
  2020. <w:tcW w:w="2563" w:type="dxa"/>
  2021. <w:gridSpan w:val="3"/>
  2022. <w:tcBorders>
  2023. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2024. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2025. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2026. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2027. </w:tcBorders>
  2028. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  2029. <w:vAlign w:val="center"/>
  2030. </w:tcPr>
  2031. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  2032. <w:pPr>
  2033. <w:rPr>
  2034. <w:sz-cs w:val="21"/>
  2035. </w:rPr>
  2036. </w:pPr>
  2037. <w:r>
  2038. <w:rPr>
  2039. <w:rFonts w:hint="fareast"/>
  2040. <w:sz-cs w:val="21"/>
  2041. </w:rPr>
  2042. <w:t>${tinfoClassList["issecret"]!''}</w:t>
  2043. </w:r>
  2044. </w:p>
  2045. </w:tc>
  2046. </w:tr>
  2047. <w:tr wsp:rsidR="00AD2D2D" wsp:rsidTr="00C3038B">
  2048. <w:trPr>
  2049. <w:cantSplit/>
  2050. <w:trHeight w:val="450"/>
  2051. <w:jc w:val="center"/>
  2052. </w:trPr>
  2053. <w:tc>
  2054. <w:tcPr>
  2055. <w:tcW w:w="2054" w:type="dxa"/>
  2056. <w:tcBorders>
  2057. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2058. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2059. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2060. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2061. </w:tcBorders>
  2062. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  2063. <w:vAlign w:val="center"/>
  2064. </w:tcPr>
  2065. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00AD2D2D" wsp:rsidP="00984F5B">
  2066. <w:pPr>
  2067. <w:rPr>
  2068. <w:rFonts w:hint="fareast"/>
  2069. <w:sz-cs w:val="21"/>
  2070. </w:rPr>
  2071. </w:pPr>
  2072. <w:r>
  2073. <w:rPr>
  2074. <w:rFonts w:hint="fareast"/>
  2075. <wx:font wx:val="宋体"/>
  2076. <w:sz-cs w:val="21"/>
  2077. </w:rPr>
  2078. <w:t>共享方式</w:t>
  2079. </w:r>
  2080. </w:p>
  2081. </w:tc>
  2082. <w:tc>
  2083. <w:tcPr>
  2084. <w:tcW w:w="8092" w:type="dxa"/>
  2085. <w:gridSpan w:val="10"/>
  2086. <w:tcBorders>
  2087. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2088. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2089. <w:bottom w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2090. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2091. </w:tcBorders>
  2092. <w:shd w:val="clear" w:color="auto" w:fill="FFFFFF"/>
  2093. <w:vAlign w:val="center"/>
  2094. </w:tcPr>
  2095. <w:p wsp:rsidR="00AD2D2D" wsp:rsidRDefault="00170F79" wsp:rsidP="00984F5B">
  2096. <w:pPr>
  2097. <w:rPr>
  2098. <w:sz-cs w:val="21"/>
  2099. </w:rPr>
  2100. </w:pPr>
  2101. <w:r>
  2102. <w:rPr>
  2103. <w:rFonts w:hint="fareast"/>
  2104. <w:sz-cs w:val="21"/>
  2105. </w:rPr>
  2106. <w:t>${tinfoClassList["sharemodename"]!''}</w:t>
  2107. </w:r>
  2108. </w:p>
  2109. </w:tc>
  2110. </w:tr>
  2111. <w:tr wsp:rsidR="006A5D06" wsp:rsidTr="00C3038B">
  2112. <w:trPr>
  2113. <w:cantSplit/>
  2114. <w:trHeight w:val="169"/>
  2115. <w:jc w:val="center"/>
  2116. </w:trPr>
  2117. <w:tc>
  2118. <w:tcPr>
  2119. <w:tcW w:w="2054" w:type="dxa"/>
  2120. <w:tcBorders>
  2121. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2122. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2123. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2124. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2125. </w:tcBorders>
  2126. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2127. <w:vAlign w:val="center"/>
  2128. </w:tcPr>
  2129. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2130. <w:pPr>
  2131. <w:rPr>
  2132. <w:sz w:val="18"/>
  2133. <w:sz-cs w:val="18"/>
  2134. </w:rPr>
  2135. </w:pPr>
  2136. <w:r wsp:rsidRPr="00C3038B">
  2137. <w:rPr>
  2138. <w:rFonts w:h-ansi="宋体"/>
  2139. <wx:font wx:val="宋体"/>
  2140. <w:sz w:val="18"/>
  2141. <w:sz-cs w:val="18"/>
  2142. </w:rPr>
  2143. <w:t>信息项编号</w:t>
  2144. </w:r>
  2145. </w:p>
  2146. </w:tc>
  2147. <w:tc>
  2148. <w:tcPr>
  2149. <w:tcW w:w="1376" w:type="dxa"/>
  2150. <w:tcBorders>
  2151. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2152. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2153. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2154. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2155. </w:tcBorders>
  2156. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2157. <w:vAlign w:val="center"/>
  2158. </w:tcPr>
  2159. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2160. <w:pPr>
  2161. <w:rPr>
  2162. <w:sz w:val="18"/>
  2163. <w:sz-cs w:val="18"/>
  2164. </w:rPr>
  2165. </w:pPr>
  2166. <w:r wsp:rsidRPr="00C3038B">
  2167. <w:rPr>
  2168. <w:rFonts w:h-ansi="宋体"/>
  2169. <wx:font wx:val="宋体"/>
  2170. <w:sz w:val="18"/>
  2171. <w:sz-cs w:val="18"/>
  2172. </w:rPr>
  2173. <w:t>信息项名称</w:t>
  2174. </w:r>
  2175. </w:p>
  2176. </w:tc>
  2177. <w:tc>
  2178. <w:tcPr>
  2179. <w:tcW w:w="1134" w:type="dxa"/>
  2180. <w:tcBorders>
  2181. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2182. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2183. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2184. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2185. </w:tcBorders>
  2186. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2187. <w:vAlign w:val="center"/>
  2188. </w:tcPr>
  2189. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2190. <w:pPr>
  2191. <w:rPr>
  2192. <w:sz w:val="18"/>
  2193. <w:sz-cs w:val="18"/>
  2194. </w:rPr>
  2195. </w:pPr>
  2196. <w:r wsp:rsidRPr="00C3038B">
  2197. <w:rPr>
  2198. <w:rFonts w:hint="fareast"/>
  2199. <wx:font wx:val="宋体"/>
  2200. <w:sz w:val="18"/>
  2201. <w:sz-cs w:val="18"/>
  2202. </w:rPr>
  2203. <w:t>数据类型</w:t>
  2204. </w:r>
  2205. </w:p>
  2206. </w:tc>
  2207. <w:tc>
  2208. <w:tcPr>
  2209. <w:tcW w:w="752" w:type="dxa"/>
  2210. <w:gridSpan w:val="2"/>
  2211. <w:tcBorders>
  2212. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2213. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2214. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2215. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2216. </w:tcBorders>
  2217. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2218. <w:vAlign w:val="center"/>
  2219. </w:tcPr>
  2220. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2221. <w:pPr>
  2222. <w:rPr>
  2223. <w:sz w:val="18"/>
  2224. <w:sz-cs w:val="18"/>
  2225. </w:rPr>
  2226. </w:pPr>
  2227. <w:r wsp:rsidRPr="00C3038B">
  2228. <w:rPr>
  2229. <w:rFonts w:hint="fareast"/>
  2230. <wx:font wx:val="宋体"/>
  2231. <w:sz w:val="18"/>
  2232. <w:sz-cs w:val="18"/>
  2233. </w:rPr>
  2234. <w:t>英文名称</w:t>
  2235. </w:r>
  2236. </w:p>
  2237. </w:tc>
  2238. <w:tc>
  2239. <w:tcPr>
  2240. <w:tcW w:w="751" w:type="dxa"/>
  2241. <w:gridSpan w:val="2"/>
  2242. <w:tcBorders>
  2243. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2244. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2245. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2246. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2247. </w:tcBorders>
  2248. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2249. <w:vAlign w:val="center"/>
  2250. </w:tcPr>
  2251. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2252. <w:pPr>
  2253. <w:rPr>
  2254. <w:sz w:val="18"/>
  2255. <w:sz-cs w:val="18"/>
  2256. </w:rPr>
  2257. </w:pPr>
  2258. <w:r wsp:rsidRPr="00C3038B">
  2259. <w:rPr>
  2260. <w:rFonts w:hint="fareast"/>
  2261. <wx:font wx:val="宋体"/>
  2262. <w:sz w:val="18"/>
  2263. <w:sz-cs w:val="18"/>
  2264. </w:rPr>
  2265. <w:t>说明</w:t>
  2266. </w:r>
  2267. </w:p>
  2268. </w:tc>
  2269. <w:tc>
  2270. <w:tcPr>
  2271. <w:tcW w:w="750" w:type="dxa"/>
  2272. <w:gridSpan w:val="2"/>
  2273. <w:tcBorders>
  2274. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2275. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2276. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2277. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2278. </w:tcBorders>
  2279. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2280. <w:vAlign w:val="center"/>
  2281. </w:tcPr>
  2282. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2283. <w:pPr>
  2284. <w:rPr>
  2285. <w:sz w:val="18"/>
  2286. <w:sz-cs w:val="18"/>
  2287. </w:rPr>
  2288. </w:pPr>
  2289. <w:r wsp:rsidRPr="00C3038B">
  2290. <w:rPr>
  2291. <w:rFonts w:hint="fareast"/>
  2292. <wx:font wx:val="宋体"/>
  2293. <w:sz w:val="18"/>
  2294. <w:sz-cs w:val="18"/>
  2295. </w:rPr>
  2296. <w:t>长度</w:t>
  2297. </w:r>
  2298. </w:p>
  2299. </w:tc>
  2300. <w:tc>
  2301. <w:tcPr>
  2302. <w:tcW w:w="709" w:type="dxa"/>
  2303. <w:tcBorders>
  2304. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2305. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2306. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2307. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2308. </w:tcBorders>
  2309. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2310. <w:vAlign w:val="center"/>
  2311. </w:tcPr>
  2312. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2313. <w:pPr>
  2314. <w:rPr>
  2315. <w:sz w:val="18"/>
  2316. <w:sz-cs w:val="18"/>
  2317. </w:rPr>
  2318. </w:pPr>
  2319. <w:r wsp:rsidRPr="00C3038B">
  2320. <w:rPr>
  2321. <w:rFonts w:hint="fareast"/>
  2322. <wx:font wx:val="宋体"/>
  2323. <w:sz w:val="18"/>
  2324. <w:sz-cs w:val="18"/>
  2325. </w:rPr>
  2326. <w:t>数据元</w:t>
  2327. </w:r>
  2328. </w:p>
  2329. </w:tc>
  2330. <w:tc>
  2331. <w:tcPr>
  2332. <w:tcW w:w="1146" w:type="dxa"/>
  2333. <w:tcBorders>
  2334. <w:top w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2335. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2336. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2337. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2338. </w:tcBorders>
  2339. <w:shd w:val="clear" w:color="auto" w:fill="C0C0C0"/>
  2340. <w:vAlign w:val="center"/>
  2341. </w:tcPr>
  2342. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="00C3038B" wsp:rsidRDefault="006A5D06" wsp:rsidP="006A5D06">
  2343. <w:pPr>
  2344. <w:rPr>
  2345. <w:sz w:val="18"/>
  2346. <w:sz-cs w:val="18"/>
  2347. </w:rPr>
  2348. </w:pPr>
  2349. <w:r wsp:rsidRPr="00C3038B">
  2350. <w:rPr>
  2351. <w:rFonts w:hint="fareast"/>
  2352. <wx:font wx:val="宋体"/>
  2353. <w:sz w:val="18"/>
  2354. <w:sz-cs w:val="18"/>
  2355. </w:rPr>
  2356. <w:t>代码集</w:t>
  2357. </w:r>
  2358. </w:p>
  2359. </w:tc>
  2360. </w:tr>
  2361. <#list tinfoClassList["xxxlist"] as xxxlist>
  2362. <w:tr wsp:rsidR="006A5D06" wsp:rsidTr="00C3038B">
  2363. <w:trPr>
  2364. <w:cantSplit/>
  2365. <w:trHeight w:val="448"/>
  2366. <w:jc w:val="center"/>
  2367. </w:trPr>
  2368. <w:tc>
  2369. <w:tcPr>
  2370. <w:tcW w:w="2054" w:type="dxa"/>
  2371. <w:tcBorders>
  2372. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2373. <w:left w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2374. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2375. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2376. </w:tcBorders>
  2377. <w:vAlign w:val="center"/>
  2378. </w:tcPr>
  2379. <w:p wsp:rsidR="006A5D06" wsp:rsidRPr="000D3AC4" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2380. <w:pPr>
  2381. <w:rPr>
  2382. <w:sz-cs w:val="21"/>
  2383. </w:rPr>
  2384. </w:pPr>
  2385. <w:r>
  2386. <w:rPr>
  2387. <w:rFonts w:hint="fareast"/>
  2388. <w:sz-cs w:val="21"/>
  2389. </w:rPr>
  2390. <w:t>${xxxlist["xxxbm"]!''}</w:t>
  2391. </w:r>
  2392. </w:p>
  2393. </w:tc>
  2394. <w:tc>
  2395. <w:tcPr>
  2396. <w:tcW w:w="1376" w:type="dxa"/>
  2397. <w:tcBorders>
  2398. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2399. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2400. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2401. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2402. </w:tcBorders>
  2403. <w:vAlign w:val="center"/>
  2404. </w:tcPr>
  2405. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2406. <w:pPr>
  2407. <w:rPr>
  2408. <w:sz-cs w:val="21"/>
  2409. </w:rPr>
  2410. </w:pPr>
  2411. <w:r>
  2412. <w:rPr>
  2413. <w:rFonts w:hint="fareast"/>
  2414. <w:sz-cs w:val="21"/>
  2415. </w:rPr>
  2416. <w:t>${xxxlist["xxxmc"]!''}</w:t>
  2417. </w:r>
  2418. </w:p>
  2419. </w:tc>
  2420. <w:tc>
  2421. <w:tcPr>
  2422. <w:tcW w:w="1134" w:type="dxa"/>
  2423. <w:tcBorders>
  2424. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2425. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2426. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2427. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2428. </w:tcBorders>
  2429. <w:vAlign w:val="center"/>
  2430. </w:tcPr>
  2431. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2432. <w:r>
  2433. <w:rPr>
  2434. <w:rFonts w:hint="fareast"/>
  2435. </w:rPr>
  2436. <w:t>${xxxlist["datatype_dis"]!''}</w:t>
  2437. </w:r>
  2438. </w:p>
  2439. </w:tc>
  2440. <w:tc>
  2441. <w:tcPr>
  2442. <w:tcW w:w="752" w:type="dxa"/>
  2443. <w:gridSpan w:val="2"/>
  2444. <w:tcBorders>
  2445. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2446. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2447. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2448. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2449. </w:tcBorders>
  2450. <w:vAlign w:val="center"/>
  2451. </w:tcPr>
  2452. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2453. <w:pPr>
  2454. <w:rPr>
  2455. <w:sz-cs w:val="21"/>
  2456. </w:rPr>
  2457. </w:pPr>
  2458. <w:r>
  2459. <w:rPr>
  2460. <w:rFonts w:hint="fareast"/>
  2461. <w:sz-cs w:val="21"/>
  2462. </w:rPr>
  2463. <w:t>${xxxlist["xxxdbmc"]!''}</w:t>
  2464. </w:r>
  2465. </w:p>
  2466. </w:tc>
  2467. <w:tc>
  2468. <w:tcPr>
  2469. <w:tcW w:w="751" w:type="dxa"/>
  2470. <w:gridSpan w:val="2"/>
  2471. <w:tcBorders>
  2472. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2473. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2474. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2475. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2476. </w:tcBorders>
  2477. <w:vAlign w:val="center"/>
  2478. </w:tcPr>
  2479. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2480. <w:pPr>
  2481. <w:rPr>
  2482. <w:sz-cs w:val="21"/>
  2483. </w:rPr>
  2484. </w:pPr>
  2485. <w:r>
  2486. <w:rPr>
  2487. <w:rFonts w:hint="fareast"/>
  2488. <w:sz-cs w:val="21"/>
  2489. </w:rPr>
  2490. <w:t>无</w:t>
  2491. </w:r>
  2492. </w:p>
  2493. </w:tc>
  2494. <w:tc>
  2495. <w:tcPr>
  2496. <w:tcW w:w="750" w:type="dxa"/>
  2497. <w:gridSpan w:val="2"/>
  2498. <w:tcBorders>
  2499. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2500. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2501. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2502. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2503. </w:tcBorders>
  2504. <w:vAlign w:val="center"/>
  2505. </w:tcPr>
  2506. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2507. <w:pPr>
  2508. <w:rPr>
  2509. <w:sz-cs w:val="21"/>
  2510. </w:rPr>
  2511. </w:pPr>
  2512. <w:r>
  2513. <w:rPr>
  2514. <w:rFonts w:hint="fareast"/>
  2515. <w:sz-cs w:val="21"/>
  2516. </w:rPr>
  2517. <w:t>${xxxlist["datasize"]!''}</w:t>
  2518. </w:r>
  2519. </w:p>
  2520. </w:tc>
  2521. <w:tc>
  2522. <w:tcPr>
  2523. <w:tcW w:w="709" w:type="dxa"/>
  2524. <w:tcBorders>
  2525. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2526. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2527. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2528. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2529. </w:tcBorders>
  2530. <w:vAlign w:val="center"/>
  2531. </w:tcPr>
  2532. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2533. <w:pPr>
  2534. <w:rPr>
  2535. <w:sz-cs w:val="21"/>
  2536. </w:rPr>
  2537. </w:pPr>
  2538. <w:r>
  2539. <w:rPr>
  2540. <w:rFonts w:hint="fareast"/>
  2541. <w:sz-cs w:val="21"/>
  2542. </w:rPr>
  2543. <w:t>${xxxlist["datacode"]!''}</w:t>
  2544. </w:r>
  2545. </w:p>
  2546. </w:tc>
  2547. <w:tc>
  2548. <w:tcPr>
  2549. <w:tcW w:w="1146" w:type="dxa"/>
  2550. <w:tcBorders>
  2551. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2552. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2553. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2554. <w:right w:val="double" w:sz="4" wx:bdrwidth="30" w:space="0" w:color="auto"/>
  2555. </w:tcBorders>
  2556. <w:vAlign w:val="center"/>
  2557. </w:tcPr>
  2558. <w:p wsp:rsidR="006A5D06" wsp:rsidRDefault="00170F79" wsp:rsidP="006A5D06">
  2559. <w:pPr>
  2560. <w:rPr>
  2561. <w:sz-cs w:val="21"/>
  2562. </w:rPr>
  2563. </w:pPr>
  2564. <w:r>
  2565. <w:rPr>
  2566. <w:rFonts w:hint="fareast"/>
  2567. <w:sz-cs w:val="21"/>
  2568. </w:rPr>
  2569. <w:t>${xxxlist["codeset_id"]!''}</w:t>
  2570. </w:r>
  2571. </w:p>
  2572. </w:tc>
  2573. </w:tr>
  2574. </#list>
  2575. </w:tbl>
  2576. <w:p wsp:rsidR="00605E74" wsp:rsidRDefault="00605E74"/>
  2577. <w:p wsp:rsidR="000D58D9" wsp:rsidRDefault="000D58D9"/>
  2578. </wx:sub-section>
  2579. <wx:sub-section>
  2580. <w:p wsp:rsidR="000D58D9" wsp:rsidRPr="000D58D9" wsp:rsidRDefault="000D58D9" wsp:rsidP="000D58D9">
  2581. <w:pPr>
  2582. <w:pStyle w:val="2"/>
  2583. <w:tabs>
  2584. <w:tab w:val="left" w:pos="420"/>
  2585. <w:tab w:val="list" w:pos="567"/>
  2586. </w:tabs>
  2587. <w:spacing w:line="415" w:line-rule="auto"/>
  2588. <w:rPr>
  2589. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体"/>
  2590. <wx:font wx:val="宋体"/>
  2591. <w:kern w:val="0"/>
  2592. <w:sz w:val="36"/>
  2593. </w:rPr>
  2594. </w:pPr>
  2595. <w:r wsp:rsidRPr="000D58D9">
  2596. <w:rPr>
  2597. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体" w:hint="fareast"/>
  2598. <wx:font wx:val="华文中宋"/>
  2599. <w:kern w:val="0"/>
  2600. <w:sz w:val="36"/>
  2601. </w:rPr>
  2602. <w:t>相关数据元列表</w:t>
  2603. </w:r>
  2604. </w:p>
  2605. <#list tinfoClassList["sjylist"] as sjylist>
  2606. <w:p wsp:rsidR="000D58D9" wsp:rsidRDefault="000D58D9" wsp:rsidP="000D58D9">
  2607. <w:pPr>
  2608. <w:pStyle w:val="a7"/>
  2609. </w:pPr>
  2610. <w:r>
  2611. <w:rPr>
  2612. <w:rFonts w:hint="fareast"/>
  2613. </w:rPr>
  2614. <w:t>--------------------------------------------------------------------</w:t>
  2615. </w:r>
  2616. </w:p>
  2617. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2618. <w:pPr>
  2619. <w:pStyle w:val="a7"/>
  2620. </w:pPr>
  2621. <w:r wsp:rsidRPr="005A7D30">
  2622. <w:rPr>
  2623. <w:rFonts w:hint="fareast"/>
  2624. </w:rPr>
  2625. <w:t>${sjylist["datacode"]!''}</w:t>
  2626. </w:r>
  2627. <w:r>
  2628. <w:rPr>
  2629. <w:rFonts w:hint="fareast"/>
  2630. </w:rPr>
  2631. <w:t> </w:t>
  2632. </w:r>
  2633. <w:r wsp:rsidRPr="005A7D30">
  2634. <w:rPr>
  2635. <w:rFonts w:hint="fareast"/>
  2636. </w:rPr>
  2637. <w:t>${sjylist["metaname"]!''}</w:t>
  2638. </w:r>
  2639. </w:p>
  2640. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2641. <w:pPr>
  2642. <w:pStyle w:val="a7"/>
  2643. </w:pPr>
  2644. <w:r>
  2645. <w:rPr>
  2646. <w:rFonts w:hint="fareast"/>
  2647. </w:rPr>
  2648. <w:t>数据元类别:</w:t>
  2649. </w:r>
  2650. <w:r wsp:rsidR="00272CF6" wsp:rsidRPr="005A7D30">
  2651. <w:rPr>
  2652. <w:rFonts w:hint="fareast"/>
  2653. </w:rPr>
  2654. <w:t>${sjylist["metacode"]!''}</w:t>
  2655. </w:r>
  2656. </w:p>
  2657. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="009E133D" wsp:rsidP="005A7D30">
  2658. <w:pPr>
  2659. <w:pStyle w:val="a7"/>
  2660. </w:pPr>
  2661. <w:r>
  2662. <w:rPr>
  2663. <w:rFonts w:hint="fareast"/>
  2664. </w:rPr>
  2665. <w:t>数据元名称</w:t>
  2666. </w:r>
  2667. <w:r wsp:rsidR="005A7D30">
  2668. <w:rPr>
  2669. <w:rFonts w:hint="fareast"/>
  2670. </w:rPr>
  2671. <w:t>:</w:t>
  2672. </w:r>
  2673. <w:r wsp:rsidRPr="005A7D30">
  2674. <w:rPr>
  2675. <w:rFonts w:hint="fareast"/>
  2676. </w:rPr>
  2677. <w:t>${sjylist["metaname"]!''}</w:t>
  2678. </w:r>
  2679. </w:p>
  2680. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2681. <w:pPr>
  2682. <w:pStyle w:val="a7"/>
  2683. </w:pPr>
  2684. <w:r>
  2685. <w:rPr>
  2686. <w:rFonts w:hint="fareast"/>
  2687. </w:rPr>
  2688. <w:t>数据类型:</w:t>
  2689. </w:r>
  2690. <w:r wsp:rsidR="00771EEE" wsp:rsidRPr="005A7D30">
  2691. <w:rPr>
  2692. <w:rFonts w:hint="fareast"/>
  2693. </w:rPr>
  2694. <w:t>${sjylist["metacode_dis"]!''}</w:t>
  2695. </w:r>
  2696. </w:p>
  2697. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2698. <w:pPr>
  2699. <w:pStyle w:val="a7"/>
  2700. </w:pPr>
  2701. <w:r>
  2702. <w:rPr>
  2703. <w:rFonts w:hint="fareast"/>
  2704. </w:rPr>
  2705. <w:t>长度:</w:t>
  2706. </w:r>
  2707. <w:r wsp:rsidR="00594689" wsp:rsidRPr="005A7D30">
  2708. <w:rPr>
  2709. <w:rFonts w:hint="fareast"/>
  2710. </w:rPr>
  2711. <w:t>${sjylist["datasize"]!''}</w:t>
  2712. </w:r>
  2713. </w:p>
  2714. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2715. <w:pPr>
  2716. <w:pStyle w:val="a7"/>
  2717. </w:pPr>
  2718. <w:r>
  2719. <w:rPr>
  2720. <w:rFonts w:hint="fareast"/>
  2721. </w:rPr>
  2722. <w:t>值域说明:${sjylist["ranges"]!''}</w:t>
  2723. </w:r>
  2724. </w:p>
  2725. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2726. <w:pPr>
  2727. <w:pStyle w:val="a7"/>
  2728. </w:pPr>
  2729. <w:r>
  2730. <w:rPr>
  2731. <w:rFonts w:hint="fareast"/>
  2732. </w:rPr>
  2733. <w:t>是否代码集:</w:t>
  2734. </w:r>
  2735. </w:p>
  2736. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="005A7D30" wsp:rsidP="005A7D30">
  2737. <w:pPr>
  2738. <w:pStyle w:val="a7"/>
  2739. </w:pPr>
  2740. <w:r>
  2741. <w:rPr>
  2742. <w:rFonts w:hint="fareast"/>
  2743. </w:rPr>
  2744. <w:t>代码集编号:</w:t>
  2745. </w:r>
  2746. </w:p>
  2747. <w:p wsp:rsidR="005A7D30" wsp:rsidRDefault="002271A1" wsp:rsidP="00C3038B">
  2748. <w:pPr>
  2749. <w:pStyle w:val="a7"/>
  2750. </w:pPr>
  2751. <w:r>
  2752. <w:rPr>
  2753. <w:rFonts w:hint="fareast"/>
  2754. </w:rPr>
  2755. <w:t>说明</w:t>
  2756. </w:r>
  2757. <w:r wsp:rsidR="005A7D30">
  2758. <w:rPr>
  2759. <w:rFonts w:hint="fareast"/>
  2760. </w:rPr>
  2761. <w:t>:${sjylist["description"]!''}</w:t>
  2762. </w:r>
  2763. <w:r wsp:rsidR="00C3038B">
  2764. <w:t> </w:t>
  2765. </w:r>
  2766. </w:p>
  2767. </#list>
  2768. </wx:sub-section>
  2769. <wx:sub-section>
  2770. <w:p wsp:rsidR="00851750" wsp:rsidRPr="00851750" wsp:rsidRDefault="00851750" wsp:rsidP="00851750">
  2771. <w:pPr>
  2772. <w:pStyle w:val="2"/>
  2773. <w:tabs>
  2774. <w:tab w:val="left" w:pos="420"/>
  2775. <w:tab w:val="list" w:pos="567"/>
  2776. </w:tabs>
  2777. <w:spacing w:line="415" w:line-rule="auto"/>
  2778. <w:rPr>
  2779. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体"/>
  2780. <wx:font wx:val="宋体"/>
  2781. <w:kern w:val="0"/>
  2782. <w:sz w:val="36"/>
  2783. </w:rPr>
  2784. </w:pPr>
  2785. <w:r wsp:rsidRPr="00851750">
  2786. <w:rPr>
  2787. <w:rFonts w:ascii="宋体" w:fareast="华文中宋" w:h-ansi="Times New Roman" w:cs="宋体" w:hint="fareast"/>
  2788. <wx:font wx:val="华文中宋"/>
  2789. <w:kern w:val="0"/>
  2790. <w:sz w:val="36"/>
  2791. </w:rPr>
  2792. <w:t>代码集详情</w:t>
  2793. </w:r>
  2794. </w:p>
  2795. <#list tinfoClassList["dmjlist"] as dmjlist>
  2796. <w:p wsp:rsidR="00E33585" wsp:rsidRPr="00E33585" wsp:rsidRDefault="00E33585" wsp:rsidP="00E33585">
  2797. <w:pPr>
  2798. <w:rPr>
  2799. <w:rFonts w:hint="fareast"/>
  2800. </w:rPr>
  2801. </w:pPr>
  2802. </w:p>
  2803. <w:tbl>
  2804. <w:tblPr>
  2805. <w:tblW w:w="0" w:type="auto"/>
  2806. <w:tblBorders>
  2807. <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2808. <w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2809. <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2810. <w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2811. <w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2812. <w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
  2813. </w:tblBorders>
  2814. <w:tblLook w:val="04A0"/>
  2815. </w:tblPr>
  2816. <w:tblGrid>
  2817. <w:gridCol w:w="2130"/>
  2818. <w:gridCol w:w="2130"/>
  2819. <w:gridCol w:w="2131"/>
  2820. <w:gridCol w:w="2131"/>
  2821. </w:tblGrid>
  2822. <w:tr wsp:rsidR="00DD3A45" wsp:rsidTr="00DD3A45">
  2823. <w:tc>
  2824. <w:tcPr>
  2825. <w:tcW w:w="2130" w:type="dxa"/>
  2826. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2827. </w:tcPr>
  2828. <w:p wsp:rsidR="00D326B0" wsp:rsidRDefault="00D326B0" wsp:rsidP="00851750">
  2829. <w:pPr>
  2830. <w:pStyle w:val="a7"/>
  2831. <w:rPr>
  2832. <w:rFonts w:hint="fareast"/>
  2833. </w:rPr>
  2834. </w:pPr>
  2835. <w:r>
  2836. <w:rPr>
  2837. <w:rFonts w:hint="fareast"/>
  2838. </w:rPr>
  2839. <w:t>代码集名称</w:t>
  2840. </w:r>
  2841. </w:p>
  2842. </w:tc>
  2843. <w:tc>
  2844. <w:tcPr>
  2845. <w:tcW w:w="2130" w:type="dxa"/>
  2846. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2847. </w:tcPr>
  2848. <w:p wsp:rsidR="00D326B0" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2849. <w:pPr>
  2850. <w:pStyle w:val="a7"/>
  2851. <w:rPr>
  2852. <w:rFonts w:hint="fareast"/>
  2853. </w:rPr>
  2854. </w:pPr>
  2855. <w:r>
  2856. <w:rPr>
  2857. <w:rFonts w:hint="fareast"/>
  2858. </w:rPr>
  2859. <w:t>${dmjlist["codeset_name"]!''}</w:t>
  2860. </w:r>
  2861. </w:p>
  2862. </w:tc>
  2863. <w:tc>
  2864. <w:tcPr>
  2865. <w:tcW w:w="2131" w:type="dxa"/>
  2866. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2867. </w:tcPr>
  2868. <w:p wsp:rsidR="00D326B0" wsp:rsidRDefault="00D326B0" wsp:rsidP="00851750">
  2869. <w:pPr>
  2870. <w:pStyle w:val="a7"/>
  2871. <w:rPr>
  2872. <w:rFonts w:hint="fareast"/>
  2873. </w:rPr>
  2874. </w:pPr>
  2875. <w:r>
  2876. <w:rPr>
  2877. <w:rFonts w:hint="fareast"/>
  2878. </w:rPr>
  2879. <w:t>代码集编码</w:t>
  2880. </w:r>
  2881. </w:p>
  2882. </w:tc>
  2883. <w:tc>
  2884. <w:tcPr>
  2885. <w:tcW w:w="2131" w:type="dxa"/>
  2886. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2887. </w:tcPr>
  2888. <w:p wsp:rsidR="00D326B0" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2889. <w:pPr>
  2890. <w:pStyle w:val="a7"/>
  2891. <w:rPr>
  2892. <w:rFonts w:hint="fareast"/>
  2893. </w:rPr>
  2894. </w:pPr>
  2895. <w:r>
  2896. <w:rPr>
  2897. <w:rFonts w:hint="fareast"/>
  2898. </w:rPr>
  2899. <w:t>${dmjlist["codeset_id"]!''}</w:t>
  2900. </w:r>
  2901. </w:p>
  2902. </w:tc>
  2903. </w:tr>
  2904. <w:tr wsp:rsidR="00E33585" wsp:rsidTr="00DD3A45">
  2905. <w:tc>
  2906. <w:tcPr>
  2907. <w:tcW w:w="4260" w:type="dxa"/>
  2908. <w:gridSpan w:val="2"/>
  2909. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2910. </w:tcPr>
  2911. <w:p wsp:rsidR="00E33585" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2912. <w:pPr>
  2913. <w:pStyle w:val="a7"/>
  2914. <w:rPr>
  2915. <w:rFonts w:hint="fareast"/>
  2916. </w:rPr>
  2917. </w:pPr>
  2918. <w:r>
  2919. <w:rPr>
  2920. <w:rFonts w:hint="fareast"/>
  2921. </w:rPr>
  2922. <w:t>代码值</w:t>
  2923. </w:r>
  2924. </w:p>
  2925. </w:tc>
  2926. <w:tc>
  2927. <w:tcPr>
  2928. <w:tcW w:w="4262" w:type="dxa"/>
  2929. <w:gridSpan w:val="2"/>
  2930. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2931. </w:tcPr>
  2932. <w:p wsp:rsidR="00E33585" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2933. <w:pPr>
  2934. <w:pStyle w:val="a7"/>
  2935. <w:rPr>
  2936. <w:rFonts w:hint="fareast"/>
  2937. </w:rPr>
  2938. </w:pPr>
  2939. <w:r>
  2940. <w:rPr>
  2941. <w:rFonts w:hint="fareast"/>
  2942. </w:rPr>
  2943. <w:t>代码值编码</w:t>
  2944. </w:r>
  2945. </w:p>
  2946. </w:tc>
  2947. </w:tr>
  2948. <#list dmjlist["dmdetail"] as dmdetail>
  2949. <w:tr wsp:rsidR="00E33585" wsp:rsidTr="00DD3A45">
  2950. <w:tc>
  2951. <w:tcPr>
  2952. <w:tcW w:w="4260" w:type="dxa"/>
  2953. <w:gridSpan w:val="2"/>
  2954. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2955. </w:tcPr>
  2956. <w:p wsp:rsidR="00E33585" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2957. <w:pPr>
  2958. <w:pStyle w:val="a7"/>
  2959. <w:rPr>
  2960. <w:rFonts w:hint="fareast"/>
  2961. </w:rPr>
  2962. </w:pPr>
  2963. <w:r>
  2964. <w:rPr>
  2965. <w:rFonts w:hint="fareast"/>
  2966. </w:rPr>
  2967. <w:t>${dmdetail["codename"]!''}</w:t>
  2968. </w:r>
  2969. </w:p>
  2970. </w:tc>
  2971. <w:tc>
  2972. <w:tcPr>
  2973. <w:tcW w:w="4262" w:type="dxa"/>
  2974. <w:gridSpan w:val="2"/>
  2975. <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
  2976. </w:tcPr>
  2977. <w:p wsp:rsidR="00E33585" wsp:rsidRDefault="00E33585" wsp:rsidP="00851750">
  2978. <w:pPr>
  2979. <w:pStyle w:val="a7"/>
  2980. <w:rPr>
  2981. <w:rFonts w:hint="fareast"/>
  2982. </w:rPr>
  2983. </w:pPr>
  2984. <w:r>
  2985. <w:rPr>
  2986. <w:rFonts w:hint="fareast"/>
  2987. </w:rPr>
  2988. <w:t>${dmdetail["codenum"]!''}</w:t>
  2989. </w:r>
  2990. </w:p>
  2991. </w:tc>
  2992. </w:tr>
  2993. </#list>
  2994. </w:tbl>
  2995. <w:p wsp:rsidR="00D326B0" wsp:rsidRDefault="00D326B0" wsp:rsidP="00851750">
  2996. <w:pPr>
  2997. <w:pStyle w:val="a7"/>
  2998. </w:pPr>
  2999. </w:p>
  3000. </#list>
  3001. </wx:sub-section>
  3002. </wx:sub-section>
  3003. <w:sectPr wsp:rsidR="00851750" wsp:rsidSect="00B523B1">
  3004. <w:pgSz w:w="11906" w:h="16838"/>
  3005. <w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/>
  3006. <w:cols w:space="425"/>
  3007. <w:docGrid w:type="lines" w:line-pitch="312"/>
  3008. </w:sectPr>
  3009. </wx:sect>
  3010. </w:body>
  3011. </#list>
  3012. </w:wordDocument>