From 98605c1d27e8d26fede844b5a79bb6b808f107fc Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 13 十一月 2025 19:03:32 +0800
Subject: [PATCH] 新增 静态模板
---
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/freemark/TemplateCreateController.java | 93 ++
jh-module-ecg/jh-module-ecg-biz/src/main/resources/template/知情同意运动试验.ftl | 2371 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
jh-module-ecg/jh-module-ecg-biz/pom.xml | 17
3 files changed, 2,481 insertions(+), 0 deletions(-)
diff --git a/jh-module-ecg/jh-module-ecg-biz/pom.xml b/jh-module-ecg/jh-module-ecg-biz/pom.xml
index 2f39788..d15d978 100644
--- a/jh-module-ecg/jh-module-ecg-biz/pom.xml
+++ b/jh-module-ecg/jh-module-ecg-biz/pom.xml
@@ -186,6 +186,23 @@
<scope>compile</scope>
</dependency>
+ <!-- freemark鐩稿叧渚濊禆 -->
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi</artifactId>
+ <version>5.2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi-ooxml</artifactId>
+ <version>5.2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.freemarker</groupId>
+ <artifactId>freemarker</artifactId>
+ <version>2.3.32</version>
+ </dependency>
+
</dependencies>
</project>
diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/freemark/TemplateCreateController.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/freemark/TemplateCreateController.java
new file mode 100644
index 0000000..a56b309
--- /dev/null
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/freemark/TemplateCreateController.java
@@ -0,0 +1,93 @@
+package cn.lihu.jh.module.ecg.freemark;
+
+import cn.lihu.jh.module.ecg.dal.dataobject.appointment.AppointmentDO;
+import cn.lihu.jh.module.ecg.service.appointment.AppointmentService;
+import freemarker.template.Configuration;
+import freemarker.template.Template;
+import io.swagger.v3.oas.annotations.Operation;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.util.StringUtils;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import javax.annotation.Resource;
+import java.io.*;
+import java.time.LocalDate;
+import java.time.Period;
+import java.util.Calendar;
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+@RestController
+@RequestMapping("/ecg/template")
+@Validated
+public class TemplateCreateController {
+
+ @Resource
+ private AppointmentService appointmentService;
+
+
+ private static Configuration configuration = null;
+
+ public TemplateCreateController() {
+ configuration = new Configuration();
+ configuration.setDefaultEncoding("utf-8");
+ }
+
+ @Operation(summary = "鐭ユ儏鍚屾剰杩愬姩璇曢獙")
+ @GetMapping(value = "/download/{id}")
+ public Map downloadInfo(@PathVariable("id") Long id) {
+ log.info("鐭ユ儏鍚屾剰杩愬姩璇曢獙锛歿}", id);
+ try {
+ Map dataMap = new HashMap();
+ getData(dataMap, id);
+ String filePath = getClass().getResource("/template/").getPath();
+ System.out.println(filePath);
+ //璁剧疆妯℃湰瑁呯疆鏂规硶鍜岃矾寰�,FreeMarker鏀寔澶氱妯℃澘瑁呰浇鏂规硶銆傚彲浠ラ噸servlet锛宑lasspath锛屾暟鎹簱鏁欑▼瑁呰浇锛�
+ configuration.setDirectoryForTemplateLoading(new File(filePath));
+ Template t = null;
+ //鎹愮尞琛�.ftl涓鸿瑁呰浇鐨勬ā鏉�
+ t = configuration.getTemplate("鐭ユ儏鍚屾剰杩愬姩璇曢獙.ftl");
+
+ String year = String.valueOf(Calendar.getInstance().get(Calendar.YEAR));
+ String name = "鐭ユ儏鍚屾剰杩愬姩璇曢獙" + year;
+
+ //杈撳嚭鏂囨。璺緞鍙婂悕绉�
+ File outFile = new File("D:/download/" + name + ".doc");
+ Writer out = null;
+ out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile), "utf-8"));
+ t.process(dataMap, out);
+
+ Map<String, Object> map = new HashMap<>();
+ map.put("downloadUrl", "D:/download/" + name + ".doc");
+ map.put("downloadName", name + ".doc");
+ return map;
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ return null;
+ }
+
+ private void getData(Map dataMap, Long id) {
+ AppointmentDO appointment = appointmentService.getAppointment(id);
+
+ dataMap.put("name", StringUtils.isEmpty(appointment.getPatName()) ? "" : appointment.getPatName());
+ dataMap.put("sex", appointment.getPatGender() == null ? "" : appointment.getPatGender() == 1 ? "鐢�" : "濂�");
+ dataMap.put("age", appointment.getPatBirthday() == null ? "" : calculateAge(appointment.getPatBirthday()));
+ dataMap.put("inhospno", StringUtils.isEmpty(appointment.getHospitalNo()) ? "" : appointment.getHospitalNo());
+ dataMap.put("idNo", StringUtils.isEmpty(appointment.getPatId()) ? "" : appointment.getPatId());
+ dataMap.put("badNo", StringUtils.isEmpty(appointment.getPatBedNo()) ? "" : appointment.getPatBedNo());
+ dataMap.put("birthday", appointment.getPatBirthday() == null ? "" : appointment.getPatBirthday());
+ dataMap.put("doctor", StringUtils.isEmpty(appointment.getDoctor()) ? "" : appointment.getDoctor());
+
+ }
+
+ public int calculateAge(LocalDate birthdayStr) {
+ return Period.between(birthdayStr, LocalDate.now()).getYears();
+ }
+
+}
diff --git "a/jh-module-ecg/jh-module-ecg-biz/src/main/resources/template/\347\237\245\346\203\205\345\220\214\346\204\217\350\277\220\345\212\250\350\257\225\351\252\214.ftl" "b/jh-module-ecg/jh-module-ecg-biz/src/main/resources/template/\347\237\245\346\203\205\345\220\214\346\204\217\350\277\220\345\212\250\350\257\225\351\252\214.ftl"
new file mode 100644
index 0000000..955acad
--- /dev/null
+++ "b/jh-module-ecg/jh-module-ecg-biz/src/main/resources/template/\347\237\245\346\203\205\345\220\214\346\204\217\350\277\220\345\212\250\350\257\225\351\252\214.ftl"
@@ -0,0 +1,2371 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<?mso-application progid="Word.Document"?>
+<w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:v="urn:schemas-microsoft-com:vml"
+ xmlns:w10="urn:schemas-microsoft-com:office:word"
+ xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core"
+ xmlns:aml="http://schemas.microsoft.com/aml/2001/core"
+ xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint"
+ xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
+ w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve"
+ xmlns:wpsCustomData="http://www.wps.cn/officeDocument/2013/wpsCustomData"><o:DocumentProperties>
+ <o:Author>浣抽 鏂�</o:Author>
+ <o:LastAuthor>鐨崱</o:LastAuthor>
+ <o:Revision>58</o:Revision>
+ <o:LastPrinted>2025-07-25T06:07:00Z</o:LastPrinted>
+ <o:Created>2019-02-17T13:32:00Z</o:Created>
+ <o:LastSaved>2025-11-13T10:26:33Z</o:LastSaved>
+ <o:TotalTime>1440</o:TotalTime>
+ <o:Pages>1</o:Pages>
+ <o:Words>954</o:Words>
+ <o:Characters>959</o:Characters>
+ <o:Lines>7</o:Lines>
+ <o:Paragraphs>2</o:Paragraphs>
+ <o:CharactersWithSpaces>965</o:CharactersWithSpaces>
+ <o:Version>14</o:Version>
+ </o:DocumentProperties>
+ <o:CustomDocumentProperties>
+ <o:KSOTemplateDocerSaveRecord dt:dt="string">
+ eyJoZGlkIjoiZjFhZGRhZjI5ODM5MzJiOWY3ZTU5NDgxZmRlNjIyZmIiLCJ1c2VySWQiOiI5NDAxODU1MzgifQ==
+ </o:KSOTemplateDocerSaveRecord>
+ <o:KSOProductBuildVer dt:dt="string">2052-12.1.0.23542</o:KSOProductBuildVer>
+ <o:ICV dt:dt="string">4802A9DE2D9A4AB3A4EBB9A1512B62C0_13</o:ICV>
+ </o:CustomDocumentProperties>
+ <w:fonts>
+ <w:defaultFonts w:ascii="绛夌嚎" w:fareast="绛夌嚎" w:h-ansi="绛夌嚎" 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="Auto"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
+ w:csb-1="FFFF0000"/>
+ </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="Default"/>
+ <w:sig w:usb-0="00000203" w:usb-1="288F0000" w:usb-2="00000006" w:usb-3="00000000" w:csb-0="00040001"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="Wingdings">
+ <w:panose-1 w:val="05000000000000000000"/>
+ <w:charset w:val="02"/>
+ <w:family w:val="Auto"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="Arial">
+ <w:panose-1 w:val="020B0604020202020204"/>
+ <w:charset w:val="01"/>
+ <w:family w:val="SWiss"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="E0002EFF" w:usb-1="C000785B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
+ w:csb-1="FFFF0000"/>
+ </w:font>
+ <w:font w:name="榛戜綋">
+ <w:panose-1 w:val="02010609060101010101"/>
+ <w:charset w:val="86"/>
+ <w:family w:val="Auto"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="800002BF" w:usb-1="38CF7CFA" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="00040001"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="Courier New">
+ <w:panose-1 w:val="02070309020205020404"/>
+ <w:charset w:val="01"/>
+ <w:family w:val="Modern"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="E0002EFF" w:usb-1="C0007843" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="400001FF"
+ w:csb-1="FFFF0000"/>
+ </w:font>
+ <w:font w:name="Symbol">
+ <w:panose-1 w:val="05050102010706020507"/>
+ <w:charset w:val="02"/>
+ <w:family w:val="Roman"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="00000000" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="80000000"
+ 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="Default"/>
+ <w:sig w:usb-0="E4002EFF" w:usb-1="C200247B" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="200001FF"
+ 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="Default"/>
+ <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="02010509060101010101"/>
+ <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="00000000" w:usb-3="00000000" w:csb-0="00040000"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="Sylfaen">
+ <w:panose-1 w:val="010A0502050306030303"/>
+ <w:charset w:val="00"/>
+ <w:family w:val="Roman"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="04000687" w:usb-1="00000000" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="2000009F"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="寰蒋闆呴粦">
+ <w:panose-1 w:val="020B0503020204020204"/>
+ <w:charset w:val="86"/>
+ <w:family w:val="Auto"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="80000287" w:usb-1="2ACF3C50" w:usb-2="00000016" w:usb-3="00000000" w:csb-0="0004001F"
+ w:csb-1="00000000"/>
+ </w:font>
+ <w:font w:name="Tahoma">
+ <w:panose-1 w:val="020B0604030504040204"/>
+ <w:charset w:val="00"/>
+ <w:family w:val="Auto"/>
+ <w:pitch w:val="Default"/>
+ <w:sig w:usb-0="E1002EFF" w:usb-1="C000605B" w:usb-2="00000029" w:usb-3="00000000" w:csb-0="200101FF"
+ w:csb-1="20280000"/>
+ </w:font>
+ </w:fonts>
+ <w:lists>
+ <w:listDef w:listDefId="0">
+ <w:plt w:val="Multilevel"/>
+ <w:lvl w:ilvl="0">
+ <w:start w:val="1"/>
+ <w:lvlText w:val="%1."/>
+ <w:lvlJc w:val="left"/>
+ <w:rPr>
+ <w:rFonts w:ascii="Sylfaen" w:h-ansi="Sylfaen" w:fareast="Sylfaen" w:cs="Sylfaen" w:hint="default"/>
+ <w:b w:val="off"/>
+ <w:b-cs w:val="off"/>
+ <w:i w:val="off"/>
+ <w:i-cs w:val="off"/>
+ <w:smallCaps w:val="off"/>
+ <w:strike w:val="off"/>
+ <w:color w:val="000000"/>
+ <w:spacing w:val="0"/>
+ <w:w w:val="100"/>
+ <w:position w:val="0"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:u w:val="none"/>
+ <w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="EN-US"/>
+ </w:rPr>
+ </w:lvl>
+ <w:lvl w:ilvl="1">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="2">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="3">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="4">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="5">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="6">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="7">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="8">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ </w:listDef>
+ <w:listDef w:listDefId="1">
+ <w:plt w:val="Multilevel"/>
+ <w:lvl w:ilvl="0">
+ <w:start w:val="1"/>
+ <w:nfc w:val="10"/>
+ <w:lvlText w:val="%1."/>
+ <w:lvlJc w:val="left"/>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:cs="瀹嬩綋" w:hint="default"/>
+ <w:b w:val="off"/>
+ <w:b-cs w:val="off"/>
+ <w:i w:val="off"/>
+ <w:i-cs w:val="off"/>
+ <w:smallCaps w:val="off"/>
+ <w:strike w:val="off"/>
+ <w:color w:val="000000"/>
+ <w:spacing w:val="0"/>
+ <w:w w:val="100"/>
+ <w:position w:val="0"/>
+ <w:sz w:val="24"/>
+ <w:sz-cs w:val="24"/>
+ <w:u w:val="none"/>
+ <w:lang w:val="ZH-TW" w:fareast="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:lvl>
+ <w:lvl w:ilvl="1">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="2">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="3">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="4">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="5">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="6">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="7">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="8">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ </w:listDef>
+ <w:listDef w:listDefId="2">
+ <w:plt w:val="Multilevel"/>
+ <w:lvl w:ilvl="0">
+ <w:start w:val="1"/>
+ <w:lvlText w:val="%1."/>
+ <w:lvlJc w:val="left"/>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:cs="瀹嬩綋" w:hint="default"/>
+ <w:b w:val="off"/>
+ <w:b-cs w:val="off"/>
+ <w:i w:val="off"/>
+ <w:i-cs w:val="off"/>
+ <w:smallCaps w:val="off"/>
+ <w:strike w:val="off"/>
+ <w:color w:val="000000"/>
+ <w:spacing w:val="0"/>
+ <w:w w:val="100"/>
+ <w:position w:val="0"/>
+ <w:sz w:val="24"/>
+ <w:sz-cs w:val="24"/>
+ <w:u w:val="none"/>
+ <w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="EN-US"/>
+ </w:rPr>
+ </w:lvl>
+ <w:lvl w:ilvl="1">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="2">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="3">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="4">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="5">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="6">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="7">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="8">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ </w:listDef>
+ <w:listDef w:listDefId="3">
+ <w:plt w:val="Multilevel"/>
+ <w:lvl w:ilvl="0">
+ <w:start w:val="1"/>
+ <w:lvlText w:val="%1."/>
+ <w:lvlJc w:val="left"/>
+ <w:rPr>
+ <w:rFonts w:ascii="Sylfaen" w:h-ansi="Sylfaen" w:fareast="Sylfaen" w:cs="Sylfaen" w:hint="default"/>
+ <w:b w:val="off"/>
+ <w:b-cs w:val="off"/>
+ <w:i w:val="off"/>
+ <w:i-cs w:val="off"/>
+ <w:smallCaps w:val="off"/>
+ <w:strike w:val="off"/>
+ <w:color w:val="000000"/>
+ <w:spacing w:val="0"/>
+ <w:w w:val="100"/>
+ <w:position w:val="0"/>
+ <w:sz w:val="24"/>
+ <w:sz-cs w:val="24"/>
+ <w:u w:val="none"/>
+ <w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="EN-US"/>
+ </w:rPr>
+ </w:lvl>
+ <w:lvl w:ilvl="1">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="2">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="3">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="4">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="5">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="6">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="7">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ <w:lvl w:ilvl="8">
+ <w:start w:val="0"/>
+ <w:lvlText w:val=""/>
+ <w:lvlJc w:val="left"/>
+ </w:lvl>
+ </w:listDef>
+ <w:list w:ilfo="1">
+ <w:ilst w:val="1"/>
+ </w:list>
+ <w:list w:ilfo="2">
+ <w:ilst w:val="2"/>
+ </w:list>
+ <w:list w:ilfo="3">
+ <w:ilst w:val="0"/>
+ </w:list>
+ <w:list w:ilfo="4">
+ <w:ilst w:val="3"/>
+ </w:list>
+ </w:lists>
+ <w:styles>
+ <w:latentStyles w:defLockedState="off" w:latentStyleCount="260">
+ <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="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="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="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="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:latentStyles>
+ <w:style w:type="paragraph" w:styleId="a1" w:default="on">
+ <w:name w:val="Normal"/>
+ <w:pPr>
+ <w:widowControl w:val="off"/>
+ <w:jc w:val="both"/>
+ </w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="Times New Roman" w:h-ansi="Times New Roman" w:fareast="瀹嬩綋" w:hint="default"/>
+ <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:styleId="a6" w:default="on">
+ <w:name w:val="Default Paragraph Font"/>
+ </w:style>
+ <w:style w:type="table" w:styleId="a5" w:default="on">
+ <w:name w:val="Normal Table"/>
+ <w:tblPr>
+ <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="paragraph" w:styleId="a2">
+ <w:name w:val="Balloon Text"/>
+ <w:basedOn w:val="a1"/>
+ <w:link w:val="a7"/>
+ <w:rPr>
+ <w:sz w:val="18"/>
+ <w:sz-cs w:val="18"/>
+ </w:rPr>
+ </w:style>
+ <w:style w:type="paragraph" w:styleId="a3">
+ <w:name w:val="footer"/>
+ <w:basedOn w:val="a1"/>
+ <w:link w:val="a8"/>
+ <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>
+ <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="header"/>
+ <w:basedOn w:val="a1"/>
+ <w:link w:val="a9"/>
+ <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>
+ <w:sz w:val="18"/>
+ <w:sz-cs w:val="18"/>
+ </w:rPr>
+ </w:style>
+ <w:style w:type="character" w:styleId="a7">
+ <w:name w:val="鎵规敞妗嗘枃鏈� Char"/>
+ <w:basedOn w:val="a6"/>
+ <w:link w:val="a2"/>
+ <w:semiHidden/>
+ <w:rPr>
+ <w:rFonts w:ascii="Times New Roman" w:h-ansi="Times New Roman" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:kern w:val="2"/>
+ <w:sz w:val="18"/>
+ <w:sz-cs w:val="18"/>
+ </w:rPr>
+ </w:style>
+ <w:style w:type="character" w:styleId="a8">
+ <w:name w:val="椤佃剼 瀛楃"/>
+ <w:link w:val="a3"/>
+ <w:rPr>
+ <w:rFonts w:ascii="Times New Roman" w:h-ansi="Times New Roman" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:kern w:val="2"/>
+ <w:sz w:val="18"/>
+ <w:sz-cs w:val="18"/>
+ </w:rPr>
+ </w:style>
+ <w:style w:type="character" w:styleId="a9">
+ <w:name w:val="椤电湁 瀛楃"/>
+ <w:link w:val="a4"/>
+ <w:rPr>
+ <w:rFonts w:ascii="Times New Roman" w:h-ansi="Times New Roman" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:kern w:val="2"/>
+ <w:sz w:val="18"/>
+ <w:sz-cs w:val="18"/>
+ </w:rPr>
+ </w:style>
+ </w:styles>
+ <w:shapeDefaults>
+ <o:shapedefaults fillcolor="#FFFFFF" fill="t" stroke="t">
+ <v:fill on="t" focussize="0,0"/>
+ <v:stroke color="#000000"/>
+ </o:shapedefaults>
+ </w:shapeDefaults>
+ <w:bgPict>
+ <w:background/>
+ <v:background id="_x0000_s1025">
+ <v:fill on="f" focussize="0,0"/>
+ </v:background>
+ </w:bgPict>
+ <w:docPr>
+ <w:view w:val="print"/>
+ <w:zoom w:percent="95"/>
+ <w:characterSpacingControl w:val="CompressPunctuation"/>
+ <w:documentProtection w:enforcement="off"/>
+ <w:punctuationKerning/>
+ <w:doNotEmbedSystemFonts/>
+ <w:bordersDontSurroundHeader/>
+ <w:bordersDontSurroundFooter/>
+ <w:defaultTabStop w:val="420"/>
+ <w:drawingGridHorizontalSpacing w:val="105"/>
+ <w:drawingGridVerticalSpacing w:val="156"/>
+ <w:displayHorizontalDrawingGridEvery w:val="0"/>
+ <w:displayVerticalDrawingGridEvery w:val="2"/>
+ <w:compat>
+ <w:adjustLineHeightInTable/>
+ <w:ulTrailSpace/>
+ <w:doNotExpandShiftReturn/>
+ <w:balanceSingleByteDoubleByteWidth/>
+ <w:spaceForUL/>
+ <w:wrapTextWithPunct/>
+ <w:breakWrappedTables/>
+ <w:useAsianBreakRules/>
+ <w:dontGrowAutofit/>
+ <w:useFELayout/>
+ </w:compat>
+ </w:docPr>
+ <w:body>
+ <wx:sect>
+ <w:tbl>
+ <w:tblPr>
+ <w:tblpPr w:leftFromText="180" w:rightFromText="180" w:vertAnchor="page" w:horzAnchor="margin"
+ w:tblpXSpec="center" w:tblpY="556"/>
+ <w:tblW w:w="9923" w:type="dxa"/>
+ <w:tblInd w:w="0" w:type="dxa"/>
+ <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: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:tblGrid>
+ <w:gridCol w:w="1240"/>
+ <w:gridCol w:w="1842"/>
+ <w:gridCol w:w="1276"/>
+ <w:gridCol w:w="654"/>
+ <w:gridCol w:w="1476"/>
+ <w:gridCol w:w="563"/>
+ <w:gridCol w:w="712"/>
+ <w:gridCol w:w="2160"/>
+ </w:tblGrid>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr>
+ <w:trHeight w:val="421" w:h-rule="atLeast"/>
+ </w:trPr>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="9923" w:type="dxa"/>
+ <w:gridSpan w:val="8"/>
+ <w:tcBorders>
+ <w:bottom w:val="nil"/>
+ </w:tcBorders>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:jc w:val="center"/>
+ <w:rPr>
+ <w:rFonts w:fareast="闅朵功" w:hint="default"/>
+ <w:sz w:val="44"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:fareast="闅朵功" w:hint="fareast"/>
+ <w:sz w:val="44"/>
+ </w:rPr>
+ <w:t>閲戝崕甯備汉姘戝尰闄�</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr>
+ <w:trHeight w:val="509" w:h-rule="atLeast"/>
+ </w:trPr>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="9923" w:type="dxa"/>
+ <w:gridSpan w:val="8"/>
+ <w:tcBorders>
+ <w:top w:val="nil"/>
+ </w:tcBorders>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="center"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:jc w:val="center"/>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:b/>
+ <w:b-cs/>
+ <w:sz w:val="32"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:b/>
+ <w:b-cs/>
+ <w:sz w:val="32"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>骞虫澘杩愬姩蹇冪數鍥�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:b/>
+ <w:b-cs/>
+ <w:sz w:val="32"/>
+ </w:rPr>
+ <w:t>鐭ユ儏鍚屾剰涔�</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr/>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1240" w:type="dxa"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="0" w:type="Word.Bookmark.Start" w:name="name"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>濮� 鍚嶏細</w:t>
+ </w:r>
+ <aml:annotation aml:id="0" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1842" w:type="dxa"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${name}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1276" w:type="dxa"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="1" w:type="Word.Bookmark.Start" w:name="sex"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>鎬�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t></w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>鍒細</w:t>
+ </w:r>
+ <aml:annotation aml:id="1" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2130" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${sex}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1275" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:jc w:val="center"/>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="2" w:type="Word.Bookmark.Start" w:name="age"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>骞撮緞锛�</w:t>
+ </w:r>
+ <aml:annotation aml:id="2" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2160" w:type="dxa"/>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="榛戜綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="榛戜綋" w:hint="fareast"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${age}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr/>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1240" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="3" w:type="Word.Bookmark.Start" w:name="zyno"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>浣忛櫌鍙凤細</w:t>
+ </w:r>
+ <aml:annotation aml:id="3" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1842" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${inhospno}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1276" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="4" w:type="Word.Bookmark.Start" w:name="zyid"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>ID</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>鍙凤細</w:t>
+ </w:r>
+ <aml:annotation aml:id="4" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2130" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${idNo}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1275" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:b/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="5" w:type="Word.Bookmark.Start" w:name="bedno"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>鐥呭尯搴婂彿锛�</w:t>
+ </w:r>
+ <aml:annotation aml:id="5" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2160" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="榛戜綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="榛戜綋" w:hint="fareast"/>
+ <w:b-cs/>
+ <w:sz w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${badNo}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr>
+ <w:trHeight w:val="295" w:h-rule="atLeast"/>
+ </w:trPr>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1240" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="6" w:type="Word.Bookmark.Start" w:name="birthdate"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>鍑虹敓鏃ユ湡锛�</w:t>
+ </w:r>
+ <aml:annotation aml:id="6" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="5248" w:type="dxa"/>
+ <w:gridSpan w:val="4"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${birthday}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="1275" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ </w:pPr>
+ <aml:annotation aml:id="7" w:type="Word.Bookmark.Start" w:name="physician"/>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ </w:rPr>
+ <w:t>寮�鍗曞尰鐢燂細</w:t>
+ </w:r>
+ <aml:annotation aml:id="7" w:type="Word.Bookmark.End"/>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2160" w:type="dxa"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="22"/>
+ <w:sz-cs w:val="22"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>${doctor}</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr/>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="9923" w:type="dxa"/>
+ <w:gridSpan w:val="8"/>
+ <w:tcBorders>
+ <w:top 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:tcBorders>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="420" w:first-line-chars="200"/>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>
+ 骞虫澘杩愬姩蹇冪數鍥剧殑妫�鏌ユ槸閫氳繃澧炲姞杩愬姩璐熻嵎瑙傚療蹇冪數锛岃鍘嬶紝杩愬姩鑰愬姏鍜屼即闅忕棁鐘朵綋寰侊紝涓昏鐢ㄤ簬鍐犲績鐥呯殑璇婃柇锛屼笌杩愬姩鐩稿叧鐨勫悇绉嶇棁鐘剁殑璇勪环锛屽拰浜嗚В涓庤繍鍔ㄧ浉鍏崇殑鍚勭蹇冨緥澶卞父銆�
+ </w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>
+ 鍥犲钩鏉胯繍鍔ㄥ績鐢靛浘涓昏鐢ㄤ簬蹇冭倢缂鸿鐨勭▼搴﹀拰鍗遍櫓搴︾殑璇勪环锛岃�屽啝蹇冪梾鎮h�呰繍鍔ㄥ墠鐨勫啝鐘跺姩鑴夌己琛�闃堝�煎拰鍐犵姸鍔ㄨ剦鍌ㄥ鍜屽績鍔熻兘闅句互鍒ゆ柇锛岃繍鍔ㄩ闄╅毦鍏嶅瓨鍦紝鍥犳鎮h�呭繀椤荤悊瑙g敱浜庡钩鏉胯繍鍔ㄨ�岃鍙戠殑鑳哥棝鍙婂叾浠栦竴浜涚棁鐘跺嚭鐜扮殑鏍规湰鍘熷洜鏄柧鐥呮湰韬紝鎮h�呭繀椤诲瀹炴彁渚涢珮琛�鍘嬶紝绯栧翱鐥咃紝楂樿剛琛�鐥囩瓑鐥呭彶鍙婄儫閰掑彶鍜屽钩鏃舵墍鍑虹幇鐨勪竴浜涚棁鐘讹紝杩愬姩鍚庡嚭鐜扮棁鐘跺拰涓嶈兘鑰愬彈鎯呭喌蹇呴』鍙婃椂鍛婄煡锛屼互渚垮尰鐢熷強鏃剁粓姝㈣繍鍔ㄦ鏌ャ��
+ </w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="420" w:first-line-chars="200"/>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓嬪垪鎯呭喌涓嶈兘杩涜骞虫澘杩愬姩妫�鏌ワ細</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鎬ユ�у績鑲屾姝伙紝</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓嶇ǔ瀹氬瀷蹇冪粸鐥涳紝</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓ラ噸蹇冨緥澶卞父锛�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓ラ噸楂樿鍘嬫垨鏄捐憲浣庤鍘嬶紝</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鏈夌棁鐘剁殑蹇�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="420" w:first-line-chars="200"/>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鍔涜“绔紝</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鎬ユ�у績鑲岀値鍙婂績鍖呯値锛�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓诲姩鑴夊す灞傛垨鐙獎锛岃偉鍘氬瀷姊楅樆鍨嬪績鑲岀梾锛�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鑲烘爴濉炴垨鑲烘姝伙紝</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓嬭偄闈欒剦鏍撳锛�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:cs="瀹嬩綋" w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鈶�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>
+ 鎮h�呮嫆缁濄�傛湁澶栦激鍙插強涓嬭偄杩愬姩闅滅锛屼腑椋庡悗閬楃棁鎮h�咃紝涓嶈兘鑰愬彈鍜屼笉鑳介�傚簲骞虫澘杩愬姩(濡備細鐪╂檿锛夋偅鑰呬笉鑳藉仛骞虫澘杩愬姩妫�鏌ャ��
+ </w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="420" w:first-line-chars="200"/>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="1"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>娉ㄦ剰浜嬮」</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="2"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鎮h�呬笉鑳界┖鑵瑰仛妫�鏌ワ紝浠ュ厤鍙戠敓杩愬姩鍚庝綆琛�绯栧弽搴旓紝寤鸿椁愬悗</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="EN-US"/>
+ </w:rPr>
+ <w:t>1-2</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>灏忔椂鏈�閫傚疁鐨勬椂闂存鏌ャ��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="2"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>寤鸿绌垮叏妫夊唴琛f鏌ワ紝浠ラ槻闈欑數骞叉壈锛岀┛杩愬姩闉嬫垨骞冲簳闉嬶紝鏂逛究杩愬姩銆�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="2"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鏈帶鍒剁殑楂樿鍘嬶紝涓ラ噸璐锛岀數瑙h川绱婁贡锛屽績鑴忔墿澶у強蹇冨姛鑳戒笉鍏ㄦ殏缂撴鏌ャ��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="2"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>绮剧闅滅鎴栦綋鍔涗笉鑰愬彈涓嶈兘鍋氬钩鏉胯繍鍔ㄦ鏌ャ��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="1"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓昏鎰忓椋庨櫓鍜屽苟鍙戠棁锛�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>瀵瑰钩鏉胯繍鍔ㄤ笉閫傚簲鎵�閫犳垚鐨勬剰澶栦激瀹炽��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鐢变簬鍐犵姸鍔ㄨ剦鐥呭彉涓嶈兘鑰愬彈杩愬姩璐熻嵎澧炲姞鑰屽鑷寸殑蹇冭倢缂鸿锛屽績缁炵棝鍜屾�ユ�у績鑲屾姝汇��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鐢变簬鎬ユ�у績鑲岀己琛�浼村彂鐨勪弗閲嶅績寰嬪け甯革紝濡傚績鑴忓懠鍚搁鍋滐紝瀹ら�熷棰ょ瓑銆�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>
+ 鐢变簬鎬ユ�у績鑲岀己琛�寮曡捣鐨勮娴佸姩鍔涘闅滅锛岃鍙戣糠璧扮缁忓弽灏勬�у績鐜囧噺鎱㈠紩璧风殑濡傝鍘嬩笅闄嶇瓑蹇冭剰鎰忓銆�
+ </w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鐢变簬杩愬姩瀵艰嚧琛�鍘嬮鍗囨垨琛�鏍撹劚钀斤紝瀵艰嚧鑴戣绠℃剰澶栧拰鍛煎惛蹇冭烦楠ゅ仠锛岀敋鑷冲嵄鍙婄敓鍛姐��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="3"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鍏朵粬闅句互棰勬枡鐨勬儏鍐点��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="1"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>闃茶寖鎺柦</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="4"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓ユ牸鎸夋搷浣滆绋嬶紝瑙勮寖鎿嶄綔妫�鏌ャ��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="4"/>
+ </w:listPr>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>涓ュ瘑杩愬姩鐩戞祴锛堝績鐢典笌琛�鍘嬪彉鍖�)銆�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鍙戠幇寮傚父鍙婃椂澶勭疆锛屽鍙戠敓蹇冭绠℃剰澶栦簨浠舵寜搴�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>鎬�</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>棰勬娴佺▼绉瀬鎶㈡晳銆�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:listPr>
+ <w:ilvl w:val="0"/>
+ <w:ilfo w:val="4"/>
+ </w:listPr>
+ <w:rPr>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:lang w:val="ZH-TW" w:bidi="ZH-TW"/>
+ </w:rPr>
+ <w:t>璇ユ鏌ユ柟娉曞瓨鍦ㄤ竴瀹氱殑灞�闄愭�э紝涓嶉�傚悎姝ら」鐩�咃紝鍙浛浠f柟妗堜负鍐犺剦CTA妫�鏌ャ��</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="5600" w:first-line-chars="2000"/>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ <w:t>鍖诲笀绛惧悕锛�</w:t>
+ </w:r>
+ </w:p>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="5600" w:first-line-chars="2000"/>
+ <w:rPr>
+ <w:rFonts w:fareast="瀹嬩綋" w:hint="default"/>
+ <w:sz w:val="28"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>绛惧悕鏃ユ湡鏃堕棿锛�</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr/>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="9923" w:type="dxa"/>
+ <w:gridSpan w:val="8"/>
+ <w:tcBorders>
+ <w:bottom w:val="nil"/>
+ </w:tcBorders>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:ind w:first-line="560" w:first-line-chars="200"/>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ <w:t>鎴戝凡鏄庣‘棰嗘偀骞虫澘杩愬姩蹇冪數鍥炬鏌婚闄╁苟鍚屾剰妫�鏌伙紝浠ョ瀛椾负璇併��</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr/>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="5012" w:type="dxa"/>
+ <w:gridSpan w:val="4"/>
+ <w:tcBorders>
+ <w:top 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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2039" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:fareast="榛戜綋" w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ <w:t>鎮h�呯鍚嶏細</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2872" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <w:tcBorders>
+ <w:top w:val="nil"/>
+ <w:left w:val="nil"/>
+ <w:bottom w:val="nil"/>
+ <w:right 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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ <w:tr>
+ <w:tblPrEx>
+ <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: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:tblPrEx>
+ <w:trPr>
+ <w:trHeight w:val="309" w:h-rule="atLeast"/>
+ </w:trPr>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="5012" w:type="dxa"/>
+ <w:gridSpan w:val="4"/>
+ <w:tcBorders>
+ <w:top w:val="nil"/>
+ <w:right w:val="nil"/>
+ </w:tcBorders>
+ <w:shd w:val="clear" w:color="auto" w:fill="auto"/>
+ <w:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2039" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ <w:sz-cs w:val="24"/>
+ </w:rPr>
+ <w:t>绛惧悕鏃ユ湡</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ <w:sz-cs w:val="24"/>
+ <w:lang w:val="EN-US" w:fareast="ZH-CN"/>
+ </w:rPr>
+ <w:t>鏃堕棿</w:t>
+ </w:r>
+ <w:r>
+ <w:rPr>
+ <w:rFonts w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ <w:sz-cs w:val="24"/>
+ </w:rPr>
+ <w:t>锛�</w:t>
+ </w:r>
+ </w:p>
+ </w:tc>
+ <w:tc>
+ <w:tcPr>
+ <w:tcW w:w="2872" w:type="dxa"/>
+ <w:gridSpan w:val="2"/>
+ <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="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:noWrap w:val="0"/>
+ <w:vAlign w:val="top"/>
+ </w:tcPr>
+ <w:p>
+ <w:pPr>
+ <w:rPr>
+ <w:rFonts w:ascii="瀹嬩綋" w:h-ansi="瀹嬩綋" w:hint="fareast"/>
+ <w:sz w:val="28"/>
+ </w:rPr>
+ </w:pPr>
+ </w:p>
+ </w:tc>
+ </w:tr>
+ </w:tbl>
+ <w:p/>
+ <w:sectPr>
+ <w:pgSz w:w="11906" w:h="16838"/>
+ <w:pgMar w:top="720" w:right="720" w:bottom="567" w:left="720" w:header="851" w:footer="992"
+ w:gutter="0"/>
+ <w:cols w:space="720"/>
+ <w:docGrid w:type="lines" w:line-pitch="312"/>
+ </w:sectPr>
+ </wx:sect>
+ </w:body></w:wordDocument>
--
Gitblit v1.9.3