freeMarker导出word带图片

1.maven导入需要的jar包

		<!-- 引入freeMarker的依赖包. -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-freemarker</artifactId>
		</dependency>

2.word模板另存为xml格式

3.写word导出工具类,改写模板目录,支持导出zip格式,根据目录得到图片的base64码

package com.zggk.framework.utils;

import freemarker.template.Configuration;
import freemarker.template.Template;
import sun.misc.BASE64Encoder;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import com.zggk.framework.utils.word.WordHtmlGeneratorHelper;

import java.io.*;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.Map;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;



/**
 * 报告生成工具类
 */
public class WordUtils {
   
	private static Configuration configuration = null;
    static {
        configuration = new Configuration();
        configuration.setDefaultEncoding("UTF-8");
        configuration.setClassForTemplateLoading(WordUtils.class,"/static/filetemp/");  
    }

    private WordUtils() {
        throw new AssertionError();
    }


    public static File createDoc( Map<?, ?> dataMap,String ftlFile,String name){
//    	String name = "xxx.doc";
    	File f = new File(name);
        try {
        	Template Template = configuration.getTemplate(ftlFile,"UTF-8");
            Writer w = new OutputStreamWriter(new FileOutputStream(f), "UTF-8");
            Template.process(dataMap, w);
            w.close();
        } catch (Exception ex) {
            ex.printStackTrace(); 
            throw new RuntimeException(ex);
        }
        return f;
    }
    
	public void downloadWord( String process, HttpServletRequest request, HttpServletResponse response,String title,File file){
        
        //响应头的设置
        response.reset();
        response.setCharacterEncoding("utf-8");
        response.setContentType("multipart/form-data");
        HttpSession session=request.getSession();
        //设置压缩包的名字
        String zipName=title+".zip";
         //解决不同浏览器压缩包名字含有中文时乱码的问题
        try {
            zipName = new String(URLEncoder.encode(zipName, "UTF-8").getBytes(), "ISO-8859-1");
            response.setHeader("Content-Disposition", "attachment;fileName=\"" + zipName + "\"");
        } catch (Exception e) {
            e.printStackTrace();
        }
        
        //设置压缩流:直接写入response,实现边压缩边下载
        ZipOutputStream zipos = null;
        try {
            zipos = new ZipOutputStream(new BufferedOutputStream(response.getOutputStream()));
            //zipos.setEncoding(System.getProperty("sun.jnu.encoding"));//设置文件名编码方式
            zipos.setMethod(ZipOutputStream.DEFLATED); //设置压缩方法 
        } catch (Exception e) {
            e.printStackTrace();
        }
        session.setAttribute(process, "97");
        //循环将文件写入压缩流
        DataOutputStream os = null;
            try {
                //添加ZipEntry,并ZipEntry中写入文件流
                //这里,加上i是防止要下载的文件有重名的导致下载失败
                zipos.putNextEntry(new ZipEntry(title+".doc"));
                os = new DataOutputStream(zipos);
                InputStream is = new FileInputStream(file);
                byte[] b = new byte[100];
                int length = 0;
                session.setAttribute(process, "98");
                while((length = is.read(b))!= -1){
                    os.write(b, 0, length);
                }
                session.setAttribute(process, "99");
                is.close();
                zipos.closeEntry();
            } catch (IOException e) {
                e.printStackTrace();
            } 
            session.setAttribute(process, "100");
            System.out.println("下载完成-----------------");
        
        //关闭流
        try {
            os.flush();
            os.close();
            zipos.close();
        } catch (IOException e) {
            e.printStackTrace();
        }   
        
    }

    
 public static File createDoc( Map<?, ?> dataMap,String ftlFile){
 		File f = new File("xxx.doc");
        try {
        	Template Template = configuration.getTemplate(ftlFile);
            Writer w = new OutputStreamWriter(new FileOutputStream(f), "utf-8");
            Template.process(dataMap, w);
            w.close();
        } catch (Exception ex) {
            ex.printStackTrace(); 
            throw new RuntimeException(ex);
        }
        return f;
    }
    
    
    
