diff --git a/json2docx_docx2json/__pycache__/esay_docx_func.cpython-312.pyc b/json2docx_docx2json/__pycache__/esay_docx_func.cpython-312.pyc new file mode 100644 index 0000000..4e207fa Binary files /dev/null and b/json2docx_docx2json/__pycache__/esay_docx_func.cpython-312.pyc differ diff --git a/json2docx_docx2json/__pycache__/esay_docx_func.cpython-313.pyc b/json2docx_docx2json/__pycache__/esay_docx_func.cpython-313.pyc new file mode 100644 index 0000000..8004dfe Binary files /dev/null and b/json2docx_docx2json/__pycache__/esay_docx_func.cpython-313.pyc differ diff --git a/json2docx_docx2json/docx_to_json.py b/json2docx_docx2json/docx_to_json.py new file mode 100644 index 0000000..9482170 --- /dev/null +++ b/json2docx_docx2json/docx_to_json.py @@ -0,0 +1,396 @@ +import json +from docx import Document +from docx.oxml.shared import qn + + +def docx_to_json(docx_path): + print(f"\n开始解析文档: {docx_path}") + doc = Document(docx_path) + + result = [] + para_index = 0 + table_index = 0 + + print(f"文档包含 {len(doc.paragraphs)} 个段落和 {len(doc.tables)} 个表格") + + for element in doc.element.body: + if element.tag.endswith('p'): + paragraph = doc.paragraphs[para_index] + print(f"\n处理段落 {para_index}: {paragraph.text[:50]}...") + para_data = process_paragraph(paragraph) + result.append({ + "type": "text", + "content": para_data + }) + para_index += 1 + elif element.tag.endswith('tbl'): + table = doc.tables[table_index] + print(f"\n处理表格 {table_index} ({len(table.rows)}行×{len(table.columns)}列)") + table_data = process_table_with_merge_info(table) + result.append({ + "type": "table", + "content": table_data + # 移除了bold属性,加粗信息现在由每个run单独记录 + }) + table_index += 1 + + print("\n文档解析完成!") + return result + +def process_table_with_merge_info(table): + """处理表格并包含合并信息、行高列宽和完整格式""" + table_data = { + "rows": len(table.rows), + "cols": len(table.columns), + "cells": [], + "merged_cells": [], + "row_heights": [None] * len(table.rows), + "col_widths": [None] * len(table.columns) + } + + # 先处理所有单元格内容 + cell_data_matrix = [] + for i, row in enumerate(table.rows): + row_data = [] + for j, cell in enumerate(row.cells): + cell_data = { + "row": i, + "col": j, + "content": process_cell_content(cell), + "alignment": get_cell_alignment(cell), # 获取单元格对齐 + "vertical_align": get_vertical_alignment(cell), # 新增垂直对齐 + "border": get_cell_border(cell), + "shading": get_cell_shading(cell), # 新增背景色 + "margins": get_cell_margins(cell), # 新增边距 + "is_merged": False, + "merge_info": None + } + row_data.append(cell_data) + + # 记录行高列宽(最后一个单元格时记录) + if j == len(row.cells) - 1 and row.height is not None: + table_data["row_heights"][i] = row.height.inches + if i == len(table.rows) - 1 and table.columns[j].width is not None: + table_data["col_widths"][j] = table.columns[j].width.inches + + cell_data_matrix.append(row_data) + + # 检测合并单元格 + merge_ranges = [] + for i, row in enumerate(table.rows): + for j, cell in enumerate(row.cells): + # 跳过已经处理过的合并单元格 + if any((i >= r1 and i <= r2 and j >= c1 and j <= c2) for (r1, r2, c1, c2) in merge_ranges): + continue + + # 查找相同单元格地址的范围 + r2 = i + c2 = j + + # 水平方向查找 + while c2 + 1 < table_data["cols"] and table.rows[i].cells[c2 + 1]._tc is cell._tc: + c2 += 1 + + # 垂直方向查找 + while r2 + 1 < table_data["rows"] and table.rows[r2 + 1].cells[j]._tc is cell._tc: + r2 += 1 + + # 如果找到合并区域 + if r2 > i or c2 > j: + merge_ranges.append((i, r2, j, c2)) + + # 更新主单元格信息 + cell_data_matrix[i][j]["is_merged"] = True + cell_data_matrix[i][j]["merge_info"] = { + "is_primary": True, + "merge_range": f"{i},{j}-{r2},{c2}" + } + + # 添加到合并单元格列表 + table_data["merged_cells"].append({ + "start_row": i, + "start_col": j, + "end_row": r2, + "end_col": c2, + "content": process_cell_content(cell) + }) + + # 更新被合并单元格信息 + for r in range(i, r2 + 1): + for c in range(j, c2 + 1): + if r != i or c != j: # 跳过主单元格 + cell_data_matrix[r][c]["is_merged"] = True + cell_data_matrix[r][c]["merge_info"] = { + "is_primary": False, + "merge_range": f"{i},{j}-{r2},{c2}" + } + + # 将处理后的单元格数据添加到结果中 + table_data["cells"] = cell_data_matrix + + return table_data + +def get_vertical_alignment(cell): + """获取单元格垂直对齐方式""" + try: + tcPr = cell._element.tcPr + if tcPr is not None: + vAlign = tcPr.find(qn('w:vAlign')) + if vAlign is not None: + align_map = { + 'top': 'top', + 'center': 'center', + 'bottom': 'bottom' + } + return align_map.get(vAlign.get(qn('w:val')), 'top') + except: + print("获取垂直对齐方式失败") + pass + return 'top' # 默认顶部对齐 + +def get_cell_shading(cell): + """获取单元格背景色""" + try: + tcPr = cell._element.tcPr + if tcPr is not None: + shading = tcPr.find(qn('w:shd')) + if shading is not None: + color = shading.get(qn('w:fill')) + if color: + return { + 'color': color, + 'theme': shading.get(qn('w:themeColor'), '') + } + except: + pass + return None + +def get_cell_margins(cell): + """获取单元格边距""" + margins = {} + try: + tcPr = cell._element.tcPr + if tcPr is not None: + for side in ['top', 'left', 'bottom', 'right']: + margin = tcPr.find(qn(f'w:tcMar/w:{side}')) + if margin is not None: + margins[side] = { + 'w': margin.get(qn('w:w')), + 'type': margin.get(qn('w:type')) + } + except: + pass + return margins if margins else None + +def process_cell_content(cell): + """处理单元格内容,直接调用段落处理函数""" + cell_content = [] + for para in cell.paragraphs: + # 复用段落处理逻辑 + para_data = process_paragraph(para) + cell_content.append(para_data) + return cell_content + +def has_page_break(run): + """检查run是否包含分页符""" + xml = run._element.xml + return ('w:br' in xml and 'type="page"' in xml) or '\x0c' in run.text + +def process_paragraph(paragraph): + para_data = { + "alignment": get_alignment_with_fallback(paragraph), + "runs": [] + } + + print(f"段落对齐方式: {para_data['alignment']}") + + for run in paragraph.runs: + run_data = { + "text": run.text, + "font": get_font_info(run, paragraph), + "style": run.style.name if run.style else None, + "has_page_break": has_page_break(run) + } + para_data["runs"].append(run_data) + + print(f"段落包含 {len(para_data['runs'])} 个文本运行(runs)") + return para_data + +def get_alignment_with_fallback(paragraph): + # 首先尝试直接从段落属性获取 + try: + if paragraph.alignment is not None: + alignment_map = { + 0: "left", + 1: "center", + 2: "right", + 3: "justify" + } + result = alignment_map.get(paragraph.alignment, "left") + print(f"从paragraph.alignment获取对齐方式: {result}") + return result + except: + # 如果段落alignment为None,尝试从样式获取 + try: + p_pr = paragraph.style.element.xpath('w:pPr')[0] + if p_pr.xpath('w:jc'): + jc_attr = p_pr.xpath('w:jc')[0].attrib + align_map = { + "left": "left", + "center": "center", + "right": "right", + "both": "justify", + "start": "left", + "end": "right" + } + result = align_map.get(jc_attr[qn('w:val')], "left") + print(f"从段落样式w:jc获取对齐方式: {result}") + return result + except Exception as e: + print(f"获取对齐方式失败: {str(e)}") + + print("使用默认对齐方式(left)") + return "left" + +def get_font_info(run, paragraph): + font = run.font + font_info = { + "name": None, + "size": None, + "bold": font.bold if font.bold is not None else False, # 默认为False + "italic": font.italic, + "underline": font.underline, + "color": get_color_info(run, paragraph) + } + + # 处理字体大小 + if font.size: + font_info["size"] = font.size.pt + else: + try: + p_rpr = paragraph.style.element.xpath('w:rPr')[0] + if p_rpr.xpath('w:sz'): + sz_attr = p_rpr.xpath('w:sz')[0].attrib + font_info["size"] = int(sz_attr[qn('w:val')]) / 2 # 转换为pt + print(f"从段落样式获取字体大小: {font_info['size']}pt") + except Exception as e: + print(f"获取字体大小失败: {str(e)}") + font_info["size"] = 11 # 默认值 + + # 处理字体名称 + if font.name: + font_info["name"] = font.name + print(f"从run.font获取字体: {font.name}") + else: + try: + p_rpr = paragraph.style.element.xpath('w:rPr')[0] + if p_rpr.xpath('w:rFonts'): + try: + font_info["name"] = p_rpr.xpath('w:rFonts')[0].attrib[qn("w:eastAsia")] + print(f"从段落样式w:eastAsia获取字体: {font_info['name']}") + except: + font_info["name"] = p_rpr.xpath('w:rFonts')[0].attrib[qn("w:ascii")] + print(f"从段落样式w:ascii获取字体: {font_info['name']}") + except Exception as e: + print(f"获取字体失败: {str(e)}") + font_info["name"] = "Calibri" # 默认值 + + return font_info + +def get_color_info(run, paragraph): + """增强版颜色获取,优先从run获取,失败则从段落样式获取""" + color_info = None + + # 1. 首先尝试从run.font获取颜色 + try: + if run.font.color and hasattr(run.font.color, 'rgb'): + color = run.font.color + color_info = { + "r": (color.rgb >> 16) & 0xff, + "g": (color.rgb >> 8) & 0xff, + "b": color.rgb & 0xff + } + print(f"从run.font获取颜色: RGB({color_info['r']}, {color_info['g']}, {color_info['b']})") + except Exception as e: + print(f"从run.font获取颜色失败: {str(e)}") + + # 2. 如果run颜色为空,尝试从段落样式中获取 + if color_info is None: + try: + p_rpr = paragraph.style.element.xpath('w:rPr')[0] + if p_rpr.xpath('w:color'): + color_attr = p_rpr.xpath('w:color')[0].attrib + if 'w:val' in color_attr: + hex_color = color_attr[qn('w:val')] + if hex_color.startswith('FF'): + hex_color = hex_color[2:] + rgb = tuple(int(hex_color[i:i+2], 16) for i in (0, 2, 4)) + color_info = { + "r": rgb[0], + "g": rgb[1], + "b": rgb[2] + } + print(f"从段落样式获取颜色: RGB{rgb}") + except Exception as e: + print(f"从段落样式获取颜色失败: {str(e)}") + + return color_info + +def get_cell_alignment(cell): + if cell.paragraphs: + return get_alignment_with_fallback(cell.paragraphs[0]) + return "left" + +def get_cell_border(cell): + # 默认返回实线边框 + default_border = { + "top": {"style": "single", "size": 4, "color": "000000"}, + "bottom": {"style": "single", "size": 4, "color": "000000"}, + "left": {"style": "single", "size": 4, "color": "000000"}, + "right": {"style": "single", "size": 4, "color": "000000"} + } + + try: + # 尝试获取实际边框设置 + tcPr = cell._element.tcPr + if tcPr is None: + return default_border + + borders = {} + for side in ['top', 'bottom', 'left', 'right']: + border = tcPr.xpath(f'w:tcBorders/w:{side}') + if border: + border = border[0] + border_style = border.get(qn('w:val'), 'single') + border_size = border.get(qn('w:sz'), '4') + border_color = border.get(qn('w:color'), '000000') + borders[side] = { + "style": border_style, + "size": int(border_size), + "color": border_color + } + else: + borders[side] = default_border[side] + + return borders + except Exception as e: + print(f"获取单元格边框失败: {str(e)}, 使用默认边框") + return default_border + +def process_cell(cell): + cell_content = [] + print(f"处理单元格,包含 {len(cell.paragraphs)} 个段落") + + for para in cell.paragraphs: + cell_content.append(process_paragraph(para)) + + return cell_content + +if __name__ == "__main__": + docx_path = r'D:\work\报告扫描\source.docx' + json_data = docx_to_json(docx_path) + + with open("output.json", "w", encoding="utf-8") as f: + json.dump(json_data, f, ensure_ascii=False, indent=2) + + print("转换完成,结果已保存到output.json") diff --git a/json2docx_docx2json/json_to_docx.py b/json2docx_docx2json/json_to_docx.py new file mode 100644 index 0000000..ed53991 --- /dev/null +++ b/json2docx_docx2json/json_to_docx.py @@ -0,0 +1,243 @@ +from docx import Document +from docx.shared import Pt, RGBColor +from docx.enum.text import WD_ALIGN_PARAGRAPH +from docx.oxml.shared import qn, OxmlElement +import json + +def json_to_docx(json_data, output_path): + print(f"\n开始转换JSON到DOCX文档,输出路径: {output_path}") + doc = Document() + total_elements = len(json_data) + print(f"文档包含 {total_elements} 个元素(段落和表格)") + + for i, element in enumerate(json_data, 1): + print(f"\n处理元素 {i}/{total_elements}: ", end="") + if element["type"] == "text": + print(f"段落 (长度: {len(element['content']['runs'])}个runs)") + add_paragraph_from_json(doc, element["content"]) + elif element["type"] == "table": + rows = element["content"]["rows"] + cols = element["content"]["cols"] + merges = len(element["content"].get("merged_cells", [])) + print(f"表格 ({rows}行×{cols}列, 包含 {merges} 个合并单元格)") + add_table_from_json(doc, element["content"], element.get("bold", False)) + + print("\n正在保存文档...") + doc.save(output_path) + print(f"文档已成功保存到 {output_path}") + +def add_paragraph_from_json(doc, para_json): + paragraph = doc.add_paragraph() + print(f" 添加段落 (对齐: {para_json['alignment']})") + + # 设置段落对齐方式 + alignment_map = { + "left": WD_ALIGN_PARAGRAPH.LEFT, + "center": WD_ALIGN_PARAGRAPH.CENTER, + "right": WD_ALIGN_PARAGRAPH.RIGHT, + "justify": WD_ALIGN_PARAGRAPH.JUSTIFY + } + paragraph.alignment = alignment_map.get(para_json["alignment"], WD_ALIGN_PARAGRAPH.LEFT) + + # 添加文本运行(runs) + for run_idx, run_json in enumerate(para_json["runs"], 1): + run = paragraph.add_run(run_json["text"]) + if run_json["has_page_break"]: + import docx + run.add_break(docx.enum.text.WD_BREAK.PAGE) + font = run.font + + print(f" 添加run {run_idx}: '{run_json['text']}' " + f"(字体: {run_json['font']['name']}, 大小: {run_json['font']['size']}, " + f"加粗: {run_json['font']['bold']}, 斜体: {run_json['font']['italic']})") + + # 设置字体样式 + if run_json["font"]["name"]: + font.name = run_json["font"]["name"] + run.element.rPr.rFonts.set(qn('w:eastAsia'), run_json["font"]["name"]) + + if run_json["font"]["size"]: + font.size = Pt(run_json["font"]["size"]) + + font.bold = run_json["font"]["bold"] + font.italic = run_json["font"]["italic"] + font.underline = run_json["font"]["underline"] + + # 设置字体颜色 + if run_json["font"]["color"]: + color = run_json["font"]["color"] + font.color.rgb = RGBColor(color["r"], color["g"], color["b"]) + print(f" 设置颜色: RGB({color['r']}, {color['g']}, {color['b']})") + +def add_table_from_json(doc, table_json, bold=False): + print(f" 创建表格: {table_json['rows']}行 × {table_json['cols']}列") + table = doc.add_table(rows=table_json["rows"], cols=table_json["cols"]) + + # 设置表格样式为无网格线(我们将自定义边框) + table.style = 'Table Grid' + + # 设置列宽 + if "col_widths" in table_json and any(table_json["col_widths"]): + print(" 设置列宽...") + for col_idx, width in enumerate(table_json["col_widths"]): + if width is not None: + # 将英寸转换为Twips(1英寸=1440 Twips) + twips_width = int(width * 1440) + for cell in table.columns[col_idx].cells: + tc = cell._tc + tcPr = tc.get_or_add_tcPr() + tcW = tcPr.first_child_found_in("w:tcW") + if tcW is None: + tcW = OxmlElement('w:tcW') + tcPr.append(tcW) + tcW.set(qn('w:w'), str(twips_width)) + tcW.set(qn('w:type'), 'dxa') # 使用绝对单位 + + # 设置行高 + if "row_heights" in table_json and any(table_json["row_heights"]): + print(" 设置行高...") + for row_idx, height in enumerate(table_json["row_heights"]): + if height is not None: + # 将英寸转换为Twips(1英寸=1440 Twips) + twips_height = int(height * 1440) + tr = table.rows[row_idx]._tr + trPr = tr.get_or_add_trPr() + trHeight = OxmlElement('w:trHeight') + trHeight.set(qn('w:val'), str(twips_height)) + trHeight.set(qn('w:hRule'), 'atLeast') # 或'exact'表示固定高度 + trPr.append(trHeight) + + # 处理合并单元格 + for merge_idx, merge_info in enumerate(table_json.get("merged_cells", []), 1): + start_row = merge_info["start_row"] + start_col = merge_info["start_col"] + end_row = merge_info["end_row"] + end_col = merge_info["end_col"] + + print(f" 合并单元格 #{merge_idx}: 从({start_row},{start_col})到({end_row},{end_col})") + + start_cell = table.cell(start_row, start_col) + end_cell = table.cell(end_row, end_col) + start_cell.merge(end_cell) + + # 填充表格内容 + for row_idx, row_data in enumerate(table_json["cells"]): + for col_idx, cell_data in enumerate(row_data): + # 跳过被合并的非主单元格 + if cell_data["is_merged"] and not cell_data["merge_info"]["is_primary"]: + print(f" 跳过被合并的单元格({row_idx},{col_idx})") + continue + + cell = table.cell(cell_data["row"], cell_data["col"]) + print(f" 处理单元格({row_idx},{col_idx}) - 对齐: {cell_data['alignment']}") + format_cell(cell, cell_data) # 统一设置单元格格式 + +def format_cell(cell, cell_data): + """设置单元格完整格式""" + # 清空原有内容 + for p in cell.paragraphs: + p._element.getparent().remove(p._element) + + # 添加内容 + for para in cell_data["content"]: + add_paragraph_from_json(cell, para) + + # 设置对齐方式 + set_cell_alignment(cell, cell_data) + + # 设置边框 + set_cell_border(cell, cell_data["border"]) + + # 设置背景色 + if cell_data.get("shading"): + set_cell_shading(cell, cell_data["shading"]) + + # 设置边距 + if cell_data.get("margins"): + set_cell_margins(cell, cell_data["margins"]) + +def set_cell_alignment(cell, cell_data): + """设置单元格对齐(水平和垂直)""" + # 水平对齐 + if cell.paragraphs: + align_map = { + "left": WD_ALIGN_PARAGRAPH.LEFT, + "center": WD_ALIGN_PARAGRAPH.CENTER, + "right": WD_ALIGN_PARAGRAPH.RIGHT, + "justify": WD_ALIGN_PARAGRAPH.JUSTIFY + } + cell.paragraphs[0].alignment = align_map.get(cell_data["alignment"], WD_ALIGN_PARAGRAPH.LEFT) + + # 垂直对齐设置 + tcPr = cell._tc.get_or_add_tcPr() + vAlign = OxmlElement('w:vAlign') + align_value = cell_data.get('vertical_align', 'top') + print(f" 设置垂直对齐: {align_value}") + + # 确保使用有效的对齐值 + valid_alignments = ['top', 'center', 'bottom'] + if align_value not in valid_alignments: + align_value = 'top' # 默认值 + + vAlign.set(qn('w:val'), align_value) + tcPr.append(vAlign) + +def set_cell_shading(cell, shading): + """设置单元格背景色""" + tcPr = cell._tc.get_or_add_tcPr() + shd = OxmlElement('w:shd') + shd.set(qn('w:fill'), shading["color"]) + if shading.get("theme"): + shd.set(qn('w:themeColor'), shading["theme"]) + tcPr.append(shd) + +def set_cell_margins(cell, margins): + """设置单元格边距""" + tcPr = cell._tc.get_or_add_tcPr() + tcMar = OxmlElement('w:tcMar') + + for side, margin in margins.items(): + side_el = OxmlElement(f'w:{side}') + side_el.set(qn('w:w'), margin["w"]) + side_el.set(qn('w:type'), margin["type"]) + tcMar.append(side_el) + + tcPr.append(tcMar) + +def set_cell_border(cell, border_data): + """ + 设置单元格边框 + :param cell: 单元格对象 + :param border_data: 边框数据 + """ + tc = cell._tc + tcPr = tc.get_or_add_tcPr() + + # 检查是否存在边框元素,不存在则创建 + tcBorders = tcPr.first_child_found_in("w:tcBorders") + if tcBorders is None: + tcBorders = OxmlElement('w:tcBorders') + tcPr.append(tcBorders) + + # 设置各边边框 + for side in ['top', 'left', 'bottom', 'right']: + if side in border_data: + border = border_data[side] + border_el = OxmlElement(f'w:{side}') + border_el.set(qn('w:val'), border.get('style', 'single')) + border_el.set(qn('w:sz'), str(border.get('size', 4))) + border_el.set(qn('w:color'), border.get('color', '000000')) + tcBorders.append(border_el) + +# 使用示例 +if __name__ == "__main__": + # 假设我们已经有了之前生成的JSON数据 + input_json = "output.json" + output_path = "restored.docx" + + print(f"从 {input_json} 读取JSON数据...") + with open(input_json, "r", encoding="utf-8") as f: + json_data = json.load(f) + + # 将JSON转换回DOCX + json_to_docx(json_data, output_path) diff --git a/json2docx_docx2json/output.json b/json2docx_docx2json/output.json new file mode 100644 index 0000000..d8ed31b --- /dev/null +++ b/json2docx_docx2json/output.json @@ -0,0 +1,14517 @@ +[ + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "right", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "justify", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "jia_company_namefengchang_name", + "font": { + "name": "宋体", + "size": 16.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "jizu_hao", + "font": { + "name": "宋体", + "size": 16.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "机组3支叶片检查报告", + "font": { + "name": "宋体", + "size": 16.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "编制:", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "bianzhi_renyuan", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "审核:", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "shenghe_renyuan", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "批准:", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "pizhun_renyuan", + "font": { + "name": "Calibri", + "size": 12.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 11, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "日期:", + "font": { + "name": "宋体", + "size": 14.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "bianzhi_riqi", + "font": { + "name": "宋体", + "size": 14.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "金风科技股份有限公司", + "font": { + "name": "黑体", + "size": 15.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "智慧能源服务-再制造服务", + "font": { + "name": "Calibri", + "size": 15.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "right", + "runs": [ + { + "text": "", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "http://www.goldwind.com.cn", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Hyperlink", + "has_page_break": false + }, + { + "text": "", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "left", + "runs": [ + { + "text": "\t", + "font": { + "name": "Arial", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "right", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "center", + "runs": [ + { + "text": "jia_company_namefengchang_namejizu_hao", + "font": { + "name": "宋体", + "size": 15.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "机组3支叶片检查报告", + "font": { + "name": "宋体", + "size": 15.0, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "text", + "content": { + "alignment": "left", + "runs": [ + { + "text": "报告编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + }, + { + "type": "table", + "content": { + "rows": 23, + "cols": 10, + "cells": [ + [ + { + "row": 0, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + }, + { + "row": 0, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "0,0-0,9" + } + } + ], + [ + { + "row": 1, + "col": 0, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 1, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 2, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 3, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 4, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 5, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 6, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 7, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 8, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + }, + { + "row": 1, + "col": 9, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "1,0-1,9" + } + } + ], + [ + { + "row": 2, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "风场名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 2, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "_name", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "2,1-2,3" + } + }, + { + "row": 2, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "_name", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,1-2,3" + } + }, + { + "row": 2, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "_name", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,1-2,3" + } + }, + { + "row": 2, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "风场地址", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "2,4-2,5" + } + }, + { + "row": 2, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "风场地址", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,4-2,5" + } + }, + { + "row": 2, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang_location", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "2,6-2,9" + } + }, + { + "row": 2, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang_location", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,6-2,9" + } + }, + { + "row": 2, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang_location", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,6-2,9" + } + }, + { + "row": 2, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang_location", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "2,6-2,9" + } + } + ], + [ + { + "row": 3, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "客户名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "3,0-5,0" + } + }, + { + "row": 3, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "3,1-5,3" + } + }, + { + "row": 3, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 3, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 3, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "装机数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "3,4-3,5" + } + }, + { + "row": 3, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "装机数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,4-3,5" + } + }, + { + "row": 3, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "xiangmuguige", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "3,6-3,9" + } + }, + { + "row": 3, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "xiangmuguige", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,6-3,9" + } + }, + { + "row": 3, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "xiangmuguige", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,6-3,9" + } + }, + { + "row": 3, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "xiangmuguige", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,6-3,9" + } + } + ], + [ + { + "row": 4, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "客户名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,0-5,0" + } + }, + { + "row": 4, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 4, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 4, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 4, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "4,4-4,5" + } + }, + { + "row": 4, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "4,4-4,5" + } + }, + { + "row": 4, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "4,6-4,9" + } + }, + { + "row": 4, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "4,6-4,9" + } + }, + { + "row": 4, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "4,6-4,9" + } + }, + { + "row": 4, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "4,6-4,9" + } + } + ], + [ + { + "row": 5, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "客户名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,0-5,0" + } + }, + { + "row": 5, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 5, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 5, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "3,1-5,3" + } + }, + { + "row": 5, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "5,4-5,5" + } + }, + { + "row": 5, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "5,4-5,5" + } + }, + { + "row": 5, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yezhu_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "5,6-5,9" + } + }, + { + "row": 5, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yezhu_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "5,6-5,9" + } + }, + { + "row": 5, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yezhu_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "5,6-5,9" + } + }, + { + "row": 5, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yezhu_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "5,6-5,9" + } + } + ], + [ + { + "row": 6, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工单位", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "6,0-9,0" + } + }, + { + "row": 6, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "6,1-9,3" + } + }, + { + "row": 6, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 6, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 6, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "6,4-6,5" + } + }, + { + "row": 6, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,4-6,5" + } + }, + { + "row": 6, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1台", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "6,6-6,9" + } + }, + { + "row": 6, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1台", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,6-6,9" + } + }, + { + "row": 6, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1台", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,6-6,9" + } + }, + { + "row": 6, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1台", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,6-6,9" + } + } + ], + [ + { + "row": 7, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工单位", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,0-9,0" + } + }, + { + "row": 7, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 7, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 7, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 7, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工日期(开始~结束)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "7,4-7,5" + } + }, + { + "row": 7, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工日期(开始~结束)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "7,4-7,5" + } + }, + { + "row": 7, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_date", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "7,6-7,9" + } + }, + { + "row": 7, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_date", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "7,6-7,9" + } + }, + { + "row": 7, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_date", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "7,6-7,9" + } + }, + { + "row": 7, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_date", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "7,6-7,9" + } + } + ], + [ + { + "row": 8, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工单位", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,0-9,0" + } + }, + { + "row": 8, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 8, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 8, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 8, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "8,4-8,5" + } + }, + { + "row": 8, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "8,4-8,5" + } + }, + { + "row": 8, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "8,6-8,9" + } + }, + { + "row": 8, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "8,6-8,9" + } + }, + { + "row": 8, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "8,6-8,9" + } + }, + { + "row": 8, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "8,6-8,9" + } + } + ], + [ + { + "row": 9, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工单位", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,0-9,0" + } + }, + { + "row": 9, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 9, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 9, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "6,1-9,3" + } + }, + { + "row": 9, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "9,4-9,5" + } + }, + { + "row": 9, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "9,4-9,5" + } + }, + { + "row": 9, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "9,6-9,9" + } + }, + { + "row": 9, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "9,6-9,9" + } + }, + { + "row": 9, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "9,6-9,9" + } + }, + { + "row": 9, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "9,6-9,9" + } + } + ], + [ + { + "row": 10, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "整机厂家", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 10, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "zhengji_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "10,1-10,3" + } + }, + { + "row": 10, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "zhengji_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,1-10,3" + } + }, + { + "row": 10, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "zhengji_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,1-10,3" + } + }, + { + "row": 10, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "机型", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "10,4-10,5" + } + }, + { + "row": 10, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "机型", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,4-10,5" + } + }, + { + "row": 10, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jizhu_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "10,6-10,9" + } + }, + { + "row": 10, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jizhu_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,6-10,9" + } + }, + { + "row": 10, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jizhu_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,6-10,9" + } + }, + { + "row": 10, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jizhu_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "10,6-10,9" + } + } + ], + [ + { + "row": 11, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片厂家", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 11, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "11,1-11,3" + } + }, + { + "row": 11, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,1-11,3" + } + }, + { + "row": 11, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,1-11,3" + } + }, + { + "row": 11, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片型号", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "11,4-11,5" + } + }, + { + "row": 11, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片型号", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,4-11,5" + } + }, + { + "row": 11, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "11,6-11,9" + } + }, + { + "row": 11, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,6-11,9" + } + }, + { + "row": 11, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,6-11,9" + } + }, + { + "row": 11, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "11,6-11,9" + } + } + ], + [ + { + "row": 12, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 12, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + }, + { + "row": 12, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "12,1-12,9" + } + } + ], + [ + { + "row": 13, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "巡检人员", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 13, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + }, + { + "row": 13, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "13,1-13,9" + } + } + ], + [ + { + "row": 14, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + }, + { + "row": 14, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "14,0-14,9" + } + } + ], + [ + { + "row": 15, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "序号", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 15, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 15, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤等级", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "15,2-15,3" + } + }, + { + "row": 15, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤等级", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "15,2-15,3" + } + }, + { + "row": 15, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤数量", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 15, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "处理建议", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "15,5-15,8" + } + }, + { + "row": 15, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "处理建议", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "15,5-15,8" + } + }, + { + "row": 15, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "处理建议", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "15,5-15,8" + } + }, + { + "row": 15, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "处理建议", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "15,5-15,8" + } + }, + { + "row": 15, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "备注(是否处理完成)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + } + ], + [ + { + "row": 16, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 16, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 16, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "16,2-16,3" + } + }, + { + "row": 16, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "16,2-16,3" + } + }, + { + "row": 16, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 16, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "16,5-16,8" + } + }, + { + "row": 16, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "16,5-16,8" + } + }, + { + "row": 16, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "16,5-16,8" + } + }, + { + "row": 16, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "16,5-16,8" + } + }, + { + "row": 16, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + } + ], + [ + { + "row": 17, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + }, + { + "row": 17, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "17,0-17,9" + } + } + ], + [ + { + "row": 18, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "机组号", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 18, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片编号", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 18, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "名称", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 18, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损坏描述", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "18,3-18,6" + } + }, + { + "row": 18, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损坏描述", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "18,3-18,6" + } + }, + { + "row": 18, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损坏描述", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "18,3-18,6" + } + }, + { + "row": 18, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损坏描述", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "18,3-18,6" + } + }, + { + "row": 18, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "面积/S", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 18, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "备注", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "18,8-18,9" + } + }, + { + "row": 18, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "备注", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "18,8-18,9" + } + } + ], + [ + { + "row": 19, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "B1(31201)#", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 19, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 19, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 19, + "col": 3, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "19,3-19,6" + } + }, + { + "row": 19, + "col": 4, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "19,3-19,6" + } + }, + { + "row": 19, + "col": 5, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "19,3-19,6" + } + }, + { + "row": 19, + "col": 6, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "left", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "19,3-19,6" + } + }, + { + "row": 19, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 19, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "19,8-19,9" + } + }, + { + "row": 19, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "19,8-19,9" + } + } + ], + [ + { + "row": 20, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + }, + { + "row": 20, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "20,0-20,9" + } + } + ], + [ + { + "row": 21, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "序号", + "font": { + "name": "Calibri", + "size": 11.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 21, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "工器具名称", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 21, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "型号规格", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "21,2-21,3" + } + }, + { + "row": 21, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "型号规格", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "21,2-21,3" + } + }, + { + "row": 21, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "数量", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 21, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "用途", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "21,5-21,8" + } + }, + { + "row": 21, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "用途", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "21,5-21,8" + } + }, + { + "row": 21, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "用途", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "21,5-21,8" + } + }, + { + "row": 21, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "用途", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "21,5-21,8" + } + }, + { + "row": 21, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "备注", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + } + ], + [ + { + "row": 22, + "col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 22, + "col": 1, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "大疆无人机", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 22, + "col": 2, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "M30", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "22,2-22,3" + } + }, + { + "row": 22, + "col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "M30", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "22,2-22,3" + } + }, + { + "row": 22, + "col": 4, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + }, + { + "row": 22, + "col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "拍照记录", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": true, + "merge_range": "22,5-22,8" + } + }, + { + "row": 22, + "col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "拍照记录", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "22,5-22,8" + } + }, + { + "row": 22, + "col": 7, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "拍照记录", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "22,5-22,8" + } + }, + { + "row": 22, + "col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "拍照记录", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": true, + "merge_info": { + "is_primary": false, + "merge_range": "22,5-22,8" + } + }, + { + "row": 22, + "col": 9, + "content": [ + { + "alignment": "center", + "runs": [] + } + ], + "alignment": "center", + "vertical_align": "center", + "border": { + "top": { + "style": "single", + "size": 4, + "color": "000000" + }, + "bottom": { + "style": "single", + "size": 4, + "color": "000000" + }, + "left": { + "style": "single", + "size": 4, + "color": "000000" + }, + "right": { + "style": "single", + "size": 4, + "color": "000000" + } + }, + "shading": null, + "margins": null, + "is_merged": false, + "merge_info": null + } + ] + ], + "merged_cells": [ + { + "start_row": 0, + "start_col": 0, + "end_row": 0, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工信息", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 1, + "start_col": 0, + "end_row": 1, + "end_col": 9, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "任务编号:", + "font": { + "name": "宋体", + "size": 10.5, + "bold": true, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 2, + "start_col": 1, + "end_row": 2, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + }, + { + "text": "_name", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 2, + "start_col": 4, + "end_row": 2, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "风场地址", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 2, + "start_col": 6, + "end_row": 2, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "fengchang_location", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 3, + "start_col": 0, + "end_row": 5, + "end_col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "客户名称", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 3, + "start_col": 1, + "end_row": 5, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 3, + "start_col": 4, + "end_row": 3, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "装机数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 3, + "start_col": 6, + "end_row": 3, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "xiangmuguige", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 4, + "start_col": 4, + "end_row": 4, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 4, + "start_col": 6, + "end_row": 4, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "kehu_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 5, + "start_col": 4, + "end_row": 5, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 5, + "start_col": 6, + "end_row": 5, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yezhu_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 6, + "start_col": 0, + "end_row": 9, + "end_col": 0, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工单位", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 6, + "start_col": 1, + "end_row": 9, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_company", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 6, + "start_col": 4, + "end_row": 6, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "数量(台)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 6, + "start_col": 6, + "end_row": 6, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "1台", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 7, + "start_col": 4, + "end_row": 7, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "施工日期(开始~结束)", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 7, + "start_col": 6, + "end_row": 7, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_date", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 8, + "start_col": 4, + "end_row": 8, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "负责人", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 8, + "start_col": 6, + "end_row": 8, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_fuzeren", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 9, + "start_col": 4, + "end_row": 9, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "联系方式", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 9, + "start_col": 6, + "end_row": 9, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "shigong_phone", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 10, + "start_col": 1, + "end_row": 10, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "zhengji_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 10, + "start_col": 4, + "end_row": 10, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "机型", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 10, + "start_col": 6, + "end_row": 10, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jizhu_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 11, + "start_col": 1, + "end_row": 11, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_changjia", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 11, + "start_col": 4, + "end_row": 11, + "end_col": 5, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片型号", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 11, + "start_col": 6, + "end_row": 11, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "yepian_type", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 12, + "start_col": 1, + "end_row": 12, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_fangshi", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 13, + "start_col": 1, + "end_row": 13, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "jiancha_renyuan", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 14, + "start_col": 0, + "end_row": 14, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "检查故障汇总", + "font": { + "name": "宋体", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 15, + "start_col": 2, + "end_row": 15, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损伤等级", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 15, + "start_col": 5, + "end_row": 15, + "end_col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "处理建议", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 16, + "start_col": 2, + "end_row": 16, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 16, + "start_col": 5, + "end_row": 16, + "end_col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 17, + "start_col": 0, + "end_row": 17, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "叶片故障信息表", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 18, + "start_col": 3, + "end_row": 18, + "end_col": 6, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "损坏描述", + "font": { + "name": "Calibri", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 18, + "start_col": 8, + "end_row": 18, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "备注", + "font": { + "name": "Calibri", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 19, + "start_col": 3, + "end_row": 19, + "end_col": 6, + "content": [ + { + "alignment": "left", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 19, + "start_col": 8, + "end_row": 19, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "/", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 20, + "start_col": 0, + "end_row": 20, + "end_col": 9, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "使用工器具记录", + "font": { + "name": "Calibri", + "size": 10.5, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 21, + "start_col": 2, + "end_row": 21, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "型号规格", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 21, + "start_col": 5, + "end_row": 21, + "end_col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "用途", + "font": { + "name": "宋体", + "size": 10.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 22, + "start_col": 2, + "end_row": 22, + "end_col": 3, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "M30", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + }, + { + "start_row": 22, + "start_col": 5, + "end_row": 22, + "end_col": 8, + "content": [ + { + "alignment": "center", + "runs": [ + { + "text": "拍照记录", + "font": { + "name": "宋体", + "size": 9.0, + "bold": false, + "italic": null, + "underline": null, + "color": null + }, + "style": "Default Paragraph Font", + "has_page_break": false + } + ] + } + ] + } + ], + "row_heights": [ + 0.3034722222222222, + 0.2833333333333333, + 0.10138888888888889, + 0.0625, + 0.0625, + 0.0625, + 0.0625, + 0.0625, + 0.0625, + 0.2833333333333333, + 0.2833333333333333, + 0.2833333333333333, + 0.2833333333333333, + 0.2833333333333333, + 0.2833333333333333, + 0.5583333333333333, + 0.23541666666666666, + 0.2833333333333333, + 0.33125, + 0.2833333333333333, + 0.2833333333333333, + 0.0625, + 0.2923611111111111 + ], + "col_widths": [ + 0.7604166666666666, + 1.0520833333333333, + 0.875, + 0.23958333333333334, + 0.9305555555555556, + 0.4152777777777778, + 0.5083333333333333, + 1.1520833333333333, + 0.05625, + 0.8541666666666666 + ] + } + }, + { + "type": "text", + "content": { + "alignment": "justify", + "runs": [] + } + }, + { + "type": "text", + "content": { + "alignment": "left", + "runs": [] + } + } +] \ No newline at end of file diff --git a/json2docx_docx2json/restored.docx b/json2docx_docx2json/restored.docx new file mode 100644 index 0000000..4bafb02 Binary files /dev/null and b/json2docx_docx2json/restored.docx differ diff --git a/json2docx_docx2json/source.docx b/json2docx_docx2json/source.docx new file mode 100644 index 0000000..832dc57 Binary files /dev/null and b/json2docx_docx2json/source.docx differ diff --git a/json2docx_docx2json/查找分页符.py b/json2docx_docx2json/查找分页符.py new file mode 100644 index 0000000..3269f57 --- /dev/null +++ b/json2docx_docx2json/查找分页符.py @@ -0,0 +1,41 @@ +from docx import Document +from docx.enum.text import WD_BREAK +import docx.oxml.shared as oxml + +def find_and_mark_page_breaks(input_path, output_path): + """ + 功能:检测文档中的分页符并在原位置添加标记 + + 参数: + input_path: 输入文档路径 + output_path: 输出文档路径 + """ + doc = Document(input_path) + + # 遍历所有段落 + for paragraph in doc.paragraphs: + # 遍历段落中的所有runs + for run in paragraph.runs: + # 检查run的XML中是否包含分页符 + if has_page_break(run): + print(f"发现分页符 - 段落内容: '{paragraph.text}'") + + # 在原位置添加可见标记(可选) + run.text = run.text.replace("\x0c", "[PAGE BREAK]") + + # 如果要保留原分页符并添加新分页符 + run.add_break(WD_BREAK.PAGE) + + # 保存修改后的文档 + doc.save(output_path) + print(f"处理完成,结果已保存到: {output_path}") + +def has_page_break(run): + """检查run是否包含分页符""" + xml = run._element.xml + return ('w:br' in xml and 'type="page"' in xml) or '\x0c' in run.text + +# 使用示例 +input_file = "source.docx" +output_file = "output_with_marks.docx" +find_and_mark_page_breaks(input_file, output_file) \ No newline at end of file diff --git a/json2docx_docx2json/(1122016001)[2025]D-3A0010三峡新能源海上风电运维江苏有限公司牟平海上风电场雷电防护装置检测91320982MA1T6N9LXJ (1).docx b/json2docx_docx2json/(1122016001)[2025]D-3A0010三峡新能源海上风电运维江苏有限公司牟平海上风电场雷电防护装置检测91320982MA1T6N9LXJ (1).docx new file mode 100644 index 0000000..d3064c9 Binary files /dev/null and b/json2docx_docx2json/(1122016001)[2025]D-3A0010三峡新能源海上风电运维江苏有限公司牟平海上风电场雷电防护装置检测91320982MA1T6N9LXJ (1).docx differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/人孔盖板完好.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/人孔盖板完好.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/人孔盖板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/前缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/前缘透光情况.jpg new file mode 100644 index 0000000..61fd171 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/前缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶根挡板完好.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶根挡板完好.jpg new file mode 100644 index 0000000..be42d89 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶根挡板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片前缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片前缘壳体表面完好.jpg new file mode 100644 index 0000000..e5c69e4 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片前缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片后缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片后缘壳体表面完好.jpg new file mode 100644 index 0000000..57b4da3 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片后缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片铭牌缺失.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片铭牌缺失.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/叶片铭牌缺失.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/后缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/后缘透光情况.jpg new file mode 100644 index 0000000..10b7d94 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/后缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/导雷卡缺失.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/导雷卡缺失.jpg new file mode 100644 index 0000000..928a7ec Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/导雷卡缺失.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内汇总/腹板粘接完好.jpg b/测试数据/报告图片测试数据/1L-3-1#/内汇总/腹板粘接完好.jpg new file mode 100644 index 0000000..d01226f Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内汇总/腹板粘接完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..928a7ec Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶尖7m处,涂层损伤玻璃钢壳体露出,缺陷尺寸弦向200mm,轴向1m。DJI_20250319160137_0121_Z.jpg b/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶尖7m处,涂层损伤玻璃钢壳体露出,缺陷尺寸弦向200mm,轴向1m。DJI_20250319160137_0121_Z.jpg new file mode 100644 index 0000000..481f30d Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶尖7m处,涂层损伤玻璃钢壳体露出,缺陷尺寸弦向200mm,轴向1m。DJI_20250319160137_0121_Z.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶根9m处,涂层损伤,缺陷尺寸弦向200mm,轴向2.5m。DJI_20250319155946_0083_Z.jpg b/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶根9m处,涂层损伤,缺陷尺寸弦向200mm,轴向2.5m。DJI_20250319155946_0083_Z.jpg new file mode 100644 index 0000000..4ded4dd Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/压缩图片/1L-3-1#,叶片前缘距叶根9m处,涂层损伤,缺陷尺寸弦向200mm,轴向2.5m。DJI_20250319155946_0083_Z.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(叶尖).jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(叶尖).jpg new file mode 100644 index 0000000..6f18ac6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(叶尖).jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(最大弦长).jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(最大弦长).jpg new file mode 100644 index 0000000..07e9e52 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/PS面(最大弦长).jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(叶尖).jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(叶尖).jpg new file mode 100644 index 0000000..25bbda6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(叶尖).jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(最大弦长).jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(最大弦长).jpg new file mode 100644 index 0000000..a8ee40e Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/SS面(最大弦长).jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/test1.jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/test1.jpg new file mode 100644 index 0000000..a653ef8 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/test1.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/前缘局部.jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/前缘局部.jpg new file mode 100644 index 0000000..d91b3ff Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/前缘局部.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外汇总/后缘局部.jpg b/测试数据/报告图片测试数据/1L-3-1#/外汇总/后缘局部.jpg new file mode 100644 index 0000000..140c95b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外汇总/后缘局部.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/1_涂层损伤_叶尖3m_2m_一般_紧急_一般_尽快打磨维修.jpg b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/1_涂层损伤_叶尖3m_2m_一般_紧急_一般_尽快打磨维修.jpg new file mode 100644 index 0000000..349b30d Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/1_涂层损伤_叶尖3m_2m_一般_紧急_一般_尽快打磨维修.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/2_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/2_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg new file mode 100644 index 0000000..39b5b4d Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/2_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/3_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/3_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg new file mode 100644 index 0000000..dfab837 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/3_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/4_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/4_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg new file mode 100644 index 0000000..0bf9cc1 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/外缺陷图/4_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/内部检测导线线阻_0.466Ω.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/内部检测导线线阻_0.466Ω.jpg new file mode 100644 index 0000000..b6e5030 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/内部检测导线线阻_0.466Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖测试点位.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖测试点位.jpg new file mode 100644 index 0000000..c82b6d6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖至塔基导通阻值_204mΩ.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖至塔基导通阻值_204mΩ.jpg new file mode 100644 index 0000000..da39e25 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/叶尖至塔基导通阻值_204mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/外部检测导线线阻_0.325Ω.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/外部检测导线线阻_0.325Ω.jpg new file mode 100644 index 0000000..53e0380 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/外部检测导线线阻_0.325Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂测试点位.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂测试点位.jpg new file mode 100644 index 0000000..c40481a Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂至塔基导通阻值_169mΩ.jpg b/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂至塔基导通阻值_169mΩ.jpg new file mode 100644 index 0000000..dc36312 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-1#/防汇总/轮毂至塔基导通阻值_169mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/人孔盖板完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/人孔盖板完好.jpg new file mode 100644 index 0000000..54120cd Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/人孔盖板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/前缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/前缘透光情况.jpg new file mode 100644 index 0000000..cb54a9b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/前缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶根挡板完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶根挡板完好.jpg new file mode 100644 index 0000000..16d1add Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶根挡板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片前缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片前缘壳体表面完好.jpg new file mode 100644 index 0000000..18f5c6f Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片前缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片后缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片后缘壳体表面完好.jpg new file mode 100644 index 0000000..02a129c Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片后缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片铭牌完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片铭牌完好.jpg new file mode 100644 index 0000000..72d9760 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/叶片铭牌完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/后缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/后缘透光情况.jpg new file mode 100644 index 0000000..54d1ff6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/后缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/导雷卡缺失.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/导雷卡缺失.jpg new file mode 100644 index 0000000..9ce8ed4 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/导雷卡缺失.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内汇总/腹板粘接完好.jpg b/测试数据/报告图片测试数据/1L-3-2#/内汇总/腹板粘接完好.jpg new file mode 100644 index 0000000..1663c7b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内汇总/腹板粘接完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..928a7ec Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片1.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片1.jpg new file mode 100644 index 0000000..07e9e52 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片1.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片2.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片2.jpg new file mode 100644 index 0000000..a8ee40e Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片2.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片3.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片3.jpg new file mode 100644 index 0000000..6f18ac6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片3.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片4.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片4.jpg new file mode 100644 index 0000000..25bbda6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片4.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片5.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片5.jpg new file mode 100644 index 0000000..d91b3ff Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片5.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片6.jpg b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片6.jpg new file mode 100644 index 0000000..140c95b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外汇总/图片6.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg b/测试数据/报告图片测试数据/1L-3-2#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg new file mode 100644 index 0000000..311461f Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/内部检测导线线阻_0.466Ω.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/内部检测导线线阻_0.466Ω.jpg new file mode 100644 index 0000000..c451889 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/内部检测导线线阻_0.466Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖测试点位.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖测试点位.jpg new file mode 100644 index 0000000..1a6994c Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖至塔基导通阻值_219mΩ.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖至塔基导通阻值_219mΩ.jpg new file mode 100644 index 0000000..e3cc015 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/叶尖至塔基导通阻值_219mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/外部检测导线线阻_0.325Ω.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/外部检测导线线阻_0.325Ω.jpg new file mode 100644 index 0000000..41985de Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/外部检测导线线阻_0.325Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂测试点位.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂测试点位.jpg new file mode 100644 index 0000000..272ac8f Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂至塔基导通阻值_166mΩ.jpg b/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂至塔基导通阻值_166mΩ.jpg new file mode 100644 index 0000000..d7ef40b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-2#/防汇总/轮毂至塔基导通阻值_166mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/人孔盖板完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/人孔盖板完好.jpg new file mode 100644 index 0000000..8232546 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/人孔盖板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/前缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/前缘透光情况.jpg new file mode 100644 index 0000000..281f23e Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/前缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶根挡板完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶根挡板完好.jpg new file mode 100644 index 0000000..1931511 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶根挡板完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片前缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片前缘壳体表面完好.jpg new file mode 100644 index 0000000..7237c4e Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片前缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片后缘壳体表面完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片后缘壳体表面完好.jpg new file mode 100644 index 0000000..35bc727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片后缘壳体表面完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片铭牌完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片铭牌完好.jpg new file mode 100644 index 0000000..d5256aa Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/叶片铭牌完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/后缘透光情况.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/后缘透光情况.jpg new file mode 100644 index 0000000..f57ae99 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/后缘透光情况.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/导雷卡缺失.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/导雷卡缺失.jpg new file mode 100644 index 0000000..b61f8f1 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/导雷卡缺失.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内汇总/腹板粘接完好.jpg b/测试数据/报告图片测试数据/1L-3-3#/内汇总/腹板粘接完好.jpg new file mode 100644 index 0000000..c73181c Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内汇总/腹板粘接完好.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..928a7ec Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg b/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/内缺陷图/2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片1.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片1.jpg new file mode 100644 index 0000000..07e9e52 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片1.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片2.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片2.jpg new file mode 100644 index 0000000..a8ee40e Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片2.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片3.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片3.jpg new file mode 100644 index 0000000..6f18ac6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片3.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片4.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片4.jpg new file mode 100644 index 0000000..25bbda6 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片4.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片5.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片5.jpg new file mode 100644 index 0000000..d91b3ff Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片5.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片6.jpg b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片6.jpg new file mode 100644 index 0000000..140c95b Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外汇总/图片6.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg b/测试数据/报告图片测试数据/1L-3-3#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg new file mode 100644 index 0000000..311461f Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/外缺陷图/1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/内部检测导线线阻_0.466Ω.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/内部检测导线线阻_0.466Ω.jpg new file mode 100644 index 0000000..a1e8df5 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/内部检测导线线阻_0.466Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖测试点位.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖测试点位.jpg new file mode 100644 index 0000000..0012fdb Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖至塔基导通阻值_242mΩ.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖至塔基导通阻值_242mΩ.jpg new file mode 100644 index 0000000..6f92eeb Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/叶尖至塔基导通阻值_242mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/外部检测导线线阻_0.325Ω.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/外部检测导线线阻_0.325Ω.jpg new file mode 100644 index 0000000..24ccc8c Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/外部检测导线线阻_0.325Ω.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂测试点位.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂测试点位.jpg new file mode 100644 index 0000000..df468ab Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂测试点位.jpg differ diff --git a/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂至塔基导通阻值_187mΩ.jpg b/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂至塔基导通阻值_187mΩ.jpg new file mode 100644 index 0000000..e0db361 Binary files /dev/null and b/测试数据/报告图片测试数据/1L-3-3#/防汇总/轮毂至塔基导通阻值_187mΩ.jpg differ diff --git a/测试数据/报告图片测试数据/Tatong.jpg b/测试数据/报告图片测试数据/Tatong.jpg new file mode 100644 index 0000000..2360ba3 Binary files /dev/null and b/测试数据/报告图片测试数据/Tatong.jpg differ diff --git a/测试数据/报告图片测试数据/merged_thumbnail.jpg b/测试数据/报告图片测试数据/merged_thumbnail.jpg new file mode 100644 index 0000000..2ffd89a Binary files /dev/null and b/测试数据/报告图片测试数据/merged_thumbnail.jpg differ diff --git a/测试数据/报告模板测试目录/封面/外部封面1.docx b/测试数据/报告模板测试目录/封面/外部封面1.docx new file mode 100644 index 0000000..fc0e701 Binary files /dev/null and b/测试数据/报告模板测试目录/封面/外部封面1.docx differ diff --git a/测试数据/报告模板测试目录/封面/外部封面2.docx b/测试数据/报告模板测试目录/封面/外部封面2.docx new file mode 100644 index 0000000..c12fbf8 Binary files /dev/null and b/测试数据/报告模板测试目录/封面/外部封面2.docx differ diff --git a/测试数据/报告模板测试目录/封面/封面图片.jpg b/测试数据/报告模板测试目录/封面/封面图片.jpg new file mode 100644 index 0000000..0df9fd9 Binary files /dev/null and b/测试数据/报告模板测试目录/封面/封面图片.jpg differ diff --git a/测试数据/报告模板测试目录/报告表格模板/check2.docx b/测试数据/报告模板测试目录/报告表格模板/check2.docx new file mode 100644 index 0000000..64bc2f7 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/check2.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/check3.docx b/测试数据/报告模板测试目录/报告表格模板/check3.docx new file mode 100644 index 0000000..3a93523 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/check3.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/总结.docx b/测试数据/报告模板测试目录/报告表格模板/总结.docx new file mode 100644 index 0000000..76d7748 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/总结.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/成果递交表.docx b/测试数据/报告模板测试目录/报告表格模板/成果递交表.docx new file mode 100644 index 0000000..a36e983 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/成果递交表.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查信息表.docx b/测试数据/报告模板测试目录/报告表格模板/检查信息表.docx new file mode 100644 index 0000000..6c60b8f Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查信息表.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查内容表.docx b/测试数据/报告模板测试目录/报告表格模板/检查内容表.docx new file mode 100644 index 0000000..86b5452 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查内容表.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查情况汇总表.docx b/测试数据/报告模板测试目录/报告表格模板/检查情况汇总表.docx new file mode 100644 index 0000000..ce78dbc Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查情况汇总表.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查方案.docx b/测试数据/报告模板测试目录/报告表格模板/检查方案.docx new file mode 100644 index 0000000..b35dccc Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查方案.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查方案内容.docx b/测试数据/报告模板测试目录/报告表格模板/检查方案内容.docx new file mode 100644 index 0000000..5a2d8d5 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查方案内容.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查详情标题.docx b/测试数据/报告模板测试目录/报告表格模板/检查详情标题.docx new file mode 100644 index 0000000..382514d Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查详情标题.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/检查详情表.docx b/测试数据/报告模板测试目录/报告表格模板/检查详情表.docx new file mode 100644 index 0000000..e79852d Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/检查详情表.docx differ diff --git a/测试数据/报告模板测试目录/报告表格模板/项目概括表.docx b/测试数据/报告模板测试目录/报告表格模板/项目概括表.docx new file mode 100644 index 0000000..ee39cf2 Binary files /dev/null and b/测试数据/报告模板测试目录/报告表格模板/项目概括表.docx differ diff --git a/测试数据/报告纯结果/result.txt b/测试数据/报告纯结果/result.txt new file mode 100644 index 0000000..86115fc --- /dev/null +++ b/测试数据/报告纯结果/result.txt @@ -0,0 +1,1148 @@ +Document C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docx created successfully +Source paragraph alignment: CENTER (1) +Source paragraph alignment: CENTER (1) +Source paragraph alignment: None +Source paragraph alignment: CENTER (1) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxC:\Users\VogelimKafig\Desktop\work\ģĿ¼\\ⲿ1.docxɹ +Picture C:\Users\VogelimKafig\Desktop\work\ģĿ¼\\ͼƬ.jpg added to C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docx +Source paragraph alignment: CENTER (1) +Source paragraph alignment: CENTER (1) +Source paragraph alignment: CENTER (1) +Source paragraph alignment: CENTER (1) +Source paragraph alignment: CENTER (1) +Source paragraph alignment: None +Source paragraph alignment: None +Source paragraph alignment: CENTER (1) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxC:\Users\VogelimKafig\Desktop\work\ģĿ¼\\ⲿ2.docxɹ +洴ɹ +Replaced 1 occurrence(s) of 'companyencode' with '׷H3-08#'. +Replaced 1 occurrence(s) of 'baogaoname1' with 'ҶƬ鱨'. +Replaced 1 occurrence(s) of 'baogaoname2' with 'ҶƬ鱨'. +Replaced 1 occurrence(s) of 'company_name_yi' with 'ҷ˾'. +Replaced 1 occurrence(s) of 'project' with '׷ŷ糡'. +Replaced 1 occurrence(s) of 'encode' with '׷H3-08#'. +Replaced 1 occurrence(s) of 'time' with 'һʮ'. +Replaced 1 occurrence(s) of 'bianzhi' with 'ɱԱ'. +Replaced 1 occurrence(s) of 'shenghe' with 'д(Ա)'. +Replaced 1 occurrence(s) of 'mianzhe_shengming' with 'ҶƬۡҶƬڲҶƬ׼'. +дɹ +ʼд +[0,1]д糡 +None 糡 +[0,3]д糡λ +None 糡λ +[1,1]д׷˾ +None ׷˾ +[1,3]дҷ˾ +None ҷ˾ +[2,3]д׷ˣޣ +None ׷ˣޣ +[3,4]дϵ绰18807109269 +None ϵ绰18807109269 +[4,1]дͺ +None ͺ +[4,4]дĿ̨ +None Ŀ̨ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +Replaced 1 occurrence(s) of 'num' with 'һ'. +Replaced 1 occurrence(s) of 'renyuan_peizhi' with '2ˣ1ˣ쳭1 +3ˣ챻ҵ1ˣҵ1ˣ豸Ա1 +1ˣԱ1ˣԱ1ˣ໤1ˡ +1ˣ1 +2ˣҵ2'. +Replaced 1 occurrence(s) of 'shebei_peizhi' with '1˻1ף΢ŷ1̨Ƶ¼ֻ1̨ +˵ϵͳ1ף+Ӵƽ̨΢ŷ1ףƵ¼ֻ1̨Խ2̨ +ӵص1סSPD1סԽ2 +1˻1̨M350rtkM300rtkM30TM304PRO2󽮾4PRO+A7R2+200-600mmͷ/150-600mmͷ +1˹飺豸2ףƵ¼ֻ2̨1̨綯2ף12ڻ˼飺ҵУ+Ƶͼ1ף豸2ף1̨綯2ף1'. +Replaced 1 occurrence(s) of 'shigong_fangan' with ''. +Replaced 1 occurrence(s) of 'gongzuo_neirong' with '˻ҶƬ׵ͨ +˵ҶƬͨԣ豸 +칫¥վ׽ӵؼ⼰ӿ +˻ҶƬѲ +ҶƬڲ'. +Replaced 1 occurrence(s) of 'beizhu' with ''. +Replaced 1 occurrence(s) of 'num' with ''. +None +ԭ2ڶеһ5ҪָΪ5 +2ѳɹд +ͼƬ·ȡͼƬ +ͼ +ͼô, ĿǰɣȥC:\Users\VogelimKafig\Desktop\work\ͼƬĿ¼ ɾ merged_thumbnail.jpg ͼƬ +C:\Users\VogelimKafig\Desktop\work\ͼƬ\Tatong.jpg +дɹ +ʼд +[0,1]д +None +[1,1]д20211210 +None 20211210 +[1,3]дH3-08# +None H3-08# +[2,1]дҶƬⲿ +None ҶƬⲿ +[2,3]дҵ˻ۼ +None ҵ˻ۼ +[3,2]дʱ²ϿƼɷ޹˾ +None ʱ²ϿƼɷ޹˾ +[4,1]д:H3-08# +None :H3-08# +[5,1]д1L-3-1# +None 1L-3-1# +[6,1]д1L-3-2# +None 1L-3-2# +[7,1]д1L-3-3# +None 1L-3-3# +[8,0]д뱾˻ⲿ߾ȷС˹ڲ㡢˹׼飬ɼҶƬͼƬ79ţݸ1L-3-1#1L-3-2#1L-3-3#֧ҶƬǰԵԵӭ桢档;1L-3-1#1L-3-2#1L-3-3#֧ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ...;ͨڲ衢ⲿ... +None ˻ⲿ߾ȷС˹ڲ㡢˹׼飬ɼҶƬͼƬ79ţݸ1L-3-1#1L-3-2#1L-3-3#֧ҶƬǰԵԵӭ桢档;1L-3-1#1L-3-2#1L-3-3#֧ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ...;ͨڲ衢ⲿ... +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\Tatong.jpg added to table 2 cell (4,2) +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\merged_thumbnail.jpg added to table 2 cell (8,0) +Replaced 1 occurrence(s) of 'num' with ''. +дɹ +ʼд +[0,1]д +None +[1,1]д +None +[1,3]д +None +[2,1]д20211210 +None 20211210 +[2,3]д9:00 +None 9:00 +[3,1]дɱԱ +None ɱԱ +[3,3]д20211210 +None 20211210 +[4,1]дɱԱ +None ɱԱ +[4,3]д20211210 +None 20211210 +[5,1]дд(Ա) +None д(Ա) +[5,3]дд() +None д() +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +Replaced 1 occurrence(s) of 'num' with ''. +дɹ +ʼд +[1,0]д1L-3-1#ȱ6 +None 1L-3-1#ȱ6 +[1,1]д1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +None 1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +[1,2]д1.1_Ϳ_Ҷ3m_2m_һ__һ_ĥά +2.2_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +3.3_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +4.4_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +5.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +6.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +None 1.1_Ϳ_Ҷ3m_2m_һ__һ_ĥά +2.2_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +3.3_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +4.4_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +5.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +6.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +[2,0]д1L-3-2#ȱ3 +None 1L-3-2#ȱ3 +[2,1]д1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +None 1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +[2,2]д1.1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +2.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +3.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +None 1.1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +2.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +3.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +[3,0]д1L-3-3#ȱ3 +None 1L-3-3#ȱ3 +[3,1]д1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +None 1.ҶƬǰԵԵPS桢SS +2.ҶƬڲ׿塢͸⡢˿׸ǰ桢Ҷǰ... +3.ͨڲ衢ⲿ... +[3,2]д1.1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +2.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +3.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +None 1.1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg +2.1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +3.2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +Replaced 1 occurrence(s) of 'num' with ''. +ͼƬ22 21 21 +Y1ݣ[['ҶƬ11L-3-1#', '', '']] +Y2ݣ[['ҶƬ21L-3-2#', '', '']] +Y3ݣ[['ҶƬ31L-3-3#', '', '']] +ǰΪ 5 +re.compile('ȱ||||') +дɹ +ʼд +[0,0]дҶƬ11L-3-1# +None ҶƬ11L-3-1# +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 6 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\PS棨Ҷ⣩.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\PS棨Ҷ⣩.jpg added to table 6 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\PS棨ҳ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\PS棨ҳ.jpg added to table 6 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\SS棨Ҷ⣩.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\SS棨Ҷ⣩.jpg added to table 6 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: PS棨Ҷ⣩ +ǰΪֱ(0,1)λò: PS棨ҳ +ǰΪֱ(0,2)λò: SS棨Ҷ⣩ +ǰ: [['PS棨Ҷ⣩', 'PS棨ҳ', 'SS棨Ҷ⣩']] +ǰΪ 7 +дɹ +ʼд +[0,0]дPS棨Ҷ⣩ +re.compile('ȱ||||') PS棨Ҷ⣩ +[0,1]дPS棨ҳ +re.compile('ȱ||||') PS棨ҳ +[0,2]дSS棨Ҷ⣩ +re.compile('ȱ||||') SS棨Ҷ⣩ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 8 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\SS棨ҳ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\SS棨ҳ.jpg added to table 8 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\test1.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\test1.jpg added to table 8 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ǰԵֲ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ǰԵֲ.jpg added to table 8 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: SS棨ҳ +ǰΪֱ(0,1)λò: test1 +ǰΪֱ(0,2)λò: ǰԵֲ +ǰ: [['SS棨ҳ', 'test1', 'ǰԵֲ']] +ǰΪ 9 +дɹ +ʼд +[0,0]дSS棨ҳ +re.compile('ȱ||||') SS棨ҳ +[0,1]дtest1 +re.compile('ȱ||||') test1 +[0,2]дǰԵֲ +re.compile('ȱ||||') ǰԵֲ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 10 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\Եֲ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\Եֲ.jpg added to table 10 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\˿׸ǰ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\˿׸ǰ.jpg added to table 10 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ǰԵ͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ǰԵ͸.jpg added to table 10 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: Եֲ +ǰΪֱ(0,1)λò: ˿׸ǰ +ǰΪֱ(0,2)λò: ǰԵ͸ +ǰ: [['Եֲ', '˿׸ǰ', 'ǰԵ͸']] +ǰΪ 11 +дɹ +ʼд +[0,0]дԵֲ +re.compile('ȱ||||') Եֲ +[0,1]д˿׸ǰ +re.compile('ȱ||||') ˿׸ǰ +[0,2]дǰԵ͸ +re.compile('ȱ||||') ǰԵ͸ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 12 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\Ҷ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\Ҷ.jpg added to table 12 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬǰԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬǰԵ.jpg added to table 12 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬԵ.jpg added to table 12 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: Ҷ +ǰΪֱ(0,1)λò: ҶƬǰԵ +ǰΪֱ(0,2)λò: ҶƬԵ +ǰ: [['Ҷ', 'ҶƬǰԵ', 'ҶƬԵ']] +ǰΪ 13 +дɹ +ʼд +[0,0]дҶ +re.compile('ȱ||||') Ҷ +[0,1]дҶƬǰԵ +re.compile('ȱ||||') ҶƬǰԵ +[0,2]дҶƬԵ +re.compile('ȱ||||') ҶƬԵ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 14 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬȱʧ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ҶƬȱʧ.jpg added to table 14 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\Ե͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\Ե͸.jpg added to table 14 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\׿ȱʧ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\׿ȱʧ.jpg added to table 14 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ҶƬȱʧ +ǰΪֱ(0,1)λò: Ե͸ +ǰΪֱ(0,2)λò: ׿ȱʧ +ǰ: [['ҶƬȱʧ', 'Ե͸', '׿ȱʧ']] +ǰΪ 15 +дɹ +ʼд +[0,0]дҶƬȱʧ +re.compile('ȱ||||') ҶƬȱʧ +ҶƬȱʧؼ֮ú +[0,1]дԵ͸ +re.compile('ȱ||||') Ե͸ +[0,2]д뵼׿ȱʧ +re.compile('ȱ||||') ׿ȱʧ +׿ȱʧؼ֮ú +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 16 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ճ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ڻ\ճ.jpg added to table 16 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ڲ⵼_0.466.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ڲ⵼_0.466.jpg added to table 16 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ҶԵλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ҶԵλ.jpg added to table 16 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ճ +ǰΪֱ(0,1)λò: ڲ⵼_0.466 +ǰΪֱ(0,2)λò: ҶԵλ +ǰ: [['ճ', 'ڲ⵼_0.466', 'ҶԵλ']] +ǰΪ 17 +дɹ +ʼд +[0,0]д븹ճ +re.compile('ȱ||||') ճ +[0,1]дڲ⵼_0.466 +re.compile('ȱ||||') ڲ⵼_0.466 +[0,2]дҶԵλ +re.compile('ȱ||||') ҶԵλ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 18 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\Ҷֵͨ_204m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\Ҷֵͨ_204m.jpg added to table 18 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ⲿ⵼_0.325.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ⲿ⵼_0.325.jpg added to table 18 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\챲Եλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\챲Եλ.jpg added to table 18 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: Ҷֵͨ_204m +ǰΪֱ(0,1)λò: ⲿ⵼_0.325 +ǰΪֱ(0,2)λò: 챲Եλ +ǰ: [['Ҷֵͨ_204m', 'ⲿ⵼_0.325', '챲Եλ']] +ǰΪ 19 +дɹ +ʼд +[0,0]дҶֵͨ_204m +re.compile('ȱ||||') Ҷֵͨ_204m +[0,1]дⲿ⵼_0.325 +re.compile('ȱ||||') ⲿ⵼_0.325 +[0,2]д챲Եλ +re.compile('ȱ||||') 챲Եλ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 20 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ֵͨ_169m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\\ֵͨ_169m.jpg added to table 20 cell (0,0) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ֵͨ_169m +ǰ: [['ֵͨ_169m', '', '']] +ǰΪ 21 +дɹ +ʼд +[0,0]дֵͨ_169m +re.compile('ȱ||||') ֵͨ_169m +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +дɹ +ʼд +[0,0]дҶƬ21L-3-2# +None ҶƬ21L-3-2# +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 23 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ1.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ1.jpg added to table 23 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ2.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ2.jpg added to table 23 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ3.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ3.jpg added to table 23 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ͼƬ1 +ǰΪֱ(0,1)λò: ͼƬ2 +ǰΪֱ(0,2)λò: ͼƬ3 +ǰ: [['ͼƬ1', 'ͼƬ2', 'ͼƬ3']] +ǰΪ 24 +дɹ +ʼд +[0,0]дͼƬ1 +re.compile('ȱ||||') ͼƬ1 +[0,1]дͼƬ2 +re.compile('ȱ||||') ͼƬ2 +[0,2]дͼƬ3 +re.compile('ȱ||||') ͼƬ3 +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 25 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ4.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ4.jpg added to table 25 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ5.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ5.jpg added to table 25 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ6.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ͼƬ6.jpg added to table 25 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ͼƬ4 +ǰΪֱ(0,1)λò: ͼƬ5 +ǰΪֱ(0,2)λò: ͼƬ6 +ǰ: [['ͼƬ4', 'ͼƬ5', 'ͼƬ6']] +ǰΪ 26 +дɹ +ʼд +[0,0]дͼƬ4 +re.compile('ȱ||||') ͼƬ4 +[0,1]дͼƬ5 +re.compile('ȱ||||') ͼƬ5 +[0,2]дͼƬ6 +re.compile('ȱ||||') ͼƬ6 +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 27 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\˿׸ǰ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\˿׸ǰ.jpg added to table 27 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ǰԵ͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ǰԵ͸.jpg added to table 27 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\Ҷ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\Ҷ.jpg added to table 27 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ˿׸ǰ +ǰΪֱ(0,1)λò: ǰԵ͸ +ǰΪֱ(0,2)λò: Ҷ +ǰ: [['˿׸ǰ', 'ǰԵ͸', 'Ҷ']] +ǰΪ 28 +дɹ +ʼд +[0,0]д˿׸ǰ +re.compile('ȱ||||') ˿׸ǰ +[0,1]дǰԵ͸ +re.compile('ȱ||||') ǰԵ͸ +[0,2]дҶ +re.compile('ȱ||||') Ҷ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 29 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬǰԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬǰԵ.jpg added to table 29 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬԵ.jpg added to table 29 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ҶƬ.jpg added to table 29 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ҶƬǰԵ +ǰΪֱ(0,1)λò: ҶƬԵ +ǰΪֱ(0,2)λò: ҶƬ +ǰ: [['ҶƬǰԵ', 'ҶƬԵ', 'ҶƬ']] +ǰΪ 30 +дɹ +ʼд +[0,0]дҶƬǰԵ +re.compile('ȱ||||') ҶƬǰԵ +[0,1]дҶƬԵ +re.compile('ȱ||||') ҶƬԵ +[0,2]дҶƬ +re.compile('ȱ||||') ҶƬ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 31 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\Ե͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\Ե͸.jpg added to table 31 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\׿ȱʧ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\׿ȱʧ.jpg added to table 31 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ճ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ڻ\ճ.jpg added to table 31 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: Ե͸ +ǰΪֱ(0,1)λò: ׿ȱʧ +ǰΪֱ(0,2)λò: ճ +ǰ: [['Ե͸', '׿ȱʧ', 'ճ']] +ǰΪ 32 +дɹ +ʼд +[0,0]дԵ͸ +re.compile('ȱ||||') Ե͸ +[0,1]д뵼׿ȱʧ +re.compile('ȱ||||') ׿ȱʧ +׿ȱʧؼ֮ú +[0,2]д븹ճ +re.compile('ȱ||||') ճ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 33 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ڲ⵼_0.466.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ڲ⵼_0.466.jpg added to table 33 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ҶԵλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ҶԵλ.jpg added to table 33 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\Ҷֵͨ_219m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\Ҷֵͨ_219m.jpg added to table 33 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ڲ⵼_0.466 +ǰΪֱ(0,1)λò: ҶԵλ +ǰΪֱ(0,2)λò: Ҷֵͨ_219m +ǰ: [['ڲ⵼_0.466', 'ҶԵλ', 'Ҷֵͨ_219m']] +ǰΪ 34 +дɹ +ʼд +[0,0]дڲ⵼_0.466 +re.compile('ȱ||||') ڲ⵼_0.466 +[0,1]дҶԵλ +re.compile('ȱ||||') ҶԵλ +[0,2]дҶֵͨ_219m +re.compile('ȱ||||') Ҷֵͨ_219m +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 35 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ⲿ⵼_0.325.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ⲿ⵼_0.325.jpg added to table 35 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\챲Եλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\챲Եλ.jpg added to table 35 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ֵͨ_166m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\\ֵͨ_166m.jpg added to table 35 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ⲿ⵼_0.325 +ǰΪֱ(0,1)λò: 챲Եλ +ǰΪֱ(0,2)λò: ֵͨ_166m +ǰ: [['ⲿ⵼_0.325', '챲Եλ', 'ֵͨ_166m']] +ǰΪ 36 +дɹ +ʼд +[0,0]дⲿ⵼_0.325 +re.compile('ȱ||||') ⲿ⵼_0.325 +[0,1]д챲Եλ +re.compile('ȱ||||') 챲Եλ +[0,2]дֵͨ_166m +re.compile('ȱ||||') ֵͨ_166m +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +дɹ +ʼд +[0,0]дҶƬ31L-3-3# +None ҶƬ31L-3-3# +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 38 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ1.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ1.jpg added to table 38 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ2.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ2.jpg added to table 38 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ3.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ3.jpg added to table 38 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ͼƬ1 +ǰΪֱ(0,1)λò: ͼƬ2 +ǰΪֱ(0,2)λò: ͼƬ3 +ǰ: [['ͼƬ1', 'ͼƬ2', 'ͼƬ3']] +ǰΪ 39 +дɹ +ʼд +[0,0]дͼƬ1 +re.compile('ȱ||||') ͼƬ1 +[0,1]дͼƬ2 +re.compile('ȱ||||') ͼƬ2 +[0,2]дͼƬ3 +re.compile('ȱ||||') ͼƬ3 +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 40 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ4.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ4.jpg added to table 40 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ5.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ5.jpg added to table 40 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ6.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ͼƬ6.jpg added to table 40 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ͼƬ4 +ǰΪֱ(0,1)λò: ͼƬ5 +ǰΪֱ(0,2)λò: ͼƬ6 +ǰ: [['ͼƬ4', 'ͼƬ5', 'ͼƬ6']] +ǰΪ 41 +дɹ +ʼд +[0,0]дͼƬ4 +re.compile('ȱ||||') ͼƬ4 +[0,1]дͼƬ5 +re.compile('ȱ||||') ͼƬ5 +[0,2]дͼƬ6 +re.compile('ȱ||||') ͼƬ6 +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 42 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\˿׸ǰ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\˿׸ǰ.jpg added to table 42 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ǰԵ͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ǰԵ͸.jpg added to table 42 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\Ҷ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\Ҷ.jpg added to table 42 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ˿׸ǰ +ǰΪֱ(0,1)λò: ǰԵ͸ +ǰΪֱ(0,2)λò: Ҷ +ǰ: [['˿׸ǰ', 'ǰԵ͸', 'Ҷ']] +ǰΪ 43 +дɹ +ʼд +[0,0]д˿׸ǰ +re.compile('ȱ||||') ˿׸ǰ +[0,1]дǰԵ͸ +re.compile('ȱ||||') ǰԵ͸ +[0,2]дҶ +re.compile('ȱ||||') Ҷ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 44 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬǰԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬǰԵ.jpg added to table 44 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬԵ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬԵ.jpg added to table 44 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ҶƬ.jpg added to table 44 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ҶƬǰԵ +ǰΪֱ(0,1)λò: ҶƬԵ +ǰΪֱ(0,2)λò: ҶƬ +ǰ: [['ҶƬǰԵ', 'ҶƬԵ', 'ҶƬ']] +ǰΪ 45 +дɹ +ʼд +[0,0]дҶƬǰԵ +re.compile('ȱ||||') ҶƬǰԵ +[0,1]дҶƬԵ +re.compile('ȱ||||') ҶƬԵ +[0,2]дҶƬ +re.compile('ȱ||||') ҶƬ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 46 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\Ե͸.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\Ե͸.jpg added to table 46 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\׿ȱʧ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\׿ȱʧ.jpg added to table 46 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ճ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ڻ\ճ.jpg added to table 46 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: Ե͸ +ǰΪֱ(0,1)λò: ׿ȱʧ +ǰΪֱ(0,2)λò: ճ +ǰ: [['Ե͸', '׿ȱʧ', 'ճ']] +ǰΪ 47 +дɹ +ʼд +[0,0]дԵ͸ +re.compile('ȱ||||') Ե͸ +[0,1]д뵼׿ȱʧ +re.compile('ȱ||||') ׿ȱʧ +׿ȱʧؼ֮ú +[0,2]д븹ճ +re.compile('ȱ||||') ճ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 48 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ڲ⵼_0.466.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ڲ⵼_0.466.jpg added to table 48 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ҶԵλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ҶԵλ.jpg added to table 48 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\Ҷֵͨ_242m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\Ҷֵͨ_242m.jpg added to table 48 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ڲ⵼_0.466 +ǰΪֱ(0,1)λò: ҶԵλ +ǰΪֱ(0,2)λò: Ҷֵͨ_242m +ǰ: [['ڲ⵼_0.466', 'ҶԵλ', 'Ҷֵͨ_242m']] +ǰΪ 49 +дɹ +ʼд +[0,0]дڲ⵼_0.466 +re.compile('ȱ||||') ڲ⵼_0.466 +[0,1]дҶԵλ +re.compile('ȱ||||') ҶԵλ +[0,2]дҶֵͨ_242m +re.compile('ȱ||||') Ҷֵͨ_242m +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪ 50 +дɹ +ʼд +д +ǰΪͼƬ(0,0)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ⲿ⵼_0.325.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ⲿ⵼_0.325.jpg added to table 50 cell (0,0) +ǰΪͼƬ(0,1)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\챲Եλ.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\챲Եλ.jpg added to table 50 cell (0,1) +ǰΪͼƬ(0,2)λòͼƬ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ֵͨ_187m.jpg +Picture C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\\ֵͨ_187m.jpg added to table 50 cell (0,2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ǰΪֱ(0,0)λò: ⲿ⵼_0.325 +ǰΪֱ(0,1)λò: 챲Եλ +ǰΪֱ(0,2)λò: ֵͨ_187m +ǰ: [['ⲿ⵼_0.325', '챲Եλ', 'ֵͨ_187m']] +ǰΪ 51 +дɹ +ʼд +[0,0]дⲿ⵼_0.325 +re.compile('ȱ||||') ⲿ⵼_0.325 +[0,1]д챲Եλ +re.compile('ȱ||||') 챲Եλ +[0,2]дֵͨ_187m +re.compile('ȱ||||') ֵͨ_187m +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +Replaced 1 occurrence(s) of 'num' with ''. +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\1_Ϳ_Ҷ3m_2m_һ__һ_ĥά.jpg +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\2_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\3_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\4_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +ȡ1ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +ȡ2ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg +ȡ2ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +ȡ2ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +ȡ3ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg +ȡ3ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +ȡ3ҶƬȱͼ: C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: LEFT (0) +Source paragraph alignment: None +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxC:\Users\VogelimKafig\Desktop\work\ģĿ¼\ģ\.docxɹ +Replaced 1 occurrence(s) of 'num' with ''. +[['', '', '', ''], ['1L-3-1#', 'Ϳ', 'Ҷ3m', '2m'], ['', '', '', ''], ['һ', 'һ', '', 'ĥά'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]дͿ +None Ϳ +[1,2]дҶ3m +None Ҷ3m +[1,3]д2m +None 2m +[3,0]дһ +None һ +[3,1]дһ +None һ +[3,2]д +None +[3,3]д뾡ĥά +None ĥά +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\1_Ϳ_Ҷ3m_2m_һ__һ_ĥά.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\1_Ϳ_Ҷ3m_2m_һ__һ_ĥά.jpg 0 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '0'. +[['', '', '', ''], ['1L-3-1#', 'ȱ', 'ȱλ', 'ȱݳߴ'], ['', '', '', ''], ['Σصȼ', 'ɼ̶', '̶', 'ά޽'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]дȱ +None ȱ +[1,2]дȱλ +None ȱλ +[1,3]дȱݳߴ +None ȱݳߴ +[3,0]дΣصȼ +None Σصȼ +[3,1]дɼ̶ +None ɼ̶ +[3,2]д̶ +None ̶ +[3,3]дά޽ +None ά޽ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\2_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\2_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg 1 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '1'. +[['', '', '', ''], ['1L-3-1#', 'ȱ', 'ȱλ', 'ȱݳߴ'], ['', '', '', ''], ['Σصȼ', 'ɼ̶', '̶', 'ά޽'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]дȱ +None ȱ +[1,2]дȱλ +None ȱλ +[1,3]дȱݳߴ +None ȱݳߴ +[3,0]дΣصȼ +None Σصȼ +[3,1]дɼ̶ +None ɼ̶ +[3,2]д̶ +None ̶ +[3,3]дά޽ +None ά޽ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\3_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\3_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg 2 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '2'. +[['', '', '', ''], ['1L-3-1#', 'ȱ', 'ȱλ', 'ȱݳߴ'], ['', '', '', ''], ['Σصȼ', 'ɼ̶', '̶', 'ά޽'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]дȱ +None ȱ +[1,2]дȱλ +None ȱλ +[1,3]дȱݳߴ +None ȱݳߴ +[3,0]дΣصȼ +None Σصȼ +[3,1]дɼ̶ +None ɼ̶ +[3,2]д̶ +None ̶ +[3,3]дά޽ +None ά޽ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\4_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\4_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg 3 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '3'. +[['', '', '', ''], ['1L-3-1#', '׿ȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]д뵼׿ȱʧ +None ׿ȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 4 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '4'. +[['', '', '', ''], ['1L-3-1#', 'ҶƬȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-1# +None 1L-3-1# +[1,1]дҶƬȱʧ +None ҶƬȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-1#\\ȱͼ\\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-1#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 5 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '5'. +[['', '', '', ''], ['1L-3-2#', 'ȱ', 'ȱλ', 'ȱݳߴ'], ['', '', '', ''], ['Σصȼ', 'ɼ̶', '̶', 'ά޽'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-2# +None 1L-3-2# +[1,1]дȱ +None ȱ +[1,2]дȱλ +None ȱλ +[1,3]дȱݳߴ +None ȱݳߴ +[3,0]дΣصȼ +None Σصȼ +[3,1]дɼ̶ +None ɼ̶ +[3,2]д̶ +None ̶ +[3,3]дά޽ +None ά޽ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-2#\\ȱͼ\\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg 0 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '6'. +[['', '', '', ''], ['1L-3-2#', '׿ȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-2# +None 1L-3-2# +[1,1]д뵼׿ȱʧ +None ׿ȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-2#\\ȱͼ\\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 1 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '7'. +[['', '', '', ''], ['1L-3-2#', 'ҶƬȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-2# +None 1L-3-2# +[1,1]дҶƬȱʧ +None ҶƬȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-2#\\ȱͼ\\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-2#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 2 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '8'. +[['', '', '', ''], ['1L-3-3#', 'ȱ', 'ȱλ', 'ȱݳߴ'], ['', '', '', ''], ['Σصȼ', 'ɼ̶', '̶', 'ά޽'], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-3# +None 1L-3-3# +[1,1]дȱ +None ȱ +[1,2]дȱλ +None ȱλ +[1,3]дȱݳߴ +None ȱݳߴ +[3,0]дΣصȼ +None Σصȼ +[3,1]дɼ̶ +None ɼ̶ +[3,2]д̶ +None ̶ +[3,3]дά޽ +None ά޽ +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-3#\\ȱͼ\\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\1_ȱ_ȱλ_ȱݳߴ_ɼ̶_̶_Σصȼ_ά޽.jpg.jpg 0 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '9'. +[['', '', '', ''], ['1L-3-3#', '׿ȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-3# +None 1L-3-3# +[1,1]д뵼׿ȱʧ +None ׿ȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-3#\\ȱͼ\\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\1_׿ȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 1 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '10'. +[['', '', '', ''], ['1L-3-3#', 'ҶƬȱʧ', '׿', 'ȱʧ'], ['', '', '', ''], ['Ҫ', 'Ҫ', '', ''], ['', '', '', '']] +дɹ +ʼд +[1,0]д1L-3-3# +None 1L-3-3# +[1,1]дҶƬȱʧ +None ҶƬȱʧ +[1,2]д뵼׿ +None ׿ +[1,3]д벿ȱʧ +None ȱʧ +[3,0]дҪ +None Ҫ +[3,1]дҪ +None Ҫ +[3,2]д +None +[3,3]д뾡 +None +д +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxӱɹ +ʼͼƬб: ['C:\\Users\\VogelimKafig\\Desktop\\work\\ͼƬ\\1L-3-3#\\ȱͼ\\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg'] + C:\Users\VogelimKafig\Desktop\work\ͼƬ\1L-3-3#\ȱͼ\2_ҶƬȱʧ_׿_ȱʧ_Ҫ__Ҫ_.jpg 2 +ͼƬļСС10MBе +Replaced 1 occurrence(s) of 'tupian_xuhao' with '11'. +Source paragraph alignment: LEFT (0) +Source paragraph alignment: None +Source paragraph alignment: None +Source paragraph alignment: LEFT (0) +Source paragraph alignment: RIGHT (2) +Source paragraph alignment: RIGHT (2) +Source paragraph alignment: RIGHT (2) +C:\Users\VogelimKafig\Desktop\work\洿\׷ŷ糡ĿҶƬ鱨H3-08#20211210հ.docxC:\Users\VogelimKafig\Desktop\work\ģĿ¼\ģ\ܽ.docxɹ +Replaced 1 occurrence(s) of 'result' with '1ϷҶƬлӡμȸߣҶƬǰԵģPS棨ӭ棩Ϳܸʴ鶨ڹ۲ά +2˻ۼ鷢H3-08#λY200220AFҶƬPSҶ20mһƣ˳3mȱݾҷжΪȱݣ龡ᰲŶԸûֶͣΣ˹ĥһ鲢ά޴÷ֹսһ +3˻ۼδH3-08#λY200249AFY200250AFҶƬӰеⲿȱݡ +'. +Replaced 1 occurrence(s) of 'company_yi' with 'ҷ˾'. +Replaced 1 occurrence(s) of 'baogao_date' with '20211210'. +Replaced 1 occurrence(s) of 'num' with ''. diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版.zip b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版.zip new file mode 100644 index 0000000..80d85d9 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版.zip differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/[Content_Types].xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/[Content_Types].xml new file mode 100644 index 0000000..e589f39 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/[Content_Types].xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/_rels/.rels b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/_rels/.rels new file mode 100644 index 0000000..451925a --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/_rels/.rels @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/_rels/item1.xml.rels b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/_rels/item1.xml.rels new file mode 100644 index 0000000..d5a3c5a --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/_rels/item1.xml.rels @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/item1.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/item1.xml new file mode 100644 index 0000000..94c8bab --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/item1.xml @@ -0,0 +1,2 @@ + + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/itemProps1.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/itemProps1.xml new file mode 100644 index 0000000..6664fc0 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/customXml/itemProps1.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/app.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/app.xml new file mode 100644 index 0000000..bf89187 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/app.xml @@ -0,0 +1,36 @@ + + + + 0 + 1 + 0 + 0 + Microsoft Macintosh Word + 0 + 0 + 0 + false + + + + Title + + + 1 + + + + + + + + + + + false + 0 + false + + false + 14.0000 + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/core.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/core.xml new file mode 100644 index 0000000..cd4e1a0 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/core.xml @@ -0,0 +1,2 @@ + +python-docxgenerated by python-docx12013-12-23T23:15:00Z2013-12-23T23:15:00Z \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/thumbnail.jpeg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/thumbnail.jpeg new file mode 100644 index 0000000..d0c4f1f Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/docProps/thumbnail.jpeg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/_rels/document.xml.rels b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/_rels/document.xml.rels new file mode 100644 index 0000000..4778521 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/_rels/document.xml.rels @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/document.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/document.xml new file mode 100644 index 0000000..a7f02ca --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/document.xml @@ -0,0 +1,2 @@ + +甲方集团风场名称项目风力发电机组叶片检查报告甲方集团H3-08#文档编制:生成报告人员 文档审核:待填写(人员)乙方公司名二〇二一年十二月本报告仅涵盖叶片外观、叶片内部、叶片防雷检测内容如出现未检测内容导致检测部分出现问题,不在此报告责任范围内甲方集团H3-08#风力发电机组叶片检查报告一、项目概括风场名称风场名称风场地址风场位置发包单位甲方公司名检查单位乙方公司名负责人甲方负责人(吴明洲)联系电话联系电话:18807109269 机组型号机组型号项目规格项目规格(台)二、检查方案工作内容人员配置设备配置施工方案备注无人机叶片防雷导通测2人;主检飞手1人,副检抄表1人1四轴电阻无人机1套,电子微欧计1台,视频记录手机1台无人吊篮叶片导通测试(含机舱设备、)3人,轮毂机舱作业1人,揽风绳作业1人,无人设备操作员及抄表1人无人吊篮系统1套(爬绳器+接触平台)、电子微欧计1套,视频记录手机1台,对讲机2台风机基础、办公楼、变电站防雷接地检测及浪涌保护器测试1人;抄表人员1人,检测人员1人,监护1人。接地电阻测试仪1套、SPD测试仪1套、对讲机2个、无人机叶片外观巡检1人;主检飞手1人1、大疆无人机1台(M350rtk,M300rtk,M30T,M30,精灵4PRO)2、大疆精灵4PRO+索尼A7R2机身+索尼200-600mm镜头/适马150-600mm镜头叶片内部检查2人;轮毂作业检查2人1、人工检查:照明设备2套,视频记录手机2台,含氧量监测仪1台,电动扳手2套,卷尺1个。2、爬壁机器人检查:无人作业校车+视频图传1套,照明设备2套,含氧量监测仪1台,电动扳手2套,卷尺1个。三、检查信息检查人员张三检查时间2021年12月10日机组编号H3-08#检查位置叶片外部外观检查方式作业无人机近距离外观检查叶片信息厂家株洲时代新材料科技股份有限公司机组编号:H3-08#机组1L-3-1#1L-3-2#1L-3-3#本次无人机外部高精度飞行、人工内部拍摄、人工防雷检查,采集叶片图片79张,内容覆盖1L-3-1#、1L-3-2#、1L-3-3#三支叶片的前缘、后缘、迎风面、背风面。;1L-3-1#、1L-3-2#、1L-3-3#三支叶片的内部导雷卡、腹板、透光、人孔盖版、叶根盖板...;轮毂至塔基导通、内部导线线阻、外部导线线阻...四、成果递交无人机外部检查人员张三业主人员李四厂家人员王五检查日期2021年12月10日检查时间9:00数据处理生成报告人员处理时间2021年12月10日报告编制生成报告人员编制时间2021年12月10日报告审核待填写(人员)审核时间待填写(日期)五、检查情况汇总 编号及概况检查内容问题及具体位置描述1L-3-1#共发现缺陷6处1.叶片前缘、后缘、PS面、SS面 2.叶片内部导雷卡、腹板、透光、人孔盖版、叶根盖板...3.轮毂至塔基导通、内部导线线阻、外部导线线阻...1.1_涂层损伤_叶尖3m_2m_一般_紧急_一般_尽快打磨维修2.2_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg3.3_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg4.4_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg5.1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换6.2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换1L-3-2#共发现缺陷3处1.叶片前缘、后缘、PS面、SS面 2.叶片内部导雷卡、腹板、透光、人孔盖版、叶根盖板...3.轮毂至塔基导通、内部导线线阻、外部导线线阻...1.1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg2.1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换3.2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换1L-3-3#共发现缺陷3处1.叶片前缘、后缘、PS面、SS面 2.叶片内部导雷卡、腹板、透光、人孔盖版、叶根盖板...3.轮毂至塔基导通、内部导线线阻、外部导线线阻...1.1_缺陷类型_缺陷位置_缺陷尺寸_可见程度_紧急程度_危重等级_维修建议.jpg2.1_导雷卡缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换3.2_叶片铭牌缺失_导雷卡_部件缺失_重要_紧急_重要_尽快更换六、检查内容叶片1:1L-3-1#检查内容PS面(叶尖)PS面(最大弦长)SS面(叶尖)SS面(最大弦长)test1前缘局部后缘局部人孔盖板完好前缘透光情况叶根挡板完好叶片前缘壳体表面完好叶片后缘壳体表面完好叶片铭牌缺失后缘透光情况导雷卡缺失腹板粘接完好内部检测导线线阻_0.466Ω叶尖测试点位叶尖至塔基导通阻值_204mΩ外部检测导线线阻_0.325Ω轮毂测试点位23轮毂至塔基导通阻值_169mΩ23叶片2:1L-3-2#检查内容图片1图片2图片3图片4图片5图片6人孔盖板完好前缘透光情况叶根挡板完好叶片前缘壳体表面完好叶片后缘壳体表面完好叶片铭牌完好后缘透光情况导雷卡缺失腹板粘接完好内部检测导线线阻_0.466Ω叶尖测试点位叶尖至塔基导通阻值_219mΩ外部检测导线线阻_0.325Ω轮毂测试点位轮毂至塔基导通阻值_166mΩ叶片3:1L-3-3#检查内容图片1图片2图片3图片4图片5图片6人孔盖板完好前缘透光情况叶根挡板完好叶片前缘壳体表面完好叶片后缘壳体表面完好叶片铭牌完好后缘透光情况导雷卡缺失腹板粘接完好内部检测导线线阻_0.466Ω叶尖测试点位叶尖至塔基导通阻值_242mΩ外部检测导线线阻_0.325Ω轮毂测试点位轮毂至塔基导通阻值_187mΩ(上文完)七、检查详情(照片)缺陷图 0部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#涂层损伤叶尖3m2m危重等级可见程度紧急程度维修建议:一般一般紧急尽快打磨维修图像表现:缺陷图 1部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#缺陷类型缺陷位置缺陷尺寸危重等级可见程度紧急程度维修建议:危重等级可见程度紧急程度维修建议图像表现:缺陷图 2部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#缺陷类型缺陷位置缺陷尺寸危重等级可见程度紧急程度维修建议:危重等级可见程度紧急程度维修建议图像表现:缺陷图 3部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#缺陷类型缺陷位置缺陷尺寸危重等级可见程度紧急程度维修建议:危重等级可见程度紧急程度维修建议图像表现:缺陷图 4部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#导雷卡缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:缺陷图 5部件编号缺陷类型缺陷位置缺陷尺寸1L-3-1#叶片铭牌缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:缺陷图 6部件编号缺陷类型缺陷位置缺陷尺寸1L-3-2#缺陷类型缺陷位置缺陷尺寸危重等级可见程度紧急程度维修建议:危重等级可见程度紧急程度维修建议图像表现:缺陷图 7部件编号缺陷类型缺陷位置缺陷尺寸1L-3-2#导雷卡缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:缺陷图 8部件编号缺陷类型缺陷位置缺陷尺寸1L-3-2#叶片铭牌缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:缺陷图 9部件编号缺陷类型缺陷位置缺陷尺寸1L-3-3#缺陷类型缺陷位置缺陷尺寸危重等级可见程度紧急程度维修建议:危重等级可见程度紧急程度维修建议图像表现:缺陷图 10部件编号缺陷类型缺陷位置缺陷尺寸1L-3-3#导雷卡缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:缺陷图 11部件编号缺陷类型缺陷位置缺陷尺寸1L-3-3#叶片铭牌缺失导雷卡部件缺失危重等级可见程度紧急程度维修建议:重要重要紧急尽快更换图像表现:八、检查结论1、因海上风电叶片运行环境恶劣、空气盐碱度高,叶片前缘合模缝区域及PS面(迎风面)涂层易受腐蚀,建议定期观察维护。2、经无人机近距离外观检查发现H3-08#机位Y200220AF叶片PS面距叶根20m处发现一处裂纹,损伤长度轴向3m,该缺陷经我方判定为严重缺陷,建议尽快结安排对该机组停机并结合其他检查手段(如人工打磨)进一步勘查并决定维修处置方案,防止风险进一步升级。3、经无人机近距离外观检查未发现H3-08#机位Y200249AF、Y200250AF叶片有明显影响机组正常运行的外部缺陷。 乙方公司名 2021年12月10日 \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/fontTable.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/fontTable.xml new file mode 100644 index 0000000..a2e0658 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/fontTable.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image1.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image1.jpg new file mode 100644 index 0000000..0df9fd9 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image1.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image10.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image10.jpg new file mode 100644 index 0000000..140c95b Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image10.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image11.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image11.jpg new file mode 100644 index 0000000..0459727 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image11.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image12.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image12.jpg new file mode 100644 index 0000000..61fd171 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image12.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image13.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image13.jpg new file mode 100644 index 0000000..be42d89 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image13.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image14.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image14.jpg new file mode 100644 index 0000000..e5c69e4 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image14.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image15.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image15.jpg new file mode 100644 index 0000000..57b4da3 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image15.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image16.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image16.jpg new file mode 100644 index 0000000..10b7d94 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image16.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image17.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image17.jpg new file mode 100644 index 0000000..928a7ec Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image17.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image18.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image18.jpg new file mode 100644 index 0000000..d01226f Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image18.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image19.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image19.jpg new file mode 100644 index 0000000..b6e5030 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image19.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image2.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image2.jpg new file mode 100644 index 0000000..2360ba3 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image2.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image20.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image20.jpg new file mode 100644 index 0000000..c82b6d6 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image20.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image21.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image21.jpg new file mode 100644 index 0000000..da39e25 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image21.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image22.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image22.jpg new file mode 100644 index 0000000..53e0380 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image22.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image23.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image23.jpg new file mode 100644 index 0000000..c40481a Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image23.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image24.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image24.jpg new file mode 100644 index 0000000..dc36312 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image24.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image25.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image25.jpg new file mode 100644 index 0000000..54120cd Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image25.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image26.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image26.jpg new file mode 100644 index 0000000..cb54a9b Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image26.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image27.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image27.jpg new file mode 100644 index 0000000..16d1add Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image27.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image28.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image28.jpg new file mode 100644 index 0000000..18f5c6f Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image28.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image29.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image29.jpg new file mode 100644 index 0000000..02a129c Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image29.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image3.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image3.jpg new file mode 100644 index 0000000..2ffd89a Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image3.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image30.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image30.jpg new file mode 100644 index 0000000..72d9760 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image30.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image31.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image31.jpg new file mode 100644 index 0000000..54d1ff6 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image31.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image32.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image32.jpg new file mode 100644 index 0000000..9ce8ed4 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image32.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image33.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image33.jpg new file mode 100644 index 0000000..1663c7b Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image33.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image34.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image34.jpg new file mode 100644 index 0000000..c451889 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image34.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image35.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image35.jpg new file mode 100644 index 0000000..1a6994c Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image35.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image36.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image36.jpg new file mode 100644 index 0000000..e3cc015 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image36.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image37.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image37.jpg new file mode 100644 index 0000000..41985de Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image37.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image38.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image38.jpg new file mode 100644 index 0000000..272ac8f Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image38.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image39.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image39.jpg new file mode 100644 index 0000000..d7ef40b Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image39.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image4.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image4.jpg new file mode 100644 index 0000000..6f18ac6 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image4.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image40.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image40.jpg new file mode 100644 index 0000000..8232546 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image40.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image41.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image41.jpg new file mode 100644 index 0000000..281f23e Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image41.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image42.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image42.jpg new file mode 100644 index 0000000..1931511 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image42.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image43.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image43.jpg new file mode 100644 index 0000000..7237c4e Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image43.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image44.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image44.jpg new file mode 100644 index 0000000..35bc727 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image44.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image45.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image45.jpg new file mode 100644 index 0000000..d5256aa Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image45.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image46.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image46.jpg new file mode 100644 index 0000000..f57ae99 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image46.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image47.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image47.jpg new file mode 100644 index 0000000..b61f8f1 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image47.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image48.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image48.jpg new file mode 100644 index 0000000..c73181c Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image48.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image49.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image49.jpg new file mode 100644 index 0000000..a1e8df5 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image49.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image5.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image5.jpg new file mode 100644 index 0000000..07e9e52 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image5.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image50.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image50.jpg new file mode 100644 index 0000000..0012fdb Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image50.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image51.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image51.jpg new file mode 100644 index 0000000..6f92eeb Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image51.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image52.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image52.jpg new file mode 100644 index 0000000..24ccc8c Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image52.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image53.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image53.jpg new file mode 100644 index 0000000..df468ab Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image53.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image54.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image54.jpg new file mode 100644 index 0000000..e0db361 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image54.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image55.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image55.jpg new file mode 100644 index 0000000..349b30d Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image55.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image56.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image56.jpg new file mode 100644 index 0000000..39b5b4d Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image56.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image57.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image57.jpg new file mode 100644 index 0000000..dfab837 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image57.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image58.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image58.jpg new file mode 100644 index 0000000..0bf9cc1 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image58.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image59.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image59.jpg new file mode 100644 index 0000000..311461f Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image59.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image6.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image6.jpg new file mode 100644 index 0000000..25bbda6 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image6.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image7.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image7.jpg new file mode 100644 index 0000000..a8ee40e Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image7.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image8.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image8.jpg new file mode 100644 index 0000000..a653ef8 Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image8.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image9.jpg b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image9.jpg new file mode 100644 index 0000000..d91b3ff Binary files /dev/null and b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/media/image9.jpg differ diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/numbering.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/numbering.xml new file mode 100644 index 0000000..3ba15a7 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/numbering.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/settings.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/settings.xml new file mode 100644 index 0000000..b922d7c --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/settings.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/styles.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/styles.xml new file mode 100644 index 0000000..7e9a8d3 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/styles.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/stylesWithEffects.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/stylesWithEffects.xml new file mode 100644 index 0000000..91c1734 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/stylesWithEffects.xml @@ -0,0 +1,11800 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/theme/theme1.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/theme/theme1.xml new file mode 100644 index 0000000..2b30074 --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/theme/theme1.xml @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/webSettings.xml b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/webSettings.xml new file mode 100644 index 0000000..189a20a --- /dev/null +++ b/测试数据/报告纯结果/甲方集团风场名称项目风力发电机组叶片检查报告H3-08#2021年12月10日版/word/webSettings.xml @@ -0,0 +1,5 @@ + + + + +