记录一下自己踩得坑,想想都心疼。

需求是这样的:看图

就是要实现品名和其他的一对多,但是品名也是一个list,可以理解为下图这样的。大家肯定会说 list嵌套不就行了,话不多说,简单的list嵌套行不通。

正经的来了:说一下freemarker生成doc的步骤,第一先写doc模板,第二生成xml文件,第三如果有list的话,加上你要循环的list,详细步骤如下:

1.先编写doc模板,模板包括样式,以及你需要显示的数据都先写在doc文件里面,如图,数据就和写el表达式一样。

2.另存为xml文件,一定要存下图这样的,不然会出问题。

3.修改生成的xml文件,文件格式比较乱,可以先整理一下,我经常用xml格式化这个在线工具格式化,不过一些表达式会被分开,还是需要自己手动整理,整理过程不表,就是把分开的表达式合并到一个cell。上两个图对比一下把

整理前:

                  <w:r wsp:rsidRPr="00B91F4B"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>$</w:t></w:r><w:r wsp:rsidRPr="00B91F4B"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>{people}</w:t></w:r><w:t>$</w:t></w:r><w:r wsp:rsidRPr="00B91F4B"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>{people}</w:t></w:r>

整理后:

 <w:r wsp:rsidRPr="00B91F4B"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${people}</w:t></w:r><w:t>${people}</w:t></w:r>

4.划重点,实现list嵌套循环并且合并单元格

说一下思路:先利用模板建好一个一对二的模板,但是这个模板的建设有一个隐藏tip,

(tip)注意这个是怎么生成的,是先生成一行,然后在这一行上面插入一行,然后把品名的单元格合并成一个单元格,这样就变成一对二的模板了,这样转成的xml文件里面 其实是两行 就是两个tr。

接着就是利用出现的这两个tr,由于品名哪里在模板种已经合并单元格了,就不用处理了,现在需要处理的就是占位的那一行的3个cell,如果不处理,每一次循环的时候都会多出来一行。

!!!这是重点:  我的思路是把这一行(即xml里面的tr)的3个cell和下边一行(行在xml里面都是tr)的三个cell合并,用的是<w:vmerge w:val="restart"/>和<w:vmerge/>这俩属性,但是只合并内层循环的第一次循环的数据就可以了,就是在内层循环是第一次的时候利用if判断把<w:vmerge/>这个属性加上去,其他时候不用处理就好了,不过还有一个问题就是,单元格的合并是从上到下的,就是上面的值会把下面的覆盖掉,既然知道这样我们把内层循环第一次的值直接赋值给上面那三个占位的cell就行了,这样占位的使命也就完成了,其实一开始就可以把占位的值给设定好,不过那样不好理解。详细操作步骤看图:

(1)先生成一行

(2)插入一行并且合并第一列(即品名对应的那一列)

(3)生成xml,并且加上list两层循环,注意加list的地方,很明显是外层循环两个tr,内层循环只循环下边那个tr,注意不要写错了。因为在word里面合并单元格之后的值实际上在第一行第一个cell里面,即品名这列我们已经合并单元格了,但是他的值其实在占位哪一行的第一个cell里面。

(4)修改xml文件的属性,利用index==0,即第一次循环去给外层循环赋值,赋的值其实就是把内层循环的第一个循环拿出来,并且给那个cell加上<w:vmerge w:val="restart"/>这个属性;接着给内层循环第一次循环的时候加上<w:vmerge/>这个属性,这样就实现了单元格的合并。

xml文件:

<?xml version="1.0" encoding="utf-8"?>
<?mso-application progid="Word.Document"?><w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" 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"><w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/><o:DocumentProperties><o:Author>NTKO</o:Author><o:LastAuthor>NTKO</o:LastAuthor><o:Revision>2</o:Revision><o:TotalTime>0</o:TotalTime><o:Created>2018-07-05T07:18:00Z</o:Created><o:LastSaved>2018-07-05T07:18:00Z</o:LastSaved><o:Pages>2</o:Pages><o:Words>127</o:Words><o:Characters>727</o:Characters><o:Company>Microsoft</o:Company><o:Lines>6</o:Lines><o:Paragraphs>1</o:Paragraphs><o:CharactersWithSpaces>853</o:CharactersWithSpaces><o:Version>15</o:Version></o:DocumentProperties><w:fonts><w:defaultFonts w:ascii="Calibri" w:fareast="宋体" w:h-ansi="Calibri" w:cs="Times New Roman"/><w:font w:name="Times New Roman"><w:panose-1 w:val="02020603050405020304"/><w:charset w:val="00"/><w:family w:val="Roman"/><w:pitch w:val="variable"/><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"/></w:font><w:font w:name="宋体"><w:altName w:val="SimSun"/><w:panose-1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><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"/></w:font><w:font w:name="宋体"><w:altName w:val="SimSun"/><w:panose-1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><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"/></w:font><w:font w:name="Calibri Light"><w:panose-1 w:val="020F0302020204030204"/><w:charset w:val="00"/><w:family w:val="Swiss"/><w:pitch w:val="variable"/><w:sig w:usb-0="E0002AFF" w:usb-1="C000247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font><w:font w:name="Calibri"><w:panose-1 w:val="020F0502020204030204"/><w:charset w:val="00"/><w:family w:val="Swiss"/><w:pitch w:val="variable"/><w:sig w:usb-0="E0002AFF" w:usb-1="C000247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/></w:font><w:font w:name="@宋体"><w:panose-1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><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"/></w:font><w:font w:name="等线"><w:panose-1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/></w:font><w:font w:name="@等线"><w:panose-1 w:val="02010600030101010101"/><w:charset w:val="86"/><w:family w:val="auto"/><w:pitch w:val="variable"/><w:sig w:usb-0="A00002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004000F" w:csb-1="00000000"/></w:font></w:fonts><w:styles><w:versionOfBuiltInStylenames w:val="7"/><w:latentStyles w:defLockedState="off" w:latentStyleCount="371"><w:lsdException w:name="Normal"/><w:lsdException w:name="heading 1"/><w:lsdException w:name="heading 2"/><w:lsdException w:name="heading 3"/><w:lsdException w:name="heading 4"/><w:lsdException w:name="heading 5"/><w:lsdException w:name="heading 6"/><w:lsdException w:name="heading 7"/><w:lsdException w:name="heading 8"/><w:lsdException w:name="heading 9"/><w:lsdException w:name="index 1"/><w:lsdException w:name="index 2"/><w:lsdException w:name="index 3"/><w:lsdException w:name="index 4"/><w:lsdException w:name="index 5"/><w:lsdException w:name="index 6"/><w:lsdException w:name="index 7"/><w:lsdException w:name="index 8"/><w:lsdException w:name="index 9"/><w:lsdException w:name="toc 1"/><w:lsdException w:name="toc 2"/><w:lsdException w:name="toc 3"/><w:lsdException w:name="toc 4"/><w:lsdException w:name="toc 5"/><w:lsdException w:name="toc 6"/><w:lsdException w:name="toc 7"/><w:lsdException w:name="toc 8"/><w:lsdException w:name="toc 9"/><w:lsdException w:name="Normal Indent"/><w:lsdException w:name="footnote text"/><w:lsdException w:name="annotation text"/><w:lsdException w:name="header"/><w:lsdException w:name="footer"/><w:lsdException w:name="index heading"/><w:lsdException w:name="caption"/><w:lsdException w:name="table of figures"/><w:lsdException w:name="envelope address"/><w:lsdException w:name="envelope return"/><w:lsdException w:name="footnote reference"/><w:lsdException w:name="annotation reference"/><w:lsdException w:name="line number"/><w:lsdException w:name="page number"/><w:lsdException w:name="endnote reference"/><w:lsdException w:name="endnote text"/><w:lsdException w:name="table of authorities"/><w:lsdException w:name="macro"/><w:lsdException w:name="toa heading"/><w:lsdException w:name="List"/><w:lsdException w:name="List Bullet"/><w:lsdException w:name="List Number"/><w:lsdException w:name="List 2"/><w:lsdException w:name="List 3"/><w:lsdException w:name="List 4"/><w:lsdException w:name="List 5"/><w:lsdException w:name="List Bullet 2"/><w:lsdException w:name="List Bullet 3"/><w:lsdException w:name="List Bullet 4"/><w:lsdException w:name="List Bullet 5"/><w:lsdException w:name="List Number 2"/><w:lsdException w:name="List Number 3"/><w:lsdException w:name="List Number 4"/><w:lsdException w:name="List Number 5"/><w:lsdException w:name="Title"/><w:lsdException w:name="Closing"/><w:lsdException w:name="Signature"/><w:lsdException w:name="Default Paragraph Font"/><w:lsdException w:name="Body Text"/><w:lsdException w:name="Body Text Indent"/><w:lsdException w:name="List Continue"/><w:lsdException w:name="List Continue 2"/><w:lsdException w:name="List Continue 3"/><w:lsdException w:name="List Continue 4"/><w:lsdException w:name="List Continue 5"/><w:lsdException w:name="Message Header"/><w:lsdException w:name="Subtitle"/><w:lsdException w:name="Salutation"/><w:lsdException w:name="Date"/><w:lsdException w:name="Body Text First Indent"/><w:lsdException w:name="Body Text First Indent 2"/><w:lsdException w:name="Note Heading"/><w:lsdException w:name="Body Text 2"/><w:lsdException w:name="Body Text 3"/><w:lsdException w:name="Body Text Indent 2"/><w:lsdException w:name="Body Text Indent 3"/><w:lsdException w:name="Block Text"/><w:lsdException w:name="Hyperlink"/><w:lsdException w:name="FollowedHyperlink"/><w:lsdException w:name="Strong"/><w:lsdException w:name="Emphasis"/><w:lsdException w:name="Document Map"/><w:lsdException w:name="Plain Text"/><w:lsdException w:name="E-mail Signature"/><w:lsdException w:name="HTML Top of Form"/><w:lsdException w:name="HTML Bottom of Form"/><w:lsdException w:name="Normal (Web)"/><w:lsdException w:name="HTML Acronym"/><w:lsdException w:name="HTML Address"/><w:lsdException w:name="HTML Cite"/><w:lsdException w:name="HTML Code"/><w:lsdException w:name="HTML Definition"/><w:lsdException w:name="HTML Keyboard"/><w:lsdException w:name="HTML Preformatted"/><w:lsdException w:name="HTML Sample"/><w:lsdException w:name="HTML Typewriter"/><w:lsdException w:name="HTML Variable"/><w:lsdException w:name="Normal Table"/><w:lsdException w:name="annotation subject"/><w:lsdException w:name="No List"/><w:lsdException w:name="Outline List 1"/><w:lsdException w:name="Outline List 2"/><w:lsdException w:name="Outline List 3"/><w:lsdException w:name="Table Simple 1"/><w:lsdException w:name="Table Simple 2"/><w:lsdException w:name="Table Simple 3"/><w:lsdException w:name="Table Classic 1"/><w:lsdException w:name="Table Classic 2"/><w:lsdException w:name="Table Classic 3"/><w:lsdException w:name="Table Classic 4"/><w:lsdException w:name="Table Colorful 1"/><w:lsdException w:name="Table Colorful 2"/><w:lsdException w:name="Table Colorful 3"/><w:lsdException w:name="Table Columns 1"/><w:lsdException w:name="Table Columns 2"/><w:lsdException w:name="Table Columns 3"/><w:lsdException w:name="Table Columns 4"/><w:lsdException w:name="Table Columns 5"/><w:lsdException w:name="Table Grid 1"/><w:lsdException w:name="Table Grid 2"/><w:lsdException w:name="Table Grid 3"/><w:lsdException w:name="Table Grid 4"/><w:lsdException w:name="Table Grid 5"/><w:lsdException w:name="Table Grid 6"/><w:lsdException w:name="Table Grid 7"/><w:lsdException w:name="Table Grid 8"/><w:lsdException w:name="Table List 1"/><w:lsdException w:name="Table List 2"/><w:lsdException w:name="Table List 3"/><w:lsdException w:name="Table List 4"/><w:lsdException w:name="Table List 5"/><w:lsdException w:name="Table List 6"/><w:lsdException w:name="Table List 7"/><w:lsdException w:name="Table List 8"/><w:lsdException w:name="Table 3D effects 1"/><w:lsdException w:name="Table 3D effects 2"/><w:lsdException w:name="Table 3D effects 3"/><w:lsdException w:name="Table Contemporary"/><w:lsdException w:name="Table Elegant"/><w:lsdException w:name="Table Professional"/><w:lsdException w:name="Table Subtle 1"/><w:lsdException w:name="Table Subtle 2"/><w:lsdException w:name="Table Web 1"/><w:lsdException w:name="Table Web 2"/><w:lsdException w:name="Table Web 3"/><w:lsdException w:name="Balloon Text"/><w:lsdException w:name="Table Grid"/><w:lsdException w:name="Table Theme"/><w:lsdException w:name="Placeholder Text"/><w:lsdException w:name="No Spacing"/><w:lsdException w:name="Light Shading"/><w:lsdException w:name="Light List"/><w:lsdException w:name="Light Grid"/><w:lsdException w:name="Medium Shading 1"/><w:lsdException w:name="Medium Shading 2"/><w:lsdException w:name="Medium List 1"/><w:lsdException w:name="Medium List 2"/><w:lsdException w:name="Medium Grid 1"/><w:lsdException w:name="Medium Grid 2"/><w:lsdException w:name="Medium Grid 3"/><w:lsdException w:name="Dark List"/><w:lsdException w:name="Colorful Shading"/><w:lsdException w:name="Colorful List"/><w:lsdException w:name="Colorful Grid"/><w:lsdException w:name="Light Shading Accent 1"/><w:lsdException w:name="Light List Accent 1"/><w:lsdException w:name="Light Grid Accent 1"/><w:lsdException w:name="Medium Shading 1 Accent 1"/><w:lsdException w:name="Medium Shading 2 Accent 1"/><w:lsdException w:name="Medium List 1 Accent 1"/><w:lsdException w:name="Revision"/><w:lsdException w:name="List Paragraph"/><w:lsdException w:name="Quote"/><w:lsdException w:name="Intense Quote"/><w:lsdException w:name="Medium List 2 Accent 1"/><w:lsdException w:name="Medium Grid 1 Accent 1"/><w:lsdException w:name="Medium Grid 2 Accent 1"/><w:lsdException w:name="Medium Grid 3 Accent 1"/><w:lsdException w:name="Dark List Accent 1"/><w:lsdException w:name="Colorful Shading Accent 1"/><w:lsdException w:name="Colorful List Accent 1"/><w:lsdException w:name="Colorful Grid Accent 1"/><w:lsdException w:name="Light Shading Accent 2"/><w:lsdException w:name="Light List Accent 2"/><w:lsdException w:name="Light Grid Accent 2"/><w:lsdException w:name="Medium Shading 1 Accent 2"/><w:lsdException w:name="Medium Shading 2 Accent 2"/><w:lsdException w:name="Medium List 1 Accent 2"/><w:lsdException w:name="Medium List 2 Accent 2"/><w:lsdException w:name="Medium Grid 1 Accent 2"/><w:lsdException w:name="Medium Grid 2 Accent 2"/><w:lsdException w:name="Medium Grid 3 Accent 2"/><w:lsdException w:name="Dark List Accent 2"/><w:lsdException w:name="Colorful Shading Accent 2"/><w:lsdException w:name="Colorful List Accent 2"/><w:lsdException w:name="Colorful Grid Accent 2"/><w:lsdException w:name="Light Shading Accent 3"/><w:lsdException w:name="Light List Accent 3"/><w:lsdException w:name="Light Grid Accent 3"/><w:lsdException w:name="Medium Shading 1 Accent 3"/><w:lsdException w:name="Medium Shading 2 Accent 3"/><w:lsdException w:name="Medium List 1 Accent 3"/><w:lsdException w:name="Medium List 2 Accent 3"/><w:lsdException w:name="Medium Grid 1 Accent 3"/><w:lsdException w:name="Medium Grid 2 Accent 3"/><w:lsdException w:name="Medium Grid 3 Accent 3"/><w:lsdException w:name="Dark List Accent 3"/><w:lsdException w:name="Colorful Shading Accent 3"/><w:lsdException w:name="Colorful List Accent 3"/><w:lsdException w:name="Colorful Grid Accent 3"/><w:lsdException w:name="Light Shading Accent 4"/><w:lsdException w:name="Light List Accent 4"/><w:lsdException w:name="Light Grid Accent 4"/><w:lsdException w:name="Medium Shading 1 Accent 4"/><w:lsdException w:name="Medium Shading 2 Accent 4"/><w:lsdException w:name="Medium List 1 Accent 4"/><w:lsdException w:name="Medium List 2 Accent 4"/><w:lsdException w:name="Medium Grid 1 Accent 4"/><w:lsdException w:name="Medium Grid 2 Accent 4"/><w:lsdException w:name="Medium Grid 3 Accent 4"/><w:lsdException w:name="Dark List Accent 4"/><w:lsdException w:name="Colorful Shading Accent 4"/><w:lsdException w:name="Colorful List Accent 4"/><w:lsdException w:name="Colorful Grid Accent 4"/><w:lsdException w:name="Light Shading Accent 5"/><w:lsdException w:name="Light List Accent 5"/><w:lsdException w:name="Light Grid Accent 5"/><w:lsdException w:name="Medium Shading 1 Accent 5"/><w:lsdException w:name="Medium Shading 2 Accent 5"/><w:lsdException w:name="Medium List 1 Accent 5"/><w:lsdException w:name="Medium List 2 Accent 5"/><w:lsdException w:name="Medium Grid 1 Accent 5"/><w:lsdException w:name="Medium Grid 2 Accent 5"/><w:lsdException w:name="Medium Grid 3 Accent 5"/><w:lsdException w:name="Dark List Accent 5"/><w:lsdException w:name="Colorful Shading Accent 5"/><w:lsdException w:name="Colorful List Accent 5"/><w:lsdException w:name="Colorful Grid Accent 5"/><w:lsdException w:name="Light Shading Accent 6"/><w:lsdException w:name="Light List Accent 6"/><w:lsdException w:name="Light Grid Accent 6"/><w:lsdException w:name="Medium Shading 1 Accent 6"/><w:lsdException w:name="Medium Shading 2 Accent 6"/><w:lsdException w:name="Medium List 1 Accent 6"/><w:lsdException w:name="Medium List 2 Accent 6"/><w:lsdException w:name="Medium Grid 1 Accent 6"/><w:lsdException w:name="Medium Grid 2 Accent 6"/><w:lsdException w:name="Medium Grid 3 Accent 6"/><w:lsdException w:name="Dark List Accent 6"/><w:lsdException w:name="Colorful Shading Accent 6"/><w:lsdException w:name="Colorful List Accent 6"/><w:lsdException w:name="Colorful Grid Accent 6"/><w:lsdException w:name="Subtle Emphasis"/><w:lsdException w:name="Intense Emphasis"/><w:lsdException w:name="Subtle Reference"/><w:lsdException w:name="Intense Reference"/><w:lsdException w:name="Book Title"/><w:lsdException w:name="Bibliography"/><w:lsdException w:name="TOC Heading"/><w:lsdException w:name="Plain Table 1"/><w:lsdException w:name="Plain Table 2"/><w:lsdException w:name="Plain Table 3"/><w:lsdException w:name="Plain Table 4"/><w:lsdException w:name="Plain Table 5"/><w:lsdException w:name="Grid Table Light"/><w:lsdException w:name="Grid Table 1 Light"/><w:lsdException w:name="Grid Table 2"/><w:lsdException w:name="Grid Table 3"/><w:lsdException w:name="Grid Table 4"/><w:lsdException w:name="Grid Table 5 Dark"/><w:lsdException w:name="Grid Table 6 Colorful"/><w:lsdException w:name="Grid Table 7 Colorful"/><w:lsdException w:name="Grid Table 1 Light Accent 1"/><w:lsdException w:name="Grid Table 2 Accent 1"/><w:lsdException w:name="Grid Table 3 Accent 1"/><w:lsdException w:name="Grid Table 4 Accent 1"/><w:lsdException w:name="Grid Table 5 Dark Accent 1"/><w:lsdException w:name="Grid Table 6 Colorful Accent 1"/><w:lsdException w:name="Grid Table 7 Colorful Accent 1"/><w:lsdException w:name="Grid Table 1 Light Accent 2"/><w:lsdException w:name="Grid Table 2 Accent 2"/><w:lsdException w:name="Grid Table 3 Accent 2"/><w:lsdException w:name="Grid Table 4 Accent 2"/><w:lsdException w:name="Grid Table 5 Dark Accent 2"/><w:lsdException w:name="Grid Table 6 Colorful Accent 2"/><w:lsdException w:name="Grid Table 7 Colorful Accent 2"/><w:lsdException w:name="Grid Table 1 Light Accent 3"/><w:lsdException w:name="Grid Table 2 Accent 3"/><w:lsdException w:name="Grid Table 3 Accent 3"/><w:lsdException w:name="Grid Table 4 Accent 3"/><w:lsdException w:name="Grid Table 5 Dark Accent 3"/><w:lsdException w:name="Grid Table 6 Colorful Accent 3"/><w:lsdException w:name="Grid Table 7 Colorful Accent 3"/><w:lsdException w:name="Grid Table 1 Light Accent 4"/><w:lsdException w:name="Grid Table 2 Accent 4"/><w:lsdException w:name="Grid Table 3 Accent 4"/><w:lsdException w:name="Grid Table 4 Accent 4"/><w:lsdException w:name="Grid Table 5 Dark Accent 4"/><w:lsdException w:name="Grid Table 6 Colorful Accent 4"/><w:lsdException w:name="Grid Table 7 Colorful Accent 4"/><w:lsdException w:name="Grid Table 1 Light Accent 5"/><w:lsdException w:name="Grid Table 2 Accent 5"/><w:lsdException w:name="Grid Table 3 Accent 5"/><w:lsdException w:name="Grid Table 4 Accent 5"/><w:lsdException w:name="Grid Table 5 Dark Accent 5"/><w:lsdException w:name="Grid Table 6 Colorful Accent 5"/><w:lsdException w:name="Grid Table 7 Colorful Accent 5"/><w:lsdException w:name="Grid Table 1 Light Accent 6"/><w:lsdException w:name="Grid Table 2 Accent 6"/><w:lsdException w:name="Grid Table 3 Accent 6"/><w:lsdException w:name="Grid Table 4 Accent 6"/><w:lsdException w:name="Grid Table 5 Dark Accent 6"/><w:lsdException w:name="Grid Table 6 Colorful Accent 6"/><w:lsdException w:name="Grid Table 7 Colorful Accent 6"/><w:lsdException w:name="List Table 1 Light"/><w:lsdException w:name="List Table 2"/><w:lsdException w:name="List Table 3"/><w:lsdException w:name="List Table 4"/><w:lsdException w:name="List Table 5 Dark"/><w:lsdException w:name="List Table 6 Colorful"/><w:lsdException w:name="List Table 7 Colorful"/><w:lsdException w:name="List Table 1 Light Accent 1"/><w:lsdException w:name="List Table 2 Accent 1"/><w:lsdException w:name="List Table 3 Accent 1"/><w:lsdException w:name="List Table 4 Accent 1"/><w:lsdException w:name="List Table 5 Dark Accent 1"/><w:lsdException w:name="List Table 6 Colorful Accent 1"/><w:lsdException w:name="List Table 7 Colorful Accent 1"/><w:lsdException w:name="List Table 1 Light Accent 2"/><w:lsdException w:name="List Table 2 Accent 2"/><w:lsdException w:name="List Table 3 Accent 2"/><w:lsdException w:name="List Table 4 Accent 2"/><w:lsdException w:name="List Table 5 Dark Accent 2"/><w:lsdException w:name="List Table 6 Colorful Accent 2"/><w:lsdException w:name="List Table 7 Colorful Accent 2"/><w:lsdException w:name="List Table 1 Light Accent 3"/><w:lsdException w:name="List Table 2 Accent 3"/><w:lsdException w:name="List Table 3 Accent 3"/><w:lsdException w:name="List Table 4 Accent 3"/><w:lsdException w:name="List Table 5 Dark Accent 3"/><w:lsdException w:name="List Table 6 Colorful Accent 3"/><w:lsdException w:name="List Table 7 Colorful Accent 3"/><w:lsdException w:name="List Table 1 Light Accent 4"/><w:lsdException w:name="List Table 2 Accent 4"/><w:lsdException w:name="List Table 3 Accent 4"/><w:lsdException w:name="List Table 4 Accent 4"/><w:lsdException w:name="List Table 5 Dark Accent 4"/><w:lsdException w:name="List Table 6 Colorful Accent 4"/><w:lsdException w:name="List Table 7 Colorful Accent 4"/><w:lsdException w:name="List Table 1 Light Accent 5"/><w:lsdException w:name="List Table 2 Accent 5"/><w:lsdException w:name="List Table 3 Accent 5"/><w:lsdException w:name="List Table 4 Accent 5"/><w:lsdException w:name="List Table 5 Dark Accent 5"/><w:lsdException w:name="List Table 6 Colorful Accent 5"/><w:lsdException w:name="List Table 7 Colorful Accent 5"/><w:lsdException w:name="List Table 1 Light Accent 6"/><w:lsdException w:name="List Table 2 Accent 6"/><w:lsdException w:name="List Table 3 Accent 6"/><w:lsdException w:name="List Table 4 Accent 6"/><w:lsdException w:name="List Table 5 Dark Accent 6"/><w:lsdException w:name="List Table 6 Colorful Accent 6"/><w:lsdException w:name="List Table 7 Colorful Accent 6"/></w:latentStyles><w:style w:type="paragraph" w:default="on" w:styleId="a"><w:name w:val="Normal"/><wx:uiName wx:val="正文"/><w:pPr><w:widowControl w:val="off"/><w:jc w:val="both"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:kern w:val="2"/><w:sz w:val="21"/><w:sz-cs w:val="22"/><w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/></w:rPr></w:style><w:style w:type="paragraph" w:styleId="1"><w:name w:val="heading 1"/><wx:uiName wx:val="标题 1"/><w:basedOn w:val="a"/><w:next w:val="a"/><w:link w:val="1Char"/><w:rsid w:val="006B3FA7"/><w:pPr><w:keepNext/><w:keepLines/><w:spacing w:before="340" w:after="330" w:line="578" w:line-rule="auto"/><w:outlineLvl w:val="0"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:b/><w:b-cs/><w:kern w:val="44"/><w:sz w:val="44"/><w:sz-cs w:val="44"/></w:rPr></w:style><w:style w:type="character" w:default="on" w:styleId="a0"><w:name w:val="Default Paragraph Font"/><wx:uiName wx:val="默认段落字体"/></w:style><w:style w:type="table" w:default="on" w:styleId="a1"><w:name w:val="Normal Table"/><wx:uiName wx:val="普通表格"/><w:rPr><wx:font wx:val="Calibri"/><w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/></w:rPr><w:tblPr><w:tblInd w:w="0" w:type="dxa"/><w:tblCellMar><w:top w:w="0" w:type="dxa"/><w:left w:w="108" w:type="dxa"/><w:bottom w:w="0" w:type="dxa"/><w:right w:w="108" w:type="dxa"/></w:tblCellMar></w:tblPr></w:style><w:style w:type="list" w:default="on" w:styleId="a2"><w:name w:val="No List"/><wx:uiName wx:val="无列表"/></w:style><w:style w:type="paragraph" w:styleId="a3"><w:name w:val="header"/><wx:uiName wx:val="页眉"/><w:basedOn w:val="a"/><w:link w:val="Char"/><w:rsid w:val="006B3FA7"/><w:pPr><w:pBdr><w:bottom w:val="single" w:sz="6" wx:bdrwidth="15" w:space="1" w:color="auto"/></w:pBdr><w:tabs><w:tab w:val="center" w:pos="4153"/><w:tab w:val="right" w:pos="8306"/></w:tabs><w:snapToGrid w:val="off"/><w:jc w:val="center"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:sz w:val="18"/><w:sz-cs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:styleId="Char"><w:name w:val="页眉 Char"/><w:link w:val="a3"/><w:rsid w:val="006B3FA7"/><w:rPr><w:sz w:val="18"/><w:sz-cs w:val="18"/></w:rPr></w:style><w:style w:type="paragraph" w:styleId="a4"><w:name w:val="footer"/><wx:uiName wx:val="页脚"/><w:basedOn w:val="a"/><w:link w:val="Char0"/><w:rsid w:val="006B3FA7"/><w:pPr><w:tabs><w:tab w:val="center" w:pos="4153"/><w:tab w:val="right" w:pos="8306"/></w:tabs><w:snapToGrid w:val="off"/><w:jc w:val="left"/></w:pPr><w:rPr><wx:font wx:val="Calibri"/><w:sz w:val="18"/><w:sz-cs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:styleId="Char0"><w:name w:val="页脚 Char"/><w:link w:val="a4"/><w:rsid w:val="006B3FA7"/><w:rPr><w:sz w:val="18"/><w:sz-cs w:val="18"/></w:rPr></w:style><w:style w:type="character" w:styleId="1Char"><w:name w:val="标题 1 Char"/><w:link w:val="1"/><w:rsid w:val="006B3FA7"/><w:rPr><w:b/><w:b-cs/><w:kern w:val="44"/><w:sz w:val="44"/><w:sz-cs w:val="44"/></w:rPr></w:style><w:style w:type="table" w:styleId="a5"><w:name w:val="Table Grid"/><wx:uiName wx:val="网格型"/><w:basedOn w:val="a1"/><w:rsid w:val="003B687C"/><w:rPr><wx:font wx:val="Calibri"/></w:rPr><w:tblPr><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders></w:tblPr></w:style><w:style w:type="paragraph" w:styleId="a6"><w:name w:val="Subtitle"/><wx:uiName wx:val="副标题"/><w:basedOn w:val="a"/><w:next w:val="a"/><w:link w:val="Char1"/><w:rsid w:val="00E356C1"/><w:pPr><w:spacing w:before="240" w:after="60" w:line="312" w:line-rule="auto"/><w:jc w:val="center"/><w:outlineLvl w:val="1"/></w:pPr><w:rPr><w:rFonts w:ascii="Calibri Light" w:h-ansi="Calibri Light"/><wx:font wx:val="Calibri Light"/><w:b/><w:b-cs/><w:kern w:val="28"/><w:sz w:val="32"/><w:sz-cs w:val="32"/></w:rPr></w:style><w:style w:type="character" w:styleId="Char1"><w:name w:val="副标题 Char"/><w:link w:val="a6"/><w:rsid w:val="00E356C1"/><w:rPr><w:rFonts w:ascii="Calibri Light" w:fareast="宋体" w:h-ansi="Calibri Light" w:cs="Times New Roman"/><w:b/><w:b-cs/><w:kern w:val="28"/><w:sz w:val="32"/><w:sz-cs w:val="32"/></w:rPr></w:style></w:styles><w:divs><w:div w:id="288704283"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="461769343"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="594246476"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="634601138"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="1151143436"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="1234781666"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="1699433620"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="1782803723"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div><w:div w:id="2088335367"><w:bodyDiv w:val="on"/><w:marLeft w:val="0"/><w:marRight w:val="0"/><w:marTop w:val="0"/><w:marBottom w:val="0"/><w:divBdr><w:top w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:left w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/><w:right w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/></w:divBdr></w:div></w:divs><w:shapeDefaults><o:shapedefaults v:ext="edit" spidmax="2049"/><o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout></w:shapeDefaults><w:docPr><w:view w:val="print"/><w:zoom w:percent="120"/><w:doNotEmbedSystemFonts/><w:bordersDontSurroundHeader/><w:bordersDontSurroundFooter/><w:defaultTabStop w:val="420"/><w:drawingGridVerticalSpacing w:val="156"/><w:displayHorizontalDrawingGridEvery w:val="0"/><w:displayVerticalDrawingGridEvery w:val="2"/><w:punctuationKerning/><w:characterSpacingControl w:val="CompressPunctuation"/><w:optimizeForBrowser/><w:allowPNG/><w:validateAgainstSchema/><w:saveInvalidXML w:val="off"/><w:ignoreMixedContent w:val="off"/><w:alwaysShowPlaceholderText w:val="off"/><w:hdrShapeDefaults><o:shapedefaults v:ext="edit" spidmax="2049"/></w:hdrShapeDefaults><w:footnotePr><w:footnote w:type="separator"><w:p wsp:rsidR="00565B45" wsp:rsidRDefault="00565B45" wsp:rsidP="006B3FA7"><w:r><w:separator/></w:r></w:p></w:footnote><w:footnote w:type="continuation-separator"><w:p wsp:rsidR="00565B45" wsp:rsidRDefault="00565B45" wsp:rsidP="006B3FA7"><w:r><w:continuationSeparator/></w:r></w:p></w:footnote></w:footnotePr><w:endnotePr><w:endnote w:type="separator"><w:p wsp:rsidR="00565B45" wsp:rsidRDefault="00565B45" wsp:rsidP="006B3FA7"><w:r><w:separator/></w:r></w:p></w:endnote><w:endnote w:type="continuation-separator"><w:p wsp:rsidR="00565B45" wsp:rsidRDefault="00565B45" wsp:rsidP="006B3FA7"><w:r><w:continuationSeparator/></w:r></w:p></w:endnote></w:endnotePr><w:compat><w:spaceForUL/><w:balanceSingleByteDoubleByteWidth/><w:doNotLeaveBackslashAlone/><w:ulTrailSpace/><w:doNotExpandShiftReturn/><w:adjustLineHeightInTable/><w:breakWrappedTables/><w:snapToGridInCell/><w:wrapTextWithPunct/><w:useAsianBreakRules/><w:dontGrowAutofit/><w:useFELayout/></w:compat><wsp:rsids><wsp:rsidRoot wsp:val="00347BB8"/><wsp:rsid wsp:val="00031AFE"/><wsp:rsid wsp:val="0005578C"/><wsp:rsid wsp:val="000851DB"/><wsp:rsid wsp:val="00093128"/><wsp:rsid wsp:val="000B21E5"/><wsp:rsid wsp:val="000B7E48"/><wsp:rsid wsp:val="000D147F"/><wsp:rsid wsp:val="0013730C"/><wsp:rsid wsp:val="00143244"/><wsp:rsid wsp:val="00147946"/><wsp:rsid wsp:val="00157E2B"/><wsp:rsid wsp:val="001C5D6E"/><wsp:rsid wsp:val="001C62F8"/><wsp:rsid wsp:val="001D32F9"/><wsp:rsid wsp:val="002358F3"/><wsp:rsid wsp:val="00242DB4"/><wsp:rsid wsp:val="0029350F"/><wsp:rsid wsp:val="002F32DA"/><wsp:rsid wsp:val="00320726"/><wsp:rsid wsp:val="0032344D"/><wsp:rsid wsp:val="00341352"/><wsp:rsid wsp:val="00347BB8"/><wsp:rsid wsp:val="00366BF0"/><wsp:rsid wsp:val="003B687C"/><wsp:rsid wsp:val="003E0E8B"/><wsp:rsid wsp:val="00402F9D"/><wsp:rsid wsp:val="00416E3C"/><wsp:rsid wsp:val="00423651"/><wsp:rsid wsp:val="00431962"/><wsp:rsid wsp:val="00463949"/><wsp:rsid wsp:val="004666B3"/><wsp:rsid wsp:val="004760A7"/><wsp:rsid wsp:val="004847E0"/><wsp:rsid wsp:val="00485AA9"/><wsp:rsid wsp:val="004A647C"/><wsp:rsid wsp:val="004D6CC3"/><wsp:rsid wsp:val="004E174E"/><wsp:rsid wsp:val="004F0766"/><wsp:rsid wsp:val="004F5C2A"/><wsp:rsid wsp:val="005320A7"/><wsp:rsid wsp:val="00540D5B"/><wsp:rsid wsp:val="00543716"/><wsp:rsid wsp:val="00565B45"/><wsp:rsid wsp:val="005B06F5"/><wsp:rsid wsp:val="005B5386"/><wsp:rsid wsp:val="005B5B09"/><wsp:rsid wsp:val="005C3BFE"/><wsp:rsid wsp:val="005E7648"/><wsp:rsid wsp:val="00622E3A"/><wsp:rsid wsp:val="00634D77"/><wsp:rsid wsp:val="00637CDA"/><wsp:rsid wsp:val="00650081"/><wsp:rsid wsp:val="006613C3"/><wsp:rsid wsp:val="00661BD4"/><wsp:rsid wsp:val="00684817"/><wsp:rsid wsp:val="006B3FA7"/><wsp:rsid wsp:val="006B564B"/><wsp:rsid wsp:val="006E0D0E"/><wsp:rsid wsp:val="006E7D0A"/><wsp:rsid wsp:val="006F184A"/><wsp:rsid wsp:val="0073533C"/><wsp:rsid wsp:val="0075199F"/><wsp:rsid wsp:val="0079590A"/><wsp:rsid wsp:val="00797218"/><wsp:rsid wsp:val="007C0DD6"/><wsp:rsid wsp:val="007C724C"/><wsp:rsid wsp:val="007F701B"/><wsp:rsid wsp:val="00840A39"/><wsp:rsid wsp:val="00841E1F"/><wsp:rsid wsp:val="008813B0"/><wsp:rsid wsp:val="00883A51"/><wsp:rsid wsp:val="00896059"/><wsp:rsid wsp:val="008B6F1A"/><wsp:rsid wsp:val="00913E56"/><wsp:rsid wsp:val="00932794"/><wsp:rsid wsp:val="0094391F"/><wsp:rsid wsp:val="00966F98"/><wsp:rsid wsp:val="009A1200"/><wsp:rsid wsp:val="009A4F20"/><wsp:rsid wsp:val="009B3142"/><wsp:rsid wsp:val="009E19FA"/><wsp:rsid wsp:val="00A06B1D"/><wsp:rsid wsp:val="00A241C7"/><wsp:rsid wsp:val="00A401BB"/><wsp:rsid wsp:val="00A81F96"/><wsp:rsid wsp:val="00AF3E4D"/><wsp:rsid wsp:val="00B02175"/><wsp:rsid wsp:val="00B85888"/><wsp:rsid wsp:val="00BA6CF5"/><wsp:rsid wsp:val="00BB00D4"/><wsp:rsid wsp:val="00BF126C"/><wsp:rsid wsp:val="00C16398"/><wsp:rsid wsp:val="00C259A3"/><wsp:rsid wsp:val="00C60355"/><wsp:rsid wsp:val="00C67B00"/><wsp:rsid wsp:val="00C749BF"/><wsp:rsid wsp:val="00CC7B03"/><wsp:rsid wsp:val="00CF1C43"/><wsp:rsid wsp:val="00D4116F"/><wsp:rsid wsp:val="00D479B6"/><wsp:rsid wsp:val="00DC5978"/><wsp:rsid wsp:val="00DF1502"/><wsp:rsid wsp:val="00E235CD"/><wsp:rsid wsp:val="00E26299"/><wsp:rsid wsp:val="00E356C1"/><wsp:rsid wsp:val="00E42F78"/><wsp:rsid wsp:val="00E70FE5"/><wsp:rsid wsp:val="00E91D93"/><wsp:rsid wsp:val="00F033E6"/><wsp:rsid wsp:val="00F365C2"/><wsp:rsid wsp:val="00F6307A"/><wsp:rsid wsp:val="00F75494"/><wsp:rsid wsp:val="00F911DB"/><wsp:rsid wsp:val="00F93B88"/></wsp:rsids></w:docPr><w:body><wx:sect><wx:sub-section><wx:sub-section><w:p wsp:rsidR="003B687C" wsp:rsidRDefault="003B687C" wsp:rsidP="00E356C1"><w:pPr><w:pStyle w:val="a6"/></w:pPr><w:r><w:rPr><w:rFonts w:hint="fareast"/><wx:font wx:val="宋体"/></w:rPr><w:t>飞机维修服务分公司${airportDivision}维修分部生产运行日报表</w:t></w:r></w:p><w:p wsp:rsidR="006B3FA7" wsp:rsidRDefault="006B3FA7" wsp:rsidP="003B687C"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p><w:tbl><w:tblPr><w:tblW w:w="0" w:type="auto"/><w:tblBorders><w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:left w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:right w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideH w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/><w:insideV w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tblBorders><w:tblLayout w:type="Fixed"/><w:tblLook w:val="04A0"/></w:tblPr><w:tblGrid><w:gridCol w:w="421"/><w:gridCol w:w="206"/><w:gridCol w:w="786"/><w:gridCol w:w="234"/><w:gridCol w:w="333"/><w:gridCol w:w="524"/><w:gridCol w:w="43"/><w:gridCol w:w="709"/><w:gridCol w:w="708"/><w:gridCol w:w="567"/><w:gridCol w:w="394"/><w:gridCol w:w="173"/><w:gridCol w:w="709"/><w:gridCol w:w="709"/><w:gridCol w:w="709"/><w:gridCol w:w="708"/><w:gridCol w:w="709"/></w:tblGrid><w:tr wsp:rsidR="009A1200" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="627" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="003B687C" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C259A3" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>分部</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3904" w:type="dxa"/><w:gridSpan w:val="8"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="003B687C" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00883A51" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${airportDivision}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1985" w:type="dxa"/><w:gridSpan w:val="4"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="003B687C" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C259A3" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>报送日期</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="003B687C" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00883A51" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${reportDate}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班保障情况</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="6"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班保障开始时间</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1984" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1985" w:type="dxa"/><w:gridSpan w:val="4"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:b/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班保障结束时间</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc></w:tr><w:tr wsp:rsidR="00650081" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="008813B0" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>运营人</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="4"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>机场航班数量/架</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="6095" w:type="dxa"/><w:gridSpan w:val="10"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B5386" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>维修分部保障统计</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:trPr><w:trHeight w:val="1774"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>进港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>出港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="left"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>一般勤务/班</w:t></w:r><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="15"/><w:sz-cs w:val="15"/></w:rPr><w:t>(</w:t></w:r><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="等线" w:fareast="等线" w:h-ansi="等线" w:hint="fareast"/><wx:font wx:val="等线"/><w:sz w:val="13"/><w:sz-cs w:val="13"/></w:rPr><w:t>航前、航后勤务记为1班</w:t></w:r><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="15"/><w:sz-cs w:val="15"/></w:rPr><w:t>)</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>过站放行/班</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航前/班</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航后/班</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>电源车/次</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>气源车/次</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>牵引车/次</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>引导车/次</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>除防冰/班</w:t></w:r></w:p></w:tc></w:tr>
<#list tableFlightMap as map><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="0079590A" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00966F98" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.operator}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00B85888" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.enter}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00B85888" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.cleance}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00485AA9" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00423651" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.service}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00F6307A" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00896059" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.station}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="004F0766" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="004760A7" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.beflight}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="0073533C" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${map.afflight}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>0</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>0</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>0</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>0</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>0</w:t></w:r></w:p></w:tc></w:tr>
</#list><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>通航</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc></w:tr><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>公务机</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc></w:tr><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>合计</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00093128" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00147946" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin1}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00093128" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00147946" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin2}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00093128" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="005B5B09" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin3}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00093128" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00147946" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin4}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00093128" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="005C3BFE" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin5}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="567" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00366BF0" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin6}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00366BF0" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin7}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00D479B6" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin8}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="708" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00143244" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00143244" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="004F5C2A" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${combin9}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="004760A7" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>器材使用情况</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="4"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>品名</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1417" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>牌号</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>数量</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3544" w:type="dxa"/><w:gridSpan w:val="5"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>用途</w:t></w:r></w:p></w:tc></w:tr>
<#list toolList as tool><w:tr wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge/><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="4"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${tool.toolName}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1417" w:type="dxa"/><w:gridSpan w:val="2"/>
<w:vmerge w:val="restart"/>   <w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><#list tool.toolUsedList as toolUtil><w:t><#if toolUtil_index == 0 >${toolUtil.toolSer}</#if></w:t></#list></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="3"/>
<w:vmerge w:val="restart"/>   <w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><#list tool.toolUsedList as toolUtil><w:t><#if toolUtil_index == 0 >${toolUtil.useSituation}</#if></w:t></#list></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3544" w:type="dxa"/><w:gridSpan w:val="5"/>
<w:vmerge w:val="restart"/>   <w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005B06F5" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005B06F5" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><#list tool.toolUsedList as toolUtil><w:t><#if toolUtil_index == 0 >${toolUtil.useRemark}</#if></w:t></#list></w:r></w:p></w:tc></w:tr>
<#list tool.toolUsedList as toolUsedMap><w:tr wsp:rsidR="004760A7" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="992" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge/><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="4"/><w:vmerge/><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1417" w:type="dxa"/><w:gridSpan w:val="2"/>
<#if toolUsedMap_index == 0 ><w:vmerge/></#if><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00F911DB" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${toolUsedMap.toolSer}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1134" w:type="dxa"/><w:gridSpan w:val="3"/>
<#if toolUsedMap_index == 0 ><w:vmerge/></#if><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00157E2B" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${toolUsedMap.useSituation}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3544" w:type="dxa"/><w:gridSpan w:val="5"/>
<#if toolUsedMap_index == 0 ><w:vmerge/></#if><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="005320A7" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="005320A7" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="00C60355" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${toolUsedMap.useRemark}</w:t></w:r></w:p></w:tc></w:tr>
</#list>
</#list><w:tr wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:bottom w:val="nil"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="left"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班特殊情况:</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:trPr><w:trHeight w:val="218"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:top w:val="nil"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C749BF" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${faultHandl}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:bottom w:val="nil"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="left"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>其他:</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:trPr><w:trHeight w:val="218"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:tcBorders><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00C67B00" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:top w:val="nil"/><w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00C67B00" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00684817" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${faultOther}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="009E19FA" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="0032344D" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="0032344D" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>明日航班计划</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2083" w:type="dxa"/><w:gridSpan w:val="5"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="0032344D" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="0032344D" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班计划开始时间</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2421" w:type="dxa"/><w:gridSpan w:val="5"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="0032344D" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00BF126C" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t></w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1591" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="0032344D" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="0032344D" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>航班加护结束时间</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="0032344D" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00BF126C" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t></w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00896059" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1226" w:type="dxa"/><w:gridSpan w:val="3"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>机场计划执行分航班数量</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="857" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>进港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2421" w:type="dxa"/><w:gridSpan w:val="5"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00A81F96" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${planI}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="882" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge w:val="restart"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>分部航班保障计划数量</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>进港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="000B7E48" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${securityI}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00896059" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1226" w:type="dxa"/><w:gridSpan w:val="3"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="857" w:type="dxa"/><w:gridSpan w:val="2"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>出港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2421" w:type="dxa"/><w:gridSpan w:val="5"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00A81F96" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${planO}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="882" w:type="dxa"/><w:gridSpan w:val="2"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="709" w:type="dxa"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C5D6E" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>出港</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="001C5D6E" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="000B7E48" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${securityO}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="006613C3" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:bottom w:val="nil"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="006613C3" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="left"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>生产运行将执行的特殊工作:</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:trPr><w:trHeight w:val="634"/></w:trPr><w:tc><w:tcPr><w:tcW w:w="421" w:type="dxa"/><w:vmerge/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="006613C3" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="8221" w:type="dxa"/><w:gridSpan w:val="16"/><w:tcBorders><w:top w:val="nil"/></w:tcBorders><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="006613C3" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00AF3E4D" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="002358F3" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${specialWork}</w:t></w:r></w:p></w:tc></w:tr><w:tr wsp:rsidR="00423651" wsp:rsidRPr="000B21E5" wsp:rsidTr="000B21E5"><w:tc><w:tcPr><w:tcW w:w="1647" w:type="dxa"/><w:gridSpan w:val="4"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00341352" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00341352" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>填表人</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="3278" w:type="dxa"/><w:gridSpan w:val="7"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00341352" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="001C62F8" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${people}</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="1591" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00341352" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00341352" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>联系电话</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcW w:w="2126" w:type="dxa"/><w:gridSpan w:val="3"/><w:shd w:val="clear" w:color="auto" w:fill="auto"/><w:vAlign w:val="center"/></w:tcPr><w:p wsp:rsidR="00341352" wsp:rsidRPr="000B21E5" wsp:rsidRDefault="00841E1F" wsp:rsidP="000B21E5"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs><w:jc w:val="center"/><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr></w:pPr><w:r wsp:rsidR="006E0D0E" wsp:rsidRPr="000B21E5"><w:rPr><w:rFonts w:ascii="宋体" w:h-ansi="宋体"/><wx:font wx:val="宋体"/><w:sz w:val="16"/><w:sz-cs w:val="16"/></w:rPr><w:t>${phoneNumber}</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p wsp:rsidR="003B687C" wsp:rsidRDefault="003B687C" wsp:rsidP="003B687C"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p><w:p wsp:rsidR="003B687C" wsp:rsidRDefault="003B687C" wsp:rsidP="006B3FA7"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p><w:p wsp:rsidR="003B687C" wsp:rsidRDefault="003B687C" wsp:rsidP="006B3FA7"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p><w:p wsp:rsidR="003B687C" wsp:rsidRDefault="003B687C" wsp:rsidP="006B3FA7"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p><w:p wsp:rsidR="003B687C" wsp:rsidRPr="006B3FA7" wsp:rsidRDefault="003B687C" wsp:rsidP="006B3FA7"><w:pPr><w:tabs><w:tab w:val="left" w:pos="657"/></w:tabs></w:pPr></w:p></wx:sub-section></wx:sub-section><w:sectPr wsp:rsidR="003B687C" wsp:rsidRPr="006B3FA7"><w:pgSz w:w="11906" w:h="16838"/><w:pgMar w:top="1440" w:right="1800" w:bottom="1440" w:left="1800" w:header="851" w:footer="992" w:gutter="0"/><w:cols w:space="425"/><w:docGrid w:type="lines" w:line-pitch="312"/></w:sectPr></wx:sect></w:body>
</w:wordDocument>