    public static String getImageBase(String src) {
    	          if(src==null||src==""){
    	             return "";
    	         }
    	         File file = new File(src);      
    	          if(!file.exists()) {
    	              return "";
    	         }
    	         InputStream in = null;
    	         byte[] data = null;  
    	         try {
    	            in = new FileInputStream(file);
    	         } catch (FileNotFoundException e1) {
    	            e1.printStackTrace();
    	         }
    	         try {  
    	             data = new byte[in.available()];  
    	             in.read(data);  
    	             in.close();  
    	         } catch (IOException e) {  
    	           e.printStackTrace();  
    	         } 
    	         BASE64Encoder encoder = new BASE64Encoder();
    	         return encoder.encode(data);
    	     }
    
    
    /**
     * <p>描述:下载word文档的方法</p>
     * @param request
     * @param response
     * @param title
     * @param file
     */
   public static void downloadReport(HttpServletRequest request, HttpServletResponse response, String title,File file,
		   String uid) {
	   HttpSession session=request.getSession();
       InputStream fin = null;
       OutputStream out = null;
       try {
           fin = new FileInputStream(file);
           response.setCharacterEncoding("utf-8");
           response.setContentType("application/msword");
           // 设置浏览器以下载的方式处理该文件名
           String fileName = title + ".doc";
           response.setHeader("Content-Disposition", "attachment;filename="
                   .concat(String.valueOf(URLEncoder.encode(fileName, "UTF-8"))));
           out = response.getOutputStream();
           byte[] buffer = new byte[512];  // 缓冲区
           int len = -1;
           // 通过循环将读入的Word文件的内容输出到浏览器中
           while ((len = fin.read(buffer)) != -1) {
               out.write(buffer, 0, len);
           }
       }catch(Exception e) {
    	   e.printStackTrace();
       }finally {
           if (fin != null) {
               try {
				fin.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
           }
           if (out != null) {
               try {
				out.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
           }
           if (file != null) {
               file.delete(); // 删除临时文件
           }
 //          session.setAttribute(uid, "100");
       }
   }

    // 根据目录得到图片的base64码

	private String getImageBase64(String roadType, String zqCode, String itemOnlyNum) {
		try {
			String picName = roadType+zqCode+itemOnlyNum+".png";
			InputStream in = new FileInputStream(PicUploadUtils.picPath+picName);
			byte[] data = new byte[in.available()];
	        in.read(data);
	        in.close();
	        // 对字节数组Base64编码
	        byte[] encoder = new Base64().encodeBase64(data);
	        // 返回Base64编码过的字节数组字符串
	        return new String(encoder);
		} catch (Exception e) {
			return null;
		}
	}
   
}

 

4.导出controller层

@RequestMapping(value = "/download", produces = "text/html;charset=UTF-8")
	public Object downloadReport(HttpServletRequest request, HttpServletResponse response) throws Exception {
		try {
			String uid = request.getParameter("uid"); 
			String zqCode = request.getParameter("zqCode");     //政区编码
			String roadType = request.getParameter("roadType"); //路线类型
			String ids = request.getParameter("ids");           //条目id
			String zqName = request.getParameter("zqName");           //条目id
			String isEmpty = request.getParameter("isEmpty");           //是否导出空表的标识
			HttpSession session=request.getSession();
			session.setAttribute(uid, "0");
		    File file = printWordService.downloadReport(uid, session, request, response,zqCode,roadType,ids,zqName,isEmpty);
		    session.setAttribute(uid, "70"); HttpHeaders headers = new HttpHeaders();
		    String fileTitle = "公路养护管理规范化检查评分表";
		    if("H".equals(roadType)) {
		    	fileTitle += "(高速公路)";
		    }else {
		    	fileTitle += "(普通公路)";
		    }
			SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss");
			String nowDate = formatter.format(new Date());
		    fileTitle += "-"+zqName+"-"+nowDate+".doc";
		    String fileName=new String(fileTitle.getBytes("UTF-8"),"iso-8859-1");//涓轰簡瑙e喅涓枃鍚嶇О涔辩爜闂
		    session.setAttribute(uid, "80");
		    headers.setContentDispositionFormData("attachment", fileName);
		    headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
		    session.setAttribute(uid, "100");
		    System.out.println("导出完成......"); 
		    return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers, HttpStatus.CREATED);
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}

5.导出下载模板service层,给map设置模板参数值

/**
	 * @Description 导出下载模板 
	 * @author 巴菲增
	 * @Date 2020年9月4日 上午10:00:02
	 */
	public File downloadReport(String uid, HttpSession session, HttpServletRequest request,
			HttpServletResponse response, String zqCode, String roadType, String ids, String zqName, String isEmpty) {
		try {
			  Map<String,Object> dataMap = new HashMap<String, Object>();
	    	  List<PrintWord> list = new ArrayList<PrintWord>();
			  dataMap.put("imagesBase64String", "");
			  dataMap.put("imagesXmlHrefString", "");
	    	  if("H".equals(roadType)) {
	    		  dataMap.put("roadType", "高速公路");
	    		  list = getHighCheckData(zqCode,ids,isEmpty,dataMap);        //得到高速公路检查记录
	    	  }else {
	    		  dataMap.put("roadType", "普通公路");
	    		  list = getCommonCheckData(zqCode,ids,isEmpty,dataMap);      //得到普通公路检查记录
	    	  }
			  dataMap.put("zqName", zqName);
			  dataMap.put("lists", list);
			  String fileName = "template.xml";
			  if("true".equals(isEmpty)) {           //选中导出空模板,不用填充检查时间、检查得分、检查截图
				  fileName = "empty.xml";  
			  }
			  return WordUtils.createDoc(dataMap,fileName); 
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}

6.模板文件,可以xml、ftl结尾都支持

<?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:cx="http://schemas.microsoft.com/office/drawing/2014/chartex" xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex" xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex" xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex" xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex" xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex" xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex" xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex" xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink" xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns: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:Title>2010年全国干线公路养护管理</o:Title>
    <o:Author>admin</o:Author>
    <o:LastAuthor>1472052711@qq.com</o:LastAuthor>
    <o:Revision>2</o:Revision>
    <o:TotalTime>0</o:TotalTime>
    <o:Created>2020-03-23T06:23:00Z</o:Created>
    <o:LastSaved>2020-03-23T06:23:00Z</o:LastSaved>
    <o:Pages>1</o:Pages>
    <o:Words>74</o:Words>
    <o:Characters>424</o:Characters>
    <o:Company>Microsoft</o:Company>
    <o:Lines>3</o:Lines>
    <o:Paragraphs>1</o:Paragraphs>
    <o:CharactersWithSpaces>497</o:CharactersWithSpaces>
    <o:Version>16</o:Version>
  </o:DocumentProperties>
  <w:fonts>
    <w:defaultFonts w:ascii="Times New Roman" w:fareast="宋体" w:h-ansi="Times New Roman" 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="Cambria Math">
      <w:panose-1 w:val="02040503050406030204"/>
      <w:charset w:val="00"/>
      <w:family w:val="Roman"/>
      <w:pitch w:val="variable"/>
      <w:sig w:usb-0="E00006FF" w:usb-1="420024FF" w:usb-2="02000000" w:usb-3="00000000" w:csb-0="0000019F" w:csb-1="00000000"/>
    </w:font>
    <w:font w:name="仿宋_GB2312">
      <w:altName w:val="仿宋"/>
      <w:charset w:val="86"/>
      <w:family w:val="Modern"/>
      <w:pitch w:val="default"/>
      <w:sig w:usb-0="00000001" w:usb-1="080E0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="00040000" 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="@仿宋_GB2312">
      <w:charset w:val="86"/>
      <w:family w:val="Modern"/>
      <w:pitch w:val="default"/>
      <w:sig w:usb-0="00000001" w:usb-1="080E0000" w:usb-2="00000010" w:usb-3="00000000" w:csb-0="00040000" w:csb-1="00000000"/>
    </w:font>
  </w:fonts>
  <w:lists>
    <w:listDef w:listDefId="0">
      <w:lsid w:val="41E40278"/>
      <w:plt w:val="HybridMultilevel"/>
      <w:tmpl w:val="FFFAAECC"/>
      <w:lvl w:ilvl="0" w:tplc="0409000F">
        <w:start w:val="1"/>
        <w:lvlText w:val="%1."/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="420"/>
          </w:tabs>
          <w:ind w:left="420" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="1" w:tplc="0AA6DFE2">
        <w:start w:val="1"/>
        <w:lvlText w:val="%2."/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="840"/>
          </w:tabs>
          <w:ind w:left="840" w:hanging="420"/>
        </w:pPr>
        <w:rPr>
          <w:color w:val="auto"/>
        </w:rPr>
      </w:lvl>
      <w:lvl w:ilvl="2" w:tplc="0409001B" w:tentative="on">
        <w:start w:val="1"/>
        <w:nfc w:val="2"/>
        <w:lvlText w:val="%3."/>
        <w:lvlJc w:val="right"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="1260"/>
          </w:tabs>
          <w:ind w:left="1260" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="3" w:tplc="0409000F" w:tentative="on">
        <w:start w:val="1"/>
        <w:lvlText w:val="%4."/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="1680"/>
          </w:tabs>
          <w:ind w:left="1680" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="4" w:tplc="04090019" w:tentative="on">
        <w:start w:val="1"/>
        <w:nfc w:val="4"/>
        <w:lvlText w:val="%5)"/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="2100"/>
          </w:tabs>
          <w:ind w:left="2100" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="5" w:tplc="0409001B" w:tentative="on">
        <w:start w:val="1"/>
        <w:nfc w:val="2"/>
        <w:lvlText w:val="%6."/>
        <w:lvlJc w:val="right"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="2520"/>
          </w:tabs>
          <w:ind w:left="2520" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="6" w:tplc="0409000F" w:tentative="on">
        <w:start w:val="1"/>
        <w:lvlText w:val="%7."/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="2940"/>
          </w:tabs>
          <w:ind w:left="2940" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="7" w:tplc="04090019" w:tentative="on">
        <w:start w:val="1"/>
        <w:nfc w:val="4"/>
        <w:lvlText w:val="%8)"/>
        <w:lvlJc w:val="left"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="3360"/>
          </w:tabs>
          <w:ind w:left="3360" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
      <w:lvl w:ilvl="8" w:tplc="0409001B" w:tentative="on">
        <w:start w:val="1"/>
        <w:nfc w:val="2"/>
        <w:lvlText w:val="%9."/>
        <w:lvlJc w:val="right"/>
        <w:pPr>
          <w:tabs>
            <w:tab w:val="list" w:pos="3780"/>
          </w:tabs>
          <w:ind w:left="3780" w:hanging="420"/>
        </w:pPr>
      </w:lvl>
    </w:listDef>
    <w:list w:ilfo="1">
      <w:ilst w:val="0"/>
    </w:list>
  </w:lists>
  <w:styles>
    <w:versionOfBuiltInStylenames w:val="7"/>
    <w:latentStyles w:defLockedState="off" w:latentStyleCount="376">
      <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="caption"/>
      <w:lsdException w:name="Title"/>
      <w:lsdException w:name="Subtitle"/>
      <w:lsdException w:name="Strong"/>
      <w:lsdException w:name="Emphasis"/>
      <w:lsdException w:name="Normal Table"/>
      <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="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:lsdException w:name="Mention"/>
      <w:lsdException w:name="Smart Hyperlink"/>
      <w:lsdException w:name="Hashtag"/>
      <w:lsdException w:name="Unresolved Mention"/>
      <w:lsdException w:name="Smart Link"/>
    </w:latentStyles>
    <w:style w:type="paragraph" w:default="on" w:styleId="a">
      <w:name w:val="Normal"/>
      <wx:uiName wx:val="正文"/>
      <w:rsid w:val="0092649C"/>
      <w:pPr>
        <w:widowControl w:val="off"/>
        <w:jc w:val="both"/>
      </w:pPr>
      <w:rPr>
        <wx:font wx:val="Times New Roman"/>
        <w:kern w:val="2"/>
        <w:sz w:val="21"/>
        <w:sz-cs w:val="24"/>
        <w:lang w:val="EN-US" w:fareast="ZH-CN" w:bidi="AR-SA"/>
      </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="Times New Roman"/>
        <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="table" w:styleId="a3">
      <w:name w:val="Table Grid"/>
      <wx:uiName wx:val="网格型"/>
      <w:basedOn w:val="a1"/>
      <w:rsid w:val="0092649C"/>
      <w:pPr>
        <w:widowControl w:val="off"/>
        <w:jc w:val="both"/>
      </w:pPr>
      <w:rPr>
        <wx:font wx:val="Times New Roman"/>
      </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="2">
      <w:name w:val="Body Text Indent 2"/>
      <wx:uiName wx:val="正文文本缩进 2"/>
      <w:basedOn w:val="a"/>
      <w:rsid w:val="0092649C"/>
      <w:pPr>
        <w:spacing w:line="360" w:line-rule="auto"/>
        <w:ind w:first-line="420"/>
      </w:pPr>
      <w:rPr>
        <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
        <wx:font wx:val="Times New Roman"/>
        <w:sz w:val="24"/>
      </w:rPr>
    </w:style>
    <w:style w:type="paragraph" w:styleId="a4">
      <w:name w:val="header"/>
      <wx:uiName wx:val="页眉"/>
      <w:basedOn w:val="a"/>
      <w:rsid w:val="00C24A99"/>
      <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="Times New Roman"/>
        <w:sz w:val="18"/>
        <w:sz-cs w:val="18"/>
      </w:rPr>
    </w:style>
    <w:style w:type="paragraph" w:styleId="a5">
      <w:name w:val="footer"/>
      <wx:uiName wx:val="页脚"/>
      <w:basedOn w:val="a"/>
      <w:rsid w:val="00C24A99"/>
      <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="Times New Roman"/>
        <w:sz w:val="18"/>
        <w:sz-cs w:val="18"/>
      </w:rPr>
    </w:style>
  </w:styles>
  <w:divs>
    <w:div w:id="1111775821">
      <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="100"/>
    <w:doNotEmbedSystemFonts/>
    <w:bordersDontSurroundHeader/>
    <w:bordersDontSurroundFooter/>
    <w:attachedTemplate w:val="E:\GJ\04_Setup\04_模板文件\公路养护管理规范化检查评分记录表(高速公路)模板.dot"/>
    <w:stylePaneFormatFilter w:val="3F01"/>
    <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: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="003E0659" wsp:rsidRDefault="003E0659">
          <w:r>
            <w:separator/>
          </w:r>
        </w:p>
      </w:footnote>
      <w:footnote w:type="continuation-separator">
        <w:p wsp:rsidR="003E0659" wsp:rsidRDefault="003E0659">
          <w:r>
            <w:continuationSeparator/>
          </w:r>
        </w:p>
      </w:footnote>
    </w:footnotePr>
    <w:endnotePr>
      <w:endnote w:type="separator">
        <w:p wsp:rsidR="003E0659" wsp:rsidRDefault="003E0659">
          <w:r>
            <w:separator/>
          </w:r>
        </w:p>
      </w:endnote>
      <w:endnote w:type="continuation-separator">
        <w:p wsp:rsidR="003E0659" wsp:rsidRDefault="003E0659">
          <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="003C24D7"/>
      <wsp:rsid wsp:val="000C3AAE"/>
      <wsp:rsid wsp:val="000F661E"/>
      <wsp:rsid wsp:val="00195FC5"/>
      <wsp:rsid wsp:val="002535F1"/>
      <wsp:rsid wsp:val="00280E83"/>
      <wsp:rsid wsp:val="002B3820"/>
      <wsp:rsid wsp:val="00320516"/>
      <wsp:rsid wsp:val="00373D99"/>
      <wsp:rsid wsp:val="003B320B"/>
      <wsp:rsid wsp:val="003C24D7"/>
      <wsp:rsid wsp:val="003E0659"/>
      <wsp:rsid wsp:val="004054D1"/>
      <wsp:rsid wsp:val="00600099"/>
      <wsp:rsid wsp:val="00637239"/>
      <wsp:rsid wsp:val="006F424E"/>
      <wsp:rsid wsp:val="007B6E58"/>
      <wsp:rsid wsp:val="008230AB"/>
      <wsp:rsid wsp:val="00847451"/>
      <wsp:rsid wsp:val="00871B28"/>
      <wsp:rsid wsp:val="0092649C"/>
      <wsp:rsid wsp:val="0095075A"/>
      <wsp:rsid wsp:val="009D02C4"/>
      <wsp:rsid wsp:val="009F55B9"/>
      <wsp:rsid wsp:val="00AB240D"/>
      <wsp:rsid wsp:val="00AE7DAF"/>
      <wsp:rsid wsp:val="00AF428C"/>
      <wsp:rsid wsp:val="00B25778"/>
      <wsp:rsid wsp:val="00C01275"/>
      <wsp:rsid wsp:val="00C16288"/>
      <wsp:rsid wsp:val="00C24A99"/>
      <wsp:rsid wsp:val="00CE0F8C"/>
      <wsp:rsid wsp:val="00CF3E93"/>
      <wsp:rsid wsp:val="00D631B2"/>
      <wsp:rsid wsp:val="00E751AE"/>
      <wsp:rsid wsp:val="00FB5168"/>
    </wsp:rsids>
  </w:docPr>
  <w:body>
    <wx:sect>
      <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:tblLook w:val="01E0"/>
        </w:tblPr>
        <w:tblGrid>
          <w:gridCol w:w="1188"/>
          <w:gridCol w:w="1991"/>
          <w:gridCol w:w="706"/>
          <w:gridCol w:w="376"/>
          <w:gridCol w:w="114"/>
          <w:gridCol w:w="1493"/>
          <w:gridCol w:w="1260"/>
          <w:gridCol w:w="1394"/>
        </w:tblGrid>
        <w:tr wsp:rsidR="00600099" wsp:rsidRPr="00600099" wsp:rsidTr="003E0659">
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" w:type="dxa"/>
              <w:gridSpan w:val="8"/>
              <w:tcBorders>
                <w:top w:val="nil"/>
                <w:left w:val="nil"/>
                <w:bottom w:val="nil"/>
                <w:right w:val="nil"/>
              </w:tcBorders>
              <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
            </w:tcPr>
            <w:p wsp:rsidR="00600099" wsp:rsidRPr="003E0659" wsp:rsidRDefault="00600099" wsp:rsidP="003E0659">
              <w:pPr>
                <w:jc w:val="center"/>
                <w:rPr>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
                <w:t>${zqName}公路养护管理</w:t>
              </w:r>  
              <w:r wsp:rsidR="003B320B" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
                <w:t>检查</w:t>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="00600099" wsp:rsidRPr="00600099" wsp:rsidTr="003E0659">
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" w:type="dxa"/>
              <w:gridSpan w:val="8"/>
              <w:tcBorders>
                <w:top w:val="nil"/>
                <w:left w:val="nil"/>
                <w:bottom w:val="nil"/>
                <w:right w:val="nil"/>
              </w:tcBorders>
              <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
            </w:tcPr>
            <w:p wsp:rsidR="00600099" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003B320B" wsp:rsidP="003E0659">
              <w:pPr>
                <w:jc w:val="center"/>
                <w:rPr>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
                <w:t>管理</w:t>
              </w:r>
              <w:r wsp:rsidR="00600099" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:sz w:val="36"/>
                  <w:sz-cs w:val="36"/>
                </w:rPr>
                <w:t>规范化检查评分表</w:t>
              </w:r>
              <w:r wsp:rsidR="00600099" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="28"/>
                  <w:sz-cs w:val="28"/>
                </w:rPr>
                <w:t>(${roadType})</w:t>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
  <#if lists?? && lists?size gt 0>      
   <#list lists as list>
        <w:tr wsp:rsidR="003B320B" wsp:rsidRPr="00600099" wsp:rsidTr="003E0659">
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="3885" w:type="dxa"/>
              <w:gridSpan w:val="3"/>
              <w:tcBorders>
                <w:top w:val="nil"/>
                <w:left w:val="nil"/>
                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                <w:right w:val="nil"/>
              </w:tcBorders>
              <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
            </w:tcPr>
            <w:p wsp:rsidR="003B320B" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="003B320B">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>${list_index+1}.综合评价</w:t>
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="4637" w:type="dxa"/>
              <w:gridSpan w:val="5"/>
              <w:tcBorders>
                <w:top w:val="nil"/>
                <w:left w:val="nil"/>
                <w:bottom w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                <w:right w:val="nil"/>
              </w:tcBorders>
              <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
            </w:tcPr>
            <w:p wsp:rsidR="003B320B" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="003E0659">
              <w:pPr>
                <w:jc w:val="right"/>
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体" w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>表</w:t>
              </w:r>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="宋体" w:h-ansi="宋体"/>
                  <wx:font wx:val="宋体"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>${list_index+1}</w:t> 
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="003E0659" wsp:rsidRPr="00CA11B1" wsp:rsidTr="003E0659">
          <w:trPr>
            <w:trHeight w:val="605"/>
          </w:trPr>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1188" w:type="dxa"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>评分项目</w:t>
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1991" w:type="dxa"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:h-ansi="宋体"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:color w:val="000000"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:h-ansi="宋体"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:color w:val="000000"/>
                  <w:sz w:val="24"/>
                </w:rPr>
<#if list.projectPrefs??>
                <w:t>${list.projectPrefs}</w:t> 
</#if>                
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1196" w:type="dxa"/>
              <w:gridSpan w:val="3"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>检查时间</w:t>
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1493" w:type="dxa"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
<#if list.checkDate??>
                <w:t>${list.checkDate}</w:t>   
</#if> 
              </w:r>     
         
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1260" w:type="dxa"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>检查得分</w:t>
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="1394" w:type="dxa"/>
              <w:tcBorders>
                <w:top 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
<#if list.checkScore??>
                <w:t>${list.checkScore}</w:t>
</#if>                            
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="0092649C" wsp:rsidRPr="00CA11B1" wsp:rsidTr="003E0659">
          <w:trPr>
            <w:trHeight w:val="1200"/>
          </w:trPr>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="003E0659">
              <w:pPr>
                <w:ind w:left="1205" w:hanging-chars="500" w:hanging="1205"/>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>检查内容</w:t>
              </w:r>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>:</w:t>
              </w:r>
            </w:p>
            <w:p wsp:rsidR="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="00871B28">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:color w:val="000000"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:color w:val="000000"/>
                  <w:sz w:val="24"/>
                </w:rPr>
<#if list.checkContent??>
                <w:t>${list.checkContent}</w:t>
</#if>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="0092649C" wsp:rsidRPr="00CA11B1" wsp:rsidTr="003E0659">
          <w:trPr>
            <w:trHeight w:val="1555"/>
          </w:trPr>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" 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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>评分标准</w:t>
              </w:r>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>:</w:t>
              </w:r>
            </w:p>
            <w:p wsp:rsidR="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="00871B28">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="0092649C" wsp:rsidRPr="00CA11B1" wsp:rsidTr="003E0659">
          <w:trPr>
            <w:trHeight w:val="4383"/>
          </w:trPr>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" w:type="dxa"/>
              <w:gridSpan w:val="8"/>
              <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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="0092649C" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>评分</w:t>
              </w:r>
              <w:r wsp:rsidR="00847451" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>细则</w:t>
              </w:r>
              <w:r wsp:rsidR="00AF428C" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>:</w:t>
              </w:r>
            </w:p>
            <w:p wsp:rsidR="003C24D7" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003C24D7" wsp:rsidP="00871B28">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
<#if list.checkMain??>                
                <w:t>${list.checkMain}</w:t>
</#if>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
        <w:tr wsp:rsidR="0092649C" wsp:rsidRPr="00CA11B1" wsp:rsidTr="003E0659">
          <w:trPr>
            <w:trHeight w:val="3253"/>
          </w:trPr> 
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="8522" w:type="dxa"/>
              <w:gridSpan w:val="8"/>
              <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="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="003E0659" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:noProof/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:pict>
                  <v:rect id="Text Box 41" o:spid="_x0000_s1026" style="position:absolute;left:0;text-align:left;margin-left:135pt;margin-top:-.15pt;width:96.4pt;height:20.4pt;z-index:1;mso-position-horizontal-relative:text;mso-position-vertical-relative:text">
                    <v:textbox>
                      <w:txbxContent>
                        <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E" wsp:rsidP="00C24A99">
                          <w:r>
                            <w:rPr>
                              <w:rFonts w:hint="fareast"/>
                              <wx:font wx:val="宋体"/>
                            </w:rPr>
                            <w:t>照片(电子)资料</w:t>
                          </w:r>
                        </w:p>
                      </w:txbxContent>
                    </v:textbox>
                  </v:rect>
                </w:pict>
              </w:r>
              <w:r wsp:rsidR="0092649C" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:b/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>检查记录</w:t>
              </w:r>
              <w:r wsp:rsidR="0092649C" wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312" w:hint="fareast"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
                <w:t>:</w:t>
              </w:r>
            </w:p>
            <w:p wsp:rsidR="0092649C" wsp:rsidRPr="003E0659" wsp:rsidRDefault="00E751AE" wsp:rsidP="0092649C">
              <w:pPr>
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:ascii="仿宋_GB2312" w:fareast="仿宋_GB2312"/>
                  <wx:font wx:val="仿宋_GB2312"/>
                  <w:sz w:val="24"/>
                </w:rPr>
              
                
                <w:pict>
                  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
                    <v:stroke joinstyle="miter"/>
                    <v:formulas>
                      <v:f eqn="if lineDrawn pixelLineWidth 0"/>
                      <v:f eqn="sum @0 1 0"/>
                      <v:f eqn="sum 0 0 @1"/>
                      <v:f eqn="prod @2 1 2"/>
                      <v:f eqn="prod @3 21600 pixelWidth"/>
                      <v:f eqn="prod @3 21600 pixelHeight"/>
                      <v:f eqn="sum @0 0 1"/>
                      <v:f eqn="prod @6 1 2"/>
                      <v:f eqn="prod @7 21600 pixelWidth"/>
                      <v:f eqn="sum @8 21600 0"/>
                      <v:f eqn="prod @7 21600 pixelHeight"/>
                      <v:f eqn="sum @10 21600 0"/>
                    </v:formulas>
                    <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
                    <o:lock v:ext="edit" aspectratio="t"/>
                  </v:shapetype>
<#if list.imageBase64??>
                  <w:binData w:name="wordml://0300000${list_index+1}.png" xml:space="preserve">${list.imageBase64}</w:binData>   
                  <v:shape id="_x0000_i1025" type="#_x0000_t75" style="width:415pt;height:107.5pt">           
                  <v:imagedata src="wordml://0300000${list_index+1}.png" o:title="GJtmp1"/> 
                  </v:shape>  
</#if>                               
 </w:pict>              
 </w:r>            
 </w:p>          
 </w:tc>        
 </w:tr> 
</#list>      
</#if>     
       <w:tr wsp:rsidR="00600099" wsp:rsidTr="003E0659">          
       <w:trPr>            
       <w:trHeight w:val="301"/>          
       </w:trPr>          
       <w:tc>            
       <w:tcPr>              
       <w:tcW w:w="4261" w:type="dxa"/>              
       <w:gridSpan w:val="4"/>              
       <w:tcBorders>                
       <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>               
        <w:left w:val="nil"/>               
         <w:bottom w:val="nil"/>                
         <w:right w:val="nil"/>              
         </w:tcBorders>              
         <w:shd w:val="clear" w:color="auto" w:fill="auto"/>            
         </w:tcPr>            
         <w:p wsp:rsidR="00600099" wsp:rsidRPr="003E0659" wsp:rsidRDefault="00600099" wsp:rsidP="00600099">             
          <w:pPr>               
           <w:rPr>                  
           <w:sz w:val="28"/>                  
           <w:sz-cs w:val="28"/>               
            </w:rPr>              
            </w:pPr>              
            <w:r wsp:rsidRPr="003E0659">                
            <w:rPr>                  
            <w:rFonts w:hint="fareast"/>                  
            <wx:font wx:val="宋体"/>                  
            <w:sz w:val="28"/>                  
            <w:sz-cs w:val="28"/>               
             </w:rPr>                
             <w:t>检查组组长签字:</w:t>
              </w:r>
            </w:p>
          </w:tc>
          <w:tc>
            <w:tcPr>
              <w:tcW w:w="4261" w:type="dxa"/>
              <w:gridSpan w:val="4"/>
              <w:tcBorders>
                <w:top w:val="single" w:sz="4" wx:bdrwidth="10" w:space="0" w:color="auto"/>
                <w:left w:val="nil"/>
                <w:bottom w:val="nil"/>
                <w:right w:val="nil"/>
              </w:tcBorders>
              <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
            </w:tcPr>
            <w:p wsp:rsidR="00600099" wsp:rsidRPr="003E0659" wsp:rsidRDefault="00600099" wsp:rsidP="00600099">
              <w:pPr>
                <w:rPr>
                  <w:sz w:val="28"/>
                  <w:sz-cs w:val="28"/>
                </w:rPr>
              </w:pPr>
              <w:r wsp:rsidRPr="003E0659">
                <w:rPr>
                  <w:rFonts w:hint="fareast"/>
                  <wx:font wx:val="宋体"/>
                  <w:sz w:val="28"/>
                  <w:sz-cs w:val="28"/>
                </w:rPr>
                <w:t>主要检查人签字:</w:t>
              </w:r>
            </w:p>
          </w:tc>
        </w:tr>
      </w:tbl>
      <w:p wsp:rsidR="00CE0F8C" wsp:rsidRDefault="00CE0F8C" wsp:rsidP="00CE0F8C"/>
      <w:p wsp:rsidR="00FB5168" wsp:rsidRDefault="00FB5168" wsp:rsidP="00CE0F8C"/>
      <w:sectPr wsp:rsidR="00FB5168">
        <w:hdr w:type="even">
          <wx:pBdrGroup>
            <wx:borders>
              <wx:bottom wx:val="solid" wx:bdrwidth="15" wx:space="1" wx:color="auto"/>
            </wx:borders>
            <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E">
              <w:pPr>
                <w:pStyle w:val="a4"/>
              </w:pPr>
            </w:p>
          </wx:pBdrGroup>
        </w:hdr>
        <w:hdr w:type="odd">
          <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E" wsp:rsidP="00C24A99">
            <w:pPr>
              <w:pStyle w:val="a4"/>
              <w:pBdr>
                <w:bottom w:val="none" w:sz="0" wx:bdrwidth="0" w:space="0" w:color="auto"/>
              </w:pBdr>
            </w:pPr>
          </w:p>
        </w:hdr>
        <w:ftr w:type="even">
          <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E">
            <w:pPr>
              <w:pStyle w:val="a5"/>
            </w:pPr>
          </w:p>
        </w:ftr>
        <w:ftr w:type="odd">
          <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E">
            <w:pPr>
              <w:pStyle w:val="a5"/>
            </w:pPr>
          </w:p>
        </w:ftr>
        <w:hdr w:type="first">
          <wx:pBdrGroup>
            <wx:borders>
              <wx:bottom wx:val="solid" wx:bdrwidth="15" wx:space="1" wx:color="auto"/>
            </wx:borders>
            <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E">
              <w:pPr>
                <w:pStyle w:val="a4"/>
              </w:pPr>
            </w:p>
          </wx:pBdrGroup>
        </w:hdr>
        <w:ftr w:type="first">
          <w:p wsp:rsidR="000F661E" wsp:rsidRDefault="000F661E">
            <w:pPr>
              <w:pStyle w:val="a5"/>
            </w:pPr>
          </w:p>
        </w:ftr>
        <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>

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值