到处后的结果展示:

欢迎讨论

free marker导出word,word里包含表格 用到了list嵌套 合并单元格相关推荐

  1. 把分类信息,在表格中展现出来,通过合并单元格来实现信息之间的层级关系...

    工作中有如下需求 需要把分类信息,在表格中展现出来,通过合并单元格来实现信息之间的层级关系. 如下图: 废话不多说,直接贴代码: <?php /* 假设你有如下树形结构的数据,树形结构的数据有很 ...

  2. 在EXCEL表格中经常会遇到有合并单元格时,汇总计算的公式无法直接下拉自动填充计算,掌握这个小技巧一键汇总

    在EXCEL表格中经常会遇到有合并单元格时,汇总计算的公式无法直接下拉自动填充计算,掌握这个小技巧一键汇总 目录 在EXCEL表格中经常会遇到有合并单元格时,汇总计算的公式无法直接下拉自动填充计算,掌 ...

  3. csstable跨列居中_html中table表格如何跨行或跨列合并单元格

    在html中的table表格实现跨行或跨列合并单元格,需要用到以下两个属性: 1.跨列colspan属性:就是合并左右关系的单元格: 2.跨行rowspan属性:就是合并上下关系的单元格: 而在tab ...

  4. word表格分开快捷键_Word拆分与合并单元格快捷键

    在我们平时使用Word文档时,经常也会在文中插入单元格.而大家都知道,在Excel中,拆分与合并单元格都有快捷键,那么在Word中如何设置呢?下面我们就来学习一下. 首先在Word文档中插入一个表格: ...

  5. 复杂的POI导出Excel表格(多行表头、合并单元格)

    poi导出excel有两种方式: 第一种:从无到有的创建整个excel,通过HSSFWorkbook,HSSFSheet HSSFCell, 等对象一步一步的创建出工作簿,sheet,和单元格,并添加 ...

  6. 根据表格中的数据,动态合并单元格

    1.我们最终要实现这样一个效果 2.在表格上声明span-method方法,并注册相关的函数 <template><el-table:data="tableData&quo ...

  7. 【Excel / WPS表格】如何按列进行合并单元格?或者说按行进行合并单元格?

    一.问题背景 有时候我们需要把n排m列的单元格合并成n排或者合并成m列,但是excel本身并没有这种直观明显的操作/功能按钮. wps表格中有一个按行合并的功能,能将n排m列的单元格合并成n排. 但是 ...

  8. python xlsxwriter合并单元格_Python使用xlsxwriter导出表格并合并单元格

    之前使用csv导出表格,但是好像不支持合并单元格.后来发现了这个,试了一下. import xlsxwriter f = xlsxwriter.Workbook('9.xlsx') # 创建excel ...

  9. python csv合并单元格_Python使用xlsxwriter导出表格并合并单元格

    之前使用csv导出表格,但是好像不支持合并单元格.后来发现了这个,试了一下. import xlsxwriter f = xlsxwriter.Workbook('9.xlsx') # 创建excel ...

最新文章

  1. 汇总|目标检测中的数据增强、backbone、head、neck、损失函数
  2. 哪些是我们必须要会深度学习知识
  3. 最近的学习---一句话收获(备查用)(3)
  4. mxnet加载resnet,进行预测
  5. 悼念传奇,约翰询问#183;纳什和他的妻子艾丽西亚致敬,创建一个传奇,爱数学...
  6. 【渝粤题库】广东开放大学 跨境电商搜索引擎优化 形成性考核
  7. servlet返回数据给html_Servlet 简介
  8. java常见异常类图(分类了Error/RuntimeExecption、check Exception)
  9. opencv双目视觉标定、匹配和测量 (附代码)
  10. lightgbm 保存模型 过大_机器学习之12—Lightgbm
  11. nginx 代理静态资源报 403
  12. sicktim571操作手册_TIM中文操作手册.PDF
  13. Python如何清屏命令行终端
  14. html5 回合制网页游戏,盘点史上最流行的十款回合制网页游戏
  15. 在坦桑尼亚如何打国际长途,打给你中国的朋友?
  16. Java 常用正则表达式与测试
  17. git使用遇到的问题
  18. Springboot整合Mybatis Plus
  19. java抓取qq消息_Java代码---实现爬取腾讯新闻
  20. opencv调用basler简单示例

热门文章

  1. Java8-20-lambda 设计模式
  2. 哈工大威海大学计算机实验报告,哈工大威海计算机网络实验1概述.doc
  3. foreach 里面使用bcmul或者直接运算符出现结果不正常,触发情景未知,有大佬知道请请留意告知
  4. 信息安全之完美设置自己的密码
  5. vue,狂神,狂神和飞哥,前端一直在抄袭后端
  6. 【Vue学习总结】3. Vue目录结构分析
  7. 诚之和:成都,正在批量“制造”美女
  8. java 间隔5秒执行一个方法
  9. 日常用语--生病看医生
  10. 万向区块链蜂巢学院 | 大硕:加密世界的NFT和游戏——从碎片化时间到碎片化价值